diff --git a/package.json b/package.json index 085dd6a..3e9242a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rcpch/digital-growth-charts-react-component-library", - "version": "7.2.2", + "version": "7.3.0", "description": "A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components", "main": "build/index.js", "module": "build/esm.index.js", diff --git a/src/CentileChart/CentileChart.types.ts b/src/CentileChart/CentileChart.types.ts index b546169..0296324 100644 --- a/src/CentileChart/CentileChart.types.ts +++ b/src/CentileChart/CentileChart.types.ts @@ -19,7 +19,7 @@ export type Results = { }; export interface CentileChartProps { chartsVersion?: string; - reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap'; + reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap' | 'who'; title: string; subtitle: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; diff --git a/src/RCPCHChart/RCPCHChart.stories.tsx b/src/RCPCHChart/RCPCHChart.stories.tsx index 7d73bf0..c612ddc 100644 --- a/src/RCPCHChart/RCPCHChart.stories.tsx +++ b/src/RCPCHChart/RCPCHChart.stories.tsx @@ -16,6 +16,7 @@ import { cdcOFCGirl } from '../testParameters/measurements/cdcOFCGirls.ts'; import { maleCDCBMIExcess } from '../testParameters/measurements/maleCDCBMIExcess.ts'; import { childTrisomyAAPData } from '../testParameters/measurements/childTrisomyAAPData.ts'; import { maleWeightT21AAPData } from '../testParameters/measurements/maleWeightT21AAP.ts'; +import { whoToNineteenGirlHeight } from '../testParameters/measurements/whoHeightToNineteenGirl.ts'; // import { cdcFentonGirlLength } from '../testParameters/measurements/fenton/cdcFentonGirlLength'; // import { cdcFentonGirlWeight } from '../testParameters/measurements/fenton/cdcFentonGirlWeight.ts'; @@ -78,6 +79,26 @@ export const CentileChartUKWHOGirlsHeightWithMeasurementsLegend: Story = { }, }; +export const CentileChartUKWHOBoysHeightWithMeasurementsLegend: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'male', + logoVariant: 'legend', + measurements: { height: [] }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner1', + height: 800, + width: 1000, + customThemeStyles: {}, + }, +}; + export const CentileChartPrematureUKWHOGirlsHeightWithMeasurementsLegend: Story = { args: { title: 'Patient Name - Hospital Number', @@ -721,6 +742,310 @@ export const CentileChartTrisomy21AAPBoysHeadCircumference: Story = { }, }; +export const CentileChartWHOGirlsHeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'who', + sex: 'female', + measurements: { + height: whoToNineteenGirlHeight, + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner1', + customThemeStyles: {}, + clinicianFocus: true, + logoVariant: 'bottom', + }, +}; + +export const CentileChartWHOGirlsWeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'weight', + reference: 'who', + sex: 'female', + measurements: { + weight: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner1', + customThemeStyles: {}, + clinicianFocus: true, + logoVariant: 'bottom', + }, +}; + +export const CentileChartWHOGirlsHeadCircumference: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'ofc', + reference: 'who', + sex: 'female', + measurements: { + ofc: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner1', + customThemeStyles: {}, + clinicianFocus: true, + logoVariant: 'bottom', + }, +}; + +export const CentileChartWHOGirlsBMI: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'bmi', + reference: 'who', + sex: 'female', + measurements: { + bmi: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner1', + customThemeStyles: {}, + clinicianFocus: true, + logoVariant: 'bottom', + }, +}; + +export const CentileChartWHOBoysWeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'weight', + reference: 'who', + sex: 'male', + measurements: { + weight: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartWHOBoysBMI: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'bmi', + reference: 'who', + sex: 'male', + measurements: { + bmi: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartWHOBoysHeadCircumference: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'ofc', + reference: 'who', + sex: 'male', + measurements: { + ofc: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21BoysHeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'trisomy-21', + sex: 'male', + measurements: { + height: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21BoysWeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'weight', + reference: 'trisomy-21', + sex: 'male', + measurements: { + weight: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21BoysBMI: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'bmi', + reference: 'trisomy-21', + sex: 'male', + measurements: { + bmi: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21BoysHeadCircumference: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'ofc', + reference: 'trisomy-21', + sex: 'male', + measurements: { + ofc: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner2', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21GirlsHeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'trisomy-21', + sex: 'female', + measurements: { + height: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner3', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21GirlsWeight: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'weight', + reference: 'trisomy-21', + sex: 'female', + measurements: { + weight: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner3', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21GirlsBMI: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'bmi', + reference: 'trisomy-21', + sex: 'female', + measurements: { + bmi: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner3', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + +export const CentileChartTrisomy21GirlsHeadCircumference: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'ofc', + reference: 'trisomy-21', + sex: 'female', + measurements: { + ofc: [], + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: () => {}, + theme: 'tanner3', + customThemeStyles: {}, + clinicianFocus: true, + }, +}; + export const TomatoCentileChart: Story = { args: { title: 'Patient Name - Hospital Number', diff --git a/src/RCPCHChart/RCPCHChart.tsx b/src/RCPCHChart/RCPCHChart.tsx index fd62ee0..a7d9501 100644 --- a/src/RCPCHChart/RCPCHChart.tsx +++ b/src/RCPCHChart/RCPCHChart.tsx @@ -143,25 +143,25 @@ const RCPCHChart: React.FC = ({ return ( - + ); diff --git a/src/RCPCHChart/RCPCHChart.types.ts b/src/RCPCHChart/RCPCHChart.types.ts index bf07bbf..9880eb1 100644 --- a/src/RCPCHChart/RCPCHChart.types.ts +++ b/src/RCPCHChart/RCPCHChart.types.ts @@ -14,7 +14,7 @@ import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; export interface RCPCHChartProps { title: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; - reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap'; + reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap' | 'who'; sex: 'male' | 'female'; measurements: ClientMeasurementObject; midParentalHeightData?: MidParentalHeightObject | undefined; @@ -24,8 +24,8 @@ export interface RCPCHChartProps { exportChartCallback(svg?: any): any; clinicianFocus?: boolean | undefined | null; theme?: 'monochrome' | 'traditional' | 'tanner1' | 'tanner2' | 'tanner3' | 'custom'; - height?: number - width?: number + height?: number; + width?: number; logoVariant?: 'top' | 'bottom' | 'legend'; customThemeStyles?: { chartStyle?: ChartStyle; diff --git a/src/SDSChart/SDSChart.types.ts b/src/SDSChart/SDSChart.types.ts index 055b089..6a5f4fd 100644 --- a/src/SDSChart/SDSChart.types.ts +++ b/src/SDSChart/SDSChart.types.ts @@ -2,7 +2,7 @@ import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; import { MidParentalHeightObject } from '../interfaces/MidParentalHeightObject'; export interface SDSChartProps { chartsVersion: string; - reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap'; + reference: 'uk-who' | 'turner' | 'trisomy-21' | 'cdc' | 'trisomy-21-aap' | 'who'; title: string; subtitle: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; diff --git a/src/chartdata/trisomy21_bmi_male_centile_data.ts b/src/chartdata/trisomy21_bmi_male_centile_data.ts index 640399d..b861ba7 100644 --- a/src/chartdata/trisomy21_bmi_male_centile_data.ts +++ b/src/chartdata/trisomy21_bmi_male_centile_data.ts @@ -4,13927 +4,2097 @@ export const trisomy21BMIMaleCentileData: ReferenceGroup = { { 'trisomy-21': { male: { - height: null, - weight: null, - ofc: null, bmi: [ { - sds: -2.67, + sds: -2.65, centile: 0.4, data: [ - { - l: '0.4', - x: 0.0, - y: 8.4329, - }, - { - l: '0.4', - x: 0.0192, - y: 8.7071, - }, - { - l: '0.4', - x: 0.0383, - y: 8.9842, - }, - { - l: '0.4', - x: 0.0575, - y: 9.2641, - }, - { - l: '0.4', - x: 0.0767, - y: 9.5468, - }, - { - l: '0.4', - x: 0.0958, - y: 9.7646, - }, - { - l: '0.4', - x: 0.115, - y: 9.9482, - }, - { - l: '0.4', - x: 0.1342, - y: 10.114, - }, - { - l: '0.4', - x: 0.1533, - y: 10.2665, - }, - { - l: '0.4', - x: 0.1725, - y: 10.4127, - }, - { - l: '0.4', - x: 0.1916, - y: 10.5685, - }, - { - l: '0.4', - x: 0.2108, - y: 10.7185, - }, - { - l: '0.4', - x: 0.23, - y: 10.8622, - }, - { - l: '0.4', - x: 0.2491, - y: 10.9992, - }, - { - l: '0.4', - x: 0.2683, - y: 11.128, - }, - { - l: '0.4', - x: 0.2875, - y: 11.2494, - }, - { - l: '0.4', - x: 0.3066, - y: 11.3634, - }, - { - l: '0.4', - x: 0.3258, - y: 11.4697, - }, - { - l: '0.4', - x: 0.345, - y: 11.565, - }, - { - l: '0.4', - x: 0.3641, - y: 11.6523, - }, - { - l: '0.4', - x: 0.3833, - y: 11.734, - }, - { - l: '0.4', - x: 0.4025, - y: 11.8113, - }, - { - l: '0.4', - x: 0.4216, - y: 11.8861, - }, - { - l: '0.4', - x: 0.4408, - y: 11.9639, - }, - { - l: '0.4', - x: 0.46, - y: 12.0391, - }, - { - l: '0.4', - x: 0.4791, - y: 12.1113, - }, - { - l: '0.4', - x: 0.4983, - y: 12.1802, - }, - { - l: '0.4', - x: 0.5175, - y: 12.2443, - }, - { - l: '0.4', - x: 0.5366, - y: 12.3045, - }, - { - l: '0.4', - x: 0.5558, - y: 12.3608, - }, - { - l: '0.4', - x: 0.5749, - y: 12.4131, - }, - { - l: '0.4', - x: 0.5941, - y: 12.4597, - }, - { - l: '0.4', - x: 0.6133, - y: 12.502, - }, - { - l: '0.4', - x: 0.6324, - y: 12.5413, - }, - { - l: '0.4', - x: 0.6516, - y: 12.5782, - }, - { - l: '0.4', - x: 0.6708, - y: 12.6134, - }, - { - l: '0.4', - x: 0.6899, - y: 12.6499, - }, - { - l: '0.4', - x: 0.7091, - y: 12.685, - }, - { - l: '0.4', - x: 0.7283, - y: 12.7184, - }, - { - l: '0.4', - x: 0.7474, - y: 12.7502, - }, - { - l: '0.4', - x: 0.7666, - y: 12.7796, - }, - { - l: '0.4', - x: 0.7858, - y: 12.8071, - }, - { - l: '0.4', - x: 0.8049, - y: 12.8327, - }, - { - l: '0.4', - x: 0.8241, - y: 12.8564, - }, - { - l: '0.4', - x: 0.8433, - y: 12.8776, - }, - { - l: '0.4', - x: 0.8624, - y: 12.8968, - }, - { - l: '0.4', - x: 0.8816, - y: 12.9145, - }, - { - l: '0.4', - x: 0.9008, - y: 12.9312, - }, - { - l: '0.4', - x: 0.9199, - y: 12.9471, - }, - { - l: '0.4', - x: 0.9391, - y: 12.9636, - }, - { - l: '0.4', - x: 0.9582, - y: 12.9795, - }, - { - l: '0.4', - x: 0.9774, - y: 12.9947, - }, - { - l: '0.4', - x: 0.9966, - y: 13.0091, - }, - { - l: '0.4', - x: 1.0157, - y: 13.0225, - }, - { - l: '0.4', - x: 1.0349, - y: 13.035, - }, - { - l: '0.4', - x: 1.0541, - y: 13.0467, - }, - { - l: '0.4', - x: 1.0732, - y: 13.0575, - }, - { - l: '0.4', - x: 1.0924, - y: 13.0672, - }, - { - l: '0.4', - x: 1.1116, - y: 13.076, - }, - { - l: '0.4', - x: 1.1307, - y: 13.0841, - }, - { - l: '0.4', - x: 1.1499, - y: 13.0917, - }, - { - l: '0.4', - x: 1.1691, - y: 13.0989, - }, - { - l: '0.4', - x: 1.1882, - y: 13.1063, - }, - { - l: '0.4', - x: 1.2074, - y: 13.1134, - }, - { - l: '0.4', - x: 1.2266, - y: 13.1202, - }, - { - l: '0.4', - x: 1.2457, - y: 13.1266, - }, - { - l: '0.4', - x: 1.2649, - y: 13.1326, - }, - { - l: '0.4', - x: 1.2841, - y: 13.1381, - }, - { - l: '0.4', - x: 1.3032, - y: 13.1432, - }, - { - l: '0.4', - x: 1.3224, - y: 13.1479, - }, - { - l: '0.4', - x: 1.3415, - y: 13.1521, - }, - { - l: '0.4', - x: 1.3607, - y: 13.1558, - }, - { - l: '0.4', - x: 1.3799, - y: 13.1592, - }, - { - l: '0.4', - x: 1.399, - y: 13.1623, - }, - { - l: '0.4', - x: 1.4182, - y: 13.1652, - }, - { - l: '0.4', - x: 1.4374, - y: 13.1682, - }, - { - l: '0.4', - x: 1.4565, - y: 13.171, - }, - { - l: '0.4', - x: 1.4757, - y: 13.1737, - }, - { - l: '0.4', - x: 1.4949, - y: 13.1761, - }, - { - l: '0.4', - x: 1.514, - y: 13.1783, - }, - { - l: '0.4', - x: 1.5332, - y: 13.1803, - }, - { - l: '0.4', - x: 1.5524, - y: 13.182, - }, - { - l: '0.4', - x: 1.5715, - y: 13.1836, - }, - { - l: '0.4', - x: 1.5907, - y: 13.1849, - }, - { - l: '0.4', - x: 1.6099, - y: 13.186, - }, - { - l: '0.4', - x: 1.629, - y: 13.1869, - }, - { - l: '0.4', - x: 1.6482, - y: 13.1876, - }, - { - l: '0.4', - x: 1.6674, - y: 13.1882, - }, - { - l: '0.4', - x: 1.6865, - y: 13.1887, - }, - { - l: '0.4', - x: 1.7057, - y: 13.1891, - }, - { - l: '0.4', - x: 1.7248, - y: 13.1894, - }, - { - l: '0.4', - x: 1.744, - y: 13.1895, - }, - { - l: '0.4', - x: 1.7632, - y: 13.1894, - }, - { - l: '0.4', - x: 1.7823, - y: 13.1892, - }, - { - l: '0.4', - x: 1.8015, - y: 13.1889, - }, - { - l: '0.4', - x: 1.8207, - y: 13.1884, - }, - { - l: '0.4', - x: 1.8398, - y: 13.1879, - }, - { - l: '0.4', - x: 1.859, - y: 13.1873, - }, - { - l: '0.4', - x: 1.8782, - y: 13.1866, - }, - { - l: '0.4', - x: 1.8973, - y: 13.1858, - }, - { - l: '0.4', - x: 1.9165, - y: 13.1848, - }, - { - l: '0.4', - x: 1.9357, - y: 13.1838, - }, - { - l: '0.4', - x: 1.9548, - y: 13.1826, - }, - { - l: '0.4', - x: 1.974, - y: 13.1813, - }, - { - l: '0.4', - x: 1.9932, - y: 13.1799, - }, - { - l: '0.4', - x: 2.0123, - y: 13.1783, - }, - { - l: '0.4', - x: 2.0957, - y: 13.1708, - }, - { - l: '0.4', - x: 2.179, - y: 13.1624, - }, - { - l: '0.4', - x: 2.2623, - y: 13.1515, - }, - { - l: '0.4', - x: 2.3457, - y: 13.1393, - }, - { - l: '0.4', - x: 2.429, - y: 13.127, - }, - { - l: '0.4', - x: 2.5123, - y: 13.1123, - }, - { - l: '0.4', - x: 2.5957, - y: 13.0975, - }, - { - l: '0.4', - x: 2.679, - y: 13.0835, - }, - { - l: '0.4', - x: 2.7623, - y: 13.0679, - }, - { - l: '0.4', - x: 2.8457, - y: 13.0526, - }, - { - l: '0.4', - x: 2.929, - y: 13.0389, - }, - { - l: '0.4', - x: 3.0123, - y: 13.024, - }, - { - l: '0.4', - x: 3.0957, - y: 13.0099, - }, - { - l: '0.4', - x: 3.179, - y: 12.9974, - }, - { - l: '0.4', - x: 3.2623, - y: 12.984, - }, - { - l: '0.4', - x: 3.3457, - y: 12.9714, - }, - { - l: '0.4', - x: 3.429, - y: 12.9602, - }, - { - l: '0.4', - x: 3.5123, - y: 12.948, - }, - { - l: '0.4', - x: 3.5957, - y: 12.9366, - }, - { - l: '0.4', - x: 3.679, - y: 12.9266, - }, - { - l: '0.4', - x: 3.7623, - y: 12.9157, - }, - { - l: '0.4', - x: 3.8457, - y: 12.9056, - }, - { - l: '0.4', - x: 3.929, - y: 12.8966, - }, - { - l: '0.4', - x: 4.0123, - y: 12.887, - }, - { - l: '0.4', - x: 4.0957, - y: 12.878, - }, - { - l: '0.4', - x: 4.179, - y: 12.8701, - }, - { - l: '0.4', - x: 4.2623, - y: 12.8617, - }, - { - l: '0.4', - x: 4.3457, - y: 12.8539, - }, - { - l: '0.4', - x: 4.429, - y: 12.8471, - }, - { - l: '0.4', - x: 4.5123, - y: 12.8398, - }, - { - l: '0.4', - x: 4.5957, - y: 12.8333, - }, - { - l: '0.4', - x: 4.679, - y: 12.8277, - }, - { - l: '0.4', - x: 4.7623, - y: 12.8219, - }, - { - l: '0.4', - x: 4.8457, - y: 12.8169, - }, - { - l: '0.4', - x: 4.929, - y: 12.8127, - }, - { - l: '0.4', - x: 5.0123, - y: 12.8086, - }, - { - l: '0.4', - x: 5.0957, - y: 12.8053, - }, - { - l: '0.4', - x: 5.179, - y: 12.8028, - }, - { - l: '0.4', - x: 5.2623, - y: 12.8006, - }, - { - l: '0.4', - x: 5.3457, - y: 12.7991, - }, - { - l: '0.4', - x: 5.429, - y: 12.7984, - }, - { - l: '0.4', - x: 5.5123, - y: 12.7983, - }, - { - l: '0.4', - x: 5.5957, - y: 12.7987, - }, - { - l: '0.4', - x: 5.679, - y: 12.7997, - }, - { - l: '0.4', - x: 5.7623, - y: 12.8014, - }, - { - l: '0.4', - x: 5.8457, - y: 12.8037, - }, - { - l: '0.4', - x: 5.929, - y: 12.8063, - }, - { - l: '0.4', - x: 6.0123, - y: 12.81, - }, - { - l: '0.4', - x: 6.0957, - y: 12.8142, - }, - { - l: '0.4', - x: 6.179, - y: 12.8187, - }, - { - l: '0.4', - x: 6.2623, - y: 12.8243, - }, - { - l: '0.4', - x: 6.3457, - y: 12.8304, - }, - { - l: '0.4', - x: 6.429, - y: 12.8366, - }, - { - l: '0.4', - x: 6.5123, - y: 12.8442, - }, - { - l: '0.4', - x: 6.5957, - y: 12.8523, - }, - { - l: '0.4', - x: 6.679, - y: 12.8601, - }, - { - l: '0.4', - x: 6.7623, - y: 12.8696, - }, - { - l: '0.4', - x: 6.8457, - y: 12.8793, - }, - { - l: '0.4', - x: 6.929, - y: 12.8888, - }, - { - l: '0.4', - x: 7.0123, - y: 12.9, - }, - { - l: '0.4', - x: 7.0957, - y: 12.9113, - }, - { - l: '0.4', - x: 7.179, - y: 12.9222, - }, - { - l: '0.4', - x: 7.2623, - y: 12.9349, - }, - { - l: '0.4', - x: 7.3457, - y: 12.9478, - }, - { - l: '0.4', - x: 7.429, - y: 12.96, - }, - { - l: '0.4', - x: 7.5123, - y: 12.9742, - }, - { - l: '0.4', - x: 7.5957, - y: 12.9885, - }, - { - l: '0.4', - x: 7.679, - y: 13.002, - }, - { - l: '0.4', - x: 7.7623, - y: 13.0175, - }, - { - l: '0.4', - x: 7.8457, - y: 13.0332, - }, - { - l: '0.4', - x: 7.929, - y: 13.0478, - }, - { - l: '0.4', - x: 8.0123, - y: 13.0647, - }, - { - l: '0.4', - x: 8.0957, - y: 13.0815, - }, - { - l: '0.4', - x: 8.179, - y: 13.0973, - }, - { - l: '0.4', - x: 8.2623, - y: 13.1154, - }, - { - l: '0.4', - x: 8.3457, - y: 13.1334, - }, - { - l: '0.4', - x: 8.429, - y: 13.1502, - }, - { - l: '0.4', - x: 8.5123, - y: 13.1694, - }, - { - l: '0.4', - x: 8.5957, - y: 13.1885, - }, - { - l: '0.4', - x: 8.679, - y: 13.2063, - }, - { - l: '0.4', - x: 8.7623, - y: 13.2265, - }, - { - l: '0.4', - x: 8.8457, - y: 13.2466, - }, - { - l: '0.4', - x: 8.929, - y: 13.2653, - }, - { - l: '0.4', - x: 9.0123, - y: 13.2866, - }, - { - l: '0.4', - x: 9.0957, - y: 13.3077, - }, - { - l: '0.4', - x: 9.179, - y: 13.3272, - }, - { - l: '0.4', - x: 9.2623, - y: 13.3494, - }, - { - l: '0.4', - x: 9.3457, - y: 13.3714, - }, - { - l: '0.4', - x: 9.429, - y: 13.3918, - }, - { - l: '0.4', - x: 9.5123, - y: 13.415, - }, - { - l: '0.4', - x: 9.5957, - y: 13.4378, - }, - { - l: '0.4', - x: 9.679, - y: 13.4588, - }, - { - l: '0.4', - x: 9.7623, - y: 13.4827, - }, - { - l: '0.4', - x: 9.8457, - y: 13.5063, - }, - { - l: '0.4', - x: 9.929, - y: 13.5281, - }, - { - l: '0.4', - x: 10.0123, - y: 13.5528, - }, - { - l: '0.4', - x: 10.0957, - y: 13.577, - }, - { - l: '0.4', - x: 10.179, - y: 13.5994, - }, - { - l: '0.4', - x: 10.2623, - y: 13.6248, - }, - { - l: '0.4', - x: 10.3457, - y: 13.6498, - }, - { - l: '0.4', - x: 10.429, - y: 13.6728, - }, - { - l: '0.4', - x: 10.5123, - y: 13.699, - }, - { - l: '0.4', - x: 10.5957, - y: 13.7246, - }, - { - l: '0.4', - x: 10.679, - y: 13.7483, - }, - { - l: '0.4', - x: 10.7623, - y: 13.775, - }, - { - l: '0.4', - x: 10.8457, - y: 13.8013, - }, - { - l: '0.4', - x: 10.929, - y: 13.8255, - }, - { - l: '0.4', - x: 11.0123, - y: 13.8528, - }, - { - l: '0.4', - x: 11.0957, - y: 13.8797, - }, - { - l: '0.4', - x: 11.179, - y: 13.9044, - }, - { - l: '0.4', - x: 11.2623, - y: 13.9323, - }, - { - l: '0.4', - x: 11.3457, - y: 13.9596, - }, - { - l: '0.4', - x: 11.429, - y: 13.9848, - }, - { - l: '0.4', - x: 11.5123, - y: 14.0131, - }, - { - l: '0.4', - x: 11.5957, - y: 14.0409, - }, - { - l: '0.4', - x: 11.679, - y: 14.0665, - }, - { - l: '0.4', - x: 11.7623, - y: 14.0953, - }, - { - l: '0.4', - x: 11.8457, - y: 14.1234, - }, - { - l: '0.4', - x: 11.929, - y: 14.1493, - }, - { - l: '0.4', - x: 12.0123, - y: 14.1785, - }, - { - l: '0.4', - x: 12.0957, - y: 14.207, - }, - { - l: '0.4', - x: 12.179, - y: 14.2332, - }, - { - l: '0.4', - x: 12.2623, - y: 14.2626, - }, - { - l: '0.4', - x: 12.3457, - y: 14.2915, - }, - { - l: '0.4', - x: 12.429, - y: 14.3179, - }, - { - l: '0.4', - x: 12.5123, - y: 14.3476, - }, - { - l: '0.4', - x: 12.5957, - y: 14.3766, - }, - { - l: '0.4', - x: 12.679, - y: 14.4033, - }, - { - l: '0.4', - x: 12.7623, - y: 14.4332, - }, - { - l: '0.4', - x: 12.8457, - y: 14.4624, - }, - { - l: '0.4', - x: 12.929, - y: 14.4891, - }, - { - l: '0.4', - x: 13.0123, - y: 14.5191, - }, - { - l: '0.4', - x: 13.0957, - y: 14.5484, - }, - { - l: '0.4', - x: 13.179, - y: 14.5752, - }, - { - l: '0.4', - x: 13.2623, - y: 14.6053, - }, - { - l: '0.4', - x: 13.3457, - y: 14.6347, - }, - { - l: '0.4', - x: 13.429, - y: 14.6615, - }, - { - l: '0.4', - x: 13.5123, - y: 14.6916, - }, - { - l: '0.4', - x: 13.5957, - y: 14.7209, - }, - { - l: '0.4', - x: 13.679, - y: 14.7478, - }, - { - l: '0.4', - x: 13.7623, - y: 14.7778, - }, - { - l: '0.4', - x: 13.8457, - y: 14.8071, - }, - { - l: '0.4', - x: 13.929, - y: 14.8338, - }, - { - l: '0.4', - x: 14.0123, - y: 14.8638, - }, - { - l: '0.4', - x: 14.0957, - y: 14.8929, - }, - { - l: '0.4', - x: 14.179, - y: 14.9195, - }, - { - l: '0.4', - x: 14.2623, - y: 14.9493, - }, - { - l: '0.4', - x: 14.3457, - y: 14.9783, - }, - { - l: '0.4', - x: 14.429, - y: 15.0048, - }, - { - l: '0.4', - x: 14.5123, - y: 15.0344, - }, - { - l: '0.4', - x: 14.5957, - y: 15.0631, - }, - { - l: '0.4', - x: 14.679, - y: 15.0894, - }, - { - l: '0.4', - x: 14.7623, - y: 15.1188, - }, - { - l: '0.4', - x: 14.8457, - y: 15.1474, - }, - { - l: '0.4', - x: 14.929, - y: 15.1734, - }, - { - l: '0.4', - x: 15.0123, - y: 15.2026, - }, - { - l: '0.4', - x: 15.0957, - y: 15.2309, - }, - { - l: '0.4', - x: 15.179, - y: 15.2567, - }, - { - l: '0.4', - x: 15.2623, - y: 15.2856, - }, - { - l: '0.4', - x: 15.3457, - y: 15.3137, - }, - { - l: '0.4', - x: 15.429, - y: 15.3392, - }, - { - l: '0.4', - x: 15.5123, - y: 15.3679, - }, - { - l: '0.4', - x: 15.5957, - y: 15.3957, - }, - { - l: '0.4', - x: 15.679, - y: 15.421, - }, - { - l: '0.4', - x: 15.7623, - y: 15.4493, - }, - { - l: '0.4', - x: 15.8457, - y: 15.4768, - }, - { - l: '0.4', - x: 15.929, - y: 15.5019, - }, - { - l: '0.4', - x: 16.0123, - y: 15.53, - }, - { - l: '0.4', - x: 16.0957, - y: 15.5572, - }, - { - l: '0.4', - x: 16.179, - y: 15.5819, - }, - { - l: '0.4', - x: 16.2623, - y: 15.6097, - }, - { - l: '0.4', - x: 16.3457, - y: 15.6366, - }, - { - l: '0.4', - x: 16.429, - y: 15.6611, - }, - { - l: '0.4', - x: 16.5123, - y: 15.6885, - }, - { - l: '0.4', - x: 16.5957, - y: 15.7151, - }, - { - l: '0.4', - x: 16.679, - y: 15.7394, - }, - { - l: '0.4', - x: 16.7623, - y: 15.7664, - }, - { - l: '0.4', - x: 16.8457, - y: 15.7927, - }, - { - l: '0.4', - x: 16.929, - y: 15.8167, - }, - { - l: '0.4', - x: 17.0123, - y: 15.8435, - }, - { - l: '0.4', - x: 17.0957, - y: 15.8695, - }, - { - l: '0.4', - x: 17.179, - y: 15.8932, - }, - { - l: '0.4', - x: 17.2623, - y: 15.9197, - }, - { - l: '0.4', - x: 17.3457, - y: 15.9453, - }, - { - l: '0.4', - x: 17.429, - y: 15.9688, - }, - { - l: '0.4', - x: 17.5123, - y: 15.9949, - }, - { - l: '0.4', - x: 17.5957, - y: 16.0203, - }, - { - l: '0.4', - x: 17.679, - y: 16.0434, - }, - { - l: '0.4', - x: 17.7623, - y: 16.0694, - }, - { - l: '0.4', - x: 17.8457, - y: 16.0945, - }, - { - l: '0.4', - x: 17.929, - y: 16.1173, - }, - { - l: '0.4', - x: 18.0123, - y: 16.1429, - }, - { - l: '0.4', - x: 18.0957, - y: 16.1677, - }, - { - l: '0.4', - x: 18.179, - y: 16.1903, - }, - { - l: '0.4', - x: 18.2623, - y: 16.2156, - }, - { - l: '0.4', - x: 18.3457, - y: 16.2401, - }, - { - l: '0.4', - x: 18.429, - y: 16.2624, - }, - { - l: '0.4', - x: 18.5123, - y: 16.2875, - }, - { - l: '0.4', - x: 18.5957, - y: 16.3117, - }, - { - l: '0.4', - x: 18.679, - y: 16.3338, - }, - { - l: '0.4', - x: 18.7623, - y: 16.3585, - }, - { - l: '0.4', - x: 18.8457, - y: null, - }, + { l: 0.4, x: 0, y: 8.4526 }, + { l: 0.4, x: 0.08, y: 9.6165 }, + { l: 0.4, x: 0.17, y: 10.4126 }, + { l: 0.4, x: 0.25, y: 11.0259 }, + { l: 0.4, x: 0.33, y: 11.513 }, + { l: 0.4, x: 0.42, y: 11.9006 }, + { l: 0.4, x: 0.5, y: 12.2074 }, + { l: 0.4, x: 0.58, y: 12.4476 }, + { l: 0.4, x: 0.67, y: 12.6333 }, + { l: 0.4, x: 0.75, y: 12.7757 }, + { l: 0.4, x: 0.83, y: 12.8847 }, + { l: 0.4, x: 0.92, y: 12.9685 }, + { l: 0.4, x: 1, y: 13.0329 }, + { l: 0.4, x: 1.08, y: 13.0824 }, + { l: 0.4, x: 1.17, y: 13.1204 }, + { l: 0.4, x: 1.25, y: 13.1491 }, + { l: 0.4, x: 1.33, y: 13.1707 }, + { l: 0.4, x: 1.42, y: 13.1865 }, + { l: 0.4, x: 1.5, y: 13.1976 }, + { l: 0.4, x: 1.58, y: 13.205 }, + { l: 0.4, x: 1.67, y: 13.2091 }, + { l: 0.4, x: 1.75, y: 13.2103 }, + { l: 0.4, x: 1.83, y: 13.2088 }, + { l: 0.4, x: 1.92, y: 13.2053 }, + { l: 0.4, x: 2, y: 13.1999 }, + { l: 0.4, x: 2.08, y: 13.1928 }, + { l: 0.4, x: 2.17, y: 13.184 }, + { l: 0.4, x: 2.25, y: 13.1737 }, + { l: 0.4, x: 2.33, y: 13.1619 }, + { l: 0.4, x: 2.42, y: 13.1488 }, + { l: 0.4, x: 2.5, y: 13.1348 }, + { l: 0.4, x: 2.58, y: 13.1203 }, + { l: 0.4, x: 2.67, y: 13.1053 }, + { l: 0.4, x: 2.75, y: 13.0904 }, + { l: 0.4, x: 2.83, y: 13.0754 }, + { l: 0.4, x: 2.92, y: 13.0606 }, + { l: 0.4, x: 3, y: 13.0462 }, + { l: 0.4, x: 3.08, y: 13.0323 }, + { l: 0.4, x: 3.17, y: 13.0188 }, + { l: 0.4, x: 3.25, y: 13.0059 }, + { l: 0.4, x: 3.33, y: 12.9934 }, + { l: 0.4, x: 3.42, y: 12.9813 }, + { l: 0.4, x: 3.5, y: 12.9696 }, + { l: 0.4, x: 3.58, y: 12.9584 }, + { l: 0.4, x: 3.67, y: 12.9475 }, + { l: 0.4, x: 3.75, y: 12.937 }, + { l: 0.4, x: 3.83, y: 12.927 }, + { l: 0.4, x: 3.92, y: 12.9173 }, + { l: 0.4, x: 4, y: 12.908 }, + { l: 0.4, x: 4.08, y: 12.8991 }, + { l: 0.4, x: 4.17, y: 12.8906 }, + { l: 0.4, x: 4.25, y: 12.8825 }, + { l: 0.4, x: 4.33, y: 12.8747 }, + { l: 0.4, x: 4.42, y: 12.8673 }, + { l: 0.4, x: 4.5, y: 12.8604 }, + { l: 0.4, x: 4.58, y: 12.8538 }, + { l: 0.4, x: 4.67, y: 12.8478 }, + { l: 0.4, x: 4.75, y: 12.8421 }, + { l: 0.4, x: 4.83, y: 12.8371 }, + { l: 0.4, x: 4.92, y: 12.8325 }, + { l: 0.4, x: 5, y: 12.8285 }, + { l: 0.4, x: 5.08, y: 12.8251 }, + { l: 0.4, x: 5.17, y: 12.8224 }, + { l: 0.4, x: 5.25, y: 12.8202 }, + { l: 0.4, x: 5.33, y: 12.8186 }, + { l: 0.4, x: 5.42, y: 12.8178 }, + { l: 0.4, x: 5.5, y: 12.8176 }, + { l: 0.4, x: 5.58, y: 12.8179 }, + { l: 0.4, x: 5.67, y: 12.8188 }, + { l: 0.4, x: 5.75, y: 12.8204 }, + { l: 0.4, x: 5.83, y: 12.8225 }, + { l: 0.4, x: 5.92, y: 12.8253 }, + { l: 0.4, x: 6, y: 12.8287 }, + { l: 0.4, x: 6.08, y: 12.8327 }, + { l: 0.4, x: 6.17, y: 12.8374 }, + { l: 0.4, x: 6.25, y: 12.8427 }, + { l: 0.4, x: 6.33, y: 12.8486 }, + { l: 0.4, x: 6.42, y: 12.8552 }, + { l: 0.4, x: 6.5, y: 12.8624 }, + { l: 0.4, x: 6.58, y: 12.8702 }, + { l: 0.4, x: 6.67, y: 12.8785 }, + { l: 0.4, x: 6.75, y: 12.8875 }, + { l: 0.4, x: 6.83, y: 12.897 }, + { l: 0.4, x: 6.92, y: 12.9071 }, + { l: 0.4, x: 7, y: 12.9177 }, + { l: 0.4, x: 7.08, y: 12.9288 }, + { l: 0.4, x: 7.17, y: 12.9404 }, + { l: 0.4, x: 7.25, y: 12.9525 }, + { l: 0.4, x: 7.33, y: 12.965 }, + { l: 0.4, x: 7.42, y: 12.9781 }, + { l: 0.4, x: 7.5, y: 12.9916 }, + { l: 0.4, x: 7.58, y: 13.0056 }, + { l: 0.4, x: 7.67, y: 13.02 }, + { l: 0.4, x: 7.75, y: 13.0348 }, + { l: 0.4, x: 7.83, y: 13.0501 }, + { l: 0.4, x: 7.92, y: 13.0658 }, + { l: 0.4, x: 8, y: 13.0819 }, + { l: 0.4, x: 8.08, y: 13.0983 }, + { l: 0.4, x: 8.17, y: 13.1152 }, + { l: 0.4, x: 8.25, y: 13.1324 }, + { l: 0.4, x: 8.33, y: 13.1501 }, + { l: 0.4, x: 8.42, y: 13.168 }, + { l: 0.4, x: 8.5, y: 13.1863 }, + { l: 0.4, x: 8.58, y: 13.2051 }, + { l: 0.4, x: 8.67, y: 13.2241 }, + { l: 0.4, x: 8.75, y: 13.2434 }, + { l: 0.4, x: 8.83, y: 13.2631 }, + { l: 0.4, x: 8.92, y: 13.2831 }, + { l: 0.4, x: 9, y: 13.3034 }, + { l: 0.4, x: 9.08, y: 13.3241 }, + { l: 0.4, x: 9.17, y: 13.345 }, + { l: 0.4, x: 9.25, y: 13.3663 }, + { l: 0.4, x: 9.33, y: 13.3878 }, + { l: 0.4, x: 9.42, y: 13.4096 }, + { l: 0.4, x: 9.5, y: 13.4317 }, + { l: 0.4, x: 9.58, y: 13.4541 }, + { l: 0.4, x: 9.67, y: 13.4767 }, + { l: 0.4, x: 9.75, y: 13.4995 }, + { l: 0.4, x: 9.83, y: 13.5226 }, + { l: 0.4, x: 9.92, y: 13.5459 }, + { l: 0.4, x: 10, y: 13.5695 }, + { l: 0.4, x: 10.08, y: 13.5933 }, + { l: 0.4, x: 10.17, y: 13.6174 }, + { l: 0.4, x: 10.25, y: 13.6416 }, + { l: 0.4, x: 10.33, y: 13.6661 }, + { l: 0.4, x: 10.42, y: 13.6908 }, + { l: 0.4, x: 10.5, y: 13.7158 }, + { l: 0.4, x: 10.58, y: 13.7409 }, + { l: 0.4, x: 10.67, y: 13.7663 }, + { l: 0.4, x: 10.75, y: 13.7918 }, + { l: 0.4, x: 10.83, y: 13.8175 }, + { l: 0.4, x: 10.92, y: 13.8435 }, + { l: 0.4, x: 11, y: 13.8696 }, + { l: 0.4, x: 11.08, y: 13.896 }, + { l: 0.4, x: 11.17, y: 13.9225 }, + { l: 0.4, x: 11.25, y: 13.9491 }, + { l: 0.4, x: 11.33, y: 13.9759 }, + { l: 0.4, x: 11.42, y: 14.0029 }, + { l: 0.4, x: 11.5, y: 14.03 }, + { l: 0.4, x: 11.58, y: 14.0573 }, + { l: 0.4, x: 11.67, y: 14.0847 }, + { l: 0.4, x: 11.75, y: 14.1122 }, + { l: 0.4, x: 11.83, y: 14.1398 }, + { l: 0.4, x: 11.92, y: 14.1676 }, + { l: 0.4, x: 12, y: 14.1954 }, + { l: 0.4, x: 12.08, y: 14.2235 }, + { l: 0.4, x: 12.17, y: 14.2516 }, + { l: 0.4, x: 12.25, y: 14.2797 }, + { l: 0.4, x: 12.33, y: 14.308 }, + { l: 0.4, x: 12.42, y: 14.3363 }, + { l: 0.4, x: 12.5, y: 14.3647 }, + { l: 0.4, x: 12.58, y: 14.3932 }, + { l: 0.4, x: 12.67, y: 14.4218 }, + { l: 0.4, x: 12.75, y: 14.4504 }, + { l: 0.4, x: 12.83, y: 14.479 }, + { l: 0.4, x: 12.92, y: 14.5077 }, + { l: 0.4, x: 13, y: 14.5364 }, + { l: 0.4, x: 13.08, y: 14.5652 }, + { l: 0.4, x: 13.17, y: 14.5939 }, + { l: 0.4, x: 13.25, y: 14.6227 }, + { l: 0.4, x: 13.33, y: 14.6515 }, + { l: 0.4, x: 13.42, y: 14.6804 }, + { l: 0.4, x: 13.5, y: 14.7091 }, + { l: 0.4, x: 13.58, y: 14.7379 }, + { l: 0.4, x: 13.67, y: 14.7667 }, + { l: 0.4, x: 13.75, y: 14.7954 }, + { l: 0.4, x: 13.83, y: 14.8241 }, + { l: 0.4, x: 13.92, y: 14.8528 }, + { l: 0.4, x: 14, y: 14.8815 }, + { l: 0.4, x: 14.08, y: 14.9101 }, + { l: 0.4, x: 14.17, y: 14.9386 }, + { l: 0.4, x: 14.25, y: 14.9672 }, + { l: 0.4, x: 14.33, y: 14.9956 }, + { l: 0.4, x: 14.42, y: 15.0241 }, + { l: 0.4, x: 14.5, y: 15.0524 }, + { l: 0.4, x: 14.58, y: 15.0806 }, + { l: 0.4, x: 14.67, y: 15.1088 }, + { l: 0.4, x: 14.75, y: 15.1369 }, + { l: 0.4, x: 14.83, y: 15.165 }, + { l: 0.4, x: 14.92, y: 15.193 }, + { l: 0.4, x: 15, y: 15.2208 }, + { l: 0.4, x: 15.08, y: 15.2487 }, + { l: 0.4, x: 15.17, y: 15.2764 }, + { l: 0.4, x: 15.25, y: 15.304 }, + { l: 0.4, x: 15.33, y: 15.3316 }, + { l: 0.4, x: 15.42, y: 15.359 }, + { l: 0.4, x: 15.5, y: 15.3865 }, + { l: 0.4, x: 15.58, y: 15.4138 }, + { l: 0.4, x: 15.67, y: 15.4409 }, + { l: 0.4, x: 15.75, y: 15.468 }, + { l: 0.4, x: 15.83, y: 15.495 }, + { l: 0.4, x: 15.92, y: 15.5219 }, + { l: 0.4, x: 16, y: 15.5488 }, + { l: 0.4, x: 16.08, y: 15.5755 }, + { l: 0.4, x: 16.17, y: 15.6021 }, + { l: 0.4, x: 16.25, y: 15.6287 }, + { l: 0.4, x: 16.33, y: 15.6551 }, + { l: 0.4, x: 16.42, y: 15.6814 }, + { l: 0.4, x: 16.5, y: 15.7076 }, + { l: 0.4, x: 16.58, y: 15.7337 }, + { l: 0.4, x: 16.67, y: 15.7598 }, + { l: 0.4, x: 16.75, y: 15.7857 }, + { l: 0.4, x: 16.83, y: 15.8115 }, + { l: 0.4, x: 16.92, y: 15.8373 }, + { l: 0.4, x: 17, y: 15.8629 }, + { l: 0.4, x: 17.08, y: 15.8884 }, + { l: 0.4, x: 17.17, y: 15.9138 }, + { l: 0.4, x: 17.25, y: 15.9392 }, + { l: 0.4, x: 17.33, y: 15.9644 }, + { l: 0.4, x: 17.42, y: 15.9895 }, + { l: 0.4, x: 17.5, y: 16.0146 }, + { l: 0.4, x: 17.58, y: 16.0395 }, + { l: 0.4, x: 17.67, y: 16.0643 }, + { l: 0.4, x: 17.75, y: 16.0891 }, + { l: 0.4, x: 17.83, y: 16.1138 }, + { l: 0.4, x: 17.92, y: 16.1383 }, + { l: 0.4, x: 18, y: 16.1628 }, + { l: 0.4, x: 18.08, y: 16.1871 }, + { l: 0.4, x: 18.17, y: 16.2114 }, + { l: 0.4, x: 18.25, y: 16.2356 }, + { l: 0.4, x: 18.33, y: 16.2597 }, + { l: 0.4, x: 18.42, y: 16.2836 }, + { l: 0.4, x: 18.5, y: 16.3076 }, + { l: 0.4, x: 18.58, y: 16.3314 }, + { l: 0.4, x: 18.67, y: 16.3551 }, + { l: 0.4, x: 18.75, y: 16.3787 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 0.0, - y: 9.3435, - }, - { - l: '2.0', - x: 0.0192, - y: 9.6238, - }, - { - l: '2.0', - x: 0.0383, - y: 9.9062, - }, - { - l: '2.0', - x: 0.0575, - y: 10.1908, - }, - { - l: '2.0', - x: 0.0767, - y: 10.4775, - }, - { - l: '2.0', - x: 0.0958, - y: 10.6987, - }, - { - l: '2.0', - x: 0.115, - y: 10.8856, - }, - { - l: '2.0', - x: 0.1342, - y: 11.0545, - }, - { - l: '2.0', - x: 0.1533, - y: 11.2102, - }, - { - l: '2.0', - x: 0.1725, - y: 11.3596, - }, - { - l: '2.0', - x: 0.1916, - y: 11.5187, - }, - { - l: '2.0', - x: 0.2108, - y: 11.672, - }, - { - l: '2.0', - x: 0.23, - y: 11.819, - }, - { - l: '2.0', - x: 0.2491, - y: 11.9592, - }, - { - l: '2.0', - x: 0.2683, - y: 12.091, - }, - { - l: '2.0', - x: 0.2875, - y: 12.2153, - }, - { - l: '2.0', - x: 0.3066, - y: 12.332, - }, - { - l: '2.0', - x: 0.3258, - y: 12.4409, - }, - { - l: '2.0', - x: 0.345, - y: 12.5384, - }, - { - l: '2.0', - x: 0.3641, - y: 12.6277, - }, - { - l: '2.0', - x: 0.3833, - y: 12.7112, - }, - { - l: '2.0', - x: 0.4025, - y: 12.7903, - }, - { - l: '2.0', - x: 0.4216, - y: 12.8667, - }, - { - l: '2.0', - x: 0.4408, - y: 12.9461, - }, - { - l: '2.0', - x: 0.46, - y: 13.0229, - }, - { - l: '2.0', - x: 0.4791, - y: 13.0965, - }, - { - l: '2.0', - x: 0.4983, - y: 13.1667, - }, - { - l: '2.0', - x: 0.5175, - y: 13.232, - }, - { - l: '2.0', - x: 0.5366, - y: 13.2932, - }, - { - l: '2.0', - x: 0.5558, - y: 13.3504, - }, - { - l: '2.0', - x: 0.5749, - y: 13.4034, - }, - { - l: '2.0', - x: 0.5941, - y: 13.4506, - }, - { - l: '2.0', - x: 0.6133, - y: 13.4935, - }, - { - l: '2.0', - x: 0.6324, - y: 13.5332, - }, - { - l: '2.0', - x: 0.6516, - y: 13.5704, - }, - { - l: '2.0', - x: 0.6708, - y: 13.6059, - }, - { - l: '2.0', - x: 0.6899, - y: 13.6425, - }, - { - l: '2.0', - x: 0.7091, - y: 13.6777, - }, - { - l: '2.0', - x: 0.7283, - y: 13.7113, - }, - { - l: '2.0', - x: 0.7474, - y: 13.743, - }, - { - l: '2.0', - x: 0.7666, - y: 13.7724, - }, - { - l: '2.0', - x: 0.7858, - y: 13.7997, - }, - { - l: '2.0', - x: 0.8049, - y: 13.8251, - }, - { - l: '2.0', - x: 0.8241, - y: 13.8486, - }, - { - l: '2.0', - x: 0.8433, - y: 13.8696, - }, - { - l: '2.0', - x: 0.8624, - y: 13.8885, - }, - { - l: '2.0', - x: 0.8816, - y: 13.9059, - }, - { - l: '2.0', - x: 0.9008, - y: 13.9223, - }, - { - l: '2.0', - x: 0.9199, - y: 13.9378, - }, - { - l: '2.0', - x: 0.9391, - y: 13.9539, - }, - { - l: '2.0', - x: 0.9582, - y: 13.9693, - }, - { - l: '2.0', - x: 0.9774, - y: 13.9841, - }, - { - l: '2.0', - x: 0.9966, - y: 13.998, - }, - { - l: '2.0', - x: 1.0157, - y: 14.0109, - }, - { - l: '2.0', - x: 1.0349, - y: 14.0229, - }, - { - l: '2.0', - x: 1.0541, - y: 14.0341, - }, - { - l: '2.0', - x: 1.0732, - y: 14.0443, - }, - { - l: '2.0', - x: 1.0924, - y: 14.0535, - }, - { - l: '2.0', - x: 1.1116, - y: 14.0618, - }, - { - l: '2.0', - x: 1.1307, - y: 14.0693, - }, - { - l: '2.0', - x: 1.1499, - y: 14.0764, - }, - { - l: '2.0', - x: 1.1691, - y: 14.083, - }, - { - l: '2.0', - x: 1.1882, - y: 14.0898, - }, - { - l: '2.0', - x: 1.2074, - y: 14.0963, - }, - { - l: '2.0', - x: 1.2266, - y: 14.1025, - }, - { - l: '2.0', - x: 1.2457, - y: 14.1083, - }, - { - l: '2.0', - x: 1.2649, - y: 14.1136, - }, - { - l: '2.0', - x: 1.2841, - y: 14.1184, - }, - { - l: '2.0', - x: 1.3032, - y: 14.1229, - }, - { - l: '2.0', - x: 1.3224, - y: 14.127, - }, - { - l: '2.0', - x: 1.3415, - y: 14.1305, - }, - { - l: '2.0', - x: 1.3607, - y: 14.1337, - }, - { - l: '2.0', - x: 1.3799, - y: 14.1365, - }, - { - l: '2.0', - x: 1.399, - y: 14.1391, - }, - { - l: '2.0', - x: 1.4182, - y: 14.1414, - }, - { - l: '2.0', - x: 1.4374, - y: 14.1438, - }, - { - l: '2.0', - x: 1.4565, - y: 14.146, - }, - { - l: '2.0', - x: 1.4757, - y: 14.148, - }, - { - l: '2.0', - x: 1.4949, - y: 14.1498, - }, - { - l: '2.0', - x: 1.514, - y: 14.1514, - }, - { - l: '2.0', - x: 1.5332, - y: 14.1527, - }, - { - l: '2.0', - x: 1.5524, - y: 14.1539, - }, - { - l: '2.0', - x: 1.5715, - y: 14.1548, - }, - { - l: '2.0', - x: 1.5907, - y: 14.1556, - }, - { - l: '2.0', - x: 1.6099, - y: 14.1562, - }, - { - l: '2.0', - x: 1.629, - y: 14.1566, - }, - { - l: '2.0', - x: 1.6482, - y: 14.1568, - }, - { - l: '2.0', - x: 1.6674, - y: 14.1569, - }, - { - l: '2.0', - x: 1.6865, - y: 14.1569, - }, - { - l: '2.0', - x: 1.7057, - y: 14.1567, - }, - { - l: '2.0', - x: 1.7248, - y: 14.1564, - }, - { - l: '2.0', - x: 1.744, - y: 14.156, - }, - { - l: '2.0', - x: 1.7632, - y: 14.1554, - }, - { - l: '2.0', - x: 1.7823, - y: 14.1546, - }, - { - l: '2.0', - x: 1.8015, - y: 14.1538, - }, - { - l: '2.0', - x: 1.8207, - y: 14.1528, - }, - { - l: '2.0', - x: 1.8398, - y: 14.1518, - }, - { - l: '2.0', - x: 1.859, - y: 14.1508, - }, - { - l: '2.0', - x: 1.8782, - y: 14.1496, - }, - { - l: '2.0', - x: 1.8973, - y: 14.1484, - }, - { - l: '2.0', - x: 1.9165, - y: 14.147, - }, - { - l: '2.0', - x: 1.9357, - y: 14.1455, - }, - { - l: '2.0', - x: 1.9548, - y: 14.1439, - }, - { - l: '2.0', - x: 1.974, - y: 14.1421, - }, - { - l: '2.0', - x: 1.9932, - y: 14.1402, - }, - { - l: '2.0', - x: 2.0123, - y: 14.1382, - }, - { - l: '2.0', - x: 2.0957, - y: 14.1289, - }, - { - l: '2.0', - x: 2.179, - y: 14.1189, - }, - { - l: '2.0', - x: 2.2623, - y: 14.1062, - }, - { - l: '2.0', - x: 2.3457, - y: 14.0923, - }, - { - l: '2.0', - x: 2.429, - y: 14.0785, - }, - { - l: '2.0', - x: 2.5123, - y: 14.0622, - }, - { - l: '2.0', - x: 2.5957, - y: 14.0458, - }, - { - l: '2.0', - x: 2.679, - y: 14.0305, - }, - { - l: '2.0', - x: 2.7623, - y: 14.0134, - }, - { - l: '2.0', - x: 2.8457, - y: 13.9967, - }, - { - l: '2.0', - x: 2.929, - y: 13.9818, - }, - { - l: '2.0', - x: 3.0123, - y: 13.9655, - }, - { - l: '2.0', - x: 3.0957, - y: 13.9501, - }, - { - l: '2.0', - x: 3.179, - y: 13.9364, - }, - { - l: '2.0', - x: 3.2623, - y: 13.9218, - }, - { - l: '2.0', - x: 3.3457, - y: 13.9079, - }, - { - l: '2.0', - x: 3.429, - y: 13.8956, - }, - { - l: '2.0', - x: 3.5123, - y: 13.8823, - }, - { - l: '2.0', - x: 3.5957, - y: 13.8698, - }, - { - l: '2.0', - x: 3.679, - y: 13.8589, - }, - { - l: '2.0', - x: 3.7623, - y: 13.8469, - }, - { - l: '2.0', - x: 3.8457, - y: 13.8358, - }, - { - l: '2.0', - x: 3.929, - y: 13.826, - }, - { - l: '2.0', - x: 4.0123, - y: 13.8155, - }, - { - l: '2.0', - x: 4.0957, - y: 13.8057, - }, - { - l: '2.0', - x: 4.179, - y: 13.7972, - }, - { - l: '2.0', - x: 4.2623, - y: 13.7881, - }, - { - l: '2.0', - x: 4.3457, - y: 13.7796, - }, - { - l: '2.0', - x: 4.429, - y: 13.7723, - }, - { - l: '2.0', - x: 4.5123, - y: 13.7645, - }, - { - l: '2.0', - x: 4.5957, - y: 13.7575, - }, - { - l: '2.0', - x: 4.679, - y: 13.7516, - }, - { - l: '2.0', - x: 4.7623, - y: 13.7455, - }, - { - l: '2.0', - x: 4.8457, - y: 13.7402, - }, - { - l: '2.0', - x: 4.929, - y: 13.7359, - }, - { - l: '2.0', - x: 5.0123, - y: 13.7316, - }, - { - l: '2.0', - x: 5.0957, - y: 13.7282, - }, - { - l: '2.0', - x: 5.179, - y: 13.7258, - }, - { - l: '2.0', - x: 5.2623, - y: 13.7237, - }, - { - l: '2.0', - x: 5.3457, - y: 13.7224, - }, - { - l: '2.0', - x: 5.429, - y: 13.7218, - }, - { - l: '2.0', - x: 5.5123, - y: 13.722, - }, - { - l: '2.0', - x: 5.5957, - y: 13.7228, - }, - { - l: '2.0', - x: 5.679, - y: 13.7241, - }, - { - l: '2.0', - x: 5.7623, - y: 13.7263, - }, - { - l: '2.0', - x: 5.8457, - y: 13.7292, - }, - { - l: '2.0', - x: 5.929, - y: 13.7324, - }, - { - l: '2.0', - x: 6.0123, - y: 13.7368, - }, - { - l: '2.0', - x: 6.0957, - y: 13.7417, - }, - { - l: '2.0', - x: 6.179, - y: 13.7469, - }, - { - l: '2.0', - x: 6.2623, - y: 13.7534, - }, - { - l: '2.0', - x: 6.3457, - y: 13.7604, - }, - { - l: '2.0', - x: 6.429, - y: 13.7675, - }, - { - l: '2.0', - x: 6.5123, - y: 13.7762, - }, - { - l: '2.0', - x: 6.5957, - y: 13.7853, - }, - { - l: '2.0', - x: 6.679, - y: 13.7942, - }, - { - l: '2.0', - x: 6.7623, - y: 13.8049, - }, - { - l: '2.0', - x: 6.8457, - y: 13.8159, - }, - { - l: '2.0', - x: 6.929, - y: 13.8266, - }, - { - l: '2.0', - x: 7.0123, - y: 13.8391, - }, - { - l: '2.0', - x: 7.0957, - y: 13.8519, - }, - { - l: '2.0', - x: 7.179, - y: 13.8641, - }, - { - l: '2.0', - x: 7.2623, - y: 13.8783, - }, - { - l: '2.0', - x: 7.3457, - y: 13.8926, - }, - { - l: '2.0', - x: 7.429, - y: 13.9063, - }, - { - l: '2.0', - x: 7.5123, - y: 13.9221, - }, - { - l: '2.0', - x: 7.5957, - y: 13.938, - }, - { - l: '2.0', - x: 7.679, - y: 13.953, - }, - { - l: '2.0', - x: 7.7623, - y: 13.9703, - }, - { - l: '2.0', - x: 7.8457, - y: 13.9876, - }, - { - l: '2.0', - x: 7.929, - y: 14.0039, - }, - { - l: '2.0', - x: 8.0123, - y: 14.0226, - }, - { - l: '2.0', - x: 8.0957, - y: 14.0412, - }, - { - l: '2.0', - x: 8.179, - y: 14.0586, - }, - { - l: '2.0', - x: 8.2623, - y: 14.0785, - }, - { - l: '2.0', - x: 8.3457, - y: 14.0984, - }, - { - l: '2.0', - x: 8.429, - y: 14.1169, - }, - { - l: '2.0', - x: 8.5123, - y: 14.138, - }, - { - l: '2.0', - x: 8.5957, - y: 14.159, - }, - { - l: '2.0', - x: 8.679, - y: 14.1786, - }, - { - l: '2.0', - x: 8.7623, - y: 14.2008, - }, - { - l: '2.0', - x: 8.8457, - y: 14.2229, - }, - { - l: '2.0', - x: 8.929, - y: 14.2433, - }, - { - l: '2.0', - x: 9.0123, - y: 14.2667, - }, - { - l: '2.0', - x: 9.0957, - y: 14.2898, - }, - { - l: '2.0', - x: 9.179, - y: 14.3111, - }, - { - l: '2.0', - x: 9.2623, - y: 14.3354, - }, - { - l: '2.0', - x: 9.3457, - y: 14.3594, - }, - { - l: '2.0', - x: 9.429, - y: 14.3817, - }, - { - l: '2.0', - x: 9.5123, - y: 14.4069, - }, - { - l: '2.0', - x: 9.5957, - y: 14.4318, - }, - { - l: '2.0', - x: 9.679, - y: 14.4547, - }, - { - l: '2.0', - x: 9.7623, - y: 14.4807, - }, - { - l: '2.0', - x: 9.8457, - y: 14.5063, - }, - { - l: '2.0', - x: 9.929, - y: 14.53, - }, - { - l: '2.0', - x: 10.0123, - y: 14.5568, - }, - { - l: '2.0', - x: 10.0957, - y: 14.5832, - }, - { - l: '2.0', - x: 10.179, - y: 14.6075, - }, - { - l: '2.0', - x: 10.2623, - y: 14.6351, - }, - { - l: '2.0', - x: 10.3457, - y: 14.6621, - }, - { - l: '2.0', - x: 10.429, - y: 14.6871, - }, - { - l: '2.0', - x: 10.5123, - y: 14.7154, - }, - { - l: '2.0', - x: 10.5957, - y: 14.7432, - }, - { - l: '2.0', - x: 10.679, - y: 14.7688, - }, - { - l: '2.0', - x: 10.7623, - y: 14.7977, - }, - { - l: '2.0', - x: 10.8457, - y: 14.8261, - }, - { - l: '2.0', - x: 10.929, - y: 14.8523, - }, - { - l: '2.0', - x: 11.0123, - y: 14.8818, - }, - { - l: '2.0', - x: 11.0957, - y: 14.9108, - }, - { - l: '2.0', - x: 11.179, - y: 14.9375, - }, - { - l: '2.0', - x: 11.2623, - y: 14.9676, - }, - { - l: '2.0', - x: 11.3457, - y: 14.997, - }, - { - l: '2.0', - x: 11.429, - y: 15.0241, - }, - { - l: '2.0', - x: 11.5123, - y: 15.0547, - }, - { - l: '2.0', - x: 11.5957, - y: 15.0847, - }, - { - l: '2.0', - x: 11.679, - y: 15.1122, - }, - { - l: '2.0', - x: 11.7623, - y: 15.1432, - }, - { - l: '2.0', - x: 11.8457, - y: 15.1735, - }, - { - l: '2.0', - x: 11.929, - y: 15.2013, - }, - { - l: '2.0', - x: 12.0123, - y: 15.2327, - }, - { - l: '2.0', - x: 12.0957, - y: 15.2634, - }, - { - l: '2.0', - x: 12.179, - y: 15.2916, - }, - { - l: '2.0', - x: 12.2623, - y: 15.3232, - }, - { - l: '2.0', - x: 12.3457, - y: 15.3542, - }, - { - l: '2.0', - x: 12.429, - y: 15.3825, - }, - { - l: '2.0', - x: 12.5123, - y: 15.4145, - }, - { - l: '2.0', - x: 12.5957, - y: 15.4456, - }, - { - l: '2.0', - x: 12.679, - y: 15.4742, - }, - { - l: '2.0', - x: 12.7623, - y: 15.5063, - }, - { - l: '2.0', - x: 12.8457, - y: 15.5376, - }, - { - l: '2.0', - x: 12.929, - y: 15.5663, - }, - { - l: '2.0', - x: 13.0123, - y: 15.5985, - }, - { - l: '2.0', - x: 13.0957, - y: 15.6299, - }, - { - l: '2.0', - x: 13.179, - y: 15.6587, - }, - { - l: '2.0', - x: 13.2623, - y: 15.6909, - }, - { - l: '2.0', - x: 13.3457, - y: 15.7224, - }, - { - l: '2.0', - x: 13.429, - y: 15.7511, - }, - { - l: '2.0', - x: 13.5123, - y: 15.7834, - }, - { - l: '2.0', - x: 13.5957, - y: 15.8148, - }, - { - l: '2.0', - x: 13.679, - y: 15.8435, - }, - { - l: '2.0', - x: 13.7623, - y: 15.8757, - }, - { - l: '2.0', - x: 13.8457, - y: 15.907, - }, - { - l: '2.0', - x: 13.929, - y: 15.9356, - }, - { - l: '2.0', - x: 14.0123, - y: 15.9677, - }, - { - l: '2.0', - x: 14.0957, - y: 15.9988, - }, - { - l: '2.0', - x: 14.179, - y: 16.0273, - }, - { - l: '2.0', - x: 14.2623, - y: 16.0592, - }, - { - l: '2.0', - x: 14.3457, - y: 16.0901, - }, - { - l: '2.0', - x: 14.429, - y: 16.1185, - }, - { - l: '2.0', - x: 14.5123, - y: 16.1501, - }, - { - l: '2.0', - x: 14.5957, - y: 16.1809, - }, - { - l: '2.0', - x: 14.679, - y: 16.2089, - }, - { - l: '2.0', - x: 14.7623, - y: 16.2403, - }, - { - l: '2.0', - x: 14.8457, - y: 16.2709, - }, - { - l: '2.0', - x: 14.929, - y: 16.2987, - }, - { - l: '2.0', - x: 15.0123, - y: 16.3298, - }, - { - l: '2.0', - x: 15.0957, - y: 16.3601, - }, - { - l: '2.0', - x: 15.179, - y: 16.3877, - }, - { - l: '2.0', - x: 15.2623, - y: 16.4185, - }, - { - l: '2.0', - x: 15.3457, - y: 16.4485, - }, - { - l: '2.0', - x: 15.429, - y: 16.4758, - }, - { - l: '2.0', - x: 15.5123, - y: 16.5064, - }, - { - l: '2.0', - x: 15.5957, - y: 16.536, - }, - { - l: '2.0', - x: 15.679, - y: 16.563, - }, - { - l: '2.0', - x: 15.7623, - y: 16.5932, - }, - { - l: '2.0', - x: 15.8457, - y: 16.6225, - }, - { - l: '2.0', - x: 15.929, - y: 16.6493, - }, - { - l: '2.0', - x: 16.0123, - y: 16.6792, - }, - { - l: '2.0', - x: 16.0957, - y: 16.7082, - }, - { - l: '2.0', - x: 16.179, - y: 16.7346, - }, - { - l: '2.0', - x: 16.2623, - y: 16.7642, - }, - { - l: '2.0', - x: 16.3457, - y: 16.7929, - }, - { - l: '2.0', - x: 16.429, - y: 16.819, - }, - { - l: '2.0', - x: 16.5123, - y: 16.8482, - }, - { - l: '2.0', - x: 16.5957, - y: 16.8765, - }, - { - l: '2.0', - x: 16.679, - y: 16.9024, - }, - { - l: '2.0', - x: 16.7623, - y: 16.9312, - }, - { - l: '2.0', - x: 16.8457, - y: 16.9592, - }, - { - l: '2.0', - x: 16.929, - y: 16.9848, - }, - { - l: '2.0', - x: 17.0123, - y: 17.0133, - }, - { - l: '2.0', - x: 17.0957, - y: 17.0409, - }, - { - l: '2.0', - x: 17.179, - y: 17.0662, - }, - { - l: '2.0', - x: 17.2623, - y: 17.0944, - }, - { - l: '2.0', - x: 17.3457, - y: 17.1217, - }, - { - l: '2.0', - x: 17.429, - y: 17.1466, - }, - { - l: '2.0', - x: 17.5123, - y: 17.1745, - }, - { - l: '2.0', - x: 17.5957, - y: 17.2014, - }, - { - l: '2.0', - x: 17.679, - y: 17.2261, - }, - { - l: '2.0', - x: 17.7623, - y: 17.2536, - }, - { - l: '2.0', - x: 17.8457, - y: 17.2803, - }, - { - l: '2.0', - x: 17.929, - y: 17.3046, - }, - { - l: '2.0', - x: 18.0123, - y: 17.3318, - }, - { - l: '2.0', - x: 18.0957, - y: 17.3582, - }, - { - l: '2.0', - x: 18.179, - y: 17.3822, - }, - { - l: '2.0', - x: 18.2623, - y: 17.4091, - }, - { - l: '2.0', - x: 18.3457, - y: 17.4351, - }, - { - l: '2.0', - x: 18.429, - y: 17.4588, - }, - { - l: '2.0', - x: 18.5123, - y: 17.4854, - }, - { - l: '2.0', - x: 18.5957, - y: 17.5112, - }, - { - l: '2.0', - x: 18.679, - y: 17.5347, - }, - { - l: '2.0', - x: 18.7623, - y: 17.5609, - }, - { - l: '2.0', - x: 18.8457, - y: null, - }, + { l: 2.0, x: 0, y: 9.2695 }, + { l: 2.0, x: 0.08, y: 10.4519 }, + { l: 2.0, x: 0.17, y: 11.2615 }, + { l: 2.0, x: 0.25, y: 11.8871 }, + { l: 2.0, x: 0.33, y: 12.3845 }, + { l: 2.0, x: 0.42, y: 12.78 }, + { l: 2.0, x: 0.5, y: 13.0924 }, + { l: 2.0, x: 0.58, y: 13.336 }, + { l: 2.0, x: 0.67, y: 13.5235 }, + { l: 2.0, x: 0.75, y: 13.6662 }, + { l: 2.0, x: 0.83, y: 13.7746 }, + { l: 2.0, x: 0.92, y: 13.857 }, + { l: 2.0, x: 1, y: 13.9197 }, + { l: 2.0, x: 1.08, y: 13.9673 }, + { l: 2.0, x: 1.17, y: 14.003 }, + { l: 2.0, x: 1.25, y: 14.0294 }, + { l: 2.0, x: 1.33, y: 14.0485 }, + { l: 2.0, x: 1.42, y: 14.0619 }, + { l: 2.0, x: 1.5, y: 14.0707 }, + { l: 2.0, x: 1.58, y: 14.0758 }, + { l: 2.0, x: 1.67, y: 14.0777 }, + { l: 2.0, x: 1.75, y: 14.0767 }, + { l: 2.0, x: 1.83, y: 14.0733 }, + { l: 2.0, x: 1.92, y: 14.0679 }, + { l: 2.0, x: 2, y: 14.0608 }, + { l: 2.0, x: 2.08, y: 14.052 }, + { l: 2.0, x: 2.17, y: 14.0416 }, + { l: 2.0, x: 2.25, y: 14.0298 }, + { l: 2.0, x: 2.33, y: 14.0165 }, + { l: 2.0, x: 2.42, y: 14.002 }, + { l: 2.0, x: 2.5, y: 13.9865 }, + { l: 2.0, x: 2.58, y: 13.9707 }, + { l: 2.0, x: 2.67, y: 13.9543 }, + { l: 2.0, x: 2.75, y: 13.938 }, + { l: 2.0, x: 2.83, y: 13.9218 }, + { l: 2.0, x: 2.92, y: 13.9058 }, + { l: 2.0, x: 3, y: 13.8902 }, + { l: 2.0, x: 3.08, y: 13.8751 }, + { l: 2.0, x: 3.17, y: 13.8604 }, + { l: 2.0, x: 3.25, y: 13.8464 }, + { l: 2.0, x: 3.33, y: 13.8328 }, + { l: 2.0, x: 3.42, y: 13.8196 }, + { l: 2.0, x: 3.5, y: 13.8069 }, + { l: 2.0, x: 3.58, y: 13.7946 }, + { l: 2.0, x: 3.67, y: 13.7829 }, + { l: 2.0, x: 3.75, y: 13.7714 }, + { l: 2.0, x: 3.83, y: 13.7605 }, + { l: 2.0, x: 3.92, y: 13.7499 }, + { l: 2.0, x: 4, y: 13.7399 }, + { l: 2.0, x: 4.08, y: 13.7302 }, + { l: 2.0, x: 4.17, y: 13.7211 }, + { l: 2.0, x: 4.25, y: 13.7123 }, + { l: 2.0, x: 4.33, y: 13.7039 }, + { l: 2.0, x: 4.42, y: 13.696 }, + { l: 2.0, x: 4.5, y: 13.6886 }, + { l: 2.0, x: 4.58, y: 13.6816 }, + { l: 2.0, x: 4.67, y: 13.6751 }, + { l: 2.0, x: 4.75, y: 13.6692 }, + { l: 2.0, x: 4.83, y: 13.6639 }, + { l: 2.0, x: 4.92, y: 13.6591 }, + { l: 2.0, x: 5, y: 13.655 }, + { l: 2.0, x: 5.08, y: 13.6515 }, + { l: 2.0, x: 5.17, y: 13.6487 }, + { l: 2.0, x: 5.25, y: 13.6466 }, + { l: 2.0, x: 5.33, y: 13.6451 }, + { l: 2.0, x: 5.42, y: 13.6444 }, + { l: 2.0, x: 5.5, y: 13.6444 }, + { l: 2.0, x: 5.58, y: 13.645 }, + { l: 2.0, x: 5.67, y: 13.6463 }, + { l: 2.0, x: 5.75, y: 13.6482 }, + { l: 2.0, x: 5.83, y: 13.6508 }, + { l: 2.0, x: 5.92, y: 13.654 }, + { l: 2.0, x: 6, y: 13.658 }, + { l: 2.0, x: 6.08, y: 13.6626 }, + { l: 2.0, x: 6.17, y: 13.668 }, + { l: 2.0, x: 6.25, y: 13.674 }, + { l: 2.0, x: 6.33, y: 13.6807 }, + { l: 2.0, x: 6.42, y: 13.688 }, + { l: 2.0, x: 6.5, y: 13.6961 }, + { l: 2.0, x: 6.58, y: 13.7049 }, + { l: 2.0, x: 6.67, y: 13.7142 }, + { l: 2.0, x: 6.75, y: 13.7242 }, + { l: 2.0, x: 6.83, y: 13.7347 }, + { l: 2.0, x: 6.92, y: 13.7459 }, + { l: 2.0, x: 7, y: 13.7577 }, + { l: 2.0, x: 7.08, y: 13.77 }, + { l: 2.0, x: 7.17, y: 13.7828 }, + { l: 2.0, x: 7.25, y: 13.7961 }, + { l: 2.0, x: 7.33, y: 13.81 }, + { l: 2.0, x: 7.42, y: 13.8243 }, + { l: 2.0, x: 7.5, y: 13.8392 }, + { l: 2.0, x: 7.58, y: 13.8546 }, + { l: 2.0, x: 7.67, y: 13.8704 }, + { l: 2.0, x: 7.75, y: 13.8867 }, + { l: 2.0, x: 7.83, y: 13.9034 }, + { l: 2.0, x: 7.92, y: 13.9206 }, + { l: 2.0, x: 8, y: 13.9382 }, + { l: 2.0, x: 8.08, y: 13.9562 }, + { l: 2.0, x: 8.17, y: 13.9746 }, + { l: 2.0, x: 8.25, y: 13.9934 }, + { l: 2.0, x: 8.33, y: 14.0126 }, + { l: 2.0, x: 8.42, y: 14.0322 }, + { l: 2.0, x: 8.5, y: 14.0522 }, + { l: 2.0, x: 8.58, y: 14.0725 }, + { l: 2.0, x: 8.67, y: 14.0932 }, + { l: 2.0, x: 8.75, y: 14.1142 }, + { l: 2.0, x: 8.83, y: 14.1356 }, + { l: 2.0, x: 8.92, y: 14.1573 }, + { l: 2.0, x: 9, y: 14.1793 }, + { l: 2.0, x: 9.08, y: 14.2017 }, + { l: 2.0, x: 9.17, y: 14.2244 }, + { l: 2.0, x: 9.25, y: 14.2473 }, + { l: 2.0, x: 9.33, y: 14.2706 }, + { l: 2.0, x: 9.42, y: 14.2942 }, + { l: 2.0, x: 9.5, y: 14.3181 }, + { l: 2.0, x: 9.58, y: 14.3422 }, + { l: 2.0, x: 9.67, y: 14.3666 }, + { l: 2.0, x: 9.75, y: 14.3912 }, + { l: 2.0, x: 9.83, y: 14.4161 }, + { l: 2.0, x: 9.92, y: 14.4412 }, + { l: 2.0, x: 10, y: 14.4666 }, + { l: 2.0, x: 10.08, y: 14.4921 }, + { l: 2.0, x: 10.17, y: 14.518 }, + { l: 2.0, x: 10.25, y: 14.5441 }, + { l: 2.0, x: 10.33, y: 14.5704 }, + { l: 2.0, x: 10.42, y: 14.5969 }, + { l: 2.0, x: 10.5, y: 14.6237 }, + { l: 2.0, x: 10.58, y: 14.6507 }, + { l: 2.0, x: 10.67, y: 14.6779 }, + { l: 2.0, x: 10.75, y: 14.7052 }, + { l: 2.0, x: 10.83, y: 14.7329 }, + { l: 2.0, x: 10.92, y: 14.7607 }, + { l: 2.0, x: 11, y: 14.7886 }, + { l: 2.0, x: 11.08, y: 14.8169 }, + { l: 2.0, x: 11.17, y: 14.8452 }, + { l: 2.0, x: 11.25, y: 14.8737 }, + { l: 2.0, x: 11.33, y: 14.9024 }, + { l: 2.0, x: 11.42, y: 14.9312 }, + { l: 2.0, x: 11.5, y: 14.9602 }, + { l: 2.0, x: 11.58, y: 14.9893 }, + { l: 2.0, x: 11.67, y: 15.0186 }, + { l: 2.0, x: 11.75, y: 15.048 }, + { l: 2.0, x: 11.83, y: 15.0775 }, + { l: 2.0, x: 11.92, y: 15.1071 }, + { l: 2.0, x: 12, y: 15.1368 }, + { l: 2.0, x: 12.08, y: 15.1667 }, + { l: 2.0, x: 12.17, y: 15.1966 }, + { l: 2.0, x: 12.25, y: 15.2266 }, + { l: 2.0, x: 12.33, y: 15.2568 }, + { l: 2.0, x: 12.42, y: 15.287 }, + { l: 2.0, x: 12.5, y: 15.3173 }, + { l: 2.0, x: 12.58, y: 15.3476 }, + { l: 2.0, x: 12.67, y: 15.378 }, + { l: 2.0, x: 12.75, y: 15.4085 }, + { l: 2.0, x: 12.83, y: 15.439 }, + { l: 2.0, x: 12.92, y: 15.4695 }, + { l: 2.0, x: 13, y: 15.5 }, + { l: 2.0, x: 13.08, y: 15.5307 }, + { l: 2.0, x: 13.17, y: 15.5612 }, + { l: 2.0, x: 13.25, y: 15.5918 }, + { l: 2.0, x: 13.33, y: 15.6225 }, + { l: 2.0, x: 13.42, y: 15.6531 }, + { l: 2.0, x: 13.5, y: 15.6837 }, + { l: 2.0, x: 13.58, y: 15.7143 }, + { l: 2.0, x: 13.67, y: 15.7449 }, + { l: 2.0, x: 13.75, y: 15.7754 }, + { l: 2.0, x: 13.83, y: 15.8059 }, + { l: 2.0, x: 13.92, y: 15.8364 }, + { l: 2.0, x: 14, y: 15.8669 }, + { l: 2.0, x: 14.08, y: 15.8972 }, + { l: 2.0, x: 14.17, y: 15.9275 }, + { l: 2.0, x: 14.25, y: 15.9578 }, + { l: 2.0, x: 14.33, y: 15.988 }, + { l: 2.0, x: 14.42, y: 16.0182 }, + { l: 2.0, x: 14.5, y: 16.0482 }, + { l: 2.0, x: 14.58, y: 16.0782 }, + { l: 2.0, x: 14.67, y: 16.1081 }, + { l: 2.0, x: 14.75, y: 16.1379 }, + { l: 2.0, x: 14.83, y: 16.1677 }, + { l: 2.0, x: 14.92, y: 16.1973 }, + { l: 2.0, x: 15, y: 16.2269 }, + { l: 2.0, x: 15.08, y: 16.2564 }, + { l: 2.0, x: 15.17, y: 16.2858 }, + { l: 2.0, x: 15.25, y: 16.315 }, + { l: 2.0, x: 15.33, y: 16.3443 }, + { l: 2.0, x: 15.42, y: 16.3733 }, + { l: 2.0, x: 15.5, y: 16.4024 }, + { l: 2.0, x: 15.58, y: 16.4313 }, + { l: 2.0, x: 15.67, y: 16.4601 }, + { l: 2.0, x: 15.75, y: 16.4888 }, + { l: 2.0, x: 15.83, y: 16.5174 }, + { l: 2.0, x: 15.92, y: 16.5459 }, + { l: 2.0, x: 16, y: 16.5743 }, + { l: 2.0, x: 16.08, y: 16.6026 }, + { l: 2.0, x: 16.17, y: 16.6308 }, + { l: 2.0, x: 16.25, y: 16.6588 }, + { l: 2.0, x: 16.33, y: 16.6868 }, + { l: 2.0, x: 16.42, y: 16.7147 }, + { l: 2.0, x: 16.5, y: 16.7424 }, + { l: 2.0, x: 16.58, y: 16.77 }, + { l: 2.0, x: 16.67, y: 16.7976 }, + { l: 2.0, x: 16.75, y: 16.8249 }, + { l: 2.0, x: 16.83, y: 16.8523 }, + { l: 2.0, x: 16.92, y: 16.8795 }, + { l: 2.0, x: 17, y: 16.9066 }, + { l: 2.0, x: 17.08, y: 16.9335 }, + { l: 2.0, x: 17.17, y: 16.9604 }, + { l: 2.0, x: 17.25, y: 16.9872 }, + { l: 2.0, x: 17.33, y: 17.0138 }, + { l: 2.0, x: 17.42, y: 17.0404 }, + { l: 2.0, x: 17.5, y: 17.0669 }, + { l: 2.0, x: 17.58, y: 17.0932 }, + { l: 2.0, x: 17.67, y: 17.1195 }, + { l: 2.0, x: 17.75, y: 17.1456 }, + { l: 2.0, x: 17.83, y: 17.1717 }, + { l: 2.0, x: 17.92, y: 17.1976 }, + { l: 2.0, x: 18, y: 17.2234 }, + { l: 2.0, x: 18.08, y: 17.2491 }, + { l: 2.0, x: 18.17, y: 17.2747 }, + { l: 2.0, x: 18.25, y: 17.3003 }, + { l: 2.0, x: 18.33, y: 17.3257 }, + { l: 2.0, x: 18.42, y: 17.351 }, + { l: 2.0, x: 18.5, y: 17.3762 }, + { l: 2.0, x: 18.58, y: 17.4014 }, + { l: 2.0, x: 18.67, y: 17.4264 }, + { l: 2.0, x: 18.75, y: 17.4513 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 0.0, - y: 10.2725, - }, - { - l: '9.0', - x: 0.0192, - y: 10.5593, - }, - { - l: '9.0', - x: 0.0383, - y: 10.8476, - }, - { - l: '9.0', - x: 0.0575, - y: 11.1373, - }, - { - l: '9.0', - x: 0.0767, - y: 11.4285, - }, - { - l: '9.0', - x: 0.0958, - y: 11.6535, - }, - { - l: '9.0', - x: 0.115, - y: 11.8439, - }, - { - l: '9.0', - x: 0.1342, - y: 12.0162, - }, - { - l: '9.0', - x: 0.1533, - y: 12.1752, - }, - { - l: '9.0', - x: 0.1725, - y: 12.328, - }, - { - l: '9.0', - x: 0.1916, - y: 12.4906, - }, - { - l: '9.0', - x: 0.2108, - y: 12.6475, - }, - { - l: '9.0', - x: 0.23, - y: 12.798, - }, - { - l: '9.0', - x: 0.2491, - y: 12.9416, - }, - { - l: '9.0', - x: 0.2683, - y: 13.0767, - }, - { - l: '9.0', - x: 0.2875, - y: 13.2041, - }, - { - l: '9.0', - x: 0.3066, - y: 13.3236, - }, - { - l: '9.0', - x: 0.3258, - y: 13.4353, - }, - { - l: '9.0', - x: 0.345, - y: 13.5351, - }, - { - l: '9.0', - x: 0.3641, - y: 13.6266, - }, - { - l: '9.0', - x: 0.3833, - y: 13.7122, - }, - { - l: '9.0', - x: 0.4025, - y: 13.7931, - }, - { - l: '9.0', - x: 0.4216, - y: 13.8713, - }, - { - l: '9.0', - x: 0.4408, - y: 13.9525, - }, - { - l: '9.0', - x: 0.46, - y: 14.0309, - }, - { - l: '9.0', - x: 0.4791, - y: 14.1061, - }, - { - l: '9.0', - x: 0.4983, - y: 14.1778, - }, - { - l: '9.0', - x: 0.5175, - y: 14.2443, - }, - { - l: '9.0', - x: 0.5366, - y: 14.3067, - }, - { - l: '9.0', - x: 0.5558, - y: 14.3648, - }, - { - l: '9.0', - x: 0.5749, - y: 14.4188, - }, - { - l: '9.0', - x: 0.5941, - y: 14.4667, - }, - { - l: '9.0', - x: 0.6133, - y: 14.5102, - }, - { - l: '9.0', - x: 0.6324, - y: 14.5503, - }, - { - l: '9.0', - x: 0.6516, - y: 14.588, - }, - { - l: '9.0', - x: 0.6708, - y: 14.6238, - }, - { - l: '9.0', - x: 0.6899, - y: 14.6608, - }, - { - l: '9.0', - x: 0.7091, - y: 14.6962, - }, - { - l: '9.0', - x: 0.7283, - y: 14.7299, - }, - { - l: '9.0', - x: 0.7474, - y: 14.7618, - }, - { - l: '9.0', - x: 0.7666, - y: 14.7912, - }, - { - l: '9.0', - x: 0.7858, - y: 14.8185, - }, - { - l: '9.0', - x: 0.8049, - y: 14.8438, - }, - { - l: '9.0', - x: 0.8241, - y: 14.8672, - }, - { - l: '9.0', - x: 0.8433, - y: 14.888, - }, - { - l: '9.0', - x: 0.8624, - y: 14.9067, - }, - { - l: '9.0', - x: 0.8816, - y: 14.924, - }, - { - l: '9.0', - x: 0.9008, - y: 14.9401, - }, - { - l: '9.0', - x: 0.9199, - y: 14.9554, - }, - { - l: '9.0', - x: 0.9391, - y: 14.9712, - }, - { - l: '9.0', - x: 0.9582, - y: 14.9863, - }, - { - l: '9.0', - x: 0.9774, - y: 15.0007, - }, - { - l: '9.0', - x: 0.9966, - y: 15.0143, - }, - { - l: '9.0', - x: 1.0157, - y: 15.0269, - }, - { - l: '9.0', - x: 1.0349, - y: 15.0385, - }, - { - l: '9.0', - x: 1.0541, - y: 15.0492, - }, - { - l: '9.0', - x: 1.0732, - y: 15.0591, - }, - { - l: '9.0', - x: 1.0924, - y: 15.0679, - }, - { - l: '9.0', - x: 1.1116, - y: 15.0757, - }, - { - l: '9.0', - x: 1.1307, - y: 15.0829, - }, - { - l: '9.0', - x: 1.1499, - y: 15.0896, - }, - { - l: '9.0', - x: 1.1691, - y: 15.0958, - }, - { - l: '9.0', - x: 1.1882, - y: 15.1021, - }, - { - l: '9.0', - x: 1.2074, - y: 15.1082, - }, - { - l: '9.0', - x: 1.2266, - y: 15.1139, - }, - { - l: '9.0', - x: 1.2457, - y: 15.1192, - }, - { - l: '9.0', - x: 1.2649, - y: 15.124, - }, - { - l: '9.0', - x: 1.2841, - y: 15.1284, - }, - { - l: '9.0', - x: 1.3032, - y: 15.1324, - }, - { - l: '9.0', - x: 1.3224, - y: 15.1359, - }, - { - l: '9.0', - x: 1.3415, - y: 15.1391, - }, - { - l: '9.0', - x: 1.3607, - y: 15.1418, - }, - { - l: '9.0', - x: 1.3799, - y: 15.1443, - }, - { - l: '9.0', - x: 1.399, - y: 15.1464, - }, - { - l: '9.0', - x: 1.4182, - y: 15.1484, - }, - { - l: '9.0', - x: 1.4374, - y: 15.1503, - }, - { - l: '9.0', - x: 1.4565, - y: 15.1521, - }, - { - l: '9.0', - x: 1.4757, - y: 15.1536, - }, - { - l: '9.0', - x: 1.4949, - y: 15.155, - }, - { - l: '9.0', - x: 1.514, - y: 15.1562, - }, - { - l: '9.0', - x: 1.5332, - y: 15.1571, - }, - { - l: '9.0', - x: 1.5524, - y: 15.1579, - }, - { - l: '9.0', - x: 1.5715, - y: 15.1584, - }, - { - l: '9.0', - x: 1.5907, - y: 15.1588, - }, - { - l: '9.0', - x: 1.6099, - y: 15.1591, - }, - { - l: '9.0', - x: 1.629, - y: 15.1592, - }, - { - l: '9.0', - x: 1.6482, - y: 15.1591, - }, - { - l: '9.0', - x: 1.6674, - y: 15.1589, - }, - { - l: '9.0', - x: 1.6865, - y: 15.1585, - }, - { - l: '9.0', - x: 1.7057, - y: 15.158, - }, - { - l: '9.0', - x: 1.7248, - y: 15.1574, - }, - { - l: '9.0', - x: 1.744, - y: 15.1566, - }, - { - l: '9.0', - x: 1.7632, - y: 15.1557, - }, - { - l: '9.0', - x: 1.7823, - y: 15.1546, - }, - { - l: '9.0', - x: 1.8015, - y: 15.1535, - }, - { - l: '9.0', - x: 1.8207, - y: 15.1523, - }, - { - l: '9.0', - x: 1.8398, - y: 15.151, - }, - { - l: '9.0', - x: 1.859, - y: 15.1497, - }, - { - l: '9.0', - x: 1.8782, - y: 15.1483, - }, - { - l: '9.0', - x: 1.8973, - y: 15.1469, - }, - { - l: '9.0', - x: 1.9165, - y: 15.1453, - }, - { - l: '9.0', - x: 1.9357, - y: 15.1436, - }, - { - l: '9.0', - x: 1.9548, - y: 15.1417, - }, - { - l: '9.0', - x: 1.974, - y: 15.1397, - }, - { - l: '9.0', - x: 1.9932, - y: 15.1376, - }, - { - l: '9.0', - x: 2.0123, - y: 15.1354, - }, - { - l: '9.0', - x: 2.0957, - y: 15.1253, - }, - { - l: '9.0', - x: 2.179, - y: 15.1147, - }, - { - l: '9.0', - x: 2.2623, - y: 15.1014, - }, - { - l: '9.0', - x: 2.3457, - y: 15.0869, - }, - { - l: '9.0', - x: 2.429, - y: 15.0727, - }, - { - l: '9.0', - x: 2.5123, - y: 15.0559, - }, - { - l: '9.0', - x: 2.5957, - y: 15.0392, - }, - { - l: '9.0', - x: 2.679, - y: 15.0236, - }, - { - l: '9.0', - x: 2.7623, - y: 15.0062, - }, - { - l: '9.0', - x: 2.8457, - y: 14.9894, - }, - { - l: '9.0', - x: 2.929, - y: 14.9743, - }, - { - l: '9.0', - x: 3.0123, - y: 14.9578, - }, - { - l: '9.0', - x: 3.0957, - y: 14.9424, - }, - { - l: '9.0', - x: 3.179, - y: 14.9287, - }, - { - l: '9.0', - x: 3.2623, - y: 14.914, - }, - { - l: '9.0', - x: 3.3457, - y: 14.9002, - }, - { - l: '9.0', - x: 3.429, - y: 14.888, - }, - { - l: '9.0', - x: 3.5123, - y: 14.8749, - }, - { - l: '9.0', - x: 3.5957, - y: 14.8626, - }, - { - l: '9.0', - x: 3.679, - y: 14.8518, - }, - { - l: '9.0', - x: 3.7623, - y: 14.8401, - }, - { - l: '9.0', - x: 3.8457, - y: 14.8293, - }, - { - l: '9.0', - x: 3.929, - y: 14.8198, - }, - { - l: '9.0', - x: 4.0123, - y: 14.8098, - }, - { - l: '9.0', - x: 4.0957, - y: 14.8005, - }, - { - l: '9.0', - x: 4.179, - y: 14.7924, - }, - { - l: '9.0', - x: 4.2623, - y: 14.7839, - }, - { - l: '9.0', - x: 4.3457, - y: 14.7761, - }, - { - l: '9.0', - x: 4.429, - y: 14.7694, - }, - { - l: '9.0', - x: 4.5123, - y: 14.7625, - }, - { - l: '9.0', - x: 4.5957, - y: 14.7563, - }, - { - l: '9.0', - x: 4.679, - y: 14.7512, - }, - { - l: '9.0', - x: 4.7623, - y: 14.7461, - }, - { - l: '9.0', - x: 4.8457, - y: 14.7418, - }, - { - l: '9.0', - x: 4.929, - y: 14.7385, - }, - { - l: '9.0', - x: 5.0123, - y: 14.7355, - }, - { - l: '9.0', - x: 5.0957, - y: 14.7334, - }, - { - l: '9.0', - x: 5.179, - y: 14.7321, - }, - { - l: '9.0', - x: 5.2623, - y: 14.7314, - }, - { - l: '9.0', - x: 5.3457, - y: 14.7316, - }, - { - l: '9.0', - x: 5.429, - y: 14.7325, - }, - { - l: '9.0', - x: 5.5123, - y: 14.7343, - }, - { - l: '9.0', - x: 5.5957, - y: 14.7367, - }, - { - l: '9.0', - x: 5.679, - y: 14.7396, - }, - { - l: '9.0', - x: 5.7623, - y: 14.7437, - }, - { - l: '9.0', - x: 5.8457, - y: 14.7484, - }, - { - l: '9.0', - x: 5.929, - y: 14.7533, - }, - { - l: '9.0', - x: 6.0123, - y: 14.7598, - }, - { - l: '9.0', - x: 6.0957, - y: 14.7667, - }, - { - l: '9.0', - x: 6.179, - y: 14.7738, - }, - { - l: '9.0', - x: 6.2623, - y: 14.7826, - }, - { - l: '9.0', - x: 6.3457, - y: 14.7919, - }, - { - l: '9.0', - x: 6.429, - y: 14.8011, - }, - { - l: '9.0', - x: 6.5123, - y: 14.8122, - }, - { - l: '9.0', - x: 6.5957, - y: 14.8238, - }, - { - l: '9.0', - x: 6.679, - y: 14.8349, - }, - { - l: '9.0', - x: 6.7623, - y: 14.8483, - }, - { - l: '9.0', - x: 6.8457, - y: 14.8618, - }, - { - l: '9.0', - x: 6.929, - y: 14.8749, - }, - { - l: '9.0', - x: 7.0123, - y: 14.8902, - }, - { - l: '9.0', - x: 7.0957, - y: 14.9057, - }, - { - l: '9.0', - x: 7.179, - y: 14.9204, - }, - { - l: '9.0', - x: 7.2623, - y: 14.9376, - }, - { - l: '9.0', - x: 7.3457, - y: 14.9548, - }, - { - l: '9.0', - x: 7.429, - y: 14.9711, - }, - { - l: '9.0', - x: 7.5123, - y: 14.9899, - }, - { - l: '9.0', - x: 7.5957, - y: 15.0088, - }, - { - l: '9.0', - x: 7.679, - y: 15.0265, - }, - { - l: '9.0', - x: 7.7623, - y: 15.0469, - }, - { - l: '9.0', - x: 7.8457, - y: 15.0673, - }, - { - l: '9.0', - x: 7.929, - y: 15.0863, - }, - { - l: '9.0', - x: 8.0123, - y: 15.1082, - }, - { - l: '9.0', - x: 8.0957, - y: 15.1299, - }, - { - l: '9.0', - x: 8.179, - y: 15.1502, - }, - { - l: '9.0', - x: 8.2623, - y: 15.1734, - }, - { - l: '9.0', - x: 8.3457, - y: 15.1965, - }, - { - l: '9.0', - x: 8.429, - y: 15.2179, - }, - { - l: '9.0', - x: 8.5123, - y: 15.2423, - }, - { - l: '9.0', - x: 8.5957, - y: 15.2666, - }, - { - l: '9.0', - x: 8.679, - y: 15.2891, - }, - { - l: '9.0', - x: 8.7623, - y: 15.3147, - }, - { - l: '9.0', - x: 8.8457, - y: 15.34, - }, - { - l: '9.0', - x: 8.929, - y: 15.3635, - }, - { - l: '9.0', - x: 9.0123, - y: 15.3902, - }, - { - l: '9.0', - x: 9.0957, - y: 15.4166, - }, - { - l: '9.0', - x: 9.179, - y: 15.441, - }, - { - l: '9.0', - x: 9.2623, - y: 15.4686, - }, - { - l: '9.0', - x: 9.3457, - y: 15.496, - }, - { - l: '9.0', - x: 9.429, - y: 15.5213, - }, - { - l: '9.0', - x: 9.5123, - y: 15.5499, - }, - { - l: '9.0', - x: 9.5957, - y: 15.5781, - }, - { - l: '9.0', - x: 9.679, - y: 15.6041, - }, - { - l: '9.0', - x: 9.7623, - y: 15.6336, - }, - { - l: '9.0', - x: 9.8457, - y: 15.6625, - }, - { - l: '9.0', - x: 9.929, - y: 15.6893, - }, - { - l: '9.0', - x: 10.0123, - y: 15.7195, - }, - { - l: '9.0', - x: 10.0957, - y: 15.7492, - }, - { - l: '9.0', - x: 10.179, - y: 15.7767, - }, - { - l: '9.0', - x: 10.2623, - y: 15.8076, - }, - { - l: '9.0', - x: 10.3457, - y: 15.838, - }, - { - l: '9.0', - x: 10.429, - y: 15.8661, - }, - { - l: '9.0', - x: 10.5123, - y: 15.8979, - }, - { - l: '9.0', - x: 10.5957, - y: 15.929, - }, - { - l: '9.0', - x: 10.679, - y: 15.9577, - }, - { - l: '9.0', - x: 10.7623, - y: 15.99, - }, - { - l: '9.0', - x: 10.8457, - y: 16.0218, - }, - { - l: '9.0', - x: 10.929, - y: 16.051, - }, - { - l: '9.0', - x: 11.0123, - y: 16.084, - }, - { - l: '9.0', - x: 11.0957, - y: 16.1164, - }, - { - l: '9.0', - x: 11.179, - y: 16.1461, - }, - { - l: '9.0', - x: 11.2623, - y: 16.1797, - }, - { - l: '9.0', - x: 11.3457, - y: 16.2125, - }, - { - l: '9.0', - x: 11.429, - y: 16.2427, - }, - { - l: '9.0', - x: 11.5123, - y: 16.2767, - }, - { - l: '9.0', - x: 11.5957, - y: 16.31, - }, - { - l: '9.0', - x: 11.679, - y: 16.3406, - }, - { - l: '9.0', - x: 11.7623, - y: 16.375, - }, - { - l: '9.0', - x: 11.8457, - y: 16.4087, - }, - { - l: '9.0', - x: 11.929, - y: 16.4396, - }, - { - l: '9.0', - x: 12.0123, - y: 16.4744, - }, - { - l: '9.0', - x: 12.0957, - y: 16.5084, - }, - { - l: '9.0', - x: 12.179, - y: 16.5396, - }, - { - l: '9.0', - x: 12.2623, - y: 16.5746, - }, - { - l: '9.0', - x: 12.3457, - y: 16.6089, - }, - { - l: '9.0', - x: 12.429, - y: 16.6403, - }, - { - l: '9.0', - x: 12.5123, - y: 16.6757, - }, - { - l: '9.0', - x: 12.5957, - y: 16.7101, - }, - { - l: '9.0', - x: 12.679, - y: 16.7417, - }, - { - l: '9.0', - x: 12.7623, - y: 16.7772, - }, - { - l: '9.0', - x: 12.8457, - y: 16.8118, - }, - { - l: '9.0', - x: 12.929, - y: 16.8434, - }, - { - l: '9.0', - x: 13.0123, - y: 16.879, - }, - { - l: '9.0', - x: 13.0957, - y: 16.9137, - }, - { - l: '9.0', - x: 13.179, - y: 16.9454, - }, - { - l: '9.0', - x: 13.2623, - y: 16.981, - }, - { - l: '9.0', - x: 13.3457, - y: 17.0157, - }, - { - l: '9.0', - x: 13.429, - y: 17.0474, - }, - { - l: '9.0', - x: 13.5123, - y: 17.0829, - }, - { - l: '9.0', - x: 13.5957, - y: 17.1175, - }, - { - l: '9.0', - x: 13.679, - y: 17.1492, - }, - { - l: '9.0', - x: 13.7623, - y: 17.1846, - }, - { - l: '9.0', - x: 13.8457, - y: 17.2191, - }, - { - l: '9.0', - x: 13.929, - y: 17.2506, - }, - { - l: '9.0', - x: 14.0123, - y: 17.2859, - }, - { - l: '9.0', - x: 14.0957, - y: 17.3202, - }, - { - l: '9.0', - x: 14.179, - y: 17.3515, - }, - { - l: '9.0', - x: 14.2623, - y: 17.3866, - }, - { - l: '9.0', - x: 14.3457, - y: 17.4207, - }, - { - l: '9.0', - x: 14.429, - y: 17.4518, - }, - { - l: '9.0', - x: 14.5123, - y: 17.4866, - }, - { - l: '9.0', - x: 14.5957, - y: 17.5205, - }, - { - l: '9.0', - x: 14.679, - y: 17.5513, - }, - { - l: '9.0', - x: 14.7623, - y: 17.5858, - }, - { - l: '9.0', - x: 14.8457, - y: 17.6194, - }, - { - l: '9.0', - x: 14.929, - y: 17.65, - }, - { - l: '9.0', - x: 15.0123, - y: 17.6842, - }, - { - l: '9.0', - x: 15.0957, - y: 17.7174, - }, - { - l: '9.0', - x: 15.179, - y: 17.7477, - }, - { - l: '9.0', - x: 15.2623, - y: 17.7816, - }, - { - l: '9.0', - x: 15.3457, - y: 17.8145, - }, - { - l: '9.0', - x: 15.429, - y: 17.8445, - }, - { - l: '9.0', - x: 15.5123, - y: 17.8781, - }, - { - l: '9.0', - x: 15.5957, - y: 17.9106, - }, - { - l: '9.0', - x: 15.679, - y: 17.9402, - }, - { - l: '9.0', - x: 15.7623, - y: 17.9734, - }, - { - l: '9.0', - x: 15.8457, - y: 18.0056, - }, - { - l: '9.0', - x: 15.929, - y: 18.0349, - }, - { - l: '9.0', - x: 16.0123, - y: 18.0678, - }, - { - l: '9.0', - x: 16.0957, - y: 18.0996, - }, - { - l: '9.0', - x: 16.179, - y: 18.1286, - }, - { - l: '9.0', - x: 16.2623, - y: 18.161, - }, - { - l: '9.0', - x: 16.3457, - y: 18.1925, - }, - { - l: '9.0', - x: 16.429, - y: 18.2211, - }, - { - l: '9.0', - x: 16.5123, - y: 18.2532, - }, - { - l: '9.0', - x: 16.5957, - y: 18.2842, - }, - { - l: '9.0', - x: 16.679, - y: 18.3126, - }, - { - l: '9.0', - x: 16.7623, - y: 18.3442, - }, - { - l: '9.0', - x: 16.8457, - y: 18.3749, - }, - { - l: '9.0', - x: 16.929, - y: 18.4029, - }, - { - l: '9.0', - x: 17.0123, - y: 18.4342, - }, - { - l: '9.0', - x: 17.0957, - y: 18.4644, - }, - { - l: '9.0', - x: 17.179, - y: 18.4921, - }, - { - l: '9.0', - x: 17.2623, - y: 18.523, - }, - { - l: '9.0', - x: 17.3457, - y: 18.5529, - }, - { - l: '9.0', - x: 17.429, - y: 18.5802, - }, - { - l: '9.0', - x: 17.5123, - y: 18.6108, - }, - { - l: '9.0', - x: 17.5957, - y: 18.6403, - }, - { - l: '9.0', - x: 17.679, - y: 18.6673, - }, - { - l: '9.0', - x: 17.7623, - y: 18.6975, - }, - { - l: '9.0', - x: 17.8457, - y: 18.7267, - }, - { - l: '9.0', - x: 17.929, - y: 18.7533, - }, - { - l: '9.0', - x: 18.0123, - y: 18.783, - }, - { - l: '9.0', - x: 18.0957, - y: 18.8119, - }, - { - l: '9.0', - x: 18.179, - y: 18.8382, - }, - { - l: '9.0', - x: 18.2623, - y: 18.8677, - }, - { - l: '9.0', - x: 18.3457, - y: 18.8961, - }, - { - l: '9.0', - x: 18.429, - y: 18.9221, - }, - { - l: '9.0', - x: 18.5123, - y: 18.9512, - }, - { - l: '9.0', - x: 18.5957, - y: 18.9794, - }, - { - l: '9.0', - x: 18.679, - y: 19.0051, - }, - { - l: '9.0', - x: 18.7623, - y: 19.0338, - }, - { - l: '9.0', - x: 18.8457, - y: null, - }, + { l: 9.0, x: 0, y: 10.262 }, + { l: 9.0, x: 0.08, y: 11.4687 }, + { l: 9.0, x: 0.17, y: 12.2955 }, + { l: 9.0, x: 0.25, y: 12.9368 }, + { l: 9.0, x: 0.33, y: 13.4474 }, + { l: 9.0, x: 0.42, y: 13.8529 }, + { l: 9.0, x: 0.5, y: 14.1725 }, + { l: 9.0, x: 0.58, y: 14.4207 }, + { l: 9.0, x: 0.67, y: 14.6107 }, + { l: 9.0, x: 0.75, y: 14.7543 }, + { l: 9.0, x: 0.83, y: 14.8624 }, + { l: 9.0, x: 0.92, y: 14.9439 }, + { l: 9.0, x: 1, y: 15.0051 }, + { l: 9.0, x: 1.08, y: 15.0509 }, + { l: 9.0, x: 1.17, y: 15.0846 }, + { l: 9.0, x: 1.25, y: 15.1088 }, + { l: 9.0, x: 1.33, y: 15.1258 }, + { l: 9.0, x: 1.42, y: 15.1371 }, + { l: 9.0, x: 1.5, y: 15.1439 }, + { l: 9.0, x: 1.58, y: 15.1472 }, + { l: 9.0, x: 1.67, y: 15.1474 }, + { l: 9.0, x: 1.75, y: 15.145 }, + { l: 9.0, x: 1.83, y: 15.1402 }, + { l: 9.0, x: 1.92, y: 15.1336 }, + { l: 9.0, x: 2, y: 15.1255 }, + { l: 9.0, x: 2.08, y: 15.1158 }, + { l: 9.0, x: 2.17, y: 15.1046 }, + { l: 9.0, x: 2.25, y: 15.0921 }, + { l: 9.0, x: 2.33, y: 15.0781 }, + { l: 9.0, x: 2.42, y: 15.063 }, + { l: 9.0, x: 2.5, y: 15.0471 }, + { l: 9.0, x: 2.58, y: 15.0308 }, + { l: 9.0, x: 2.67, y: 15.014 }, + { l: 9.0, x: 2.75, y: 14.9974 }, + { l: 9.0, x: 2.83, y: 14.9809 }, + { l: 9.0, x: 2.92, y: 14.9646 }, + { l: 9.0, x: 3, y: 14.9488 }, + { l: 9.0, x: 3.08, y: 14.9336 }, + { l: 9.0, x: 3.17, y: 14.9189 }, + { l: 9.0, x: 3.25, y: 14.9048 }, + { l: 9.0, x: 3.33, y: 14.8911 }, + { l: 9.0, x: 3.42, y: 14.878 }, + { l: 9.0, x: 3.5, y: 14.8654 }, + { l: 9.0, x: 3.58, y: 14.8532 }, + { l: 9.0, x: 3.67, y: 14.8416 }, + { l: 9.0, x: 3.75, y: 14.8303 }, + { l: 9.0, x: 3.83, y: 14.8196 }, + { l: 9.0, x: 3.92, y: 14.8094 }, + { l: 9.0, x: 4, y: 14.7997 }, + { l: 9.0, x: 4.08, y: 14.7905 }, + { l: 9.0, x: 4.17, y: 14.7818 }, + { l: 9.0, x: 4.25, y: 14.7736 }, + { l: 9.0, x: 4.33, y: 14.7659 }, + { l: 9.0, x: 4.42, y: 14.7586 }, + { l: 9.0, x: 4.5, y: 14.7519 }, + { l: 9.0, x: 4.58, y: 14.7457 }, + { l: 9.0, x: 4.67, y: 14.7402 }, + { l: 9.0, x: 4.75, y: 14.7352 }, + { l: 9.0, x: 4.83, y: 14.7309 }, + { l: 9.0, x: 4.92, y: 14.7272 }, + { l: 9.0, x: 5, y: 14.7242 }, + { l: 9.0, x: 5.08, y: 14.722 }, + { l: 9.0, x: 5.17, y: 14.7205 }, + { l: 9.0, x: 5.25, y: 14.7197 }, + { l: 9.0, x: 5.33, y: 14.7197 }, + { l: 9.0, x: 5.42, y: 14.7205 }, + { l: 9.0, x: 5.5, y: 14.7221 }, + { l: 9.0, x: 5.58, y: 14.7243 }, + { l: 9.0, x: 5.67, y: 14.7273 }, + { l: 9.0, x: 5.75, y: 14.7311 }, + { l: 9.0, x: 5.83, y: 14.7355 }, + { l: 9.0, x: 5.92, y: 14.7407 }, + { l: 9.0, x: 6, y: 14.7467 }, + { l: 9.0, x: 6.08, y: 14.7534 }, + { l: 9.0, x: 6.17, y: 14.7609 }, + { l: 9.0, x: 6.25, y: 14.7691 }, + { l: 9.0, x: 6.33, y: 14.7781 }, + { l: 9.0, x: 6.42, y: 14.7878 }, + { l: 9.0, x: 6.5, y: 14.7983 }, + { l: 9.0, x: 6.58, y: 14.8095 }, + { l: 9.0, x: 6.67, y: 14.8213 }, + { l: 9.0, x: 6.75, y: 14.8339 }, + { l: 9.0, x: 6.83, y: 14.847 }, + { l: 9.0, x: 6.92, y: 14.861 }, + { l: 9.0, x: 7, y: 14.8754 }, + { l: 9.0, x: 7.08, y: 14.8905 }, + { l: 9.0, x: 7.17, y: 14.9062 }, + { l: 9.0, x: 7.25, y: 14.9224 }, + { l: 9.0, x: 7.33, y: 14.9391 }, + { l: 9.0, x: 7.42, y: 14.9565 }, + { l: 9.0, x: 7.5, y: 14.9743 }, + { l: 9.0, x: 7.58, y: 14.9927 }, + { l: 9.0, x: 7.67, y: 15.0116 }, + { l: 9.0, x: 7.75, y: 15.031 }, + { l: 9.0, x: 7.83, y: 15.0509 }, + { l: 9.0, x: 7.92, y: 15.0712 }, + { l: 9.0, x: 8, y: 15.0919 }, + { l: 9.0, x: 8.08, y: 15.1131 }, + { l: 9.0, x: 8.17, y: 15.1348 }, + { l: 9.0, x: 8.25, y: 15.1568 }, + { l: 9.0, x: 8.33, y: 15.1793 }, + { l: 9.0, x: 8.42, y: 15.2022 }, + { l: 9.0, x: 8.5, y: 15.2254 }, + { l: 9.0, x: 8.58, y: 15.2491 }, + { l: 9.0, x: 8.67, y: 15.2731 }, + { l: 9.0, x: 8.75, y: 15.2975 }, + { l: 9.0, x: 8.83, y: 15.3222 }, + { l: 9.0, x: 8.92, y: 15.3473 }, + { l: 9.0, x: 9, y: 15.3727 }, + { l: 9.0, x: 9.08, y: 15.3985 }, + { l: 9.0, x: 9.17, y: 15.4245 }, + { l: 9.0, x: 9.25, y: 15.4509 }, + { l: 9.0, x: 9.33, y: 15.4776 }, + { l: 9.0, x: 9.42, y: 15.5046 }, + { l: 9.0, x: 9.5, y: 15.5319 }, + { l: 9.0, x: 9.58, y: 15.5594 }, + { l: 9.0, x: 9.67, y: 15.5872 }, + { l: 9.0, x: 9.75, y: 15.6153 }, + { l: 9.0, x: 9.83, y: 15.6436 }, + { l: 9.0, x: 9.92, y: 15.6721 }, + { l: 9.0, x: 10, y: 15.701 }, + { l: 9.0, x: 10.08, y: 15.73 }, + { l: 9.0, x: 10.17, y: 15.7593 }, + { l: 9.0, x: 10.25, y: 15.7888 }, + { l: 9.0, x: 10.33, y: 15.8185 }, + { l: 9.0, x: 10.42, y: 15.8485 }, + { l: 9.0, x: 10.5, y: 15.8788 }, + { l: 9.0, x: 10.58, y: 15.9092 }, + { l: 9.0, x: 10.67, y: 15.9399 }, + { l: 9.0, x: 10.75, y: 15.9707 }, + { l: 9.0, x: 10.83, y: 16.0018 }, + { l: 9.0, x: 10.92, y: 16.0331 }, + { l: 9.0, x: 11, y: 16.0645 }, + { l: 9.0, x: 11.08, y: 16.0962 }, + { l: 9.0, x: 11.17, y: 16.128 }, + { l: 9.0, x: 11.25, y: 16.1599 }, + { l: 9.0, x: 11.33, y: 16.192 }, + { l: 9.0, x: 11.42, y: 16.2243 }, + { l: 9.0, x: 11.5, y: 16.2568 }, + { l: 9.0, x: 11.58, y: 16.2894 }, + { l: 9.0, x: 11.67, y: 16.3221 }, + { l: 9.0, x: 11.75, y: 16.3549 }, + { l: 9.0, x: 11.83, y: 16.3878 }, + { l: 9.0, x: 11.92, y: 16.4209 }, + { l: 9.0, x: 12, y: 16.454 }, + { l: 9.0, x: 12.08, y: 16.4874 }, + { l: 9.0, x: 12.17, y: 16.5207 }, + { l: 9.0, x: 12.25, y: 16.5541 }, + { l: 9.0, x: 12.33, y: 16.5877 }, + { l: 9.0, x: 12.42, y: 16.6213 }, + { l: 9.0, x: 12.5, y: 16.655 }, + { l: 9.0, x: 12.58, y: 16.6887 }, + { l: 9.0, x: 12.67, y: 16.7225 }, + { l: 9.0, x: 12.75, y: 16.7564 }, + { l: 9.0, x: 12.83, y: 16.7902 }, + { l: 9.0, x: 12.92, y: 16.8241 }, + { l: 9.0, x: 13, y: 16.858 }, + { l: 9.0, x: 13.08, y: 16.892 }, + { l: 9.0, x: 13.17, y: 16.9259 }, + { l: 9.0, x: 13.25, y: 16.9599 }, + { l: 9.0, x: 13.33, y: 16.9938 }, + { l: 9.0, x: 13.42, y: 17.0278 }, + { l: 9.0, x: 13.5, y: 17.0617 }, + { l: 9.0, x: 13.58, y: 17.0955 }, + { l: 9.0, x: 13.67, y: 17.1295 }, + { l: 9.0, x: 13.75, y: 17.1632 }, + { l: 9.0, x: 13.83, y: 17.197 }, + { l: 9.0, x: 13.92, y: 17.2308 }, + { l: 9.0, x: 14, y: 17.2645 }, + { l: 9.0, x: 14.08, y: 17.2981 }, + { l: 9.0, x: 14.17, y: 17.3316 }, + { l: 9.0, x: 14.25, y: 17.3651 }, + { l: 9.0, x: 14.33, y: 17.3984 }, + { l: 9.0, x: 14.42, y: 17.4318 }, + { l: 9.0, x: 14.5, y: 17.465 }, + { l: 9.0, x: 14.58, y: 17.4981 }, + { l: 9.0, x: 14.67, y: 17.5312 }, + { l: 9.0, x: 14.75, y: 17.5641 }, + { l: 9.0, x: 14.83, y: 17.597 }, + { l: 9.0, x: 14.92, y: 17.6298 }, + { l: 9.0, x: 15, y: 17.6624 }, + { l: 9.0, x: 15.08, y: 17.695 }, + { l: 9.0, x: 15.17, y: 17.7274 }, + { l: 9.0, x: 15.25, y: 17.7597 }, + { l: 9.0, x: 15.33, y: 17.792 }, + { l: 9.0, x: 15.42, y: 17.8241 }, + { l: 9.0, x: 15.5, y: 17.8561 }, + { l: 9.0, x: 15.58, y: 17.888 }, + { l: 9.0, x: 15.67, y: 17.9198 }, + { l: 9.0, x: 15.75, y: 17.9514 }, + { l: 9.0, x: 15.83, y: 17.9829 }, + { l: 9.0, x: 15.92, y: 18.0144 }, + { l: 9.0, x: 16, y: 18.0457 }, + { l: 9.0, x: 16.08, y: 18.0769 }, + { l: 9.0, x: 16.17, y: 18.108 }, + { l: 9.0, x: 16.25, y: 18.1389 }, + { l: 9.0, x: 16.33, y: 18.1697 }, + { l: 9.0, x: 16.42, y: 18.2004 }, + { l: 9.0, x: 16.5, y: 18.231 }, + { l: 9.0, x: 16.58, y: 18.2614 }, + { l: 9.0, x: 16.67, y: 18.2918 }, + { l: 9.0, x: 16.75, y: 18.322 }, + { l: 9.0, x: 16.83, y: 18.352 }, + { l: 9.0, x: 16.92, y: 18.382 }, + { l: 9.0, x: 17, y: 18.4119 }, + { l: 9.0, x: 17.08, y: 18.4416 }, + { l: 9.0, x: 17.17, y: 18.4712 }, + { l: 9.0, x: 17.25, y: 18.5007 }, + { l: 9.0, x: 17.33, y: 18.53 }, + { l: 9.0, x: 17.42, y: 18.5592 }, + { l: 9.0, x: 17.5, y: 18.5884 }, + { l: 9.0, x: 17.58, y: 18.6173 }, + { l: 9.0, x: 17.67, y: 18.6462 }, + { l: 9.0, x: 17.75, y: 18.675 }, + { l: 9.0, x: 17.83, y: 18.7037 }, + { l: 9.0, x: 17.92, y: 18.7321 }, + { l: 9.0, x: 18, y: 18.7606 }, + { l: 9.0, x: 18.08, y: 18.7889 }, + { l: 9.0, x: 18.17, y: 18.817 }, + { l: 9.0, x: 18.25, y: 18.8451 }, + { l: 9.0, x: 18.33, y: 18.873 }, + { l: 9.0, x: 18.42, y: 18.9009 }, + { l: 9.0, x: 18.5, y: 18.9287 }, + { l: 9.0, x: 18.58, y: 18.9563 }, + { l: 9.0, x: 18.67, y: 18.9838 }, + { l: 9.0, x: 18.75, y: 19.0112 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 0.0, - y: 11.2188, - }, - { - l: '25.0', - x: 0.0192, - y: 11.5127, - }, - { - l: '25.0', - x: 0.0383, - y: 11.8074, - }, - { - l: '25.0', - x: 0.0575, - y: 12.1028, - }, - { - l: '25.0', - x: 0.0767, - y: 12.399, - }, - { - l: '25.0', - x: 0.0958, - y: 12.6281, - }, - { - l: '25.0', - x: 0.115, - y: 12.8222, - }, - { - l: '25.0', - x: 0.1342, - y: 12.9982, - }, - { - l: '25.0', - x: 0.1533, - y: 13.1607, - }, - { - l: '25.0', - x: 0.1725, - y: 13.3171, - }, - { - l: '25.0', - x: 0.1916, - y: 13.4836, - }, - { - l: '25.0', - x: 0.2108, - y: 13.6443, - }, - { - l: '25.0', - x: 0.23, - y: 13.7986, - }, - { - l: '25.0', - x: 0.2491, - y: 13.9458, - }, - { - l: '25.0', - x: 0.2683, - y: 14.0843, - }, - { - l: '25.0', - x: 0.2875, - y: 14.2149, - }, - { - l: '25.0', - x: 0.3066, - y: 14.3376, - }, - { - l: '25.0', - x: 0.3258, - y: 14.4521, - }, - { - l: '25.0', - x: 0.345, - y: 14.5545, - }, - { - l: '25.0', - x: 0.3641, - y: 14.6484, - }, - { - l: '25.0', - x: 0.3833, - y: 14.7361, - }, - { - l: '25.0', - x: 0.4025, - y: 14.819, - }, - { - l: '25.0', - x: 0.4216, - y: 14.8992, - }, - { - l: '25.0', - x: 0.4408, - y: 14.9823, - }, - { - l: '25.0', - x: 0.46, - y: 15.0625, - }, - { - l: '25.0', - x: 0.4791, - y: 15.1395, - }, - { - l: '25.0', - x: 0.4983, - y: 15.2127, - }, - { - l: '25.0', - x: 0.5175, - y: 15.2807, - }, - { - l: '25.0', - x: 0.5366, - y: 15.3443, - }, - { - l: '25.0', - x: 0.5558, - y: 15.4036, - }, - { - l: '25.0', - x: 0.5749, - y: 15.4585, - }, - { - l: '25.0', - x: 0.5941, - y: 15.5073, - }, - { - l: '25.0', - x: 0.6133, - y: 15.5515, - }, - { - l: '25.0', - x: 0.6324, - y: 15.5923, - }, - { - l: '25.0', - x: 0.6516, - y: 15.6304, - }, - { - l: '25.0', - x: 0.6708, - y: 15.6667, - }, - { - l: '25.0', - x: 0.6899, - y: 15.7041, - }, - { - l: '25.0', - x: 0.7091, - y: 15.7398, - }, - { - l: '25.0', - x: 0.7283, - y: 15.7738, - }, - { - l: '25.0', - x: 0.7474, - y: 15.8059, - }, - { - l: '25.0', - x: 0.7666, - y: 15.8355, - }, - { - l: '25.0', - x: 0.7858, - y: 15.8629, - }, - { - l: '25.0', - x: 0.8049, - y: 15.8882, - }, - { - l: '25.0', - x: 0.8241, - y: 15.9116, - }, - { - l: '25.0', - x: 0.8433, - y: 15.9324, - }, - { - l: '25.0', - x: 0.8624, - y: 15.9511, - }, - { - l: '25.0', - x: 0.8816, - y: 15.9683, - }, - { - l: '25.0', - x: 0.9008, - y: 15.9843, - }, - { - l: '25.0', - x: 0.9199, - y: 15.9994, - }, - { - l: '25.0', - x: 0.9391, - y: 16.015, - }, - { - l: '25.0', - x: 0.9582, - y: 16.03, - }, - { - l: '25.0', - x: 0.9774, - y: 16.0442, - }, - { - l: '25.0', - x: 0.9966, - y: 16.0576, - }, - { - l: '25.0', - x: 1.0157, - y: 16.0699, - }, - { - l: '25.0', - x: 1.0349, - y: 16.0812, - }, - { - l: '25.0', - x: 1.0541, - y: 16.0917, - }, - { - l: '25.0', - x: 1.0732, - y: 16.1014, - }, - { - l: '25.0', - x: 1.0924, - y: 16.1099, - }, - { - l: '25.0', - x: 1.1116, - y: 16.1175, - }, - { - l: '25.0', - x: 1.1307, - y: 16.1244, - }, - { - l: '25.0', - x: 1.1499, - y: 16.1308, - }, - { - l: '25.0', - x: 1.1691, - y: 16.1368, - }, - { - l: '25.0', - x: 1.1882, - y: 16.1428, - }, - { - l: '25.0', - x: 1.2074, - y: 16.1486, - }, - { - l: '25.0', - x: 1.2266, - y: 16.154, - }, - { - l: '25.0', - x: 1.2457, - y: 16.159, - }, - { - l: '25.0', - x: 1.2649, - y: 16.1635, - }, - { - l: '25.0', - x: 1.2841, - y: 16.1676, - }, - { - l: '25.0', - x: 1.3032, - y: 16.1713, - }, - { - l: '25.0', - x: 1.3224, - y: 16.1746, - }, - { - l: '25.0', - x: 1.3415, - y: 16.1774, - }, - { - l: '25.0', - x: 1.3607, - y: 16.1799, - }, - { - l: '25.0', - x: 1.3799, - y: 16.1822, - }, - { - l: '25.0', - x: 1.399, - y: 16.1841, - }, - { - l: '25.0', - x: 1.4182, - y: 16.1858, - }, - { - l: '25.0', - x: 1.4374, - y: 16.1875, - }, - { - l: '25.0', - x: 1.4565, - y: 16.1891, - }, - { - l: '25.0', - x: 1.4757, - y: 16.1904, - }, - { - l: '25.0', - x: 1.4949, - y: 16.1916, - }, - { - l: '25.0', - x: 1.514, - y: 16.1925, - }, - { - l: '25.0', - x: 1.5332, - y: 16.1932, - }, - { - l: '25.0', - x: 1.5524, - y: 16.1938, - }, - { - l: '25.0', - x: 1.5715, - y: 16.1942, - }, - { - l: '25.0', - x: 1.5907, - y: 16.1945, - }, - { - l: '25.0', - x: 1.6099, - y: 16.1946, - }, - { - l: '25.0', - x: 1.629, - y: 16.1945, - }, - { - l: '25.0', - x: 1.6482, - y: 16.1943, - }, - { - l: '25.0', - x: 1.6674, - y: 16.194, - }, - { - l: '25.0', - x: 1.6865, - y: 16.1935, - }, - { - l: '25.0', - x: 1.7057, - y: 16.1929, - }, - { - l: '25.0', - x: 1.7248, - y: 16.1922, - }, - { - l: '25.0', - x: 1.744, - y: 16.1914, - }, - { - l: '25.0', - x: 1.7632, - y: 16.1904, - }, - { - l: '25.0', - x: 1.7823, - y: 16.1893, - }, - { - l: '25.0', - x: 1.8015, - y: 16.1881, - }, - { - l: '25.0', - x: 1.8207, - y: 16.1868, - }, - { - l: '25.0', - x: 1.8398, - y: 16.1855, - }, - { - l: '25.0', - x: 1.859, - y: 16.1842, - }, - { - l: '25.0', - x: 1.8782, - y: 16.1828, - }, - { - l: '25.0', - x: 1.8973, - y: 16.1814, - }, - { - l: '25.0', - x: 1.9165, - y: 16.1798, - }, - { - l: '25.0', - x: 1.9357, - y: 16.1781, - }, - { - l: '25.0', - x: 1.9548, - y: 16.1763, - }, - { - l: '25.0', - x: 1.974, - y: 16.1743, - }, - { - l: '25.0', - x: 1.9932, - y: 16.1723, - }, - { - l: '25.0', - x: 2.0123, - y: 16.1702, - }, - { - l: '25.0', - x: 2.0957, - y: 16.1604, - }, - { - l: '25.0', - x: 2.179, - y: 16.1502, - }, - { - l: '25.0', - x: 2.2623, - y: 16.1375, - }, - { - l: '25.0', - x: 2.3457, - y: 16.1238, - }, - { - l: '25.0', - x: 2.429, - y: 16.1103, - }, - { - l: '25.0', - x: 2.5123, - y: 16.0944, - }, - { - l: '25.0', - x: 2.5957, - y: 16.0786, - }, - { - l: '25.0', - x: 2.679, - y: 16.0639, - }, - { - l: '25.0', - x: 2.7623, - y: 16.0477, - }, - { - l: '25.0', - x: 2.8457, - y: 16.032, - }, - { - l: '25.0', - x: 2.929, - y: 16.018, - }, - { - l: '25.0', - x: 3.0123, - y: 16.0029, - }, - { - l: '25.0', - x: 3.0957, - y: 15.9888, - }, - { - l: '25.0', - x: 3.179, - y: 15.9764, - }, - { - l: '25.0', - x: 3.2623, - y: 15.9633, - }, - { - l: '25.0', - x: 3.3457, - y: 15.951, - }, - { - l: '25.0', - x: 3.429, - y: 15.9402, - }, - { - l: '25.0', - x: 3.5123, - y: 15.9287, - }, - { - l: '25.0', - x: 3.5957, - y: 15.918, - }, - { - l: '25.0', - x: 3.679, - y: 15.9089, - }, - { - l: '25.0', - x: 3.7623, - y: 15.899, - }, - { - l: '25.0', - x: 3.8457, - y: 15.89, - }, - { - l: '25.0', - x: 3.929, - y: 15.8823, - }, - { - l: '25.0', - x: 4.0123, - y: 15.8743, - }, - { - l: '25.0', - x: 4.0957, - y: 15.867, - }, - { - l: '25.0', - x: 4.179, - y: 15.8609, - }, - { - l: '25.0', - x: 4.2623, - y: 15.8546, - }, - { - l: '25.0', - x: 4.3457, - y: 15.8491, - }, - { - l: '25.0', - x: 4.429, - y: 15.8445, - }, - { - l: '25.0', - x: 4.5123, - y: 15.84, - }, - { - l: '25.0', - x: 4.5957, - y: 15.8363, - }, - { - l: '25.0', - x: 4.679, - y: 15.8335, - }, - { - l: '25.0', - x: 4.7623, - y: 15.8311, - }, - { - l: '25.0', - x: 4.8457, - y: 15.8295, - }, - { - l: '25.0', - x: 4.929, - y: 15.8287, - }, - { - l: '25.0', - x: 5.0123, - y: 15.8286, - }, - { - l: '25.0', - x: 5.0957, - y: 15.8294, - }, - { - l: '25.0', - x: 5.179, - y: 15.8309, - }, - { - l: '25.0', - x: 5.2623, - y: 15.8334, - }, - { - l: '25.0', - x: 5.3457, - y: 15.8367, - }, - { - l: '25.0', - x: 5.429, - y: 15.8405, - }, - { - l: '25.0', - x: 5.5123, - y: 15.8457, - }, - { - l: '25.0', - x: 5.5957, - y: 15.8515, - }, - { - l: '25.0', - x: 5.679, - y: 15.8576, - }, - { - l: '25.0', - x: 5.7623, - y: 15.8653, - }, - { - l: '25.0', - x: 5.8457, - y: 15.8736, - }, - { - l: '25.0', - x: 5.929, - y: 15.8819, - }, - { - l: '25.0', - x: 6.0123, - y: 15.8922, - }, - { - l: '25.0', - x: 6.0957, - y: 15.903, - }, - { - l: '25.0', - x: 6.179, - y: 15.9137, - }, - { - l: '25.0', - x: 6.2623, - y: 15.9265, - }, - { - l: '25.0', - x: 6.3457, - y: 15.9399, - }, - { - l: '25.0', - x: 6.429, - y: 15.9528, - }, - { - l: '25.0', - x: 6.5123, - y: 15.9683, - }, - { - l: '25.0', - x: 6.5957, - y: 15.9841, - }, - { - l: '25.0', - x: 6.679, - y: 15.9992, - }, - { - l: '25.0', - x: 6.7623, - y: 16.017, - }, - { - l: '25.0', - x: 6.8457, - y: 16.0351, - }, - { - l: '25.0', - x: 6.929, - y: 16.0523, - }, - { - l: '25.0', - x: 7.0123, - y: 16.0723, - }, - { - l: '25.0', - x: 7.0957, - y: 16.0924, - }, - { - l: '25.0', - x: 7.179, - y: 16.1114, - }, - { - l: '25.0', - x: 7.2623, - y: 16.1333, - }, - { - l: '25.0', - x: 7.3457, - y: 16.1553, - }, - { - l: '25.0', - x: 7.429, - y: 16.1759, - }, - { - l: '25.0', - x: 7.5123, - y: 16.1997, - }, - { - l: '25.0', - x: 7.5957, - y: 16.2235, - }, - { - l: '25.0', - x: 7.679, - y: 16.2457, - }, - { - l: '25.0', - x: 7.7623, - y: 16.2712, - }, - { - l: '25.0', - x: 7.8457, - y: 16.2966, - }, - { - l: '25.0', - x: 7.929, - y: 16.3202, - }, - { - l: '25.0', - x: 8.0123, - y: 16.3472, - }, - { - l: '25.0', - x: 8.0957, - y: 16.374, - }, - { - l: '25.0', - x: 8.179, - y: 16.3989, - }, - { - l: '25.0', - x: 8.2623, - y: 16.4274, - }, - { - l: '25.0', - x: 8.3457, - y: 16.4556, - }, - { - l: '25.0', - x: 8.429, - y: 16.4817, - }, - { - l: '25.0', - x: 8.5123, - y: 16.5115, - }, - { - l: '25.0', - x: 8.5957, - y: 16.5409, - }, - { - l: '25.0', - x: 8.679, - y: 16.5682, - }, - { - l: '25.0', - x: 8.7623, - y: 16.5991, - }, - { - l: '25.0', - x: 8.8457, - y: 16.6296, - }, - { - l: '25.0', - x: 8.929, - y: 16.6579, - }, - { - l: '25.0', - x: 9.0123, - y: 16.69, - }, - { - l: '25.0', - x: 9.0957, - y: 16.7216, - }, - { - l: '25.0', - x: 9.179, - y: 16.7508, - }, - { - l: '25.0', - x: 9.2623, - y: 16.7839, - }, - { - l: '25.0', - x: 9.3457, - y: 16.8165, - }, - { - l: '25.0', - x: 9.429, - y: 16.8466, - }, - { - l: '25.0', - x: 9.5123, - y: 16.8807, - }, - { - l: '25.0', - x: 9.5957, - y: 16.9142, - }, - { - l: '25.0', - x: 9.679, - y: 16.945, - }, - { - l: '25.0', - x: 9.7623, - y: 16.9799, - }, - { - l: '25.0', - x: 9.8457, - y: 17.0142, - }, - { - l: '25.0', - x: 9.929, - y: 17.0457, - }, - { - l: '25.0', - x: 10.0123, - y: 17.0814, - }, - { - l: '25.0', - x: 10.0957, - y: 17.1164, - }, - { - l: '25.0', - x: 10.179, - y: 17.1487, - }, - { - l: '25.0', - x: 10.2623, - y: 17.1851, - }, - { - l: '25.0', - x: 10.3457, - y: 17.2208, - }, - { - l: '25.0', - x: 10.429, - y: 17.2537, - }, - { - l: '25.0', - x: 10.5123, - y: 17.2909, - }, - { - l: '25.0', - x: 10.5957, - y: 17.3273, - }, - { - l: '25.0', - x: 10.679, - y: 17.3608, - }, - { - l: '25.0', - x: 10.7623, - y: 17.3986, - }, - { - l: '25.0', - x: 10.8457, - y: 17.4356, - }, - { - l: '25.0', - x: 10.929, - y: 17.4697, - }, - { - l: '25.0', - x: 11.0123, - y: 17.5081, - }, - { - l: '25.0', - x: 11.0957, - y: 17.5458, - }, - { - l: '25.0', - x: 11.179, - y: 17.5803, - }, - { - l: '25.0', - x: 11.2623, - y: 17.6193, - }, - { - l: '25.0', - x: 11.3457, - y: 17.6574, - }, - { - l: '25.0', - x: 11.429, - y: 17.6924, - }, - { - l: '25.0', - x: 11.5123, - y: 17.7318, - }, - { - l: '25.0', - x: 11.5957, - y: 17.7704, - }, - { - l: '25.0', - x: 11.679, - y: 17.8058, - }, - { - l: '25.0', - x: 11.7623, - y: 17.8456, - }, - { - l: '25.0', - x: 11.8457, - y: 17.8845, - }, - { - l: '25.0', - x: 11.929, - y: 17.9201, - }, - { - l: '25.0', - x: 12.0123, - y: 17.9603, - }, - { - l: '25.0', - x: 12.0957, - y: 17.9996, - }, - { - l: '25.0', - x: 12.179, - y: 18.0355, - }, - { - l: '25.0', - x: 12.2623, - y: 18.0759, - }, - { - l: '25.0', - x: 12.3457, - y: 18.1154, - }, - { - l: '25.0', - x: 12.429, - y: 18.1515, - }, - { - l: '25.0', - x: 12.5123, - y: 18.1922, - }, - { - l: '25.0', - x: 12.5957, - y: 18.2318, - }, - { - l: '25.0', - x: 12.679, - y: 18.2682, - }, - { - l: '25.0', - x: 12.7623, - y: 18.3089, - }, - { - l: '25.0', - x: 12.8457, - y: 18.3487, - }, - { - l: '25.0', - x: 12.929, - y: 18.385, - }, - { - l: '25.0', - x: 13.0123, - y: 18.4259, - }, - { - l: '25.0', - x: 13.0957, - y: 18.4657, - }, - { - l: '25.0', - x: 13.179, - y: 18.502, - }, - { - l: '25.0', - x: 13.2623, - y: 18.5429, - }, - { - l: '25.0', - x: 13.3457, - y: 18.5826, - }, - { - l: '25.0', - x: 13.429, - y: 18.619, - }, - { - l: '25.0', - x: 13.5123, - y: 18.6598, - }, - { - l: '25.0', - x: 13.5957, - y: 18.6994, - }, - { - l: '25.0', - x: 13.679, - y: 18.7357, - }, - { - l: '25.0', - x: 13.7623, - y: 18.7763, - }, - { - l: '25.0', - x: 13.8457, - y: 18.8158, - }, - { - l: '25.0', - x: 13.929, - y: 18.8518, - }, - { - l: '25.0', - x: 14.0123, - y: 18.8923, - }, - { - l: '25.0', - x: 14.0957, - y: 18.9315, - }, - { - l: '25.0', - x: 14.179, - y: 18.9674, - }, - { - l: '25.0', - x: 14.2623, - y: 19.0076, - }, - { - l: '25.0', - x: 14.3457, - y: 19.0465, - }, - { - l: '25.0', - x: 14.429, - y: 19.0822, - }, - { - l: '25.0', - x: 14.5123, - y: 19.122, - }, - { - l: '25.0', - x: 14.5957, - y: 19.1607, - }, - { - l: '25.0', - x: 14.679, - y: 19.196, - }, - { - l: '25.0', - x: 14.7623, - y: 19.2355, - }, - { - l: '25.0', - x: 14.8457, - y: 19.2739, - }, - { - l: '25.0', - x: 14.929, - y: 19.3089, - }, - { - l: '25.0', - x: 15.0123, - y: 19.348, - }, - { - l: '25.0', - x: 15.0957, - y: 19.3861, - }, - { - l: '25.0', - x: 15.179, - y: 19.4207, - }, - { - l: '25.0', - x: 15.2623, - y: 19.4595, - }, - { - l: '25.0', - x: 15.3457, - y: 19.4971, - }, - { - l: '25.0', - x: 15.429, - y: 19.5314, - }, - { - l: '25.0', - x: 15.5123, - y: 19.5698, - }, - { - l: '25.0', - x: 15.5957, - y: 19.607, - }, - { - l: '25.0', - x: 15.679, - y: 19.6409, - }, - { - l: '25.0', - x: 15.7623, - y: 19.6789, - }, - { - l: '25.0', - x: 15.8457, - y: 19.7157, - }, - { - l: '25.0', - x: 15.929, - y: 19.7493, - }, - { - l: '25.0', - x: 16.0123, - y: 19.7868, - }, - { - l: '25.0', - x: 16.0957, - y: 19.8232, - }, - { - l: '25.0', - x: 16.179, - y: 19.8564, - }, - { - l: '25.0', - x: 16.2623, - y: 19.8935, - }, - { - l: '25.0', - x: 16.3457, - y: 19.9295, - }, - { - l: '25.0', - x: 16.429, - y: 19.9623, - }, - { - l: '25.0', - x: 16.5123, - y: 19.9989, - }, - { - l: '25.0', - x: 16.5957, - y: 20.0344, - }, - { - l: '25.0', - x: 16.679, - y: 20.0669, - }, - { - l: '25.0', - x: 16.7623, - y: 20.103, - }, - { - l: '25.0', - x: 16.8457, - y: 20.1382, - }, - { - l: '25.0', - x: 16.929, - y: 20.1702, - }, - { - l: '25.0', - x: 17.0123, - y: 20.206, - }, - { - l: '25.0', - x: 17.0957, - y: 20.2407, - }, - { - l: '25.0', - x: 17.179, - y: 20.2723, - }, - { - l: '25.0', - x: 17.2623, - y: 20.3077, - }, - { - l: '25.0', - x: 17.3457, - y: 20.3419, - }, - { - l: '25.0', - x: 17.429, - y: 20.3732, - }, - { - l: '25.0', - x: 17.5123, - y: 20.4081, - }, - { - l: '25.0', - x: 17.5957, - y: 20.442, - }, - { - l: '25.0', - x: 17.679, - y: 20.4729, - }, - { - l: '25.0', - x: 17.7623, - y: 20.5074, - }, - { - l: '25.0', - x: 17.8457, - y: 20.5409, - }, - { - l: '25.0', - x: 17.929, - y: 20.5713, - }, - { - l: '25.0', - x: 18.0123, - y: 20.6054, - }, - { - l: '25.0', - x: 18.0957, - y: 20.6385, - }, - { - l: '25.0', - x: 18.179, - y: 20.6686, - }, - { - l: '25.0', - x: 18.2623, - y: 20.7023, - }, - { - l: '25.0', - x: 18.3457, - y: 20.7349, - }, - { - l: '25.0', - x: 18.429, - y: 20.7647, - }, - { - l: '25.0', - x: 18.5123, - y: 20.798, - }, - { - l: '25.0', - x: 18.5957, - y: 20.8303, - }, - { - l: '25.0', - x: 18.679, - y: 20.8598, - }, - { - l: '25.0', - x: 18.7623, - y: 20.8926, - }, - { - l: '25.0', - x: 18.8457, - y: null, - }, + { l: 25.0, x: 0, y: 11.2076 }, + { l: 25.0, x: 0.08, y: 12.4392 }, + { l: 25.0, x: 0.17, y: 13.2834 }, + { l: 25.0, x: 0.25, y: 13.9403 }, + { l: 25.0, x: 0.33, y: 14.464 }, + { l: 25.0, x: 0.42, y: 14.8798 }, + { l: 25.0, x: 0.5, y: 15.2067 }, + { l: 25.0, x: 0.58, y: 15.4599 }, + { l: 25.0, x: 0.67, y: 15.6527 }, + { l: 25.0, x: 0.75, y: 15.7976 }, + { l: 25.0, x: 0.83, y: 15.906 }, + { l: 25.0, x: 0.92, y: 15.987 }, + { l: 25.0, x: 1, y: 16.0474 }, + { l: 25.0, x: 1.08, y: 16.0921 }, + { l: 25.0, x: 1.17, y: 16.1247 }, + { l: 25.0, x: 1.25, y: 16.1477 }, + { l: 25.0, x: 1.33, y: 16.1634 }, + { l: 25.0, x: 1.42, y: 16.1736 }, + { l: 25.0, x: 1.5, y: 16.1795 }, + { l: 25.0, x: 1.58, y: 16.182 }, + { l: 25.0, x: 1.67, y: 16.1816 }, + { l: 25.0, x: 1.75, y: 16.1787 }, + { l: 25.0, x: 1.83, y: 16.1738 }, + { l: 25.0, x: 1.92, y: 16.1672 }, + { l: 25.0, x: 2, y: 16.1592 }, + { l: 25.0, x: 2.08, y: 16.1498 }, + { l: 25.0, x: 2.17, y: 16.1391 }, + { l: 25.0, x: 2.25, y: 16.1271 }, + { l: 25.0, x: 2.33, y: 16.1138 }, + { l: 25.0, x: 2.42, y: 16.0995 }, + { l: 25.0, x: 2.5, y: 16.0843 }, + { l: 25.0, x: 2.58, y: 16.0689 }, + { l: 25.0, x: 2.67, y: 16.0531 }, + { l: 25.0, x: 2.75, y: 16.0376 }, + { l: 25.0, x: 2.83, y: 16.0221 }, + { l: 25.0, x: 2.92, y: 16.0071 }, + { l: 25.0, x: 3, y: 15.9925 }, + { l: 25.0, x: 3.08, y: 15.9786 }, + { l: 25.0, x: 3.17, y: 15.9652 }, + { l: 25.0, x: 3.25, y: 15.9525 }, + { l: 25.0, x: 3.33, y: 15.9404 }, + { l: 25.0, x: 3.42, y: 15.9287 }, + { l: 25.0, x: 3.5, y: 15.9176 }, + { l: 25.0, x: 3.58, y: 15.9071 }, + { l: 25.0, x: 3.67, y: 15.8971 }, + { l: 25.0, x: 3.75, y: 15.8876 }, + { l: 25.0, x: 3.83, y: 15.8787 }, + { l: 25.0, x: 3.92, y: 15.8703 }, + { l: 25.0, x: 4, y: 15.8625 }, + { l: 25.0, x: 4.08, y: 15.8553 }, + { l: 25.0, x: 4.17, y: 15.8486 }, + { l: 25.0, x: 4.25, y: 15.8425 }, + { l: 25.0, x: 4.33, y: 15.8369 }, + { l: 25.0, x: 4.42, y: 15.8319 }, + { l: 25.0, x: 4.5, y: 15.8275 }, + { l: 25.0, x: 4.58, y: 15.8237 }, + { l: 25.0, x: 4.67, y: 15.8206 }, + { l: 25.0, x: 4.75, y: 15.8181 }, + { l: 25.0, x: 4.83, y: 15.8164 }, + { l: 25.0, x: 4.92, y: 15.8154 }, + { l: 25.0, x: 5, y: 15.8152 }, + { l: 25.0, x: 5.08, y: 15.8158 }, + { l: 25.0, x: 5.17, y: 15.8172 }, + { l: 25.0, x: 5.25, y: 15.8194 }, + { l: 25.0, x: 5.33, y: 15.8225 }, + { l: 25.0, x: 5.42, y: 15.8264 }, + { l: 25.0, x: 5.5, y: 15.8312 }, + { l: 25.0, x: 5.58, y: 15.8368 }, + { l: 25.0, x: 5.67, y: 15.8431 }, + { l: 25.0, x: 5.75, y: 15.8503 }, + { l: 25.0, x: 5.83, y: 15.8582 }, + { l: 25.0, x: 5.92, y: 15.867 }, + { l: 25.0, x: 6, y: 15.8766 }, + { l: 25.0, x: 6.08, y: 15.887 }, + { l: 25.0, x: 6.17, y: 15.8983 }, + { l: 25.0, x: 6.25, y: 15.9104 }, + { l: 25.0, x: 6.33, y: 15.9233 }, + { l: 25.0, x: 6.42, y: 15.937 }, + { l: 25.0, x: 6.5, y: 15.9516 }, + { l: 25.0, x: 6.58, y: 15.9669 }, + { l: 25.0, x: 6.67, y: 15.983 }, + { l: 25.0, x: 6.75, y: 15.9998 }, + { l: 25.0, x: 6.83, y: 16.0173 }, + { l: 25.0, x: 6.92, y: 16.0356 }, + { l: 25.0, x: 7, y: 16.0545 }, + { l: 25.0, x: 7.08, y: 16.0741 }, + { l: 25.0, x: 7.17, y: 16.0943 }, + { l: 25.0, x: 7.25, y: 16.1151 }, + { l: 25.0, x: 7.33, y: 16.1364 }, + { l: 25.0, x: 7.42, y: 16.1584 }, + { l: 25.0, x: 7.5, y: 16.181 }, + { l: 25.0, x: 7.58, y: 16.2042 }, + { l: 25.0, x: 7.67, y: 16.2278 }, + { l: 25.0, x: 7.75, y: 16.252 }, + { l: 25.0, x: 7.83, y: 16.2767 }, + { l: 25.0, x: 7.92, y: 16.3019 }, + { l: 25.0, x: 8, y: 16.3276 }, + { l: 25.0, x: 8.08, y: 16.3537 }, + { l: 25.0, x: 8.17, y: 16.3803 }, + { l: 25.0, x: 8.25, y: 16.4073 }, + { l: 25.0, x: 8.33, y: 16.4349 }, + { l: 25.0, x: 8.42, y: 16.4627 }, + { l: 25.0, x: 8.5, y: 16.491 }, + { l: 25.0, x: 8.58, y: 16.5197 }, + { l: 25.0, x: 8.67, y: 16.5488 }, + { l: 25.0, x: 8.75, y: 16.5782 }, + { l: 25.0, x: 8.83, y: 16.6081 }, + { l: 25.0, x: 8.92, y: 16.6382 }, + { l: 25.0, x: 9, y: 16.6687 }, + { l: 25.0, x: 9.08, y: 16.6996 }, + { l: 25.0, x: 9.17, y: 16.7308 }, + { l: 25.0, x: 9.25, y: 16.7623 }, + { l: 25.0, x: 9.33, y: 16.7941 }, + { l: 25.0, x: 9.42, y: 16.8263 }, + { l: 25.0, x: 9.5, y: 16.8587 }, + { l: 25.0, x: 9.58, y: 16.8914 }, + { l: 25.0, x: 9.67, y: 16.9243 }, + { l: 25.0, x: 9.75, y: 16.9576 }, + { l: 25.0, x: 9.83, y: 16.991 }, + { l: 25.0, x: 9.92, y: 17.0247 }, + { l: 25.0, x: 10, y: 17.0587 }, + { l: 25.0, x: 10.08, y: 17.0929 }, + { l: 25.0, x: 10.17, y: 17.1274 }, + { l: 25.0, x: 10.25, y: 17.1621 }, + { l: 25.0, x: 10.33, y: 17.1969 }, + { l: 25.0, x: 10.42, y: 17.2321 }, + { l: 25.0, x: 10.5, y: 17.2675 }, + { l: 25.0, x: 10.58, y: 17.3031 }, + { l: 25.0, x: 10.67, y: 17.3389 }, + { l: 25.0, x: 10.75, y: 17.3749 }, + { l: 25.0, x: 10.83, y: 17.4111 }, + { l: 25.0, x: 10.92, y: 17.4476 }, + { l: 25.0, x: 11, y: 17.4841 }, + { l: 25.0, x: 11.08, y: 17.5209 }, + { l: 25.0, x: 11.17, y: 17.5579 }, + { l: 25.0, x: 11.25, y: 17.595 }, + { l: 25.0, x: 11.33, y: 17.6322 }, + { l: 25.0, x: 11.42, y: 17.6697 }, + { l: 25.0, x: 11.5, y: 17.7072 }, + { l: 25.0, x: 11.58, y: 17.7449 }, + { l: 25.0, x: 11.67, y: 17.7828 }, + { l: 25.0, x: 11.75, y: 17.8207 }, + { l: 25.0, x: 11.83, y: 17.8587 }, + { l: 25.0, x: 11.92, y: 17.8969 }, + { l: 25.0, x: 12, y: 17.9351 }, + { l: 25.0, x: 12.08, y: 17.9735 }, + { l: 25.0, x: 12.17, y: 18.012 }, + { l: 25.0, x: 12.25, y: 18.0505 }, + { l: 25.0, x: 12.33, y: 18.0891 }, + { l: 25.0, x: 12.42, y: 18.1278 }, + { l: 25.0, x: 12.5, y: 18.1665 }, + { l: 25.0, x: 12.58, y: 18.2053 }, + { l: 25.0, x: 12.67, y: 18.2442 }, + { l: 25.0, x: 12.75, y: 18.283 }, + { l: 25.0, x: 12.83, y: 18.3219 }, + { l: 25.0, x: 12.92, y: 18.3608 }, + { l: 25.0, x: 13, y: 18.3997 }, + { l: 25.0, x: 13.08, y: 18.4387 }, + { l: 25.0, x: 13.17, y: 18.4776 }, + { l: 25.0, x: 13.25, y: 18.5165 }, + { l: 25.0, x: 13.33, y: 18.5554 }, + { l: 25.0, x: 13.42, y: 18.5944 }, + { l: 25.0, x: 13.5, y: 18.6332 }, + { l: 25.0, x: 13.58, y: 18.672 }, + { l: 25.0, x: 13.67, y: 18.7108 }, + { l: 25.0, x: 13.75, y: 18.7495 }, + { l: 25.0, x: 13.83, y: 18.7882 }, + { l: 25.0, x: 13.92, y: 18.8268 }, + { l: 25.0, x: 14, y: 18.8654 }, + { l: 25.0, x: 14.08, y: 18.9038 }, + { l: 25.0, x: 14.17, y: 18.9421 }, + { l: 25.0, x: 14.25, y: 18.9804 }, + { l: 25.0, x: 14.33, y: 19.0186 }, + { l: 25.0, x: 14.42, y: 19.0567 }, + { l: 25.0, x: 14.5, y: 19.0947 }, + { l: 25.0, x: 14.58, y: 19.1326 }, + { l: 25.0, x: 14.67, y: 19.1704 }, + { l: 25.0, x: 14.75, y: 19.2081 }, + { l: 25.0, x: 14.83, y: 19.2457 }, + { l: 25.0, x: 14.92, y: 19.2831 }, + { l: 25.0, x: 15, y: 19.3204 }, + { l: 25.0, x: 15.08, y: 19.3577 }, + { l: 25.0, x: 15.17, y: 19.3948 }, + { l: 25.0, x: 15.25, y: 19.4317 }, + { l: 25.0, x: 15.33, y: 19.4686 }, + { l: 25.0, x: 15.42, y: 19.5053 }, + { l: 25.0, x: 15.5, y: 19.5419 }, + { l: 25.0, x: 15.58, y: 19.5784 }, + { l: 25.0, x: 15.67, y: 19.6147 }, + { l: 25.0, x: 15.75, y: 19.6509 }, + { l: 25.0, x: 15.83, y: 19.6869 }, + { l: 25.0, x: 15.92, y: 19.7228 }, + { l: 25.0, x: 16, y: 19.7586 }, + { l: 25.0, x: 16.08, y: 19.7943 }, + { l: 25.0, x: 16.17, y: 19.8298 }, + { l: 25.0, x: 16.25, y: 19.8652 }, + { l: 25.0, x: 16.33, y: 19.9004 }, + { l: 25.0, x: 16.42, y: 19.9355 }, + { l: 25.0, x: 16.5, y: 19.9704 }, + { l: 25.0, x: 16.58, y: 20.0052 }, + { l: 25.0, x: 16.67, y: 20.04 }, + { l: 25.0, x: 16.75, y: 20.0745 }, + { l: 25.0, x: 16.83, y: 20.1089 }, + { l: 25.0, x: 16.92, y: 20.1432 }, + { l: 25.0, x: 17, y: 20.1773 }, + { l: 25.0, x: 17.08, y: 20.2112 }, + { l: 25.0, x: 17.17, y: 20.2451 }, + { l: 25.0, x: 17.25, y: 20.2789 }, + { l: 25.0, x: 17.33, y: 20.3124 }, + { l: 25.0, x: 17.42, y: 20.3458 }, + { l: 25.0, x: 17.5, y: 20.3792 }, + { l: 25.0, x: 17.58, y: 20.4123 }, + { l: 25.0, x: 17.67, y: 20.4453 }, + { l: 25.0, x: 17.75, y: 20.4783 }, + { l: 25.0, x: 17.83, y: 20.5111 }, + { l: 25.0, x: 17.92, y: 20.5437 }, + { l: 25.0, x: 18, y: 20.5762 }, + { l: 25.0, x: 18.08, y: 20.6086 }, + { l: 25.0, x: 18.17, y: 20.6408 }, + { l: 25.0, x: 18.25, y: 20.6729 }, + { l: 25.0, x: 18.33, y: 20.7049 }, + { l: 25.0, x: 18.42, y: 20.7368 }, + { l: 25.0, x: 18.5, y: 20.7686 }, + { l: 25.0, x: 18.58, y: 20.8002 }, + { l: 25.0, x: 18.67, y: 20.8317 }, + { l: 25.0, x: 18.75, y: 20.863 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 0.0, - y: 12.1816, - }, - { - l: '50.0', - x: 0.0192, - y: 12.4832, - }, - { - l: '50.0', - x: 0.0383, - y: 12.7848, - }, - { - l: '50.0', - x: 0.0575, - y: 13.0864, - }, - { - l: '50.0', - x: 0.0767, - y: 13.388, - }, - { - l: '50.0', - x: 0.0958, - y: 13.6216, - }, - { - l: '50.0', - x: 0.115, - y: 13.8199, - }, - { - l: '50.0', - x: 0.1342, - y: 13.9997, - }, - { - l: '50.0', - x: 0.1533, - y: 14.1661, - }, - { - l: '50.0', - x: 0.1725, - y: 14.3263, - }, - { - l: '50.0', - x: 0.1916, - y: 14.4969, - }, - { - l: '50.0', - x: 0.2108, - y: 14.6616, - }, - { - l: '50.0', - x: 0.23, - y: 14.8198, - }, - { - l: '50.0', - x: 0.2491, - y: 14.9709, - }, - { - l: '50.0', - x: 0.2683, - y: 15.1131, - }, - { - l: '50.0', - x: 0.2875, - y: 15.2472, - }, - { - l: '50.0', - x: 0.3066, - y: 15.3732, - }, - { - l: '50.0', - x: 0.3258, - y: 15.4909, - }, - { - l: '50.0', - x: 0.345, - y: 15.596, - }, - { - l: '50.0', - x: 0.3641, - y: 15.6923, - }, - { - l: '50.0', - x: 0.3833, - y: 15.7823, - }, - { - l: '50.0', - x: 0.4025, - y: 15.8674, - }, - { - l: '50.0', - x: 0.4216, - y: 15.9497, - }, - { - l: '50.0', - x: 0.4408, - y: 16.0349, - }, - { - l: '50.0', - x: 0.46, - y: 16.1171, - }, - { - l: '50.0', - x: 0.4791, - y: 16.196, - }, - { - l: '50.0', - x: 0.4983, - y: 16.2709, - }, - { - l: '50.0', - x: 0.5175, - y: 16.3405, - }, - { - l: '50.0', - x: 0.5366, - y: 16.4055, - }, - { - l: '50.0', - x: 0.5558, - y: 16.466, - }, - { - l: '50.0', - x: 0.5749, - y: 16.5221, - }, - { - l: '50.0', - x: 0.5941, - y: 16.5718, - }, - { - l: '50.0', - x: 0.6133, - y: 16.6168, - }, - { - l: '50.0', - x: 0.6324, - y: 16.6584, - }, - { - l: '50.0', - x: 0.6516, - y: 16.6971, - }, - { - l: '50.0', - x: 0.6708, - y: 16.734, - }, - { - l: '50.0', - x: 0.6899, - y: 16.7719, - }, - { - l: '50.0', - x: 0.7091, - y: 16.8081, - }, - { - l: '50.0', - x: 0.7283, - y: 16.8425, - }, - { - l: '50.0', - x: 0.7474, - y: 16.8749, - }, - { - l: '50.0', - x: 0.7666, - y: 16.9047, - }, - { - l: '50.0', - x: 0.7858, - y: 16.9324, - }, - { - l: '50.0', - x: 0.8049, - y: 16.9579, - }, - { - l: '50.0', - x: 0.8241, - y: 16.9814, - }, - { - l: '50.0', - x: 0.8433, - y: 17.0022, - }, - { - l: '50.0', - x: 0.8624, - y: 17.021, - }, - { - l: '50.0', - x: 0.8816, - y: 17.0382, - }, - { - l: '50.0', - x: 0.9008, - y: 17.0542, - }, - { - l: '50.0', - x: 0.9199, - y: 17.0693, - }, - { - l: '50.0', - x: 0.9391, - y: 17.085, - }, - { - l: '50.0', - x: 0.9582, - y: 17.0999, - }, - { - l: '50.0', - x: 0.9774, - y: 17.114, - }, - { - l: '50.0', - x: 0.9966, - y: 17.1273, - }, - { - l: '50.0', - x: 1.0157, - y: 17.1395, - }, - { - l: '50.0', - x: 1.0349, - y: 17.1508, - }, - { - l: '50.0', - x: 1.0541, - y: 17.1612, - }, - { - l: '50.0', - x: 1.0732, - y: 17.1707, - }, - { - l: '50.0', - x: 1.0924, - y: 17.1792, - }, - { - l: '50.0', - x: 1.1116, - y: 17.1867, - }, - { - l: '50.0', - x: 1.1307, - y: 17.1935, - }, - { - l: '50.0', - x: 1.1499, - y: 17.1998, - }, - { - l: '50.0', - x: 1.1691, - y: 17.2056, - }, - { - l: '50.0', - x: 1.1882, - y: 17.2116, - }, - { - l: '50.0', - x: 1.2074, - y: 17.2172, - }, - { - l: '50.0', - x: 1.2266, - y: 17.2225, - }, - { - l: '50.0', - x: 1.2457, - y: 17.2274, - }, - { - l: '50.0', - x: 1.2649, - y: 17.2318, - }, - { - l: '50.0', - x: 1.2841, - y: 17.2357, - }, - { - l: '50.0', - x: 1.3032, - y: 17.2393, - }, - { - l: '50.0', - x: 1.3224, - y: 17.2425, - }, - { - l: '50.0', - x: 1.3415, - y: 17.2453, - }, - { - l: '50.0', - x: 1.3607, - y: 17.2478, - }, - { - l: '50.0', - x: 1.3799, - y: 17.2499, - }, - { - l: '50.0', - x: 1.399, - y: 17.2518, - }, - { - l: '50.0', - x: 1.4182, - y: 17.2535, - }, - { - l: '50.0', - x: 1.4374, - y: 17.2552, - }, - { - l: '50.0', - x: 1.4565, - y: 17.2567, - }, - { - l: '50.0', - x: 1.4757, - y: 17.2581, - }, - { - l: '50.0', - x: 1.4949, - y: 17.2592, - }, - { - l: '50.0', - x: 1.514, - y: 17.2602, - }, - { - l: '50.0', - x: 1.5332, - y: 17.261, - }, - { - l: '50.0', - x: 1.5524, - y: 17.2616, - }, - { - l: '50.0', - x: 1.5715, - y: 17.262, - }, - { - l: '50.0', - x: 1.5907, - y: 17.2624, - }, - { - l: '50.0', - x: 1.6099, - y: 17.2625, - }, - { - l: '50.0', - x: 1.629, - y: 17.2626, - }, - { - l: '50.0', - x: 1.6482, - y: 17.2625, - }, - { - l: '50.0', - x: 1.6674, - y: 17.2622, - }, - { - l: '50.0', - x: 1.6865, - y: 17.2619, - }, - { - l: '50.0', - x: 1.7057, - y: 17.2615, - }, - { - l: '50.0', - x: 1.7248, - y: 17.2609, - }, - { - l: '50.0', - x: 1.744, - y: 17.2602, - }, - { - l: '50.0', - x: 1.7632, - y: 17.2594, - }, - { - l: '50.0', - x: 1.7823, - y: 17.2585, - }, - { - l: '50.0', - x: 1.8015, - y: 17.2576, - }, - { - l: '50.0', - x: 1.8207, - y: 17.2565, - }, - { - l: '50.0', - x: 1.8398, - y: 17.2555, - }, - { - l: '50.0', - x: 1.859, - y: 17.2544, - }, - { - l: '50.0', - x: 1.8782, - y: 17.2533, - }, - { - l: '50.0', - x: 1.8973, - y: 17.252, - }, - { - l: '50.0', - x: 1.9165, - y: 17.2507, - }, - { - l: '50.0', - x: 1.9357, - y: 17.2493, - }, - { - l: '50.0', - x: 1.9548, - y: 17.2478, - }, - { - l: '50.0', - x: 1.974, - y: 17.2462, - }, - { - l: '50.0', - x: 1.9932, - y: 17.2445, - }, - { - l: '50.0', - x: 2.0123, - y: 17.2428, - }, - { - l: '50.0', - x: 2.0957, - y: 17.2346, - }, - { - l: '50.0', - x: 2.179, - y: 17.226, - }, - { - l: '50.0', - x: 2.2623, - y: 17.2153, - }, - { - l: '50.0', - x: 2.3457, - y: 17.2036, - }, - { - l: '50.0', - x: 2.429, - y: 17.1921, - }, - { - l: '50.0', - x: 2.5123, - y: 17.1786, - }, - { - l: '50.0', - x: 2.5957, - y: 17.1652, - }, - { - l: '50.0', - x: 2.679, - y: 17.1528, - }, - { - l: '50.0', - x: 2.7623, - y: 17.1392, - }, - { - l: '50.0', - x: 2.8457, - y: 17.1262, - }, - { - l: '50.0', - x: 2.929, - y: 17.1148, - }, - { - l: '50.0', - x: 3.0123, - y: 17.1026, - }, - { - l: '50.0', - x: 3.0957, - y: 17.0915, - }, - { - l: '50.0', - x: 3.179, - y: 17.0819, - }, - { - l: '50.0', - x: 3.2623, - y: 17.072, - }, - { - l: '50.0', - x: 3.3457, - y: 17.0629, - }, - { - l: '50.0', - x: 3.429, - y: 17.0551, - }, - { - l: '50.0', - x: 3.5123, - y: 17.047, - }, - { - l: '50.0', - x: 3.5957, - y: 17.0398, - }, - { - l: '50.0', - x: 3.679, - y: 17.0338, - }, - { - l: '50.0', - x: 3.7623, - y: 17.0276, - }, - { - l: '50.0', - x: 3.8457, - y: 17.0223, - }, - { - l: '50.0', - x: 3.929, - y: 17.018, - }, - { - l: '50.0', - x: 4.0123, - y: 17.0139, - }, - { - l: '50.0', - x: 4.0957, - y: 17.0106, - }, - { - l: '50.0', - x: 4.179, - y: 17.0081, - }, - { - l: '50.0', - x: 4.2623, - y: 17.006, - }, - { - l: '50.0', - x: 4.3457, - y: 17.0047, - }, - { - l: '50.0', - x: 4.429, - y: 17.0041, - }, - { - l: '50.0', - x: 4.5123, - y: 17.004, - }, - { - l: '50.0', - x: 4.5957, - y: 17.0048, - }, - { - l: '50.0', - x: 4.679, - y: 17.0062, - }, - { - l: '50.0', - x: 4.7623, - y: 17.0085, - }, - { - l: '50.0', - x: 4.8457, - y: 17.0117, - }, - { - l: '50.0', - x: 4.929, - y: 17.0154, - }, - { - l: '50.0', - x: 5.0123, - y: 17.0203, - }, - { - l: '50.0', - x: 5.0957, - y: 17.0262, - }, - { - l: '50.0', - x: 5.179, - y: 17.0324, - }, - { - l: '50.0', - x: 5.2623, - y: 17.0402, - }, - { - l: '50.0', - x: 5.3457, - y: 17.0489, - }, - { - l: '50.0', - x: 5.429, - y: 17.0577, - }, - { - l: '50.0', - x: 5.5123, - y: 17.0686, - }, - { - l: '50.0', - x: 5.5957, - y: 17.08, - }, - { - l: '50.0', - x: 5.679, - y: 17.0914, - }, - { - l: '50.0', - x: 5.7623, - y: 17.105, - }, - { - l: '50.0', - x: 5.8457, - y: 17.1192, - }, - { - l: '50.0', - x: 5.929, - y: 17.1331, - }, - { - l: '50.0', - x: 6.0123, - y: 17.1496, - }, - { - l: '50.0', - x: 6.0957, - y: 17.1666, - }, - { - l: '50.0', - x: 6.179, - y: 17.1831, - }, - { - l: '50.0', - x: 6.2623, - y: 17.2025, - }, - { - l: '50.0', - x: 6.3457, - y: 17.2223, - }, - { - l: '50.0', - x: 6.429, - y: 17.2413, - }, - { - l: '50.0', - x: 6.5123, - y: 17.2636, - }, - { - l: '50.0', - x: 6.5957, - y: 17.2861, - }, - { - l: '50.0', - x: 6.679, - y: 17.3076, - }, - { - l: '50.0', - x: 6.7623, - y: 17.3325, - }, - { - l: '50.0', - x: 6.8457, - y: 17.3575, - }, - { - l: '50.0', - x: 6.929, - y: 17.3812, - }, - { - l: '50.0', - x: 7.0123, - y: 17.4085, - }, - { - l: '50.0', - x: 7.0957, - y: 17.4359, - }, - { - l: '50.0', - x: 7.179, - y: 17.4615, - }, - { - l: '50.0', - x: 7.2623, - y: 17.4911, - }, - { - l: '50.0', - x: 7.3457, - y: 17.5204, - }, - { - l: '50.0', - x: 7.429, - y: 17.5479, - }, - { - l: '50.0', - x: 7.5123, - y: 17.5795, - }, - { - l: '50.0', - x: 7.5957, - y: 17.6109, - }, - { - l: '50.0', - x: 7.679, - y: 17.64, - }, - { - l: '50.0', - x: 7.7623, - y: 17.6734, - }, - { - l: '50.0', - x: 7.8457, - y: 17.7066, - }, - { - l: '50.0', - x: 7.929, - y: 17.7373, - }, - { - l: '50.0', - x: 8.0123, - y: 17.7724, - }, - { - l: '50.0', - x: 8.0957, - y: 17.807, - }, - { - l: '50.0', - x: 8.179, - y: 17.8392, - }, - { - l: '50.0', - x: 8.2623, - y: 17.8758, - }, - { - l: '50.0', - x: 8.3457, - y: 17.912, - }, - { - l: '50.0', - x: 8.429, - y: 17.9454, - }, - { - l: '50.0', - x: 8.5123, - y: 17.9834, - }, - { - l: '50.0', - x: 8.5957, - y: 18.0209, - }, - { - l: '50.0', - x: 8.679, - y: 18.0556, - }, - { - l: '50.0', - x: 8.7623, - y: 18.0948, - }, - { - l: '50.0', - x: 8.8457, - y: 18.1335, - }, - { - l: '50.0', - x: 8.929, - y: 18.1692, - }, - { - l: '50.0', - x: 9.0123, - y: 18.2097, - }, - { - l: '50.0', - x: 9.0957, - y: 18.2495, - }, - { - l: '50.0', - x: 9.179, - y: 18.2862, - }, - { - l: '50.0', - x: 9.2623, - y: 18.3277, - }, - { - l: '50.0', - x: 9.3457, - y: 18.3686, - }, - { - l: '50.0', - x: 9.429, - y: 18.4062, - }, - { - l: '50.0', - x: 9.5123, - y: 18.4488, - }, - { - l: '50.0', - x: 9.5957, - y: 18.4905, - }, - { - l: '50.0', - x: 9.679, - y: 18.5289, - }, - { - l: '50.0', - x: 9.7623, - y: 18.5723, - }, - { - l: '50.0', - x: 9.8457, - y: 18.6149, - }, - { - l: '50.0', - x: 9.929, - y: 18.654, - }, - { - l: '50.0', - x: 10.0123, - y: 18.6982, - }, - { - l: '50.0', - x: 10.0957, - y: 18.7415, - }, - { - l: '50.0', - x: 10.179, - y: 18.7814, - }, - { - l: '50.0', - x: 10.2623, - y: 18.8263, - }, - { - l: '50.0', - x: 10.3457, - y: 18.8703, - }, - { - l: '50.0', - x: 10.429, - y: 18.9109, - }, - { - l: '50.0', - x: 10.5123, - y: 18.9566, - }, - { - l: '50.0', - x: 10.5957, - y: 19.0013, - }, - { - l: '50.0', - x: 10.679, - y: 19.0425, - }, - { - l: '50.0', - x: 10.7623, - y: 19.0888, - }, - { - l: '50.0', - x: 10.8457, - y: 19.1343, - }, - { - l: '50.0', - x: 10.929, - y: 19.176, - }, - { - l: '50.0', - x: 11.0123, - y: 19.2229, - }, - { - l: '50.0', - x: 11.0957, - y: 19.269, - }, - { - l: '50.0', - x: 11.179, - y: 19.3112, - }, - { - l: '50.0', - x: 11.2623, - y: 19.3587, - }, - { - l: '50.0', - x: 11.3457, - y: 19.4051, - }, - { - l: '50.0', - x: 11.429, - y: 19.4478, - }, - { - l: '50.0', - x: 11.5123, - y: 19.4958, - }, - { - l: '50.0', - x: 11.5957, - y: 19.5427, - }, - { - l: '50.0', - x: 11.679, - y: 19.5857, - }, - { - l: '50.0', - x: 11.7623, - y: 19.6341, - }, - { - l: '50.0', - x: 11.8457, - y: 19.6814, - }, - { - l: '50.0', - x: 11.929, - y: 19.7247, - }, - { - l: '50.0', - x: 12.0123, - y: 19.7734, - }, - { - l: '50.0', - x: 12.0957, - y: 19.821, - }, - { - l: '50.0', - x: 12.179, - y: 19.8646, - }, - { - l: '50.0', - x: 12.2623, - y: 19.9135, - }, - { - l: '50.0', - x: 12.3457, - y: 19.9614, - }, - { - l: '50.0', - x: 12.429, - y: 20.0051, - }, - { - l: '50.0', - x: 12.5123, - y: 20.0544, - }, - { - l: '50.0', - x: 12.5957, - y: 20.1023, - }, - { - l: '50.0', - x: 12.679, - y: 20.1462, - }, - { - l: '50.0', - x: 12.7623, - y: 20.1956, - }, - { - l: '50.0', - x: 12.8457, - y: 20.2436, - }, - { - l: '50.0', - x: 12.929, - y: 20.2875, - }, - { - l: '50.0', - x: 13.0123, - y: 20.3369, - }, - { - l: '50.0', - x: 13.0957, - y: 20.385, - }, - { - l: '50.0', - x: 13.179, - y: 20.4289, - }, - { - l: '50.0', - x: 13.2623, - y: 20.4783, - }, - { - l: '50.0', - x: 13.3457, - y: 20.5263, - }, - { - l: '50.0', - x: 13.429, - y: 20.5702, - }, - { - l: '50.0', - x: 13.5123, - y: 20.6194, - }, - { - l: '50.0', - x: 13.5957, - y: 20.6673, - }, - { - l: '50.0', - x: 13.679, - y: 20.7111, - }, - { - l: '50.0', - x: 13.7623, - y: 20.7601, - }, - { - l: '50.0', - x: 13.8457, - y: 20.8078, - }, - { - l: '50.0', - x: 13.929, - y: 20.8514, - }, - { - l: '50.0', - x: 14.0123, - y: 20.9003, - }, - { - l: '50.0', - x: 14.0957, - y: 20.9477, - }, - { - l: '50.0', - x: 14.179, - y: 20.991, - }, - { - l: '50.0', - x: 14.2623, - y: 21.0395, - }, - { - l: '50.0', - x: 14.3457, - y: 21.0866, - }, - { - l: '50.0', - x: 14.429, - y: 21.1297, - }, - { - l: '50.0', - x: 14.5123, - y: 21.1779, - }, - { - l: '50.0', - x: 14.5957, - y: 21.2247, - }, - { - l: '50.0', - x: 14.679, - y: 21.2674, - }, - { - l: '50.0', - x: 14.7623, - y: 21.3151, - }, - { - l: '50.0', - x: 14.8457, - y: 21.3616, - }, - { - l: '50.0', - x: 14.929, - y: 21.4039, - }, - { - l: '50.0', - x: 15.0123, - y: 21.4513, - }, - { - l: '50.0', - x: 15.0957, - y: 21.4973, - }, - { - l: '50.0', - x: 15.179, - y: 21.5393, - }, - { - l: '50.0', - x: 15.2623, - y: 21.5862, - }, - { - l: '50.0', - x: 15.3457, - y: 21.6319, - }, - { - l: '50.0', - x: 15.429, - y: 21.6734, - }, - { - l: '50.0', - x: 15.5123, - y: 21.7199, - }, - { - l: '50.0', - x: 15.5957, - y: 21.7651, - }, - { - l: '50.0', - x: 15.679, - y: 21.8062, - }, - { - l: '50.0', - x: 15.7623, - y: 21.8523, - }, - { - l: '50.0', - x: 15.8457, - y: 21.8969, - }, - { - l: '50.0', - x: 15.929, - y: 21.9377, - }, - { - l: '50.0', - x: 16.0123, - y: 21.9833, - }, - { - l: '50.0', - x: 16.0957, - y: 22.0275, - }, - { - l: '50.0', - x: 16.179, - y: 22.0678, - }, - { - l: '50.0', - x: 16.2623, - y: 22.1129, - }, - { - l: '50.0', - x: 16.3457, - y: 22.1567, - }, - { - l: '50.0', - x: 16.429, - y: 22.1966, - }, - { - l: '50.0', - x: 16.5123, - y: 22.2411, - }, - { - l: '50.0', - x: 16.5957, - y: 22.2844, - }, - { - l: '50.0', - x: 16.679, - y: 22.3239, - }, - { - l: '50.0', - x: 16.7623, - y: 22.368, - }, - { - l: '50.0', - x: 16.8457, - y: 22.4108, - }, - { - l: '50.0', - x: 16.929, - y: 22.4499, - }, - { - l: '50.0', - x: 17.0123, - y: 22.4935, - }, - { - l: '50.0', - x: 17.0957, - y: 22.5358, - }, - { - l: '50.0', - x: 17.179, - y: 22.5744, - }, - { - l: '50.0', - x: 17.2623, - y: 22.6176, - }, - { - l: '50.0', - x: 17.3457, - y: 22.6594, - }, - { - l: '50.0', - x: 17.429, - y: 22.6977, - }, - { - l: '50.0', - x: 17.5123, - y: 22.7404, - }, - { - l: '50.0', - x: 17.5957, - y: 22.7817, - }, - { - l: '50.0', - x: 17.679, - y: 22.8195, - }, - { - l: '50.0', - x: 17.7623, - y: 22.8618, - }, - { - l: '50.0', - x: 17.8457, - y: 22.9028, - }, - { - l: '50.0', - x: 17.929, - y: 22.9401, - }, - { - l: '50.0', - x: 18.0123, - y: 22.9818, - }, - { - l: '50.0', - x: 18.0957, - y: 23.0224, - }, - { - l: '50.0', - x: 18.179, - y: 23.0593, - }, - { - l: '50.0', - x: 18.2623, - y: 23.1007, - }, - { - l: '50.0', - x: 18.3457, - y: 23.1407, - }, - { - l: '50.0', - x: 18.429, - y: 23.1773, - }, - { - l: '50.0', - x: 18.5123, - y: 23.2182, - }, - { - l: '50.0', - x: 18.5957, - y: 23.2578, - }, - { - l: '50.0', - x: 18.679, - y: 23.294, - }, - { - l: '50.0', - x: 18.7623, - y: 23.3344, - }, - { - l: '50.0', - x: 18.8457, - y: null, - }, + { l: 50.0, x: 0, y: 12.1816 }, + { l: 50.0, x: 0.08, y: 13.4406 }, + { l: 50.0, x: 0.17, y: 14.3038 }, + { l: 50.0, x: 0.25, y: 14.9775 }, + { l: 50.0, x: 0.33, y: 15.5155 }, + { l: 50.0, x: 0.42, y: 15.9423 }, + { l: 50.0, x: 0.5, y: 16.2774 }, + { l: 50.0, x: 0.58, y: 16.5361 }, + { l: 50.0, x: 0.67, y: 16.7324 }, + { l: 50.0, x: 0.75, y: 16.8791 }, + { l: 50.0, x: 0.83, y: 16.9882 }, + { l: 50.0, x: 0.92, y: 17.0694 }, + { l: 50.0, x: 1, y: 17.1296 }, + { l: 50.0, x: 1.08, y: 17.1739 }, + { l: 50.0, x: 1.17, y: 17.2059 }, + { l: 50.0, x: 1.25, y: 17.2284 }, + { l: 50.0, x: 1.33, y: 17.2437 }, + { l: 50.0, x: 1.42, y: 17.2537 }, + { l: 50.0, x: 1.5, y: 17.2595 }, + { l: 50.0, x: 1.58, y: 17.2622 }, + { l: 50.0, x: 1.67, y: 17.2622 }, + { l: 50.0, x: 1.75, y: 17.26 }, + { l: 50.0, x: 1.83, y: 17.256 }, + { l: 50.0, x: 1.92, y: 17.2505 }, + { l: 50.0, x: 2, y: 17.2439 }, + { l: 50.0, x: 2.08, y: 17.2361 }, + { l: 50.0, x: 2.17, y: 17.2271 }, + { l: 50.0, x: 2.25, y: 17.217 }, + { l: 50.0, x: 2.33, y: 17.2057 }, + { l: 50.0, x: 2.42, y: 17.1935 }, + { l: 50.0, x: 2.5, y: 17.1806 }, + { l: 50.0, x: 2.58, y: 17.1675 }, + { l: 50.0, x: 2.67, y: 17.1542 }, + { l: 50.0, x: 2.75, y: 17.1412 }, + { l: 50.0, x: 2.83, y: 17.1284 }, + { l: 50.0, x: 2.92, y: 17.1161 }, + { l: 50.0, x: 3, y: 17.1044 }, + { l: 50.0, x: 3.08, y: 17.0934 }, + { l: 50.0, x: 3.17, y: 17.083 }, + { l: 50.0, x: 3.25, y: 17.0734 }, + { l: 50.0, x: 3.33, y: 17.0644 }, + { l: 50.0, x: 3.42, y: 17.056 }, + { l: 50.0, x: 3.5, y: 17.0482 }, + { l: 50.0, x: 3.58, y: 17.041 }, + { l: 50.0, x: 3.67, y: 17.0345 }, + { l: 50.0, x: 3.75, y: 17.0285 }, + { l: 50.0, x: 3.83, y: 17.0232 }, + { l: 50.0, x: 3.92, y: 17.0185 }, + { l: 50.0, x: 4, y: 17.0145 }, + { l: 50.0, x: 4.08, y: 17.0111 }, + { l: 50.0, x: 4.17, y: 17.0084 }, + { l: 50.0, x: 4.25, y: 17.0063 }, + { l: 50.0, x: 4.33, y: 17.0049 }, + { l: 50.0, x: 4.42, y: 17.0041 }, + { l: 50.0, x: 4.5, y: 17.004 }, + { l: 50.0, x: 4.58, y: 17.0046 }, + { l: 50.0, x: 4.67, y: 17.006 }, + { l: 50.0, x: 4.75, y: 17.0081 }, + { l: 50.0, x: 4.83, y: 17.0111 }, + { l: 50.0, x: 4.92, y: 17.0149 }, + { l: 50.0, x: 5, y: 17.0195 }, + { l: 50.0, x: 5.08, y: 17.0251 }, + { l: 50.0, x: 5.17, y: 17.0316 }, + { l: 50.0, x: 5.25, y: 17.039 }, + { l: 50.0, x: 5.33, y: 17.0473 }, + { l: 50.0, x: 5.42, y: 17.0566 }, + { l: 50.0, x: 5.5, y: 17.0669 }, + { l: 50.0, x: 5.58, y: 17.078 }, + { l: 50.0, x: 5.67, y: 17.09 }, + { l: 50.0, x: 5.75, y: 17.1029 }, + { l: 50.0, x: 5.83, y: 17.1167 }, + { l: 50.0, x: 5.92, y: 17.1314 }, + { l: 50.0, x: 6, y: 17.1471 }, + { l: 50.0, x: 6.08, y: 17.1636 }, + { l: 50.0, x: 6.17, y: 17.1811 }, + { l: 50.0, x: 6.25, y: 17.1995 }, + { l: 50.0, x: 6.33, y: 17.2188 }, + { l: 50.0, x: 6.42, y: 17.239 }, + { l: 50.0, x: 6.5, y: 17.2602 }, + { l: 50.0, x: 6.58, y: 17.2822 }, + { l: 50.0, x: 6.67, y: 17.305 }, + { l: 50.0, x: 6.75, y: 17.3287 }, + { l: 50.0, x: 6.83, y: 17.3531 }, + { l: 50.0, x: 6.92, y: 17.3784 }, + { l: 50.0, x: 7, y: 17.4044 }, + { l: 50.0, x: 7.08, y: 17.4311 }, + { l: 50.0, x: 7.17, y: 17.4585 }, + { l: 50.0, x: 7.25, y: 17.4866 }, + { l: 50.0, x: 7.33, y: 17.5153 }, + { l: 50.0, x: 7.42, y: 17.5447 }, + { l: 50.0, x: 7.5, y: 17.5747 }, + { l: 50.0, x: 7.58, y: 17.6054 }, + { l: 50.0, x: 7.67, y: 17.6366 }, + { l: 50.0, x: 7.75, y: 17.6684 }, + { l: 50.0, x: 7.83, y: 17.7008 }, + { l: 50.0, x: 7.92, y: 17.7337 }, + { l: 50.0, x: 8, y: 17.7671 }, + { l: 50.0, x: 8.08, y: 17.801 }, + { l: 50.0, x: 8.17, y: 17.8354 }, + { l: 50.0, x: 8.25, y: 17.8703 }, + { l: 50.0, x: 8.33, y: 17.9057 }, + { l: 50.0, x: 8.42, y: 17.9415 }, + { l: 50.0, x: 8.5, y: 17.9777 }, + { l: 50.0, x: 8.58, y: 18.0144 }, + { l: 50.0, x: 8.67, y: 18.0515 }, + { l: 50.0, x: 8.75, y: 18.0889 }, + { l: 50.0, x: 8.83, y: 18.1268 }, + { l: 50.0, x: 8.92, y: 18.165 }, + { l: 50.0, x: 9, y: 18.2036 }, + { l: 50.0, x: 9.08, y: 18.2426 }, + { l: 50.0, x: 9.17, y: 18.2819 }, + { l: 50.0, x: 9.25, y: 18.3215 }, + { l: 50.0, x: 9.33, y: 18.3615 }, + { l: 50.0, x: 9.42, y: 18.4018 }, + { l: 50.0, x: 9.5, y: 18.4424 }, + { l: 50.0, x: 9.58, y: 18.4833 }, + { l: 50.0, x: 9.67, y: 18.5244 }, + { l: 50.0, x: 9.75, y: 18.5658 }, + { l: 50.0, x: 9.83, y: 18.6075 }, + { l: 50.0, x: 9.92, y: 18.6494 }, + { l: 50.0, x: 10, y: 18.6916 }, + { l: 50.0, x: 10.08, y: 18.734 }, + { l: 50.0, x: 10.17, y: 18.7767 }, + { l: 50.0, x: 10.25, y: 18.8196 }, + { l: 50.0, x: 10.33, y: 18.8627 }, + { l: 50.0, x: 10.42, y: 18.9061 }, + { l: 50.0, x: 10.5, y: 18.9498 }, + { l: 50.0, x: 10.58, y: 18.9936 }, + { l: 50.0, x: 10.67, y: 19.0377 }, + { l: 50.0, x: 10.75, y: 19.0819 }, + { l: 50.0, x: 10.83, y: 19.1264 }, + { l: 50.0, x: 10.92, y: 19.1711 }, + { l: 50.0, x: 11, y: 19.2159 }, + { l: 50.0, x: 11.08, y: 19.261 }, + { l: 50.0, x: 11.17, y: 19.3062 }, + { l: 50.0, x: 11.25, y: 19.3516 }, + { l: 50.0, x: 11.33, y: 19.3971 }, + { l: 50.0, x: 11.42, y: 19.4428 }, + { l: 50.0, x: 11.5, y: 19.4886 }, + { l: 50.0, x: 11.58, y: 19.5346 }, + { l: 50.0, x: 11.67, y: 19.5807 }, + { l: 50.0, x: 11.75, y: 19.6269 }, + { l: 50.0, x: 11.83, y: 19.6732 }, + { l: 50.0, x: 11.92, y: 19.7196 }, + { l: 50.0, x: 12, y: 19.7661 }, + { l: 50.0, x: 12.08, y: 19.8128 }, + { l: 50.0, x: 12.17, y: 19.8595 }, + { l: 50.0, x: 12.25, y: 19.9062 }, + { l: 50.0, x: 12.33, y: 19.9531 }, + { l: 50.0, x: 12.42, y: 20.0 }, + { l: 50.0, x: 12.5, y: 20.047 }, + { l: 50.0, x: 12.58, y: 20.094 }, + { l: 50.0, x: 12.67, y: 20.1411 }, + { l: 50.0, x: 12.75, y: 20.1882 }, + { l: 50.0, x: 12.83, y: 20.2353 }, + { l: 50.0, x: 12.92, y: 20.2824 }, + { l: 50.0, x: 13, y: 20.3295 }, + { l: 50.0, x: 13.08, y: 20.3767 }, + { l: 50.0, x: 13.17, y: 20.4238 }, + { l: 50.0, x: 13.25, y: 20.4709 }, + { l: 50.0, x: 13.33, y: 20.518 }, + { l: 50.0, x: 13.42, y: 20.5651 }, + { l: 50.0, x: 13.5, y: 20.6121 }, + { l: 50.0, x: 13.58, y: 20.659 }, + { l: 50.0, x: 13.67, y: 20.706 }, + { l: 50.0, x: 13.75, y: 20.7528 }, + { l: 50.0, x: 13.83, y: 20.7996 }, + { l: 50.0, x: 13.92, y: 20.8463 }, + { l: 50.0, x: 14, y: 20.893 }, + { l: 50.0, x: 14.08, y: 20.9395 }, + { l: 50.0, x: 14.17, y: 20.9859 }, + { l: 50.0, x: 14.25, y: 21.0323 }, + { l: 50.0, x: 14.33, y: 21.0785 }, + { l: 50.0, x: 14.42, y: 21.1247 }, + { l: 50.0, x: 14.5, y: 21.1707 }, + { l: 50.0, x: 14.58, y: 21.2166 }, + { l: 50.0, x: 14.67, y: 21.2624 }, + { l: 50.0, x: 14.75, y: 21.308 }, + { l: 50.0, x: 14.83, y: 21.3536 }, + { l: 50.0, x: 14.92, y: 21.399 }, + { l: 50.0, x: 15, y: 21.4442 }, + { l: 50.0, x: 15.08, y: 21.4894 }, + { l: 50.0, x: 15.17, y: 21.5344 }, + { l: 50.0, x: 15.25, y: 21.5792 }, + { l: 50.0, x: 15.33, y: 21.624 }, + { l: 50.0, x: 15.42, y: 21.6685 }, + { l: 50.0, x: 15.5, y: 21.713 }, + { l: 50.0, x: 15.58, y: 21.7573 }, + { l: 50.0, x: 15.67, y: 21.8014 }, + { l: 50.0, x: 15.75, y: 21.8454 }, + { l: 50.0, x: 15.83, y: 21.8892 }, + { l: 50.0, x: 15.92, y: 21.9329 }, + { l: 50.0, x: 16, y: 21.9765 }, + { l: 50.0, x: 16.08, y: 22.0199 }, + { l: 50.0, x: 16.17, y: 22.0631 }, + { l: 50.0, x: 16.25, y: 22.1062 }, + { l: 50.0, x: 16.33, y: 22.1491 }, + { l: 50.0, x: 16.42, y: 22.1919 }, + { l: 50.0, x: 16.5, y: 22.2345 }, + { l: 50.0, x: 16.58, y: 22.2769 }, + { l: 50.0, x: 16.67, y: 22.3193 }, + { l: 50.0, x: 16.75, y: 22.3614 }, + { l: 50.0, x: 16.83, y: 22.4034 }, + { l: 50.0, x: 16.92, y: 22.4453 }, + { l: 50.0, x: 17, y: 22.487 }, + { l: 50.0, x: 17.08, y: 22.5285 }, + { l: 50.0, x: 17.17, y: 22.5699 }, + { l: 50.0, x: 17.25, y: 22.6112 }, + { l: 50.0, x: 17.33, y: 22.6522 }, + { l: 50.0, x: 17.42, y: 22.6932 }, + { l: 50.0, x: 17.5, y: 22.734 }, + { l: 50.0, x: 17.58, y: 22.7746 }, + { l: 50.0, x: 17.67, y: 22.8151 }, + { l: 50.0, x: 17.75, y: 22.8555 }, + { l: 50.0, x: 17.83, y: 22.8957 }, + { l: 50.0, x: 17.92, y: 22.9357 }, + { l: 50.0, x: 18, y: 22.9756 }, + { l: 50.0, x: 18.08, y: 23.0154 }, + { l: 50.0, x: 18.17, y: 23.055 }, + { l: 50.0, x: 18.25, y: 23.0945 }, + { l: 50.0, x: 18.33, y: 23.1338 }, + { l: 50.0, x: 18.42, y: 23.173 }, + { l: 50.0, x: 18.5, y: 23.2121 }, + { l: 50.0, x: 18.58, y: 23.251 }, + { l: 50.0, x: 18.67, y: 23.2898 }, + { l: 50.0, x: 18.75, y: 23.3284 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 0.0, - y: 13.1601, - }, - { - l: '75.0', - x: 0.0192, - y: 13.47, - }, - { - l: '75.0', - x: 0.0383, - y: 13.7791, - }, - { - l: '75.0', - x: 0.0575, - y: 14.0874, - }, - { - l: '75.0', - x: 0.0767, - y: 14.395, - }, - { - l: '75.0', - x: 0.0958, - y: 14.6334, - }, - { - l: '75.0', - x: 0.115, - y: 14.8361, - }, - { - l: '75.0', - x: 0.1342, - y: 15.0201, - }, - { - l: '75.0', - x: 0.1533, - y: 15.1905, - }, - { - l: '75.0', - x: 0.1725, - y: 15.3549, - }, - { - l: '75.0', - x: 0.1916, - y: 15.5298, - }, - { - l: '75.0', - x: 0.2108, - y: 15.6988, - }, - { - l: '75.0', - x: 0.23, - y: 15.8613, - }, - { - l: '75.0', - x: 0.2491, - y: 16.0164, - }, - { - l: '75.0', - x: 0.2683, - y: 16.1625, - }, - { - l: '75.0', - x: 0.2875, - y: 16.3003, - }, - { - l: '75.0', - x: 0.3066, - y: 16.4298, - }, - { - l: '75.0', - x: 0.3258, - y: 16.5508, - }, - { - l: '75.0', - x: 0.345, - y: 16.6589, - }, - { - l: '75.0', - x: 0.3641, - y: 16.7578, - }, - { - l: '75.0', - x: 0.3833, - y: 16.8503, - }, - { - l: '75.0', - x: 0.4025, - y: 16.9378, - }, - { - l: '75.0', - x: 0.4216, - y: 17.0223, - }, - { - l: '75.0', - x: 0.4408, - y: 17.1098, - }, - { - l: '75.0', - x: 0.46, - y: 17.1942, - }, - { - l: '75.0', - x: 0.4791, - y: 17.275, - }, - { - l: '75.0', - x: 0.4983, - y: 17.3519, - }, - { - l: '75.0', - x: 0.5175, - y: 17.4231, - }, - { - l: '75.0', - x: 0.5366, - y: 17.4897, - }, - { - l: '75.0', - x: 0.5558, - y: 17.5517, - }, - { - l: '75.0', - x: 0.5749, - y: 17.609, - }, - { - l: '75.0', - x: 0.5941, - y: 17.6598, - }, - { - l: '75.0', - x: 0.6133, - y: 17.7058, - }, - { - l: '75.0', - x: 0.6324, - y: 17.7481, - }, - { - l: '75.0', - x: 0.6516, - y: 17.7876, - }, - { - l: '75.0', - x: 0.6708, - y: 17.8251, - }, - { - l: '75.0', - x: 0.6899, - y: 17.8637, - }, - { - l: '75.0', - x: 0.7091, - y: 17.9005, - }, - { - l: '75.0', - x: 0.7283, - y: 17.9355, - }, - { - l: '75.0', - x: 0.7474, - y: 17.9683, - }, - { - l: '75.0', - x: 0.7666, - y: 17.9985, - }, - { - l: '75.0', - x: 0.7858, - y: 18.0265, - }, - { - l: '75.0', - x: 0.8049, - y: 18.0523, - }, - { - l: '75.0', - x: 0.8241, - y: 18.0761, - }, - { - l: '75.0', - x: 0.8433, - y: 18.0971, - }, - { - l: '75.0', - x: 0.8624, - y: 18.1161, - }, - { - l: '75.0', - x: 0.8816, - y: 18.1334, - }, - { - l: '75.0', - x: 0.9008, - y: 18.1496, - }, - { - l: '75.0', - x: 0.9199, - y: 18.1648, - }, - { - l: '75.0', - x: 0.9391, - y: 18.1805, - }, - { - l: '75.0', - x: 0.9582, - y: 18.1956, - }, - { - l: '75.0', - x: 0.9774, - y: 18.2098, - }, - { - l: '75.0', - x: 0.9966, - y: 18.2232, - }, - { - l: '75.0', - x: 1.0157, - y: 18.2355, - }, - { - l: '75.0', - x: 1.0349, - y: 18.2468, - }, - { - l: '75.0', - x: 1.0541, - y: 18.2573, - }, - { - l: '75.0', - x: 1.0732, - y: 18.2669, - }, - { - l: '75.0', - x: 1.0924, - y: 18.2754, - }, - { - l: '75.0', - x: 1.1116, - y: 18.2829, - }, - { - l: '75.0', - x: 1.1307, - y: 18.2898, - }, - { - l: '75.0', - x: 1.1499, - y: 18.2961, - }, - { - l: '75.0', - x: 1.1691, - y: 18.302, - }, - { - l: '75.0', - x: 1.1882, - y: 18.308, - }, - { - l: '75.0', - x: 1.2074, - y: 18.3137, - }, - { - l: '75.0', - x: 1.2266, - y: 18.3191, - }, - { - l: '75.0', - x: 1.2457, - y: 18.324, - }, - { - l: '75.0', - x: 1.2649, - y: 18.3285, - }, - { - l: '75.0', - x: 1.2841, - y: 18.3326, - }, - { - l: '75.0', - x: 1.3032, - y: 18.3362, - }, - { - l: '75.0', - x: 1.3224, - y: 18.3396, - }, - { - l: '75.0', - x: 1.3415, - y: 18.3425, - }, - { - l: '75.0', - x: 1.3607, - y: 18.3451, - }, - { - l: '75.0', - x: 1.3799, - y: 18.3474, - }, - { - l: '75.0', - x: 1.399, - y: 18.3494, - }, - { - l: '75.0', - x: 1.4182, - y: 18.3513, - }, - { - l: '75.0', - x: 1.4374, - y: 18.3532, - }, - { - l: '75.0', - x: 1.4565, - y: 18.3549, - }, - { - l: '75.0', - x: 1.4757, - y: 18.3564, - }, - { - l: '75.0', - x: 1.4949, - y: 18.3578, - }, - { - l: '75.0', - x: 1.514, - y: 18.3591, - }, - { - l: '75.0', - x: 1.5332, - y: 18.3601, - }, - { - l: '75.0', - x: 1.5524, - y: 18.361, - }, - { - l: '75.0', - x: 1.5715, - y: 18.3618, - }, - { - l: '75.0', - x: 1.5907, - y: 18.3624, - }, - { - l: '75.0', - x: 1.6099, - y: 18.3629, - }, - { - l: '75.0', - x: 1.629, - y: 18.3632, - }, - { - l: '75.0', - x: 1.6482, - y: 18.3634, - }, - { - l: '75.0', - x: 1.6674, - y: 18.3636, - }, - { - l: '75.0', - x: 1.6865, - y: 18.3636, - }, - { - l: '75.0', - x: 1.7057, - y: 18.3636, - }, - { - l: '75.0', - x: 1.7248, - y: 18.3634, - }, - { - l: '75.0', - x: 1.744, - y: 18.3632, - }, - { - l: '75.0', - x: 1.7632, - y: 18.3629, - }, - { - l: '75.0', - x: 1.7823, - y: 18.3625, - }, - { - l: '75.0', - x: 1.8015, - y: 18.362, - }, - { - l: '75.0', - x: 1.8207, - y: 18.3615, - }, - { - l: '75.0', - x: 1.8398, - y: 18.3609, - }, - { - l: '75.0', - x: 1.859, - y: 18.3603, - }, - { - l: '75.0', - x: 1.8782, - y: 18.3597, - }, - { - l: '75.0', - x: 1.8973, - y: 18.359, - }, - { - l: '75.0', - x: 1.9165, - y: 18.3582, - }, - { - l: '75.0', - x: 1.9357, - y: 18.3574, - }, - { - l: '75.0', - x: 1.9548, - y: 18.3565, - }, - { - l: '75.0', - x: 1.974, - y: 18.3555, - }, - { - l: '75.0', - x: 1.9932, - y: 18.3545, - }, - { - l: '75.0', - x: 2.0123, - y: 18.3534, - }, - { - l: '75.0', - x: 2.0957, - y: 18.3482, - }, - { - l: '75.0', - x: 2.179, - y: 18.3425, - }, - { - l: '75.0', - x: 2.2623, - y: 18.3352, - }, - { - l: '75.0', - x: 2.3457, - y: 18.327, - }, - { - l: '75.0', - x: 2.429, - y: 18.3189, - }, - { - l: '75.0', - x: 2.5123, - y: 18.3093, - }, - { - l: '75.0', - x: 2.5957, - y: 18.2999, - }, - { - l: '75.0', - x: 2.679, - y: 18.2913, - }, - { - l: '75.0', - x: 2.7623, - y: 18.2821, - }, - { - l: '75.0', - x: 2.8457, - y: 18.2735, - }, - { - l: '75.0', - x: 2.929, - y: 18.2663, - }, - { - l: '75.0', - x: 3.0123, - y: 18.2589, - }, - { - l: '75.0', - x: 3.0957, - y: 18.2526, - }, - { - l: '75.0', - x: 3.179, - y: 18.2475, - }, - { - l: '75.0', - x: 3.2623, - y: 18.2427, - }, - { - l: '75.0', - x: 3.3457, - y: 18.2387, - }, - { - l: '75.0', - x: 3.429, - y: 18.2358, - }, - { - l: '75.0', - x: 3.5123, - y: 18.2332, - }, - { - l: '75.0', - x: 3.5957, - y: 18.2314, - }, - { - l: '75.0', - x: 3.679, - y: 18.2306, - }, - { - l: '75.0', - x: 3.7623, - y: 18.2302, - }, - { - l: '75.0', - x: 3.8457, - y: 18.2307, - }, - { - l: '75.0', - x: 3.929, - y: 18.2318, - }, - { - l: '75.0', - x: 4.0123, - y: 18.2339, - }, - { - l: '75.0', - x: 4.0957, - y: 18.2367, - }, - { - l: '75.0', - x: 4.179, - y: 18.2401, - }, - { - l: '75.0', - x: 4.2623, - y: 18.2446, - }, - { - l: '75.0', - x: 4.3457, - y: 18.2498, - }, - { - l: '75.0', - x: 4.429, - y: 18.2552, - }, - { - l: '75.0', - x: 4.5123, - y: 18.2622, - }, - { - l: '75.0', - x: 4.5957, - y: 18.2698, - }, - { - l: '75.0', - x: 4.679, - y: 18.2777, - }, - { - l: '75.0', - x: 4.7623, - y: 18.2874, - }, - { - l: '75.0', - x: 4.8457, - y: 18.2979, - }, - { - l: '75.0', - x: 4.929, - y: 18.3084, - }, - { - l: '75.0', - x: 5.0123, - y: 18.3212, - }, - { - l: '75.0', - x: 5.0957, - y: 18.3347, - }, - { - l: '75.0', - x: 5.179, - y: 18.3481, - }, - { - l: '75.0', - x: 5.2623, - y: 18.3642, - }, - { - l: '75.0', - x: 5.3457, - y: 18.381, - }, - { - l: '75.0', - x: 5.429, - y: 18.3974, - }, - { - l: '75.0', - x: 5.5123, - y: 18.4169, - }, - { - l: '75.0', - x: 5.5957, - y: 18.4369, - }, - { - l: '75.0', - x: 5.679, - y: 18.4562, - }, - { - l: '75.0', - x: 5.7623, - y: 18.4789, - }, - { - l: '75.0', - x: 5.8457, - y: 18.5021, - }, - { - l: '75.0', - x: 5.929, - y: 18.5242, - }, - { - l: '75.0', - x: 6.0123, - y: 18.5503, - }, - { - l: '75.0', - x: 6.0957, - y: 18.5766, - }, - { - l: '75.0', - x: 6.179, - y: 18.6017, - }, - { - l: '75.0', - x: 6.2623, - y: 18.631, - }, - { - l: '75.0', - x: 6.3457, - y: 18.6606, - }, - { - l: '75.0', - x: 6.429, - y: 18.6887, - }, - { - l: '75.0', - x: 6.5123, - y: 18.7213, - }, - { - l: '75.0', - x: 6.5957, - y: 18.754, - }, - { - l: '75.0', - x: 6.679, - y: 18.7848, - }, - { - l: '75.0', - x: 6.7623, - y: 18.8204, - }, - { - l: '75.0', - x: 6.8457, - y: 18.856, - }, - { - l: '75.0', - x: 6.929, - y: 18.8894, - }, - { - l: '75.0', - x: 7.0123, - y: 18.9278, - }, - { - l: '75.0', - x: 7.0957, - y: 18.966, - }, - { - l: '75.0', - x: 7.179, - y: 19.0017, - }, - { - l: '75.0', - x: 7.2623, - y: 19.0426, - }, - { - l: '75.0', - x: 7.3457, - y: 19.0832, - }, - { - l: '75.0', - x: 7.429, - y: 19.1211, - }, - { - l: '75.0', - x: 7.5123, - y: 19.1643, - }, - { - l: '75.0', - x: 7.5957, - y: 19.2071, - }, - { - l: '75.0', - x: 7.679, - y: 19.2469, - }, - { - l: '75.0', - x: 7.7623, - y: 19.2923, - }, - { - l: '75.0', - x: 7.8457, - y: 19.3371, - }, - { - l: '75.0', - x: 7.929, - y: 19.3787, - }, - { - l: '75.0', - x: 8.0123, - y: 19.426, - }, - { - l: '75.0', - x: 8.0957, - y: 19.4726, - }, - { - l: '75.0', - x: 8.179, - y: 19.5158, - }, - { - l: '75.0', - x: 8.2623, - y: 19.5649, - }, - { - l: '75.0', - x: 8.3457, - y: 19.6132, - }, - { - l: '75.0', - x: 8.429, - y: 19.6579, - }, - { - l: '75.0', - x: 8.5123, - y: 19.7085, - }, - { - l: '75.0', - x: 8.5957, - y: 19.7583, - }, - { - l: '75.0', - x: 8.679, - y: 19.8044, - }, - { - l: '75.0', - x: 8.7623, - y: 19.8564, - }, - { - l: '75.0', - x: 8.8457, - y: 19.9076, - }, - { - l: '75.0', - x: 8.929, - y: 19.9548, - }, - { - l: '75.0', - x: 9.0123, - y: 20.0083, - }, - { - l: '75.0', - x: 9.0957, - y: 20.0608, - }, - { - l: '75.0', - x: 9.179, - y: 20.1091, - }, - { - l: '75.0', - x: 9.2623, - y: 20.1637, - }, - { - l: '75.0', - x: 9.3457, - y: 20.2174, - }, - { - l: '75.0', - x: 9.429, - y: 20.2668, - }, - { - l: '75.0', - x: 9.5123, - y: 20.3226, - }, - { - l: '75.0', - x: 9.5957, - y: 20.3772, - }, - { - l: '75.0', - x: 9.679, - y: 20.4275, - }, - { - l: '75.0', - x: 9.7623, - y: 20.4842, - }, - { - l: '75.0', - x: 9.8457, - y: 20.5398, - }, - { - l: '75.0', - x: 9.929, - y: 20.5908, - }, - { - l: '75.0', - x: 10.0123, - y: 20.6485, - }, - { - l: '75.0', - x: 10.0957, - y: 20.7049, - }, - { - l: '75.0', - x: 10.179, - y: 20.7568, - }, - { - l: '75.0', - x: 10.2623, - y: 20.8153, - }, - { - l: '75.0', - x: 10.3457, - y: 20.8725, - }, - { - l: '75.0', - x: 10.429, - y: 20.9251, - }, - { - l: '75.0', - x: 10.5123, - y: 20.9845, - }, - { - l: '75.0', - x: 10.5957, - y: 21.0425, - }, - { - l: '75.0', - x: 10.679, - y: 21.0959, - }, - { - l: '75.0', - x: 10.7623, - y: 21.1559, - }, - { - l: '75.0', - x: 10.8457, - y: 21.2147, - }, - { - l: '75.0', - x: 10.929, - y: 21.2687, - }, - { - l: '75.0', - x: 11.0123, - y: 21.3295, - }, - { - l: '75.0', - x: 11.0957, - y: 21.3889, - }, - { - l: '75.0', - x: 11.179, - y: 21.4435, - }, - { - l: '75.0', - x: 11.2623, - y: 21.5049, - }, - { - l: '75.0', - x: 11.3457, - y: 21.5649, - }, - { - l: '75.0', - x: 11.429, - y: 21.6199, - }, - { - l: '75.0', - x: 11.5123, - y: 21.6819, - }, - { - l: '75.0', - x: 11.5957, - y: 21.7424, - }, - { - l: '75.0', - x: 11.679, - y: 21.7979, - }, - { - l: '75.0', - x: 11.7623, - y: 21.8603, - }, - { - l: '75.0', - x: 11.8457, - y: 21.9212, - }, - { - l: '75.0', - x: 11.929, - y: 21.977, - }, - { - l: '75.0', - x: 12.0123, - y: 22.0398, - }, - { - l: '75.0', - x: 12.0957, - y: 22.1012, - }, - { - l: '75.0', - x: 12.179, - y: 22.1573, - }, - { - l: '75.0', - x: 12.2623, - y: 22.2204, - }, - { - l: '75.0', - x: 12.3457, - y: 22.282, - }, - { - l: '75.0', - x: 12.429, - y: 22.3384, - }, - { - l: '75.0', - x: 12.5123, - y: 22.4019, - }, - { - l: '75.0', - x: 12.5957, - y: 22.4636, - }, - { - l: '75.0', - x: 12.679, - y: 22.5203, - }, - { - l: '75.0', - x: 12.7623, - y: 22.5839, - }, - { - l: '75.0', - x: 12.8457, - y: 22.6458, - }, - { - l: '75.0', - x: 12.929, - y: 22.7025, - }, - { - l: '75.0', - x: 13.0123, - y: 22.7661, - }, - { - l: '75.0', - x: 13.0957, - y: 22.8282, - }, - { - l: '75.0', - x: 13.179, - y: 22.8849, - }, - { - l: '75.0', - x: 13.2623, - y: 22.9486, - }, - { - l: '75.0', - x: 13.3457, - y: 23.0106, - }, - { - l: '75.0', - x: 13.429, - y: 23.0674, - }, - { - l: '75.0', - x: 13.5123, - y: 23.131, - }, - { - l: '75.0', - x: 13.5957, - y: 23.1929, - }, - { - l: '75.0', - x: 13.679, - y: 23.2496, - }, - { - l: '75.0', - x: 13.7623, - y: 23.313, - }, - { - l: '75.0', - x: 13.8457, - y: 23.3748, - }, - { - l: '75.0', - x: 13.929, - y: 23.4313, - }, - { - l: '75.0', - x: 14.0123, - y: 23.4946, - }, - { - l: '75.0', - x: 14.0957, - y: 23.5561, - }, - { - l: '75.0', - x: 14.179, - y: 23.6123, - }, - { - l: '75.0', - x: 14.2623, - y: 23.6754, - }, - { - l: '75.0', - x: 14.3457, - y: 23.7367, - }, - { - l: '75.0', - x: 14.429, - y: 23.7927, - }, - { - l: '75.0', - x: 14.5123, - y: 23.8554, - }, - { - l: '75.0', - x: 14.5957, - y: 23.9164, - }, - { - l: '75.0', - x: 14.679, - y: 23.972, - }, - { - l: '75.0', - x: 14.7623, - y: 24.0344, - }, - { - l: '75.0', - x: 14.8457, - y: 24.095, - }, - { - l: '75.0', - x: 14.929, - y: 24.1503, - }, - { - l: '75.0', - x: 15.0123, - y: 24.2123, - }, - { - l: '75.0', - x: 15.0957, - y: 24.2726, - }, - { - l: '75.0', - x: 15.179, - y: 24.3275, - }, - { - l: '75.0', - x: 15.2623, - y: 24.389, - }, - { - l: '75.0', - x: 15.3457, - y: 24.4489, - }, - { - l: '75.0', - x: 15.429, - y: 24.5034, - }, - { - l: '75.0', - x: 15.5123, - y: 24.5647, - }, - { - l: '75.0', - x: 15.5957, - y: 24.6241, - }, - { - l: '75.0', - x: 15.679, - y: 24.6782, - }, - { - l: '75.0', - x: 15.7623, - y: 24.739, - }, - { - l: '75.0', - x: 15.8457, - y: 24.7979, - }, - { - l: '75.0', - x: 15.929, - y: 24.8517, - }, - { - l: '75.0', - x: 16.0123, - y: 24.912, - }, - { - l: '75.0', - x: 16.0957, - y: 24.9705, - }, - { - l: '75.0', - x: 16.179, - y: 25.0239, - }, - { - l: '75.0', - x: 16.2623, - y: 25.0837, - }, - { - l: '75.0', - x: 16.3457, - y: 25.1418, - }, - { - l: '75.0', - x: 16.429, - y: 25.1948, - }, - { - l: '75.0', - x: 16.5123, - y: 25.2541, - }, - { - l: '75.0', - x: 16.5957, - y: 25.3117, - }, - { - l: '75.0', - x: 16.679, - y: 25.3643, - }, - { - l: '75.0', - x: 16.7623, - y: 25.4232, - }, - { - l: '75.0', - x: 16.8457, - y: 25.4803, - }, - { - l: '75.0', - x: 16.929, - y: 25.5326, - }, - { - l: '75.0', - x: 17.0123, - y: 25.591, - }, - { - l: '75.0', - x: 17.0957, - y: 25.6477, - }, - { - l: '75.0', - x: 17.179, - y: 25.6995, - }, - { - l: '75.0', - x: 17.2623, - y: 25.7575, - }, - { - l: '75.0', - x: 17.3457, - y: 25.8137, - }, - { - l: '75.0', - x: 17.429, - y: 25.8651, - }, - { - l: '75.0', - x: 17.5123, - y: 25.9227, - }, - { - l: '75.0', - x: 17.5957, - y: 25.9785, - }, - { - l: '75.0', - x: 17.679, - y: 26.0295, - }, - { - l: '75.0', - x: 17.7623, - y: 26.0867, - }, - { - l: '75.0', - x: 17.8457, - y: 26.1421, - }, - { - l: '75.0', - x: 17.929, - y: 26.1926, - }, - { - l: '75.0', - x: 18.0123, - y: 26.2493, - }, - { - l: '75.0', - x: 18.0957, - y: 26.3044, - }, - { - l: '75.0', - x: 18.179, - y: 26.3546, - }, - { - l: '75.0', - x: 18.2623, - y: 26.4108, - }, - { - l: '75.0', - x: 18.3457, - y: 26.4654, - }, - { - l: '75.0', - x: 18.429, - y: 26.5153, - }, - { - l: '75.0', - x: 18.5123, - y: 26.5712, - }, - { - l: '75.0', - x: 18.5957, - y: 26.6254, - }, - { - l: '75.0', - x: 18.679, - y: 26.6749, - }, - { - l: '75.0', - x: 18.7623, - y: 26.7303, - }, - { - l: '75.0', - x: 18.8457, - y: null, - }, + { l: 75.0, x: 0, y: 13.1717 }, + { l: 75.0, x: 0.08, y: 14.4604 }, + { l: 75.0, x: 0.17, y: 15.344 }, + { l: 75.0, x: 0.25, y: 16.0356 }, + { l: 75.0, x: 0.33, y: 16.5888 }, + { l: 75.0, x: 0.42, y: 17.0274 }, + { l: 75.0, x: 0.5, y: 17.3714 }, + { l: 75.0, x: 0.58, y: 17.6362 }, + { l: 75.0, x: 0.67, y: 17.8365 }, + { l: 75.0, x: 0.75, y: 17.9856 }, + { l: 75.0, x: 0.83, y: 18.096 }, + { l: 75.0, x: 0.92, y: 18.1779 }, + { l: 75.0, x: 1, y: 18.2385 }, + { l: 75.0, x: 1.08, y: 18.2831 }, + { l: 75.0, x: 1.17, y: 18.3153 }, + { l: 75.0, x: 1.25, y: 18.3381 }, + { l: 75.0, x: 1.33, y: 18.3539 }, + { l: 75.0, x: 1.42, y: 18.3645 }, + { l: 75.0, x: 1.5, y: 18.3713 }, + { l: 75.0, x: 1.58, y: 18.3752 }, + { l: 75.0, x: 1.67, y: 18.3767 }, + { l: 75.0, x: 1.75, y: 18.3763 }, + { l: 75.0, x: 1.83, y: 18.3744 }, + { l: 75.0, x: 1.92, y: 18.3713 }, + { l: 75.0, x: 2, y: 18.3674 }, + { l: 75.0, x: 2.08, y: 18.3625 }, + { l: 75.0, x: 2.17, y: 18.3566 }, + { l: 75.0, x: 2.25, y: 18.3498 }, + { l: 75.0, x: 2.33, y: 18.3419 }, + { l: 75.0, x: 2.42, y: 18.3334 }, + { l: 75.0, x: 2.5, y: 18.3243 }, + { l: 75.0, x: 2.58, y: 18.3151 }, + { l: 75.0, x: 2.67, y: 18.3059 }, + { l: 75.0, x: 2.75, y: 18.2971 }, + { l: 75.0, x: 2.83, y: 18.2887 }, + { l: 75.0, x: 2.92, y: 18.2809 }, + { l: 75.0, x: 3, y: 18.2739 }, + { l: 75.0, x: 3.08, y: 18.2676 }, + { l: 75.0, x: 3.17, y: 18.2621 }, + { l: 75.0, x: 3.25, y: 18.2575 }, + { l: 75.0, x: 3.33, y: 18.2536 }, + { l: 75.0, x: 3.42, y: 18.2504 }, + { l: 75.0, x: 3.5, y: 18.2479 }, + { l: 75.0, x: 3.58, y: 18.2461 }, + { l: 75.0, x: 3.67, y: 18.2451 }, + { l: 75.0, x: 3.75, y: 18.2448 }, + { l: 75.0, x: 3.83, y: 18.2452 }, + { l: 75.0, x: 3.92, y: 18.2464 }, + { l: 75.0, x: 4, y: 18.2484 }, + { l: 75.0, x: 4.08, y: 18.2511 }, + { l: 75.0, x: 4.17, y: 18.2546 }, + { l: 75.0, x: 4.25, y: 18.2589 }, + { l: 75.0, x: 4.33, y: 18.264 }, + { l: 75.0, x: 4.42, y: 18.2698 }, + { l: 75.0, x: 4.5, y: 18.2764 }, + { l: 75.0, x: 4.58, y: 18.2839 }, + { l: 75.0, x: 4.67, y: 18.2923 }, + { l: 75.0, x: 4.75, y: 18.3015 }, + { l: 75.0, x: 4.83, y: 18.3118 }, + { l: 75.0, x: 4.92, y: 18.323 }, + { l: 75.0, x: 5, y: 18.3351 }, + { l: 75.0, x: 5.08, y: 18.3484 }, + { l: 75.0, x: 5.17, y: 18.3627 }, + { l: 75.0, x: 5.25, y: 18.378 }, + { l: 75.0, x: 5.33, y: 18.3944 }, + { l: 75.0, x: 5.42, y: 18.4119 }, + { l: 75.0, x: 5.5, y: 18.4306 }, + { l: 75.0, x: 5.58, y: 18.4502 }, + { l: 75.0, x: 5.67, y: 18.4708 }, + { l: 75.0, x: 5.75, y: 18.4924 }, + { l: 75.0, x: 5.83, y: 18.5151 }, + { l: 75.0, x: 5.92, y: 18.5388 }, + { l: 75.0, x: 6, y: 18.5637 }, + { l: 75.0, x: 6.08, y: 18.5895 }, + { l: 75.0, x: 6.17, y: 18.6164 }, + { l: 75.0, x: 6.25, y: 18.6443 }, + { l: 75.0, x: 6.33, y: 18.6733 }, + { l: 75.0, x: 6.42, y: 18.7033 }, + { l: 75.0, x: 6.5, y: 18.7345 }, + { l: 75.0, x: 6.58, y: 18.7666 }, + { l: 75.0, x: 6.67, y: 18.7996 }, + { l: 75.0, x: 6.75, y: 18.8336 }, + { l: 75.0, x: 6.83, y: 18.8685 }, + { l: 75.0, x: 6.92, y: 18.9044 }, + { l: 75.0, x: 7, y: 18.9411 }, + { l: 75.0, x: 7.08, y: 18.9786 }, + { l: 75.0, x: 7.17, y: 19.0169 }, + { l: 75.0, x: 7.25, y: 19.056 }, + { l: 75.0, x: 7.33, y: 19.0958 }, + { l: 75.0, x: 7.42, y: 19.1364 }, + { l: 75.0, x: 7.5, y: 19.1777 }, + { l: 75.0, x: 7.58, y: 19.2198 }, + { l: 75.0, x: 7.67, y: 19.2625 }, + { l: 75.0, x: 7.75, y: 19.3059 }, + { l: 75.0, x: 7.83, y: 19.35 }, + { l: 75.0, x: 7.92, y: 19.3946 }, + { l: 75.0, x: 8, y: 19.4399 }, + { l: 75.0, x: 8.08, y: 19.4856 }, + { l: 75.0, x: 8.17, y: 19.532 }, + { l: 75.0, x: 8.25, y: 19.579 }, + { l: 75.0, x: 8.33, y: 19.6265 }, + { l: 75.0, x: 8.42, y: 19.6744 }, + { l: 75.0, x: 8.5, y: 19.7229 }, + { l: 75.0, x: 8.58, y: 19.7719 }, + { l: 75.0, x: 8.67, y: 19.8213 }, + { l: 75.0, x: 8.75, y: 19.8711 }, + { l: 75.0, x: 8.83, y: 19.9215 }, + { l: 75.0, x: 8.92, y: 19.9722 }, + { l: 75.0, x: 9, y: 20.0233 }, + { l: 75.0, x: 9.08, y: 20.0749 }, + { l: 75.0, x: 9.17, y: 20.1269 }, + { l: 75.0, x: 9.25, y: 20.1791 }, + { l: 75.0, x: 9.33, y: 20.2319 }, + { l: 75.0, x: 9.42, y: 20.2849 }, + { l: 75.0, x: 9.5, y: 20.3384 }, + { l: 75.0, x: 9.58, y: 20.3921 }, + { l: 75.0, x: 9.67, y: 20.4461 }, + { l: 75.0, x: 9.75, y: 20.5004 }, + { l: 75.0, x: 9.83, y: 20.5551 }, + { l: 75.0, x: 9.92, y: 20.6099 }, + { l: 75.0, x: 10, y: 20.6651 }, + { l: 75.0, x: 10.08, y: 20.7206 }, + { l: 75.0, x: 10.17, y: 20.7764 }, + { l: 75.0, x: 10.25, y: 20.8324 }, + { l: 75.0, x: 10.33, y: 20.8886 }, + { l: 75.0, x: 10.42, y: 20.9452 }, + { l: 75.0, x: 10.5, y: 21.0021 }, + { l: 75.0, x: 10.58, y: 21.0591 }, + { l: 75.0, x: 10.67, y: 21.1165 }, + { l: 75.0, x: 10.75, y: 21.1739 }, + { l: 75.0, x: 10.83, y: 21.2318 }, + { l: 75.0, x: 10.92, y: 21.2898 }, + { l: 75.0, x: 11, y: 21.348 }, + { l: 75.0, x: 11.08, y: 21.4065 }, + { l: 75.0, x: 11.17, y: 21.4651 }, + { l: 75.0, x: 11.25, y: 21.5239 }, + { l: 75.0, x: 11.33, y: 21.5829 }, + { l: 75.0, x: 11.42, y: 21.6421 }, + { l: 75.0, x: 11.5, y: 21.7014 }, + { l: 75.0, x: 11.58, y: 21.7609 }, + { l: 75.0, x: 11.67, y: 21.8206 }, + { l: 75.0, x: 11.75, y: 21.8804 }, + { l: 75.0, x: 11.83, y: 21.9403 }, + { l: 75.0, x: 11.92, y: 22.0003 }, + { l: 75.0, x: 12, y: 22.0604 }, + { l: 75.0, x: 12.08, y: 22.1208 }, + { l: 75.0, x: 12.17, y: 22.1812 }, + { l: 75.0, x: 12.25, y: 22.2416 }, + { l: 75.0, x: 12.33, y: 22.3022 }, + { l: 75.0, x: 12.42, y: 22.3628 }, + { l: 75.0, x: 12.5, y: 22.4236 }, + { l: 75.0, x: 12.58, y: 22.4844 }, + { l: 75.0, x: 12.67, y: 22.5453 }, + { l: 75.0, x: 12.75, y: 22.6062 }, + { l: 75.0, x: 12.83, y: 22.6671 }, + { l: 75.0, x: 12.92, y: 22.7281 }, + { l: 75.0, x: 13, y: 22.7891 }, + { l: 75.0, x: 13.08, y: 22.8502 }, + { l: 75.0, x: 13.17, y: 22.9112 }, + { l: 75.0, x: 13.25, y: 22.9722 }, + { l: 75.0, x: 13.33, y: 23.0332 }, + { l: 75.0, x: 13.42, y: 23.0943 }, + { l: 75.0, x: 13.5, y: 23.1552 }, + { l: 75.0, x: 13.58, y: 23.2161 }, + { l: 75.0, x: 13.67, y: 23.2771 }, + { l: 75.0, x: 13.75, y: 23.3379 }, + { l: 75.0, x: 13.83, y: 23.3987 }, + { l: 75.0, x: 13.92, y: 23.4595 }, + { l: 75.0, x: 14, y: 23.5202 }, + { l: 75.0, x: 14.08, y: 23.5808 }, + { l: 75.0, x: 14.17, y: 23.6412 }, + { l: 75.0, x: 14.25, y: 23.7017 }, + { l: 75.0, x: 14.33, y: 23.762 }, + { l: 75.0, x: 14.42, y: 23.8223 }, + { l: 75.0, x: 14.5, y: 23.8824 }, + { l: 75.0, x: 14.58, y: 23.9424 }, + { l: 75.0, x: 14.67, y: 24.0023 }, + { l: 75.0, x: 14.75, y: 24.062 }, + { l: 75.0, x: 14.83, y: 24.1218 }, + { l: 75.0, x: 14.92, y: 24.1813 }, + { l: 75.0, x: 15, y: 24.2407 }, + { l: 75.0, x: 15.08, y: 24.3 }, + { l: 75.0, x: 15.17, y: 24.3592 }, + { l: 75.0, x: 15.25, y: 24.4181 }, + { l: 75.0, x: 15.33, y: 24.4771 }, + { l: 75.0, x: 15.42, y: 24.5358 }, + { l: 75.0, x: 15.5, y: 24.5945 }, + { l: 75.0, x: 15.58, y: 24.653 }, + { l: 75.0, x: 15.67, y: 24.7113 }, + { l: 75.0, x: 15.75, y: 24.7695 }, + { l: 75.0, x: 15.83, y: 24.8276 }, + { l: 75.0, x: 15.92, y: 24.8855 }, + { l: 75.0, x: 16, y: 24.9433 }, + { l: 75.0, x: 16.08, y: 25.001 }, + { l: 75.0, x: 16.17, y: 25.0584 }, + { l: 75.0, x: 16.25, y: 25.1158 }, + { l: 75.0, x: 16.33, y: 25.173 }, + { l: 75.0, x: 16.42, y: 25.23 }, + { l: 75.0, x: 16.5, y: 25.2869 }, + { l: 75.0, x: 16.58, y: 25.3436 }, + { l: 75.0, x: 16.67, y: 25.4003 }, + { l: 75.0, x: 16.75, y: 25.4567 }, + { l: 75.0, x: 16.83, y: 25.5131 }, + { l: 75.0, x: 16.92, y: 25.5693 }, + { l: 75.0, x: 17, y: 25.6253 }, + { l: 75.0, x: 17.08, y: 25.6812 }, + { l: 75.0, x: 17.17, y: 25.7369 }, + { l: 75.0, x: 17.25, y: 25.7926 }, + { l: 75.0, x: 17.33, y: 25.848 }, + { l: 75.0, x: 17.42, y: 25.9034 }, + { l: 75.0, x: 17.5, y: 25.9585 }, + { l: 75.0, x: 17.58, y: 26.0135 }, + { l: 75.0, x: 17.67, y: 26.0685 }, + { l: 75.0, x: 17.75, y: 26.1233 }, + { l: 75.0, x: 17.83, y: 26.1779 }, + { l: 75.0, x: 17.92, y: 26.2323 }, + { l: 75.0, x: 18, y: 26.2867 }, + { l: 75.0, x: 18.08, y: 26.341 }, + { l: 75.0, x: 18.17, y: 26.395 }, + { l: 75.0, x: 18.25, y: 26.449 }, + { l: 75.0, x: 18.33, y: 26.5028 }, + { l: 75.0, x: 18.42, y: 26.5565 }, + { l: 75.0, x: 18.5, y: 26.6102 }, + { l: 75.0, x: 18.58, y: 26.6636 }, + { l: 75.0, x: 18.67, y: 26.7169 }, + { l: 75.0, x: 18.75, y: 26.77 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 0.0, - y: 14.1535, - }, - { - l: '91.0', - x: 0.0192, - y: 14.4723, - }, - { - l: '91.0', - x: 0.0383, - y: 14.7895, - }, - { - l: '91.0', - x: 0.0575, - y: 15.1051, - }, - { - l: '91.0', - x: 0.0767, - y: 15.4191, - }, - { - l: '91.0', - x: 0.0958, - y: 15.6629, - }, - { - l: '91.0', - x: 0.115, - y: 15.8702, - }, - { - l: '91.0', - x: 0.1342, - y: 16.0587, - }, - { - l: '91.0', - x: 0.1533, - y: 16.2335, - }, - { - l: '91.0', - x: 0.1725, - y: 16.4022, - }, - { - l: '91.0', - x: 0.1916, - y: 16.5817, - }, - { - l: '91.0', - x: 0.2108, - y: 16.7553, - }, - { - l: '91.0', - x: 0.23, - y: 16.9222, - }, - { - l: '91.0', - x: 0.2491, - y: 17.0817, - }, - { - l: '91.0', - x: 0.2683, - y: 17.2319, - }, - { - l: '91.0', - x: 0.2875, - y: 17.3737, - }, - { - l: '91.0', - x: 0.3066, - y: 17.507, - }, - { - l: '91.0', - x: 0.3258, - y: 17.6315, - }, - { - l: '91.0', - x: 0.345, - y: 17.7427, - }, - { - l: '91.0', - x: 0.3641, - y: 17.8444, - }, - { - l: '91.0', - x: 0.3833, - y: 17.9396, - }, - { - l: '91.0', - x: 0.4025, - y: 18.0296, - }, - { - l: '91.0', - x: 0.4216, - y: 18.1164, - }, - { - l: '91.0', - x: 0.4408, - y: 18.2064, - }, - { - l: '91.0', - x: 0.46, - y: 18.2931, - }, - { - l: '91.0', - x: 0.4791, - y: 18.3762, - }, - { - l: '91.0', - x: 0.4983, - y: 18.4551, - }, - { - l: '91.0', - x: 0.5175, - y: 18.5282, - }, - { - l: '91.0', - x: 0.5366, - y: 18.5965, - }, - { - l: '91.0', - x: 0.5558, - y: 18.66, - }, - { - l: '91.0', - x: 0.5749, - y: 18.7187, - }, - { - l: '91.0', - x: 0.5941, - y: 18.7708, - }, - { - l: '91.0', - x: 0.6133, - y: 18.8178, - }, - { - l: '91.0', - x: 0.6324, - y: 18.8611, - }, - { - l: '91.0', - x: 0.6516, - y: 18.9015, - }, - { - l: '91.0', - x: 0.6708, - y: 18.9397, - }, - { - l: '91.0', - x: 0.6899, - y: 18.9791, - }, - { - l: '91.0', - x: 0.7091, - y: 19.0166, - }, - { - l: '91.0', - x: 0.7283, - y: 19.0522, - }, - { - l: '91.0', - x: 0.7474, - y: 19.0857, - }, - { - l: '91.0', - x: 0.7666, - y: 19.1164, - }, - { - l: '91.0', - x: 0.7858, - y: 19.1449, - }, - { - l: '91.0', - x: 0.8049, - y: 19.1711, - }, - { - l: '91.0', - x: 0.8241, - y: 19.1952, - }, - { - l: '91.0', - x: 0.8433, - y: 19.2166, - }, - { - l: '91.0', - x: 0.8624, - y: 19.2359, - }, - { - l: '91.0', - x: 0.8816, - y: 19.2535, - }, - { - l: '91.0', - x: 0.9008, - y: 19.2699, - }, - { - l: '91.0', - x: 0.9199, - y: 19.2854, - }, - { - l: '91.0', - x: 0.9391, - y: 19.3014, - }, - { - l: '91.0', - x: 0.9582, - y: 19.3166, - }, - { - l: '91.0', - x: 0.9774, - y: 19.3311, - }, - { - l: '91.0', - x: 0.9966, - y: 19.3448, - }, - { - l: '91.0', - x: 1.0157, - y: 19.3573, - }, - { - l: '91.0', - x: 1.0349, - y: 19.3689, - }, - { - l: '91.0', - x: 1.0541, - y: 19.3796, - }, - { - l: '91.0', - x: 1.0732, - y: 19.3894, - }, - { - l: '91.0', - x: 1.0924, - y: 19.3981, - }, - { - l: '91.0', - x: 1.1116, - y: 19.4058, - }, - { - l: '91.0', - x: 1.1307, - y: 19.4129, - }, - { - l: '91.0', - x: 1.1499, - y: 19.4195, - }, - { - l: '91.0', - x: 1.1691, - y: 19.4256, - }, - { - l: '91.0', - x: 1.1882, - y: 19.4318, - }, - { - l: '91.0', - x: 1.2074, - y: 19.4378, - }, - { - l: '91.0', - x: 1.2266, - y: 19.4434, - }, - { - l: '91.0', - x: 1.2457, - y: 19.4487, - }, - { - l: '91.0', - x: 1.2649, - y: 19.4534, - }, - { - l: '91.0', - x: 1.2841, - y: 19.4578, - }, - { - l: '91.0', - x: 1.3032, - y: 19.4618, - }, - { - l: '91.0', - x: 1.3224, - y: 19.4654, - }, - { - l: '91.0', - x: 1.3415, - y: 19.4687, - }, - { - l: '91.0', - x: 1.3607, - y: 19.4716, - }, - { - l: '91.0', - x: 1.3799, - y: 19.4742, - }, - { - l: '91.0', - x: 1.399, - y: 19.4766, - }, - { - l: '91.0', - x: 1.4182, - y: 19.4789, - }, - { - l: '91.0', - x: 1.4374, - y: 19.4812, - }, - { - l: '91.0', - x: 1.4565, - y: 19.4833, - }, - { - l: '91.0', - x: 1.4757, - y: 19.4853, - }, - { - l: '91.0', - x: 1.4949, - y: 19.4872, - }, - { - l: '91.0', - x: 1.514, - y: 19.489, - }, - { - l: '91.0', - x: 1.5332, - y: 19.4906, - }, - { - l: '91.0', - x: 1.5524, - y: 19.492, - }, - { - l: '91.0', - x: 1.5715, - y: 19.4933, - }, - { - l: '91.0', - x: 1.5907, - y: 19.4945, - }, - { - l: '91.0', - x: 1.6099, - y: 19.4955, - }, - { - l: '91.0', - x: 1.629, - y: 19.4964, - }, - { - l: '91.0', - x: 1.6482, - y: 19.4972, - }, - { - l: '91.0', - x: 1.6674, - y: 19.4979, - }, - { - l: '91.0', - x: 1.6865, - y: 19.4986, - }, - { - l: '91.0', - x: 1.7057, - y: 19.4992, - }, - { - l: '91.0', - x: 1.7248, - y: 19.4998, - }, - { - l: '91.0', - x: 1.744, - y: 19.5003, - }, - { - l: '91.0', - x: 1.7632, - y: 19.5008, - }, - { - l: '91.0', - x: 1.7823, - y: 19.5012, - }, - { - l: '91.0', - x: 1.8015, - y: 19.5015, - }, - { - l: '91.0', - x: 1.8207, - y: 19.5018, - }, - { - l: '91.0', - x: 1.8398, - y: 19.502, - }, - { - l: '91.0', - x: 1.859, - y: 19.5021, - }, - { - l: '91.0', - x: 1.8782, - y: 19.5022, - }, - { - l: '91.0', - x: 1.8973, - y: 19.5023, - }, - { - l: '91.0', - x: 1.9165, - y: 19.5023, - }, - { - l: '91.0', - x: 1.9357, - y: 19.5024, - }, - { - l: '91.0', - x: 1.9548, - y: 19.5024, - }, - { - l: '91.0', - x: 1.974, - y: 19.5024, - }, - { - l: '91.0', - x: 1.9932, - y: 19.5024, - }, - { - l: '91.0', - x: 2.0123, - y: 19.5023, - }, - { - l: '91.0', - x: 2.0957, - y: 19.5015, - }, - { - l: '91.0', - x: 2.179, - y: 19.5001, - }, - { - l: '91.0', - x: 2.2623, - y: 19.4978, - }, - { - l: '91.0', - x: 2.3457, - y: 19.4947, - }, - { - l: '91.0', - x: 2.429, - y: 19.4915, - }, - { - l: '91.0', - x: 2.5123, - y: 19.4875, - }, - { - l: '91.0', - x: 2.5957, - y: 19.4838, - }, - { - l: '91.0', - x: 2.679, - y: 19.4806, - }, - { - l: '91.0', - x: 2.7623, - y: 19.4777, - }, - { - l: '91.0', - x: 2.8457, - y: 19.4755, - }, - { - l: '91.0', - x: 2.929, - y: 19.4742, - }, - { - l: '91.0', - x: 3.0123, - y: 19.4737, - }, - { - l: '91.0', - x: 3.0957, - y: 19.4742, - }, - { - l: '91.0', - x: 3.179, - y: 19.4755, - }, - { - l: '91.0', - x: 3.2623, - y: 19.4781, - }, - { - l: '91.0', - x: 3.3457, - y: 19.4815, - }, - { - l: '91.0', - x: 3.429, - y: 19.4854, - }, - { - l: '91.0', - x: 3.5123, - y: 19.4907, - }, - { - l: '91.0', - x: 3.5957, - y: 19.4967, - }, - { - l: '91.0', - x: 3.679, - y: 19.5031, - }, - { - l: '91.0', - x: 3.7623, - y: 19.5111, - }, - { - l: '91.0', - x: 3.8457, - y: 19.5199, - }, - { - l: '91.0', - x: 3.929, - y: 19.5288, - }, - { - l: '91.0', - x: 4.0123, - y: 19.5398, - }, - { - l: '91.0', - x: 4.0957, - y: 19.5515, - }, - { - l: '91.0', - x: 4.179, - y: 19.563, - }, - { - l: '91.0', - x: 4.2623, - y: 19.577, - }, - { - l: '91.0', - x: 4.3457, - y: 19.5916, - }, - { - l: '91.0', - x: 4.429, - y: 19.6058, - }, - { - l: '91.0', - x: 4.5123, - y: 19.6227, - }, - { - l: '91.0', - x: 4.5957, - y: 19.6403, - }, - { - l: '91.0', - x: 4.679, - y: 19.6574, - }, - { - l: '91.0', - x: 4.7623, - y: 19.6777, - }, - { - l: '91.0', - x: 4.8457, - y: 19.6987, - }, - { - l: '91.0', - x: 4.929, - y: 19.719, - }, - { - l: '91.0', - x: 5.0123, - y: 19.7429, - }, - { - l: '91.0', - x: 5.0957, - y: 19.7676, - }, - { - l: '91.0', - x: 5.179, - y: 19.7914, - }, - { - l: '91.0', - x: 5.2623, - y: 19.8193, - }, - { - l: '91.0', - x: 5.3457, - y: 19.8477, - }, - { - l: '91.0', - x: 5.429, - y: 19.875, - }, - { - l: '91.0', - x: 5.5123, - y: 19.907, - }, - { - l: '91.0', - x: 5.5957, - y: 19.9393, - }, - { - l: '91.0', - x: 5.679, - y: 19.97, - }, - { - l: '91.0', - x: 5.7623, - y: 20.0058, - }, - { - l: '91.0', - x: 5.8457, - y: 20.0418, - }, - { - l: '91.0', - x: 5.929, - y: 20.076, - }, - { - l: '91.0', - x: 6.0123, - y: 20.1157, - }, - { - l: '91.0', - x: 6.0957, - y: 20.1556, - }, - { - l: '91.0', - x: 6.179, - y: 20.1933, - }, - { - l: '91.0', - x: 6.2623, - y: 20.2369, - }, - { - l: '91.0', - x: 6.3457, - y: 20.2807, - }, - { - l: '91.0', - x: 6.429, - y: 20.3219, - }, - { - l: '91.0', - x: 6.5123, - y: 20.3695, - }, - { - l: '91.0', - x: 6.5957, - y: 20.417, - }, - { - l: '91.0', - x: 6.679, - y: 20.4615, - }, - { - l: '91.0', - x: 6.7623, - y: 20.5127, - }, - { - l: '91.0', - x: 6.8457, - y: 20.5637, - }, - { - l: '91.0', - x: 6.929, - y: 20.6114, - }, - { - l: '91.0', - x: 7.0123, - y: 20.666, - }, - { - l: '91.0', - x: 7.0957, - y: 20.7202, - }, - { - l: '91.0', - x: 7.179, - y: 20.7707, - }, - { - l: '91.0', - x: 7.2623, - y: 20.8284, - }, - { - l: '91.0', - x: 7.3457, - y: 20.8855, - }, - { - l: '91.0', - x: 7.429, - y: 20.9387, - }, - { - l: '91.0', - x: 7.5123, - y: 20.9992, - }, - { - l: '91.0', - x: 7.5957, - y: 21.0592, - }, - { - l: '91.0', - x: 7.679, - y: 21.1147, - }, - { - l: '91.0', - x: 7.7623, - y: 21.178, - }, - { - l: '91.0', - x: 7.8457, - y: 21.2404, - }, - { - l: '91.0', - x: 7.929, - y: 21.2982, - }, - { - l: '91.0', - x: 8.0123, - y: 21.3638, - }, - { - l: '91.0', - x: 8.0957, - y: 21.4285, - }, - { - l: '91.0', - x: 8.179, - y: 21.4883, - }, - { - l: '91.0', - x: 8.2623, - y: 21.5562, - }, - { - l: '91.0', - x: 8.3457, - y: 21.623, - }, - { - l: '91.0', - x: 8.429, - y: 21.6847, - }, - { - l: '91.0', - x: 8.5123, - y: 21.7546, - }, - { - l: '91.0', - x: 8.5957, - y: 21.8233, - }, - { - l: '91.0', - x: 8.679, - y: 21.8868, - }, - { - l: '91.0', - x: 8.7623, - y: 21.9585, - }, - { - l: '91.0', - x: 8.8457, - y: 22.029, - }, - { - l: '91.0', - x: 8.929, - y: 22.094, - }, - { - l: '91.0', - x: 9.0123, - y: 22.1675, - }, - { - l: '91.0', - x: 9.0957, - y: 22.2396, - }, - { - l: '91.0', - x: 9.179, - y: 22.3061, - }, - { - l: '91.0', - x: 9.2623, - y: 22.3812, - }, - { - l: '91.0', - x: 9.3457, - y: 22.4548, - }, - { - l: '91.0', - x: 9.429, - y: 22.5227, - }, - { - l: '91.0', - x: 9.5123, - y: 22.5993, - }, - { - l: '91.0', - x: 9.5957, - y: 22.6743, - }, - { - l: '91.0', - x: 9.679, - y: 22.7433, - }, - { - l: '91.0', - x: 9.7623, - y: 22.8212, - }, - { - l: '91.0', - x: 9.8457, - y: 22.8975, - }, - { - l: '91.0', - x: 9.929, - y: 22.9676, - }, - { - l: '91.0', - x: 10.0123, - y: 23.0467, - }, - { - l: '91.0', - x: 10.0957, - y: 23.1241, - }, - { - l: '91.0', - x: 10.179, - y: 23.1954, - }, - { - l: '91.0', - x: 10.2623, - y: 23.2757, - }, - { - l: '91.0', - x: 10.3457, - y: 23.3542, - }, - { - l: '91.0', - x: 10.429, - y: 23.4265, - }, - { - l: '91.0', - x: 10.5123, - y: 23.5081, - }, - { - l: '91.0', - x: 10.5957, - y: 23.5877, - }, - { - l: '91.0', - x: 10.679, - y: 23.661, - }, - { - l: '91.0', - x: 10.7623, - y: 23.7435, - }, - { - l: '91.0', - x: 10.8457, - y: 23.8243, - }, - { - l: '91.0', - x: 10.929, - y: 23.8985, - }, - { - l: '91.0', - x: 11.0123, - y: 23.9821, - }, - { - l: '91.0', - x: 11.0957, - y: 24.0639, - }, - { - l: '91.0', - x: 11.179, - y: 24.1389, - }, - { - l: '91.0', - x: 11.2623, - y: 24.2235, - }, - { - l: '91.0', - x: 11.3457, - y: 24.306, - }, - { - l: '91.0', - x: 11.429, - y: 24.3819, - }, - { - l: '91.0', - x: 11.5123, - y: 24.4673, - }, - { - l: '91.0', - x: 11.5957, - y: 24.5507, - }, - { - l: '91.0', - x: 11.679, - y: 24.6273, - }, - { - l: '91.0', - x: 11.7623, - y: 24.7135, - }, - { - l: '91.0', - x: 11.8457, - y: 24.7976, - }, - { - l: '91.0', - x: 11.929, - y: 24.8748, - }, - { - l: '91.0', - x: 12.0123, - y: 24.9617, - }, - { - l: '91.0', - x: 12.0957, - y: 25.0466, - }, - { - l: '91.0', - x: 12.179, - y: 25.1244, - }, - { - l: '91.0', - x: 12.2623, - y: 25.2118, - }, - { - l: '91.0', - x: 12.3457, - y: 25.2973, - }, - { - l: '91.0', - x: 12.429, - y: 25.3757, - }, - { - l: '91.0', - x: 12.5123, - y: 25.4638, - }, - { - l: '91.0', - x: 12.5957, - y: 25.5498, - }, - { - l: '91.0', - x: 12.679, - y: 25.6287, - }, - { - l: '91.0', - x: 12.7623, - y: 25.7173, - }, - { - l: '91.0', - x: 12.8457, - y: 25.8037, - }, - { - l: '91.0', - x: 12.929, - y: 25.8829, - }, - { - l: '91.0', - x: 13.0123, - y: 25.972, - }, - { - l: '91.0', - x: 13.0957, - y: 26.0589, - }, - { - l: '91.0', - x: 13.179, - y: 26.1384, - }, - { - l: '91.0', - x: 13.2623, - y: 26.2278, - }, - { - l: '91.0', - x: 13.3457, - y: 26.315, - }, - { - l: '91.0', - x: 13.429, - y: 26.3949, - }, - { - l: '91.0', - x: 13.5123, - y: 26.4845, - }, - { - l: '91.0', - x: 13.5957, - y: 26.5718, - }, - { - l: '91.0', - x: 13.679, - y: 26.652, - }, - { - l: '91.0', - x: 13.7623, - y: 26.7418, - }, - { - l: '91.0', - x: 13.8457, - y: 26.8294, - }, - { - l: '91.0', - x: 13.929, - y: 26.9095, - }, - { - l: '91.0', - x: 14.0123, - y: 26.9996, - }, - { - l: '91.0', - x: 14.0957, - y: 27.0873, - }, - { - l: '91.0', - x: 14.179, - y: 27.1675, - }, - { - l: '91.0', - x: 14.2623, - y: 27.2576, - }, - { - l: '91.0', - x: 14.3457, - y: 27.3453, - }, - { - l: '91.0', - x: 14.429, - y: 27.4257, - }, - { - l: '91.0', - x: 14.5123, - y: 27.5157, - }, - { - l: '91.0', - x: 14.5957, - y: 27.6035, - }, - { - l: '91.0', - x: 14.679, - y: 27.6837, - }, - { - l: '91.0', - x: 14.7623, - y: 27.7738, - }, - { - l: '91.0', - x: 14.8457, - y: 27.8616, - }, - { - l: '91.0', - x: 14.929, - y: 27.9418, - }, - { - l: '91.0', - x: 15.0123, - y: 28.0318, - }, - { - l: '91.0', - x: 15.0957, - y: 28.1195, - }, - { - l: '91.0', - x: 15.179, - y: 28.1997, - }, - { - l: '91.0', - x: 15.2623, - y: 28.2896, - }, - { - l: '91.0', - x: 15.3457, - y: 28.3773, - }, - { - l: '91.0', - x: 15.429, - y: 28.4574, - }, - { - l: '91.0', - x: 15.5123, - y: 28.5474, - }, - { - l: '91.0', - x: 15.5957, - y: 28.6349, - }, - { - l: '91.0', - x: 15.679, - y: 28.715, - }, - { - l: '91.0', - x: 15.7623, - y: 28.8048, - }, - { - l: '91.0', - x: 15.8457, - y: 28.8922, - }, - { - l: '91.0', - x: 15.929, - y: 28.9722, - }, - { - l: '91.0', - x: 16.0123, - y: 29.0621, - }, - { - l: '91.0', - x: 16.0957, - y: 29.1495, - }, - { - l: '91.0', - x: 16.179, - y: 29.2294, - }, - { - l: '91.0', - x: 16.2623, - y: 29.3191, - }, - { - l: '91.0', - x: 16.3457, - y: 29.4064, - }, - { - l: '91.0', - x: 16.429, - y: 29.4863, - }, - { - l: '91.0', - x: 16.5123, - y: 29.5759, - }, - { - l: '91.0', - x: 16.5957, - y: 29.6631, - }, - { - l: '91.0', - x: 16.679, - y: 29.743, - }, - { - l: '91.0', - x: 16.7623, - y: 29.8326, - }, - { - l: '91.0', - x: 16.8457, - y: 29.9198, - }, - { - l: '91.0', - x: 16.929, - y: 29.9996, - }, - { - l: '91.0', - x: 17.0123, - y: 30.0892, - }, - { - l: '91.0', - x: 17.0957, - y: 30.1763, - }, - { - l: '91.0', - x: 17.179, - y: 30.2561, - }, - { - l: '91.0', - x: 17.2623, - y: 30.3457, - }, - { - l: '91.0', - x: 17.3457, - y: 30.4328, - }, - { - l: '91.0', - x: 17.429, - y: 30.5126, - }, - { - l: '91.0', - x: 17.5123, - y: 30.6022, - }, - { - l: '91.0', - x: 17.5957, - y: 30.6893, - }, - { - l: '91.0', - x: 17.679, - y: 30.7691, - }, - { - l: '91.0', - x: 17.7623, - y: 30.8587, - }, - { - l: '91.0', - x: 17.8457, - y: 30.9459, - }, - { - l: '91.0', - x: 17.929, - y: 31.0257, - }, - { - l: '91.0', - x: 18.0123, - y: 31.1153, - }, - { - l: '91.0', - x: 18.0957, - y: 31.2025, - }, - { - l: '91.0', - x: 18.179, - y: 31.2824, - }, - { - l: '91.0', - x: 18.2623, - y: 31.3721, - }, - { - l: '91.0', - x: 18.3457, - y: 31.4594, - }, - { - l: '91.0', - x: 18.429, - y: 31.5393, - }, - { - l: '91.0', - x: 18.5123, - y: 31.6291, - }, - { - l: '91.0', - x: 18.5957, - y: 31.7164, - }, - { - l: '91.0', - x: 18.679, - y: 31.7965, - }, - { - l: '91.0', - x: 18.7623, - y: 31.8863, - }, - { - l: '91.0', - x: 18.8457, - y: null, - }, + { l: 91.0, x: 0, y: 14.1647 }, + { l: 91.0, x: 0.08, y: 15.4853 }, + { l: 91.0, x: 0.17, y: 16.3903 }, + { l: 91.0, x: 0.25, y: 17.1007 }, + { l: 91.0, x: 0.33, y: 17.6698 }, + { l: 91.0, x: 0.42, y: 18.121 }, + { l: 91.0, x: 0.5, y: 18.4744 }, + { l: 91.0, x: 0.58, y: 18.7459 }, + { l: 91.0, x: 0.67, y: 18.9507 }, + { l: 91.0, x: 0.75, y: 19.1027 }, + { l: 91.0, x: 0.83, y: 19.2149 }, + { l: 91.0, x: 0.92, y: 19.2981 }, + { l: 91.0, x: 1, y: 19.3598 }, + { l: 91.0, x: 1.08, y: 19.4054 }, + { l: 91.0, x: 1.17, y: 19.4386 }, + { l: 91.0, x: 1.25, y: 19.4625 }, + { l: 91.0, x: 1.33, y: 19.4796 }, + { l: 91.0, x: 1.42, y: 19.4919 }, + { l: 91.0, x: 1.5, y: 19.5005 }, + { l: 91.0, x: 1.58, y: 19.5067 }, + { l: 91.0, x: 1.67, y: 19.5109 }, + { l: 91.0, x: 1.75, y: 19.5134 }, + { l: 91.0, x: 1.83, y: 19.5149 }, + { l: 91.0, x: 1.92, y: 19.5154 }, + { l: 91.0, x: 2, y: 19.5154 }, + { l: 91.0, x: 2.08, y: 19.5148 }, + { l: 91.0, x: 2.17, y: 19.5135 }, + { l: 91.0, x: 2.25, y: 19.5114 }, + { l: 91.0, x: 2.33, y: 19.5086 }, + { l: 91.0, x: 2.42, y: 19.5053 }, + { l: 91.0, x: 2.5, y: 19.5016 }, + { l: 91.0, x: 2.58, y: 19.498 }, + { l: 91.0, x: 2.67, y: 19.4946 }, + { l: 91.0, x: 2.75, y: 19.4918 }, + { l: 91.0, x: 2.83, y: 19.4896 }, + { l: 91.0, x: 2.92, y: 19.4881 }, + { l: 91.0, x: 3, y: 19.4876 }, + { l: 91.0, x: 3.08, y: 19.4881 }, + { l: 91.0, x: 3.17, y: 19.4894 }, + { l: 91.0, x: 3.25, y: 19.4919 }, + { l: 91.0, x: 3.33, y: 19.4952 }, + { l: 91.0, x: 3.42, y: 19.4993 }, + { l: 91.0, x: 3.5, y: 19.5043 }, + { l: 91.0, x: 3.58, y: 19.5102 }, + { l: 91.0, x: 3.67, y: 19.5171 }, + { l: 91.0, x: 3.75, y: 19.5247 }, + { l: 91.0, x: 3.83, y: 19.5333 }, + { l: 91.0, x: 3.92, y: 19.5427 }, + { l: 91.0, x: 4, y: 19.5532 }, + { l: 91.0, x: 4.08, y: 19.5646 }, + { l: 91.0, x: 4.17, y: 19.577 }, + { l: 91.0, x: 4.25, y: 19.5903 }, + { l: 91.0, x: 4.33, y: 19.6046 }, + { l: 91.0, x: 4.42, y: 19.6198 }, + { l: 91.0, x: 4.5, y: 19.636 }, + { l: 91.0, x: 4.58, y: 19.6532 }, + { l: 91.0, x: 4.67, y: 19.6715 }, + { l: 91.0, x: 4.75, y: 19.6908 }, + { l: 91.0, x: 4.83, y: 19.7114 }, + { l: 91.0, x: 4.92, y: 19.7331 }, + { l: 91.0, x: 5, y: 19.7559 }, + { l: 91.0, x: 5.08, y: 19.7801 }, + { l: 91.0, x: 5.17, y: 19.8055 }, + { l: 91.0, x: 5.25, y: 19.8321 }, + { l: 91.0, x: 5.33, y: 19.8599 }, + { l: 91.0, x: 5.42, y: 19.8891 }, + { l: 91.0, x: 5.5, y: 19.9197 }, + { l: 91.0, x: 5.58, y: 19.9514 }, + { l: 91.0, x: 5.67, y: 19.9842 }, + { l: 91.0, x: 5.75, y: 20.0184 }, + { l: 91.0, x: 5.83, y: 20.0537 }, + { l: 91.0, x: 5.92, y: 20.0903 }, + { l: 91.0, x: 6, y: 20.1283 }, + { l: 91.0, x: 6.08, y: 20.1673 }, + { l: 91.0, x: 6.17, y: 20.2077 }, + { l: 91.0, x: 6.25, y: 20.2494 }, + { l: 91.0, x: 6.33, y: 20.2923 }, + { l: 91.0, x: 6.42, y: 20.3364 }, + { l: 91.0, x: 6.5, y: 20.3819 }, + { l: 91.0, x: 6.58, y: 20.4285 }, + { l: 91.0, x: 6.67, y: 20.4763 }, + { l: 91.0, x: 6.75, y: 20.5252 }, + { l: 91.0, x: 6.83, y: 20.5752 }, + { l: 91.0, x: 6.92, y: 20.6264 }, + { l: 91.0, x: 7, y: 20.6786 }, + { l: 91.0, x: 7.08, y: 20.7318 }, + { l: 91.0, x: 7.17, y: 20.786 }, + { l: 91.0, x: 7.25, y: 20.8412 }, + { l: 91.0, x: 7.33, y: 20.8973 }, + { l: 91.0, x: 7.42, y: 20.9544 }, + { l: 91.0, x: 7.5, y: 21.0123 }, + { l: 91.0, x: 7.58, y: 21.0712 }, + { l: 91.0, x: 7.67, y: 21.1308 }, + { l: 91.0, x: 7.75, y: 21.1913 }, + { l: 91.0, x: 7.83, y: 21.2526 }, + { l: 91.0, x: 7.92, y: 21.3147 }, + { l: 91.0, x: 8, y: 21.3775 }, + { l: 91.0, x: 8.08, y: 21.441 }, + { l: 91.0, x: 8.17, y: 21.5053 }, + { l: 91.0, x: 8.25, y: 21.5702 }, + { l: 91.0, x: 8.33, y: 21.6359 }, + { l: 91.0, x: 8.42, y: 21.7022 }, + { l: 91.0, x: 8.5, y: 21.7691 }, + { l: 91.0, x: 8.58, y: 21.8367 }, + { l: 91.0, x: 8.67, y: 21.9049 }, + { l: 91.0, x: 8.75, y: 21.9735 }, + { l: 91.0, x: 8.83, y: 22.0428 }, + { l: 91.0, x: 8.92, y: 22.1127 }, + { l: 91.0, x: 9, y: 22.183 }, + { l: 91.0, x: 9.08, y: 22.254 }, + { l: 91.0, x: 9.17, y: 22.3254 }, + { l: 91.0, x: 9.25, y: 22.3973 }, + { l: 91.0, x: 9.33, y: 22.4697 }, + { l: 91.0, x: 9.42, y: 22.5427 }, + { l: 91.0, x: 9.5, y: 22.616 }, + { l: 91.0, x: 9.58, y: 22.6898 }, + { l: 91.0, x: 9.67, y: 22.764 }, + { l: 91.0, x: 9.75, y: 22.8386 }, + { l: 91.0, x: 9.83, y: 22.9136 }, + { l: 91.0, x: 9.92, y: 22.989 }, + { l: 91.0, x: 10, y: 23.0648 }, + { l: 91.0, x: 10.08, y: 23.1409 }, + { l: 91.0, x: 10.17, y: 23.2175 }, + { l: 91.0, x: 10.25, y: 23.2945 }, + { l: 91.0, x: 10.33, y: 23.3717 }, + { l: 91.0, x: 10.42, y: 23.4494 }, + { l: 91.0, x: 10.5, y: 23.5276 }, + { l: 91.0, x: 10.58, y: 23.606 }, + { l: 91.0, x: 10.67, y: 23.6848 }, + { l: 91.0, x: 10.75, y: 23.7638 }, + { l: 91.0, x: 10.83, y: 23.8433 }, + { l: 91.0, x: 10.92, y: 23.9231 }, + { l: 91.0, x: 11, y: 24.0031 }, + { l: 91.0, x: 11.08, y: 24.0836 }, + { l: 91.0, x: 11.17, y: 24.1643 }, + { l: 91.0, x: 11.25, y: 24.2453 }, + { l: 91.0, x: 11.33, y: 24.3266 }, + { l: 91.0, x: 11.42, y: 24.4082 }, + { l: 91.0, x: 11.5, y: 24.49 }, + { l: 91.0, x: 11.58, y: 24.5721 }, + { l: 91.0, x: 11.67, y: 24.6545 }, + { l: 91.0, x: 11.75, y: 24.7371 }, + { l: 91.0, x: 11.83, y: 24.8199 }, + { l: 91.0, x: 11.92, y: 24.9029 }, + { l: 91.0, x: 12, y: 24.9862 }, + { l: 91.0, x: 12.08, y: 25.0698 }, + { l: 91.0, x: 12.17, y: 25.1535 }, + { l: 91.0, x: 12.25, y: 25.2373 }, + { l: 91.0, x: 12.33, y: 25.3214 }, + { l: 91.0, x: 12.42, y: 25.4057 }, + { l: 91.0, x: 12.5, y: 25.4902 }, + { l: 91.0, x: 12.58, y: 25.5749 }, + { l: 91.0, x: 12.67, y: 25.6597 }, + { l: 91.0, x: 12.75, y: 25.7447 }, + { l: 91.0, x: 12.83, y: 25.8298 }, + { l: 91.0, x: 12.92, y: 25.915 }, + { l: 91.0, x: 13, y: 26.0004 }, + { l: 91.0, x: 13.08, y: 26.086 }, + { l: 91.0, x: 13.17, y: 26.1715 }, + { l: 91.0, x: 13.25, y: 26.2573 }, + { l: 91.0, x: 13.33, y: 26.3431 }, + { l: 91.0, x: 13.42, y: 26.4291 }, + { l: 91.0, x: 13.5, y: 26.5151 }, + { l: 91.0, x: 13.58, y: 26.6011 }, + { l: 91.0, x: 13.67, y: 26.6873 }, + { l: 91.0, x: 13.75, y: 26.7735 }, + { l: 91.0, x: 13.83, y: 26.8598 }, + { l: 91.0, x: 13.92, y: 26.9461 }, + { l: 91.0, x: 14, y: 27.0325 }, + { l: 91.0, x: 14.08, y: 27.1188 }, + { l: 91.0, x: 14.17, y: 27.2052 }, + { l: 91.0, x: 14.25, y: 27.2916 }, + { l: 91.0, x: 14.33, y: 27.378 }, + { l: 91.0, x: 14.42, y: 27.4646 }, + { l: 91.0, x: 14.5, y: 27.551 }, + { l: 91.0, x: 14.58, y: 27.6374 }, + { l: 91.0, x: 14.67, y: 27.7239 }, + { l: 91.0, x: 14.75, y: 27.8103 }, + { l: 91.0, x: 14.83, y: 27.8968 }, + { l: 91.0, x: 14.92, y: 27.9832 }, + { l: 91.0, x: 15, y: 28.0695 }, + { l: 91.0, x: 15.08, y: 28.156 }, + { l: 91.0, x: 15.17, y: 28.2424 }, + { l: 91.0, x: 15.25, y: 28.3287 }, + { l: 91.0, x: 15.33, y: 28.4151 }, + { l: 91.0, x: 15.42, y: 28.5013 }, + { l: 91.0, x: 15.5, y: 28.5878 }, + { l: 91.0, x: 15.58, y: 28.6741 }, + { l: 91.0, x: 15.67, y: 28.7603 }, + { l: 91.0, x: 15.75, y: 28.8465 }, + { l: 91.0, x: 15.83, y: 28.9327 }, + { l: 91.0, x: 15.92, y: 29.0189 }, + { l: 91.0, x: 16, y: 29.1052 }, + { l: 91.0, x: 16.08, y: 29.1913 }, + { l: 91.0, x: 16.17, y: 29.2774 }, + { l: 91.0, x: 16.25, y: 29.3636 }, + { l: 91.0, x: 16.33, y: 29.4497 }, + { l: 91.0, x: 16.42, y: 29.5358 }, + { l: 91.0, x: 16.5, y: 29.6218 }, + { l: 91.0, x: 16.58, y: 29.7078 }, + { l: 91.0, x: 16.67, y: 29.794 }, + { l: 91.0, x: 16.75, y: 29.8799 }, + { l: 91.0, x: 16.83, y: 29.9659 }, + { l: 91.0, x: 16.92, y: 30.052 }, + { l: 91.0, x: 17, y: 30.138 }, + { l: 91.0, x: 17.08, y: 30.224 }, + { l: 91.0, x: 17.17, y: 30.31 }, + { l: 91.0, x: 17.25, y: 30.3961 }, + { l: 91.0, x: 17.33, y: 30.482 }, + { l: 91.0, x: 17.42, y: 30.568 }, + { l: 91.0, x: 17.5, y: 30.6541 }, + { l: 91.0, x: 17.58, y: 30.74 }, + { l: 91.0, x: 17.67, y: 30.8261 }, + { l: 91.0, x: 17.75, y: 30.9122 }, + { l: 91.0, x: 17.83, y: 30.9982 }, + { l: 91.0, x: 17.92, y: 31.0842 }, + { l: 91.0, x: 18, y: 31.1703 }, + { l: 91.0, x: 18.08, y: 31.2564 }, + { l: 91.0, x: 18.17, y: 31.3426 }, + { l: 91.0, x: 18.25, y: 31.4287 }, + { l: 91.0, x: 18.33, y: 31.5149 }, + { l: 91.0, x: 18.42, y: 31.6011 }, + { l: 91.0, x: 18.5, y: 31.6874 }, + { l: 91.0, x: 18.58, y: 31.7736 }, + { l: 91.0, x: 18.67, y: 31.86 }, + { l: 91.0, x: 18.75, y: 31.9463 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 0.0, - y: 15.1613, - }, - { - l: '98.0', - x: 0.0192, - y: 15.4896, - }, - { - l: '98.0', - x: 0.0383, - y: 15.8155, - }, - { - l: '98.0', - x: 0.0575, - y: 16.1389, - }, - { - l: '98.0', - x: 0.0767, - y: 16.4599, - }, - { - l: '98.0', - x: 0.0958, - y: 16.7093, - }, - { - l: '98.0', - x: 0.115, - y: 16.9217, - }, - { - l: '98.0', - x: 0.1342, - y: 17.1149, - }, - { - l: '98.0', - x: 0.1533, - y: 17.2943, - }, - { - l: '98.0', - x: 0.1725, - y: 17.4676, - }, - { - l: '98.0', - x: 0.1916, - y: 17.6521, - }, - { - l: '98.0', - x: 0.2108, - y: 17.8305, - }, - { - l: '98.0', - x: 0.23, - y: 18.0022, - }, - { - l: '98.0', - x: 0.2491, - y: 18.1663, - }, - { - l: '98.0', - x: 0.2683, - y: 18.3208, - }, - { - l: '98.0', - x: 0.2875, - y: 18.4668, - }, - { - l: '98.0', - x: 0.3066, - y: 18.6041, - }, - { - l: '98.0', - x: 0.3258, - y: 18.7323, - }, - { - l: '98.0', - x: 0.345, - y: 18.8468, - }, - { - l: '98.0', - x: 0.3641, - y: 18.9516, - }, - { - l: '98.0', - x: 0.3833, - y: 19.0496, - }, - { - l: '98.0', - x: 0.4025, - y: 19.1422, - }, - { - l: '98.0', - x: 0.4216, - y: 19.2317, - }, - { - l: '98.0', - x: 0.4408, - y: 19.3242, - }, - { - l: '98.0', - x: 0.46, - y: 19.4135, - }, - { - l: '98.0', - x: 0.4791, - y: 19.4989, - }, - { - l: '98.0', - x: 0.4983, - y: 19.58, - }, - { - l: '98.0', - x: 0.5175, - y: 19.6552, - }, - { - l: '98.0', - x: 0.5366, - y: 19.7253, - }, - { - l: '98.0', - x: 0.5558, - y: 19.7905, - }, - { - l: '98.0', - x: 0.5749, - y: 19.8508, - }, - { - l: '98.0', - x: 0.5941, - y: 19.9042, - }, - { - l: '98.0', - x: 0.6133, - y: 19.9524, - }, - { - l: '98.0', - x: 0.6324, - y: 19.9968, - }, - { - l: '98.0', - x: 0.6516, - y: 20.0381, - }, - { - l: '98.0', - x: 0.6708, - y: 20.0773, - }, - { - l: '98.0', - x: 0.6899, - y: 20.1176, - }, - { - l: '98.0', - x: 0.7091, - y: 20.156, - }, - { - l: '98.0', - x: 0.7283, - y: 20.1924, - }, - { - l: '98.0', - x: 0.7474, - y: 20.2266, - }, - { - l: '98.0', - x: 0.7666, - y: 20.258, - }, - { - l: '98.0', - x: 0.7858, - y: 20.2871, - }, - { - l: '98.0', - x: 0.8049, - y: 20.3139, - }, - { - l: '98.0', - x: 0.8241, - y: 20.3385, - }, - { - l: '98.0', - x: 0.8433, - y: 20.3603, - }, - { - l: '98.0', - x: 0.8624, - y: 20.38, - }, - { - l: '98.0', - x: 0.8816, - y: 20.3981, - }, - { - l: '98.0', - x: 0.9008, - y: 20.4148, - }, - { - l: '98.0', - x: 0.9199, - y: 20.4307, - }, - { - l: '98.0', - x: 0.9391, - y: 20.4471, - }, - { - l: '98.0', - x: 0.9582, - y: 20.4628, - }, - { - l: '98.0', - x: 0.9774, - y: 20.4777, - }, - { - l: '98.0', - x: 0.9966, - y: 20.4917, - }, - { - l: '98.0', - x: 1.0157, - y: 20.5046, - }, - { - l: '98.0', - x: 1.0349, - y: 20.5167, - }, - { - l: '98.0', - x: 1.0541, - y: 20.5278, - }, - { - l: '98.0', - x: 1.0732, - y: 20.538, - }, - { - l: '98.0', - x: 1.0924, - y: 20.547, - }, - { - l: '98.0', - x: 1.1116, - y: 20.5552, - }, - { - l: '98.0', - x: 1.1307, - y: 20.5626, - }, - { - l: '98.0', - x: 1.1499, - y: 20.5695, - }, - { - l: '98.0', - x: 1.1691, - y: 20.576, - }, - { - l: '98.0', - x: 1.1882, - y: 20.5828, - }, - { - l: '98.0', - x: 1.2074, - y: 20.5892, - }, - { - l: '98.0', - x: 1.2266, - y: 20.5953, - }, - { - l: '98.0', - x: 1.2457, - y: 20.601, - }, - { - l: '98.0', - x: 1.2649, - y: 20.6063, - }, - { - l: '98.0', - x: 1.2841, - y: 20.6112, - }, - { - l: '98.0', - x: 1.3032, - y: 20.6157, - }, - { - l: '98.0', - x: 1.3224, - y: 20.6199, - }, - { - l: '98.0', - x: 1.3415, - y: 20.6237, - }, - { - l: '98.0', - x: 1.3607, - y: 20.6271, - }, - { - l: '98.0', - x: 1.3799, - y: 20.6303, - }, - { - l: '98.0', - x: 1.399, - y: 20.6332, - }, - { - l: '98.0', - x: 1.4182, - y: 20.6361, - }, - { - l: '98.0', - x: 1.4374, - y: 20.639, - }, - { - l: '98.0', - x: 1.4565, - y: 20.6419, - }, - { - l: '98.0', - x: 1.4757, - y: 20.6446, - }, - { - l: '98.0', - x: 1.4949, - y: 20.6473, - }, - { - l: '98.0', - x: 1.514, - y: 20.6498, - }, - { - l: '98.0', - x: 1.5332, - y: 20.6522, - }, - { - l: '98.0', - x: 1.5524, - y: 20.6544, - }, - { - l: '98.0', - x: 1.5715, - y: 20.6566, - }, - { - l: '98.0', - x: 1.5907, - y: 20.6585, - }, - { - l: '98.0', - x: 1.6099, - y: 20.6603, - }, - { - l: '98.0', - x: 1.629, - y: 20.662, - }, - { - l: '98.0', - x: 1.6482, - y: 20.6636, - }, - { - l: '98.0', - x: 1.6674, - y: 20.6651, - }, - { - l: '98.0', - x: 1.6865, - y: 20.6668, - }, - { - l: '98.0', - x: 1.7057, - y: 20.6684, - }, - { - l: '98.0', - x: 1.7248, - y: 20.67, - }, - { - l: '98.0', - x: 1.744, - y: 20.6716, - }, - { - l: '98.0', - x: 1.7632, - y: 20.6731, - }, - { - l: '98.0', - x: 1.7823, - y: 20.6746, - }, - { - l: '98.0', - x: 1.8015, - y: 20.676, - }, - { - l: '98.0', - x: 1.8207, - y: 20.6774, - }, - { - l: '98.0', - x: 1.8398, - y: 20.6787, - }, - { - l: '98.0', - x: 1.859, - y: 20.6799, - }, - { - l: '98.0', - x: 1.8782, - y: 20.681, - }, - { - l: '98.0', - x: 1.8973, - y: 20.6822, - }, - { - l: '98.0', - x: 1.9165, - y: 20.6833, - }, - { - l: '98.0', - x: 1.9357, - y: 20.6846, - }, - { - l: '98.0', - x: 1.9548, - y: 20.6859, - }, - { - l: '98.0', - x: 1.974, - y: 20.6872, - }, - { - l: '98.0', - x: 1.9932, - y: 20.6885, - }, - { - l: '98.0', - x: 2.0123, - y: 20.6897, - }, - { - l: '98.0', - x: 2.0957, - y: 20.6948, - }, - { - l: '98.0', - x: 2.179, - y: 20.6991, - }, - { - l: '98.0', - x: 2.2623, - y: 20.7035, - }, - { - l: '98.0', - x: 2.3457, - y: 20.7073, - }, - { - l: '98.0', - x: 2.429, - y: 20.7106, - }, - { - l: '98.0', - x: 2.5123, - y: 20.7142, - }, - { - l: '98.0', - x: 2.5957, - y: 20.7181, - }, - { - l: '98.0', - x: 2.679, - y: 20.7221, - }, - { - l: '98.0', - x: 2.7623, - y: 20.7276, - }, - { - l: '98.0', - x: 2.8457, - y: 20.7337, - }, - { - l: '98.0', - x: 2.929, - y: 20.7403, - }, - { - l: '98.0', - x: 3.0123, - y: 20.749, - }, - { - l: '98.0', - x: 3.0957, - y: 20.7586, - }, - { - l: '98.0', - x: 3.179, - y: 20.7685, - }, - { - l: '98.0', - x: 3.2623, - y: 20.781, - }, - { - l: '98.0', - x: 3.3457, - y: 20.7942, - }, - { - l: '98.0', - x: 3.429, - y: 20.8073, - }, - { - l: '98.0', - x: 3.5123, - y: 20.8231, - }, - { - l: '98.0', - x: 3.5957, - y: 20.8397, - }, - { - l: '98.0', - x: 3.679, - y: 20.8559, - }, - { - l: '98.0', - x: 3.7623, - y: 20.8751, - }, - { - l: '98.0', - x: 3.8457, - y: 20.8952, - }, - { - l: '98.0', - x: 3.929, - y: 20.9145, - }, - { - l: '98.0', - x: 4.0123, - y: 20.9376, - }, - { - l: '98.0', - x: 4.0957, - y: 20.9612, - }, - { - l: '98.0', - x: 4.179, - y: 20.984, - }, - { - l: '98.0', - x: 4.2623, - y: 21.0107, - }, - { - l: '98.0', - x: 4.3457, - y: 21.0381, - }, - { - l: '98.0', - x: 4.429, - y: 21.0642, - }, - { - l: '98.0', - x: 4.5123, - y: 21.0948, - }, - { - l: '98.0', - x: 4.5957, - y: 21.1259, - }, - { - l: '98.0', - x: 4.679, - y: 21.1557, - }, - { - l: '98.0', - x: 4.7623, - y: 21.1905, - }, - { - l: '98.0', - x: 4.8457, - y: 21.2259, - }, - { - l: '98.0', - x: 4.929, - y: 21.2597, - }, - { - l: '98.0', - x: 5.0123, - y: 21.299, - }, - { - l: '98.0', - x: 5.0957, - y: 21.339, - }, - { - l: '98.0', - x: 5.179, - y: 21.377, - }, - { - l: '98.0', - x: 5.2623, - y: 21.4212, - }, - { - l: '98.0', - x: 5.3457, - y: 21.4659, - }, - { - l: '98.0', - x: 5.429, - y: 21.5083, - }, - { - l: '98.0', - x: 5.5123, - y: 21.5575, - }, - { - l: '98.0', - x: 5.5957, - y: 21.607, - }, - { - l: '98.0', - x: 5.679, - y: 21.6537, - }, - { - l: '98.0', - x: 5.7623, - y: 21.7077, - }, - { - l: '98.0', - x: 5.8457, - y: 21.7618, - }, - { - l: '98.0', - x: 5.929, - y: 21.8128, - }, - { - l: '98.0', - x: 6.0123, - y: 21.8718, - }, - { - l: '98.0', - x: 6.0957, - y: 21.9307, - }, - { - l: '98.0', - x: 6.179, - y: 21.9862, - }, - { - l: '98.0', - x: 6.2623, - y: 22.0501, - }, - { - l: '98.0', - x: 6.3457, - y: 22.1139, - }, - { - l: '98.0', - x: 6.429, - y: 22.1738, - }, - { - l: '98.0', - x: 6.5123, - y: 22.2428, - }, - { - l: '98.0', - x: 6.5957, - y: 22.3114, - }, - { - l: '98.0', - x: 6.679, - y: 22.3755, - }, - { - l: '98.0', - x: 6.7623, - y: 22.4491, - }, - { - l: '98.0', - x: 6.8457, - y: 22.5222, - }, - { - l: '98.0', - x: 6.929, - y: 22.5905, - }, - { - l: '98.0', - x: 7.0123, - y: 22.6686, - }, - { - l: '98.0', - x: 7.0957, - y: 22.7459, - }, - { - l: '98.0', - x: 7.179, - y: 22.818, - }, - { - l: '98.0', - x: 7.2623, - y: 22.9001, - }, - { - l: '98.0', - x: 7.3457, - y: 22.9814, - }, - { - l: '98.0', - x: 7.429, - y: 23.057, - }, - { - l: '98.0', - x: 7.5123, - y: 23.1431, - }, - { - l: '98.0', - x: 7.5957, - y: 23.2282, - }, - { - l: '98.0', - x: 7.679, - y: 23.307, - }, - { - l: '98.0', - x: 7.7623, - y: 23.3968, - }, - { - l: '98.0', - x: 7.8457, - y: 23.4854, - }, - { - l: '98.0', - x: 7.929, - y: 23.5674, - }, - { - l: '98.0', - x: 8.0123, - y: 23.6606, - }, - { - l: '98.0', - x: 8.0957, - y: 23.7523, - }, - { - l: '98.0', - x: 8.179, - y: 23.8373, - }, - { - l: '98.0', - x: 8.2623, - y: 23.9337, - }, - { - l: '98.0', - x: 8.3457, - y: 24.0286, - }, - { - l: '98.0', - x: 8.429, - y: 24.1162, - }, - { - l: '98.0', - x: 8.5123, - y: 24.2156, - }, - { - l: '98.0', - x: 8.5957, - y: 24.3134, - }, - { - l: '98.0', - x: 8.679, - y: 24.4036, - }, - { - l: '98.0', - x: 8.7623, - y: 24.5058, - }, - { - l: '98.0', - x: 8.8457, - y: 24.6062, - }, - { - l: '98.0', - x: 8.929, - y: 24.6989, - }, - { - l: '98.0', - x: 9.0123, - y: 24.8038, - }, - { - l: '98.0', - x: 9.0957, - y: 24.9068, - }, - { - l: '98.0', - x: 9.179, - y: 25.0018, - }, - { - l: '98.0', - x: 9.2623, - y: 25.1092, - }, - { - l: '98.0', - x: 9.3457, - y: 25.2147, - }, - { - l: '98.0', - x: 9.429, - y: 25.3119, - }, - { - l: '98.0', - x: 9.5123, - y: 25.4218, - }, - { - l: '98.0', - x: 9.5957, - y: 25.5295, - }, - { - l: '98.0', - x: 9.679, - y: 25.6287, - }, - { - l: '98.0', - x: 9.7623, - y: 25.7408, - }, - { - l: '98.0', - x: 9.8457, - y: 25.8508, - }, - { - l: '98.0', - x: 9.929, - y: 25.9519, - }, - { - l: '98.0', - x: 10.0123, - y: 26.0663, - }, - { - l: '98.0', - x: 10.0957, - y: 26.1783, - }, - { - l: '98.0', - x: 10.179, - y: 26.2815, - }, - { - l: '98.0', - x: 10.2623, - y: 26.3979, - }, - { - l: '98.0', - x: 10.3457, - y: 26.512, - }, - { - l: '98.0', - x: 10.429, - y: 26.6171, - }, - { - l: '98.0', - x: 10.5123, - y: 26.7358, - }, - { - l: '98.0', - x: 10.5957, - y: 26.852, - }, - { - l: '98.0', - x: 10.679, - y: 26.959, - }, - { - l: '98.0', - x: 10.7623, - y: 27.0796, - }, - { - l: '98.0', - x: 10.8457, - y: 27.198, - }, - { - l: '98.0', - x: 10.929, - y: 27.3068, - }, - { - l: '98.0', - x: 11.0123, - y: 27.4295, - }, - { - l: '98.0', - x: 11.0957, - y: 27.5499, - }, - { - l: '98.0', - x: 11.179, - y: 27.6605, - }, - { - l: '98.0', - x: 11.2623, - y: 27.7853, - }, - { - l: '98.0', - x: 11.3457, - y: 27.9075, - }, - { - l: '98.0', - x: 11.429, - y: 28.0198, - }, - { - l: '98.0', - x: 11.5123, - y: 28.1466, - }, - { - l: '98.0', - x: 11.5957, - y: 28.2707, - }, - { - l: '98.0', - x: 11.679, - y: 28.3848, - }, - { - l: '98.0', - x: 11.7623, - y: 28.5134, - }, - { - l: '98.0', - x: 11.8457, - y: 28.6393, - }, - { - l: '98.0', - x: 11.929, - y: 28.755, - }, - { - l: '98.0', - x: 12.0123, - y: 28.8855, - }, - { - l: '98.0', - x: 12.0957, - y: 29.0133, - }, - { - l: '98.0', - x: 12.179, - y: 29.1307, - }, - { - l: '98.0', - x: 12.2623, - y: 29.2629, - }, - { - l: '98.0', - x: 12.3457, - y: 29.3925, - }, - { - l: '98.0', - x: 12.429, - y: 29.5115, - }, - { - l: '98.0', - x: 12.5123, - y: 29.6457, - }, - { - l: '98.0', - x: 12.5957, - y: 29.7769, - }, - { - l: '98.0', - x: 12.679, - y: 29.8976, - }, - { - l: '98.0', - x: 12.7623, - y: 30.0336, - }, - { - l: '98.0', - x: 12.8457, - y: 30.1665, - }, - { - l: '98.0', - x: 12.929, - y: 30.2886, - }, - { - l: '98.0', - x: 13.0123, - y: 30.4263, - }, - { - l: '98.0', - x: 13.0957, - y: 30.561, - }, - { - l: '98.0', - x: 13.179, - y: 30.6847, - }, - { - l: '98.0', - x: 13.2623, - y: 30.8241, - }, - { - l: '98.0', - x: 13.3457, - y: 30.9605, - }, - { - l: '98.0', - x: 13.429, - y: 31.0858, - }, - { - l: '98.0', - x: 13.5123, - y: 31.2269, - }, - { - l: '98.0', - x: 13.5957, - y: 31.3648, - }, - { - l: '98.0', - x: 13.679, - y: 31.4916, - }, - { - l: '98.0', - x: 13.7623, - y: 31.6344, - }, - { - l: '98.0', - x: 13.8457, - y: 31.774, - }, - { - l: '98.0', - x: 13.929, - y: 31.9022, - }, - { - l: '98.0', - x: 14.0123, - y: 32.0468, - }, - { - l: '98.0', - x: 14.0957, - y: 32.1879, - }, - { - l: '98.0', - x: 14.179, - y: 32.3176, - }, - { - l: '98.0', - x: 14.2623, - y: 32.4637, - }, - { - l: '98.0', - x: 14.3457, - y: 32.6065, - }, - { - l: '98.0', - x: 14.429, - y: 32.7378, - }, - { - l: '98.0', - x: 14.5123, - y: 32.8856, - }, - { - l: '98.0', - x: 14.5957, - y: 33.03, - }, - { - l: '98.0', - x: 14.679, - y: 33.1627, - }, - { - l: '98.0', - x: 14.7623, - y: 33.3121, - }, - { - l: '98.0', - x: 14.8457, - y: 33.4583, - }, - { - l: '98.0', - x: 14.929, - y: 33.5925, - }, - { - l: '98.0', - x: 15.0123, - y: 33.7437, - }, - { - l: '98.0', - x: 15.0957, - y: 33.8916, - }, - { - l: '98.0', - x: 15.179, - y: 34.0274, - }, - { - l: '98.0', - x: 15.2623, - y: 34.1804, - }, - { - l: '98.0', - x: 15.3457, - y: 34.3302, - }, - { - l: '98.0', - x: 15.429, - y: 34.4675, - }, - { - l: '98.0', - x: 15.5123, - y: 34.6226, - }, - { - l: '98.0', - x: 15.5957, - y: 34.7741, - }, - { - l: '98.0', - x: 15.679, - y: 34.9132, - }, - { - l: '98.0', - x: 15.7623, - y: 35.0702, - }, - { - l: '98.0', - x: 15.8457, - y: 35.2236, - }, - { - l: '98.0', - x: 15.929, - y: 35.3646, - }, - { - l: '98.0', - x: 16.0123, - y: 35.5237, - }, - { - l: '98.0', - x: 16.0957, - y: 35.6793, - }, - { - l: '98.0', - x: 16.179, - y: 35.8222, - }, - { - l: '98.0', - x: 16.2623, - y: 35.9835, - }, - { - l: '98.0', - x: 16.3457, - y: 36.1412, - }, - { - l: '98.0', - x: 16.429, - y: 36.2862, - }, - { - l: '98.0', - x: 16.5123, - y: 36.4497, - }, - { - l: '98.0', - x: 16.5957, - y: 36.6097, - }, - { - l: '98.0', - x: 16.679, - y: 36.757, - }, - { - l: '98.0', - x: 16.7623, - y: 36.9229, - }, - { - l: '98.0', - x: 16.8457, - y: 37.0855, - }, - { - l: '98.0', - x: 16.929, - y: 37.235, - }, - { - l: '98.0', - x: 17.0123, - y: 37.4036, - }, - { - l: '98.0', - x: 17.0957, - y: 37.5687, - }, - { - l: '98.0', - x: 17.179, - y: 37.7206, - }, - { - l: '98.0', - x: 17.2623, - y: 37.8921, - }, - { - l: '98.0', - x: 17.3457, - y: 38.0599, - }, - { - l: '98.0', - x: 17.429, - y: 38.2145, - }, - { - l: '98.0', - x: 17.5123, - y: 38.3889, - }, - { - l: '98.0', - x: 17.5957, - y: 38.5597, - }, - { - l: '98.0', - x: 17.679, - y: 38.717, - }, - { - l: '98.0', - x: 17.7623, - y: 38.8946, - }, - { - l: '98.0', - x: 17.8457, - y: 39.0685, - }, - { - l: '98.0', - x: 17.929, - y: 39.2286, - }, - { - l: '98.0', - x: 18.0123, - y: 39.4095, - }, - { - l: '98.0', - x: 18.0957, - y: 39.5869, - }, - { - l: '98.0', - x: 18.179, - y: 39.7501, - }, - { - l: '98.0', - x: 18.2623, - y: 39.9346, - }, - { - l: '98.0', - x: 18.3457, - y: 40.1155, - }, - { - l: '98.0', - x: 18.429, - y: 40.2822, - }, - { - l: '98.0', - x: 18.5123, - y: 40.4704, - }, - { - l: '98.0', - x: 18.5957, - y: 40.6549, - }, - { - l: '98.0', - x: 18.679, - y: 40.825, - }, - { - l: '98.0', - x: 18.7623, - y: 41.0173, - }, - { - l: '98.0', - x: 18.8457, - y: null, - }, + { l: 98.0, x: 0, y: 15.2431 }, + { l: 98.0, x: 0.08, y: 16.6002 }, + { l: 98.0, x: 0.17, y: 17.5299 }, + { l: 98.0, x: 0.25, y: 18.2616 }, + { l: 98.0, x: 0.33, y: 18.8488 }, + { l: 98.0, x: 0.42, y: 19.3144 }, + { l: 98.0, x: 0.5, y: 19.6786 }, + { l: 98.0, x: 0.58, y: 19.958 }, + { l: 98.0, x: 0.67, y: 20.1683 }, + { l: 98.0, x: 0.75, y: 20.3239 }, + { l: 98.0, x: 0.83, y: 20.4388 }, + { l: 98.0, x: 0.92, y: 20.5241 }, + { l: 98.0, x: 1, y: 20.5876 }, + { l: 98.0, x: 1.08, y: 20.635 }, + { l: 98.0, x: 1.17, y: 20.6702 }, + { l: 98.0, x: 1.25, y: 20.6963 }, + { l: 98.0, x: 1.33, y: 20.7157 }, + { l: 98.0, x: 1.42, y: 20.7309 }, + { l: 98.0, x: 1.5, y: 20.7427 }, + { l: 98.0, x: 1.58, y: 20.7526 }, + { l: 98.0, x: 1.67, y: 20.7608 }, + { l: 98.0, x: 1.75, y: 20.7679 }, + { l: 98.0, x: 1.83, y: 20.7744 }, + { l: 98.0, x: 1.92, y: 20.7803 }, + { l: 98.0, x: 2, y: 20.7862 }, + { l: 98.0, x: 2.08, y: 20.7918 }, + { l: 98.0, x: 2.17, y: 20.797 }, + { l: 98.0, x: 2.25, y: 20.8018 }, + { l: 98.0, x: 2.33, y: 20.8062 }, + { l: 98.0, x: 2.42, y: 20.8104 }, + { l: 98.0, x: 2.5, y: 20.8144 }, + { l: 98.0, x: 2.58, y: 20.8189 }, + { l: 98.0, x: 2.67, y: 20.8238 }, + { l: 98.0, x: 2.75, y: 20.8296 }, + { l: 98.0, x: 2.83, y: 20.8363 }, + { l: 98.0, x: 2.92, y: 20.844 }, + { l: 98.0, x: 3, y: 20.8529 }, + { l: 98.0, x: 3.08, y: 20.863 }, + { l: 98.0, x: 3.17, y: 20.8743 }, + { l: 98.0, x: 3.25, y: 20.8868 }, + { l: 98.0, x: 3.33, y: 20.9006 }, + { l: 98.0, x: 3.42, y: 20.9153 }, + { l: 98.0, x: 3.5, y: 20.9312 }, + { l: 98.0, x: 3.58, y: 20.9482 }, + { l: 98.0, x: 3.67, y: 20.9664 }, + { l: 98.0, x: 3.75, y: 20.9856 }, + { l: 98.0, x: 3.83, y: 21.0061 }, + { l: 98.0, x: 3.92, y: 21.0278 }, + { l: 98.0, x: 4, y: 21.0507 }, + { l: 98.0, x: 4.08, y: 21.0747 }, + { l: 98.0, x: 4.17, y: 21.1001 }, + { l: 98.0, x: 4.25, y: 21.1266 }, + { l: 98.0, x: 4.33, y: 21.1544 }, + { l: 98.0, x: 4.42, y: 21.1834 }, + { l: 98.0, x: 4.5, y: 21.2137 }, + { l: 98.0, x: 4.58, y: 21.2452 }, + { l: 98.0, x: 4.67, y: 21.2782 }, + { l: 98.0, x: 4.75, y: 21.3125 }, + { l: 98.0, x: 4.83, y: 21.3484 }, + { l: 98.0, x: 4.92, y: 21.3857 }, + { l: 98.0, x: 5, y: 21.4244 }, + { l: 98.0, x: 5.08, y: 21.4648 }, + { l: 98.0, x: 5.17, y: 21.5067 }, + { l: 98.0, x: 5.25, y: 21.5502 }, + { l: 98.0, x: 5.33, y: 21.5953 }, + { l: 98.0, x: 5.42, y: 21.642 }, + { l: 98.0, x: 5.5, y: 21.6904 }, + { l: 98.0, x: 5.58, y: 21.7403 }, + { l: 98.0, x: 5.67, y: 21.7917 }, + { l: 98.0, x: 5.75, y: 21.8447 }, + { l: 98.0, x: 5.83, y: 21.8992 }, + { l: 98.0, x: 5.92, y: 21.9554 }, + { l: 98.0, x: 6, y: 22.0133 }, + { l: 98.0, x: 6.08, y: 22.0726 }, + { l: 98.0, x: 6.17, y: 22.1336 }, + { l: 98.0, x: 6.25, y: 22.1963 }, + { l: 98.0, x: 6.33, y: 22.2605 }, + { l: 98.0, x: 6.42, y: 22.3264 }, + { l: 98.0, x: 6.5, y: 22.3939 }, + { l: 98.0, x: 6.58, y: 22.463 }, + { l: 98.0, x: 6.67, y: 22.5336 }, + { l: 98.0, x: 6.75, y: 22.6057 }, + { l: 98.0, x: 6.83, y: 22.6793 }, + { l: 98.0, x: 6.92, y: 22.7544 }, + { l: 98.0, x: 7, y: 22.8309 }, + { l: 98.0, x: 7.08, y: 22.9088 }, + { l: 98.0, x: 7.17, y: 22.988 }, + { l: 98.0, x: 7.25, y: 23.0686 }, + { l: 98.0, x: 7.33, y: 23.1504 }, + { l: 98.0, x: 7.42, y: 23.2336 }, + { l: 98.0, x: 7.5, y: 23.318 }, + { l: 98.0, x: 7.58, y: 23.4038 }, + { l: 98.0, x: 7.67, y: 23.4906 }, + { l: 98.0, x: 7.75, y: 23.5786 }, + { l: 98.0, x: 7.83, y: 23.6679 }, + { l: 98.0, x: 7.92, y: 23.7582 }, + { l: 98.0, x: 8, y: 23.8496 }, + { l: 98.0, x: 8.08, y: 23.9421 }, + { l: 98.0, x: 8.17, y: 24.0357 }, + { l: 98.0, x: 8.25, y: 24.1303 }, + { l: 98.0, x: 8.33, y: 24.226 }, + { l: 98.0, x: 8.42, y: 24.3226 }, + { l: 98.0, x: 8.5, y: 24.4202 }, + { l: 98.0, x: 8.58, y: 24.5188 }, + { l: 98.0, x: 8.67, y: 24.6183 }, + { l: 98.0, x: 8.75, y: 24.7187 }, + { l: 98.0, x: 8.83, y: 24.8201 }, + { l: 98.0, x: 8.92, y: 24.9222 }, + { l: 98.0, x: 9, y: 25.0253 }, + { l: 98.0, x: 9.08, y: 25.1294 }, + { l: 98.0, x: 9.17, y: 25.2342 }, + { l: 98.0, x: 9.25, y: 25.3398 }, + { l: 98.0, x: 9.33, y: 25.4463 }, + { l: 98.0, x: 9.42, y: 25.5537 }, + { l: 98.0, x: 9.5, y: 25.6618 }, + { l: 98.0, x: 9.58, y: 25.7707 }, + { l: 98.0, x: 9.67, y: 25.8802 }, + { l: 98.0, x: 9.75, y: 25.9906 }, + { l: 98.0, x: 9.83, y: 26.1018 }, + { l: 98.0, x: 9.92, y: 26.2136 }, + { l: 98.0, x: 10, y: 26.3262 }, + { l: 98.0, x: 10.08, y: 26.4395 }, + { l: 98.0, x: 10.17, y: 26.5536 }, + { l: 98.0, x: 10.25, y: 26.6683 }, + { l: 98.0, x: 10.33, y: 26.7838 }, + { l: 98.0, x: 10.42, y: 26.9 }, + { l: 98.0, x: 10.5, y: 27.0171 }, + { l: 98.0, x: 10.58, y: 27.1348 }, + { l: 98.0, x: 10.67, y: 27.2533 }, + { l: 98.0, x: 10.75, y: 27.3723 }, + { l: 98.0, x: 10.83, y: 27.4922 }, + { l: 98.0, x: 10.92, y: 27.6127 }, + { l: 98.0, x: 11, y: 27.7339 }, + { l: 98.0, x: 11.08, y: 27.8559 }, + { l: 98.0, x: 11.17, y: 27.9785 }, + { l: 98.0, x: 11.25, y: 28.1018 }, + { l: 98.0, x: 11.33, y: 28.2257 }, + { l: 98.0, x: 11.42, y: 28.3504 }, + { l: 98.0, x: 11.5, y: 28.4757 }, + { l: 98.0, x: 11.58, y: 28.6017 }, + { l: 98.0, x: 11.67, y: 28.7284 }, + { l: 98.0, x: 11.75, y: 28.8556 }, + { l: 98.0, x: 11.83, y: 28.9835 }, + { l: 98.0, x: 11.92, y: 29.112 }, + { l: 98.0, x: 12, y: 29.2412 }, + { l: 98.0, x: 12.08, y: 29.3712 }, + { l: 98.0, x: 12.17, y: 29.5017 }, + { l: 98.0, x: 12.25, y: 29.6327 }, + { l: 98.0, x: 12.33, y: 29.7646 }, + { l: 98.0, x: 12.42, y: 29.8969 }, + { l: 98.0, x: 12.5, y: 30.03 }, + { l: 98.0, x: 12.58, y: 30.1637 }, + { l: 98.0, x: 12.67, y: 30.2981 }, + { l: 98.0, x: 12.75, y: 30.4331 }, + { l: 98.0, x: 12.83, y: 30.5686 }, + { l: 98.0, x: 12.92, y: 30.7047 }, + { l: 98.0, x: 13, y: 30.8415 }, + { l: 98.0, x: 13.08, y: 30.979 }, + { l: 98.0, x: 13.17, y: 31.117 }, + { l: 98.0, x: 13.25, y: 31.2556 }, + { l: 98.0, x: 13.33, y: 31.3949 }, + { l: 98.0, x: 13.42, y: 31.5349 }, + { l: 98.0, x: 13.5, y: 31.6754 }, + { l: 98.0, x: 13.58, y: 31.8164 }, + { l: 98.0, x: 13.67, y: 31.9582 }, + { l: 98.0, x: 13.75, y: 32.1005 }, + { l: 98.0, x: 13.83, y: 32.2435 }, + { l: 98.0, x: 13.92, y: 32.387 }, + { l: 98.0, x: 14, y: 32.5312 }, + { l: 98.0, x: 14.08, y: 32.6759 }, + { l: 98.0, x: 14.17, y: 32.8212 }, + { l: 98.0, x: 14.25, y: 32.9673 }, + { l: 98.0, x: 14.33, y: 33.1138 }, + { l: 98.0, x: 14.42, y: 33.2611 }, + { l: 98.0, x: 14.5, y: 33.4089 }, + { l: 98.0, x: 14.58, y: 33.5574 }, + { l: 98.0, x: 14.67, y: 33.7065 }, + { l: 98.0, x: 14.75, y: 33.8562 }, + { l: 98.0, x: 14.83, y: 34.0066 }, + { l: 98.0, x: 14.92, y: 34.1577 }, + { l: 98.0, x: 15, y: 34.3093 }, + { l: 98.0, x: 15.08, y: 34.4617 }, + { l: 98.0, x: 15.17, y: 34.6148 }, + { l: 98.0, x: 15.25, y: 34.7684 }, + { l: 98.0, x: 15.33, y: 34.923 }, + { l: 98.0, x: 15.42, y: 35.078 }, + { l: 98.0, x: 15.5, y: 35.234 }, + { l: 98.0, x: 15.58, y: 35.3907 }, + { l: 98.0, x: 15.67, y: 35.5479 }, + { l: 98.0, x: 15.75, y: 35.7061 }, + { l: 98.0, x: 15.83, y: 35.8649 }, + { l: 98.0, x: 15.92, y: 36.0246 }, + { l: 98.0, x: 16, y: 36.1852 }, + { l: 98.0, x: 16.08, y: 36.3465 }, + { l: 98.0, x: 16.17, y: 36.5086 }, + { l: 98.0, x: 16.25, y: 36.6716 }, + { l: 98.0, x: 16.33, y: 36.8354 }, + { l: 98.0, x: 16.42, y: 37.0002 }, + { l: 98.0, x: 16.5, y: 37.1658 }, + { l: 98.0, x: 16.58, y: 37.3322 }, + { l: 98.0, x: 16.67, y: 37.4999 }, + { l: 98.0, x: 16.75, y: 37.6683 }, + { l: 98.0, x: 16.83, y: 37.8377 }, + { l: 98.0, x: 16.92, y: 38.0082 }, + { l: 98.0, x: 17, y: 38.1797 }, + { l: 98.0, x: 17.08, y: 38.3522 }, + { l: 98.0, x: 17.17, y: 38.5257 }, + { l: 98.0, x: 17.25, y: 38.7004 }, + { l: 98.0, x: 17.33, y: 38.8761 }, + { l: 98.0, x: 17.42, y: 39.053 }, + { l: 98.0, x: 17.5, y: 39.2311 }, + { l: 98.0, x: 17.58, y: 39.4102 }, + { l: 98.0, x: 17.67, y: 39.5907 }, + { l: 98.0, x: 17.75, y: 39.7724 }, + { l: 98.0, x: 17.83, y: 39.9553 }, + { l: 98.0, x: 17.92, y: 40.1394 }, + { l: 98.0, x: 18, y: 40.3249 }, + { l: 98.0, x: 18.08, y: 40.5118 }, + { l: 98.0, x: 18.17, y: 40.7 }, + { l: 98.0, x: 18.25, y: 40.8896 }, + { l: 98.0, x: 18.33, y: 41.0806 }, + { l: 98.0, x: 18.42, y: 41.2732 }, + { l: 98.0, x: 18.5, y: 41.4672 }, + { l: 98.0, x: 18.58, y: 41.6625 }, + { l: 98.0, x: 18.67, y: 41.8597 }, + { l: 98.0, x: 18.75, y: 42.0583 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 0.0, - y: 16.1828, - }, - { - l: '99.6', - x: 0.0192, - y: 16.5213, - }, - { - l: '99.6', - x: 0.0383, - y: 16.8564, - }, - { - l: '99.6', - x: 0.0575, - y: 17.1882, - }, - { - l: '99.6', - x: 0.0767, - y: 17.5167, - }, - { - l: '99.6', - x: 0.0958, - y: 17.7722, - }, - { - l: '99.6', - x: 0.115, - y: 17.99, - }, - { - l: '99.6', - x: 0.1342, - y: 18.1882, - }, - { - l: '99.6', - x: 0.1533, - y: 18.3726, - }, - { - l: '99.6', - x: 0.1725, - y: 18.5508, - }, - { - l: '99.6', - x: 0.1916, - y: 18.7404, - }, - { - l: '99.6', - x: 0.2108, - y: 18.9239, - }, - { - l: '99.6', - x: 0.23, - y: 19.1006, - }, - { - l: '99.6', - x: 0.2491, - y: 19.2696, - }, - { - l: '99.6', - x: 0.2683, - y: 19.4287, - }, - { - l: '99.6', - x: 0.2875, - y: 19.5791, - }, - { - l: '99.6', - x: 0.3066, - y: 19.7206, - }, - { - l: '99.6', - x: 0.3258, - y: 19.8528, - }, - { - l: '99.6', - x: 0.345, - y: 19.9708, - }, - { - l: '99.6', - x: 0.3641, - y: 20.0788, - }, - { - l: '99.6', - x: 0.3833, - y: 20.1798, - }, - { - l: '99.6', - x: 0.4025, - y: 20.2753, - }, - { - l: '99.6', - x: 0.4216, - y: 20.3675, - }, - { - l: '99.6', - x: 0.4408, - y: 20.4629, - }, - { - l: '99.6', - x: 0.46, - y: 20.5548, - }, - { - l: '99.6', - x: 0.4791, - y: 20.6428, - }, - { - l: '99.6', - x: 0.4983, - y: 20.7263, - }, - { - l: '99.6', - x: 0.5175, - y: 20.8036, - }, - { - l: '99.6', - x: 0.5366, - y: 20.8758, - }, - { - l: '99.6', - x: 0.5558, - y: 20.9428, - }, - { - l: '99.6', - x: 0.5749, - y: 21.0048, - }, - { - l: '99.6', - x: 0.5941, - y: 21.0597, - }, - { - l: '99.6', - x: 0.6133, - y: 21.1092, - }, - { - l: '99.6', - x: 0.6324, - y: 21.1548, - }, - { - l: '99.6', - x: 0.6516, - y: 21.1973, - }, - { - l: '99.6', - x: 0.6708, - y: 21.2375, - }, - { - l: '99.6', - x: 0.6899, - y: 21.2788, - }, - { - l: '99.6', - x: 0.7091, - y: 21.3182, - }, - { - l: '99.6', - x: 0.7283, - y: 21.3555, - }, - { - l: '99.6', - x: 0.7474, - y: 21.3906, - }, - { - l: '99.6', - x: 0.7666, - y: 21.4228, - }, - { - l: '99.6', - x: 0.7858, - y: 21.4526, - }, - { - l: '99.6', - x: 0.8049, - y: 21.4801, - }, - { - l: '99.6', - x: 0.8241, - y: 21.5054, - }, - { - l: '99.6', - x: 0.8433, - y: 21.5279, - }, - { - l: '99.6', - x: 0.8624, - y: 21.5481, - }, - { - l: '99.6', - x: 0.8816, - y: 21.5667, - }, - { - l: '99.6', - x: 0.9008, - y: 21.584, - }, - { - l: '99.6', - x: 0.9199, - y: 21.6003, - }, - { - l: '99.6', - x: 0.9391, - y: 21.6173, - }, - { - l: '99.6', - x: 0.9582, - y: 21.6336, - }, - { - l: '99.6', - x: 0.9774, - y: 21.649, - }, - { - l: '99.6', - x: 0.9966, - y: 21.6636, - }, - { - l: '99.6', - x: 1.0157, - y: 21.6772, - }, - { - l: '99.6', - x: 1.0349, - y: 21.6898, - }, - { - l: '99.6', - x: 1.0541, - y: 21.7015, - }, - { - l: '99.6', - x: 1.0732, - y: 21.7123, - }, - { - l: '99.6', - x: 1.0924, - y: 21.7219, - }, - { - l: '99.6', - x: 1.1116, - y: 21.7306, - }, - { - l: '99.6', - x: 1.1307, - y: 21.7386, - }, - { - l: '99.6', - x: 1.1499, - y: 21.746, - }, - { - l: '99.6', - x: 1.1691, - y: 21.7531, - }, - { - l: '99.6', - x: 1.1882, - y: 21.7605, - }, - { - l: '99.6', - x: 1.2074, - y: 21.7676, - }, - { - l: '99.6', - x: 1.2266, - y: 21.7743, - }, - { - l: '99.6', - x: 1.2457, - y: 21.7808, - }, - { - l: '99.6', - x: 1.2649, - y: 21.7868, - }, - { - l: '99.6', - x: 1.2841, - y: 21.7924, - }, - { - l: '99.6', - x: 1.3032, - y: 21.7977, - }, - { - l: '99.6', - x: 1.3224, - y: 21.8027, - }, - { - l: '99.6', - x: 1.3415, - y: 21.8072, - }, - { - l: '99.6', - x: 1.3607, - y: 21.8114, - }, - { - l: '99.6', - x: 1.3799, - y: 21.8153, - }, - { - l: '99.6', - x: 1.399, - y: 21.8191, - }, - { - l: '99.6', - x: 1.4182, - y: 21.8227, - }, - { - l: '99.6', - x: 1.4374, - y: 21.8265, - }, - { - l: '99.6', - x: 1.4565, - y: 21.8303, - }, - { - l: '99.6', - x: 1.4757, - y: 21.8341, - }, - { - l: '99.6', - x: 1.4949, - y: 21.8377, - }, - { - l: '99.6', - x: 1.514, - y: 21.8413, - }, - { - l: '99.6', - x: 1.5332, - y: 21.8448, - }, - { - l: '99.6', - x: 1.5524, - y: 21.8481, - }, - { - l: '99.6', - x: 1.5715, - y: 21.8514, - }, - { - l: '99.6', - x: 1.5907, - y: 21.8544, - }, - { - l: '99.6', - x: 1.6099, - y: 21.8572, - }, - { - l: '99.6', - x: 1.629, - y: 21.8599, - }, - { - l: '99.6', - x: 1.6482, - y: 21.8626, - }, - { - l: '99.6', - x: 1.6674, - y: 21.8653, - }, - { - l: '99.6', - x: 1.6865, - y: 21.8681, - }, - { - l: '99.6', - x: 1.7057, - y: 21.871, - }, - { - l: '99.6', - x: 1.7248, - y: 21.874, - }, - { - l: '99.6', - x: 1.744, - y: 21.8769, - }, - { - l: '99.6', - x: 1.7632, - y: 21.8798, - }, - { - l: '99.6', - x: 1.7823, - y: 21.8828, - }, - { - l: '99.6', - x: 1.8015, - y: 21.8856, - }, - { - l: '99.6', - x: 1.8207, - y: 21.8885, - }, - { - l: '99.6', - x: 1.8398, - y: 21.8911, - }, - { - l: '99.6', - x: 1.859, - y: 21.8937, - }, - { - l: '99.6', - x: 1.8782, - y: 21.8962, - }, - { - l: '99.6', - x: 1.8973, - y: 21.8987, - }, - { - l: '99.6', - x: 1.9165, - y: 21.9012, - }, - { - l: '99.6', - x: 1.9357, - y: 21.904, - }, - { - l: '99.6', - x: 1.9548, - y: 21.9069, - }, - { - l: '99.6', - x: 1.974, - y: 21.9099, - }, - { - l: '99.6', - x: 1.9932, - y: 21.9129, - }, - { - l: '99.6', - x: 2.0123, - y: 21.9159, - }, - { - l: '99.6', - x: 2.0957, - y: 21.9286, - }, - { - l: '99.6', - x: 2.179, - y: 21.9401, - }, - { - l: '99.6', - x: 2.2623, - y: 21.953, - }, - { - l: '99.6', - x: 2.3457, - y: 21.9654, - }, - { - l: '99.6', - x: 2.429, - y: 21.9769, - }, - { - l: '99.6', - x: 2.5123, - y: 21.9901, - }, - { - l: '99.6', - x: 2.5957, - y: 22.0037, - }, - { - l: '99.6', - x: 2.679, - y: 22.0169, - }, - { - l: '99.6', - x: 2.7623, - y: 22.033, - }, - { - l: '99.6', - x: 2.8457, - y: 22.0498, - }, - { - l: '99.6', - x: 2.929, - y: 22.0665, - }, - { - l: '99.6', - x: 3.0123, - y: 22.0868, - }, - { - l: '99.6', - x: 3.0957, - y: 22.1081, - }, - { - l: '99.6', - x: 3.179, - y: 22.129, - }, - { - l: '99.6', - x: 3.2623, - y: 22.1541, - }, - { - l: '99.6', - x: 3.3457, - y: 22.1799, - }, - { - l: '99.6', - x: 3.429, - y: 22.2048, - }, - { - l: '99.6', - x: 3.5123, - y: 22.2342, - }, - { - l: '99.6', - x: 3.5957, - y: 22.2644, - }, - { - l: '99.6', - x: 3.679, - y: 22.2933, - }, - { - l: '99.6', - x: 3.7623, - y: 22.3272, - }, - { - l: '99.6', - x: 3.8457, - y: 22.3618, - }, - { - l: '99.6', - x: 3.929, - y: 22.3948, - }, - { - l: '99.6', - x: 4.0123, - y: 22.4335, - }, - { - l: '99.6', - x: 4.0957, - y: 22.4728, - }, - { - l: '99.6', - x: 4.179, - y: 22.5102, - }, - { - l: '99.6', - x: 4.2623, - y: 22.5538, - }, - { - l: '99.6', - x: 4.3457, - y: 22.5979, - }, - { - l: '99.6', - x: 4.429, - y: 22.6397, - }, - { - l: '99.6', - x: 4.5123, - y: 22.6883, - }, - { - l: '99.6', - x: 4.5957, - y: 22.7374, - }, - { - l: '99.6', - x: 4.679, - y: 22.784, - }, - { - l: '99.6', - x: 4.7623, - y: 22.8381, - }, - { - l: '99.6', - x: 4.8457, - y: 22.8927, - }, - { - l: '99.6', - x: 4.929, - y: 22.9444, - }, - { - l: '99.6', - x: 5.0123, - y: 23.0043, - }, - { - l: '99.6', - x: 5.0957, - y: 23.0648, - }, - { - l: '99.6', - x: 5.179, - y: 23.122, - }, - { - l: '99.6', - x: 5.2623, - y: 23.1883, - }, - { - l: '99.6', - x: 5.3457, - y: 23.2548, - }, - { - l: '99.6', - x: 5.429, - y: 23.3177, - }, - { - l: '99.6', - x: 5.5123, - y: 23.3904, - }, - { - l: '99.6', - x: 5.5957, - y: 23.4632, - }, - { - l: '99.6', - x: 5.679, - y: 23.5317, - }, - { - l: '99.6', - x: 5.7623, - y: 23.6106, - }, - { - l: '99.6', - x: 5.8457, - y: 23.6895, - }, - { - l: '99.6', - x: 5.929, - y: 23.7638, - }, - { - l: '99.6', - x: 6.0123, - y: 23.8493, - }, - { - l: '99.6', - x: 6.0957, - y: 23.9346, - }, - { - l: '99.6', - x: 6.179, - y: 24.0147, - }, - { - l: '99.6', - x: 6.2623, - y: 24.1068, - }, - { - l: '99.6', - x: 6.3457, - y: 24.1987, - }, - { - l: '99.6', - x: 6.429, - y: 24.2848, - }, - { - l: '99.6', - x: 6.5123, - y: 24.3837, - }, - { - l: '99.6', - x: 6.5957, - y: 24.4821, - }, - { - l: '99.6', - x: 6.679, - y: 24.574, - }, - { - l: '99.6', - x: 6.7623, - y: 24.6794, - }, - { - l: '99.6', - x: 6.8457, - y: 24.784, - }, - { - l: '99.6', - x: 6.929, - y: 24.8817, - }, - { - l: '99.6', - x: 7.0123, - y: 24.9934, - }, - { - l: '99.6', - x: 7.0957, - y: 25.1041, - }, - { - l: '99.6', - x: 7.179, - y: 25.2072, - }, - { - l: '99.6', - x: 7.2623, - y: 25.3249, - }, - { - l: '99.6', - x: 7.3457, - y: 25.4414, - }, - { - l: '99.6', - x: 7.429, - y: 25.5497, - }, - { - l: '99.6', - x: 7.5123, - y: 25.6732, - }, - { - l: '99.6', - x: 7.5957, - y: 25.7955, - }, - { - l: '99.6', - x: 7.679, - y: 25.9088, - }, - { - l: '99.6', - x: 7.7623, - y: 26.038, - }, - { - l: '99.6', - x: 7.8457, - y: 26.1656, - }, - { - l: '99.6', - x: 7.929, - y: 26.284, - }, - { - l: '99.6', - x: 8.0123, - y: 26.4185, - }, - { - l: '99.6', - x: 8.0957, - y: 26.5513, - }, - { - l: '99.6', - x: 8.179, - y: 26.6744, - }, - { - l: '99.6', - x: 8.2623, - y: 26.8143, - }, - { - l: '99.6', - x: 8.3457, - y: 26.9522, - }, - { - l: '99.6', - x: 8.429, - y: 27.0798, - }, - { - l: '99.6', - x: 8.5123, - y: 27.2248, - }, - { - l: '99.6', - x: 8.5957, - y: 27.3677, - }, - { - l: '99.6', - x: 8.679, - y: 27.4998, - }, - { - l: '99.6', - x: 8.7623, - y: 27.6497, - }, - { - l: '99.6', - x: 8.8457, - y: 27.7974, - }, - { - l: '99.6', - x: 8.929, - y: 27.9339, - }, - { - l: '99.6', - x: 9.0123, - y: 28.0887, - }, - { - l: '99.6', - x: 9.0957, - y: 28.2412, - }, - { - l: '99.6', - x: 9.179, - y: 28.3821, - }, - { - l: '99.6', - x: 9.2623, - y: 28.5417, - }, - { - l: '99.6', - x: 9.3457, - y: 28.6989, - }, - { - l: '99.6', - x: 9.429, - y: 28.8441, - }, - { - l: '99.6', - x: 9.5123, - y: 29.0087, - }, - { - l: '99.6', - x: 9.5957, - y: 29.1705, - }, - { - l: '99.6', - x: 9.679, - y: 29.3198, - }, - { - l: '99.6', - x: 9.7623, - y: 29.4891, - }, - { - l: '99.6', - x: 9.8457, - y: 29.6556, - }, - { - l: '99.6', - x: 9.929, - y: 29.809, - }, - { - l: '99.6', - x: 10.0123, - y: 29.9831, - }, - { - l: '99.6', - x: 10.0957, - y: 30.1541, - }, - { - l: '99.6', - x: 10.179, - y: 30.3121, - }, - { - l: '99.6', - x: 10.2623, - y: 30.4909, - }, - { - l: '99.6', - x: 10.3457, - y: 30.6666, - }, - { - l: '99.6', - x: 10.429, - y: 30.829, - }, - { - l: '99.6', - x: 10.5123, - y: 31.013, - }, - { - l: '99.6', - x: 10.5957, - y: 31.1937, - }, - { - l: '99.6', - x: 10.679, - y: 31.3607, - }, - { - l: '99.6', - x: 10.7623, - y: 31.5495, - }, - { - l: '99.6', - x: 10.8457, - y: 31.7353, - }, - { - l: '99.6', - x: 10.929, - y: 31.9068, - }, - { - l: '99.6', - x: 11.0123, - y: 32.1009, - }, - { - l: '99.6', - x: 11.0957, - y: 32.2918, - }, - { - l: '99.6', - x: 11.179, - y: 32.468, - }, - { - l: '99.6', - x: 11.2623, - y: 32.6676, - }, - { - l: '99.6', - x: 11.3457, - y: 32.8636, - }, - { - l: '99.6', - x: 11.429, - y: 33.0447, - }, - { - l: '99.6', - x: 11.5123, - y: 33.2496, - }, - { - l: '99.6', - x: 11.5957, - y: 33.4512, - }, - { - l: '99.6', - x: 11.679, - y: 33.6372, - }, - { - l: '99.6', - x: 11.7623, - y: 33.8478, - }, - { - l: '99.6', - x: 11.8457, - y: 34.0547, - }, - { - l: '99.6', - x: 11.929, - y: 34.2458, - }, - { - l: '99.6', - x: 12.0123, - y: 34.4622, - }, - { - l: '99.6', - x: 12.0957, - y: 34.6751, - }, - { - l: '99.6', - x: 12.179, - y: 34.8715, - }, - { - l: '99.6', - x: 12.2623, - y: 35.0939, - }, - { - l: '99.6', - x: 12.3457, - y: 35.3127, - }, - { - l: '99.6', - x: 12.429, - y: 35.5146, - }, - { - l: '99.6', - x: 12.5123, - y: 35.7435, - }, - { - l: '99.6', - x: 12.5957, - y: 35.9685, - }, - { - l: '99.6', - x: 12.679, - y: 36.1764, - }, - { - l: '99.6', - x: 12.7623, - y: 36.412, - }, - { - l: '99.6', - x: 12.8457, - y: 36.6434, - }, - { - l: '99.6', - x: 12.929, - y: 36.8573, - }, - { - l: '99.6', - x: 13.0123, - y: 37.0997, - }, - { - l: '99.6', - x: 13.0957, - y: 37.3382, - }, - { - l: '99.6', - x: 13.179, - y: 37.5585, - }, - { - l: '99.6', - x: 13.2623, - y: 37.8082, - }, - { - l: '99.6', - x: 13.3457, - y: 38.054, - }, - { - l: '99.6', - x: 13.429, - y: 38.2812, - }, - { - l: '99.6', - x: 13.5123, - y: 38.5386, - }, - { - l: '99.6', - x: 13.5957, - y: 38.7918, - }, - { - l: '99.6', - x: 13.679, - y: 39.0262, - }, - { - l: '99.6', - x: 13.7623, - y: 39.2917, - }, - { - l: '99.6', - x: 13.8457, - y: 39.5533, - }, - { - l: '99.6', - x: 13.929, - y: 39.795, - }, - { - l: '99.6', - x: 14.0123, - y: 40.0694, - }, - { - l: '99.6', - x: 14.0957, - y: 40.3394, - }, - { - l: '99.6', - x: 14.179, - y: 40.5892, - }, - { - l: '99.6', - x: 14.2623, - y: 40.8728, - }, - { - l: '99.6', - x: 14.3457, - y: 41.1521, - }, - { - l: '99.6', - x: 14.429, - y: 41.4106, - }, - { - l: '99.6', - x: 14.5123, - y: 41.704, - }, - { - l: '99.6', - x: 14.5957, - y: 41.9932, - }, - { - l: '99.6', - x: 14.679, - y: 42.2608, - }, - { - l: '99.6', - x: 14.7623, - y: 42.5648, - }, - { - l: '99.6', - x: 14.8457, - y: 42.8648, - }, - { - l: '99.6', - x: 14.929, - y: 43.1424, - }, - { - l: '99.6', - x: 15.0123, - y: 43.458, - }, - { - l: '99.6', - x: 15.0957, - y: 43.7693, - }, - { - l: '99.6', - x: 15.179, - y: 44.0577, - }, - { - l: '99.6', - x: 15.2623, - y: 44.3857, - }, - { - l: '99.6', - x: 15.3457, - y: 44.7097, - }, - { - l: '99.6', - x: 15.429, - y: 45.0098, - }, - { - l: '99.6', - x: 15.5123, - y: 45.3517, - }, - { - l: '99.6', - x: 15.5957, - y: 45.6892, - }, - { - l: '99.6', - x: 15.679, - y: 46.0023, - }, - { - l: '99.6', - x: 15.7623, - y: 46.359, - }, - { - l: '99.6', - x: 15.8457, - y: 46.7113, - }, - { - l: '99.6', - x: 15.929, - y: 47.0386, - }, - { - l: '99.6', - x: 16.0123, - y: 47.4117, - }, - { - l: '99.6', - x: 16.0957, - y: 47.7807, - }, - { - l: '99.6', - x: 16.179, - y: 48.1235, - }, - { - l: '99.6', - x: 16.2623, - y: 48.5145, - }, - { - l: '99.6', - x: 16.3457, - y: 48.9017, - }, - { - l: '99.6', - x: 16.429, - y: 49.2618, - }, - { - l: '99.6', - x: 16.5123, - y: 49.6728, - }, - { - l: '99.6', - x: 16.5957, - y: 50.0802, - }, - { - l: '99.6', - x: 16.679, - y: 50.4595, - }, - { - l: '99.6', - x: 16.7623, - y: 50.8927, - }, - { - l: '99.6', - x: 16.8457, - y: 51.3226, - }, - { - l: '99.6', - x: 16.929, - y: 51.7232, - }, - { - l: '99.6', - x: 17.0123, - y: 52.1813, - }, - { - l: '99.6', - x: 17.0957, - y: 52.6364, - }, - { - l: '99.6', - x: 17.179, - y: 53.0608, - }, - { - l: '99.6', - x: 17.2623, - y: 53.5467, - }, - { - l: '99.6', - x: 17.3457, - y: 54.0298, - }, - { - l: '99.6', - x: 17.429, - y: 54.481, - }, - { - l: '99.6', - x: 17.5123, - y: 54.9982, - }, - { - l: '99.6', - x: 17.5957, - y: 55.5131, - }, - { - l: '99.6', - x: 17.679, - y: 55.9947, - }, - { - l: '99.6', - x: 17.7623, - y: 56.5473, - }, - { - l: '99.6', - x: 17.8457, - y: 57.0983, - }, - { - l: '99.6', - x: 17.929, - y: 57.6141, - }, - { - l: '99.6', - x: 18.0123, - y: 58.2072, - }, - { - l: '99.6', - x: 18.0957, - y: 58.7995, - }, - { - l: '99.6', - x: 18.179, - y: 59.3548, - }, - { - l: '99.6', - x: 18.2623, - y: 59.9941, - }, - { - l: '99.6', - x: 18.3457, - y: 60.6339, - }, - { - l: '99.6', - x: 18.429, - y: 61.2349, - }, - { - l: '99.6', - x: 18.5123, - y: 61.9275, - }, - { - l: '99.6', - x: 18.5957, - y: 62.6212, - }, - { - l: '99.6', - x: 18.679, - y: 63.2747, - }, - { - l: '99.6', - x: 18.7623, - y: 64.0297, - }, - { - l: '99.6', - x: 18.8457, - y: null, - }, + { l: 99.6, x: 0, y: 16.1603 }, + { l: 99.6, x: 0.08, y: 17.5504 }, + { l: 99.6, x: 0.17, y: 18.5019 }, + { l: 99.6, x: 0.25, y: 19.2526 }, + { l: 99.6, x: 0.33, y: 19.8558 }, + { l: 99.6, x: 0.42, y: 20.3342 }, + { l: 99.6, x: 0.5, y: 20.7082 }, + { l: 99.6, x: 0.58, y: 20.9948 }, + { l: 99.6, x: 0.67, y: 21.2102 }, + { l: 99.6, x: 0.75, y: 21.3695 }, + { l: 99.6, x: 0.83, y: 21.487 }, + { l: 99.6, x: 0.92, y: 21.5746 }, + { l: 99.6, x: 1, y: 21.6403 }, + { l: 99.6, x: 1.08, y: 21.6899 }, + { l: 99.6, x: 1.17, y: 21.7274 }, + { l: 99.6, x: 1.25, y: 21.7561 }, + { l: 99.6, x: 1.33, y: 21.7784 }, + { l: 99.6, x: 1.42, y: 21.7968 }, + { l: 99.6, x: 1.5, y: 21.8124 }, + { l: 99.6, x: 1.58, y: 21.8263 }, + { l: 99.6, x: 1.67, y: 21.8391 }, + { l: 99.6, x: 1.75, y: 21.8511 }, + { l: 99.6, x: 1.83, y: 21.863 }, + { l: 99.6, x: 1.92, y: 21.8747 }, + { l: 99.6, x: 2, y: 21.8868 }, + { l: 99.6, x: 2.08, y: 21.899 }, + { l: 99.6, x: 2.17, y: 21.9112 }, + { l: 99.6, x: 2.25, y: 21.9234 }, + { l: 99.6, x: 2.33, y: 21.9353 }, + { l: 99.6, x: 2.42, y: 21.9474 }, + { l: 99.6, x: 2.5, y: 21.9597 }, + { l: 99.6, x: 2.58, y: 21.9727 }, + { l: 99.6, x: 2.67, y: 21.9865 }, + { l: 99.6, x: 2.75, y: 22.0014 }, + { l: 99.6, x: 2.83, y: 22.0175 }, + { l: 99.6, x: 2.92, y: 22.0349 }, + { l: 99.6, x: 3, y: 22.0538 }, + { l: 99.6, x: 3.08, y: 22.0742 }, + { l: 99.6, x: 3.17, y: 22.0961 }, + { l: 99.6, x: 3.25, y: 22.1195 }, + { l: 99.6, x: 3.33, y: 22.1443 }, + { l: 99.6, x: 3.42, y: 22.1705 }, + { l: 99.6, x: 3.5, y: 22.1981 }, + { l: 99.6, x: 3.58, y: 22.2271 }, + { l: 99.6, x: 3.67, y: 22.2576 }, + { l: 99.6, x: 3.75, y: 22.2893 }, + { l: 99.6, x: 3.83, y: 22.3227 }, + { l: 99.6, x: 3.92, y: 22.3575 }, + { l: 99.6, x: 4, y: 22.3939 }, + { l: 99.6, x: 4.08, y: 22.4318 }, + { l: 99.6, x: 4.17, y: 22.4713 }, + { l: 99.6, x: 4.25, y: 22.5123 }, + { l: 99.6, x: 4.33, y: 22.5549 }, + { l: 99.6, x: 4.42, y: 22.5991 }, + { l: 99.6, x: 4.5, y: 22.6448 }, + { l: 99.6, x: 4.58, y: 22.6923 }, + { l: 99.6, x: 4.67, y: 22.7415 }, + { l: 99.6, x: 4.75, y: 22.7924 }, + { l: 99.6, x: 4.83, y: 22.8452 }, + { l: 99.6, x: 4.92, y: 22.8998 }, + { l: 99.6, x: 5, y: 22.9563 }, + { l: 99.6, x: 5.08, y: 23.0148 }, + { l: 99.6, x: 5.17, y: 23.0753 }, + { l: 99.6, x: 5.25, y: 23.1378 }, + { l: 99.6, x: 5.33, y: 23.2022 }, + { l: 99.6, x: 5.42, y: 23.2687 }, + { l: 99.6, x: 5.5, y: 23.3373 }, + { l: 99.6, x: 5.58, y: 23.4078 }, + { l: 99.6, x: 5.67, y: 23.4803 }, + { l: 99.6, x: 5.75, y: 23.5548 }, + { l: 99.6, x: 5.83, y: 23.6313 }, + { l: 99.6, x: 5.92, y: 23.7099 }, + { l: 99.6, x: 6, y: 23.7906 }, + { l: 99.6, x: 6.08, y: 23.8733 }, + { l: 99.6, x: 6.17, y: 23.9582 }, + { l: 99.6, x: 6.25, y: 24.0452 }, + { l: 99.6, x: 6.33, y: 24.1343 }, + { l: 99.6, x: 6.42, y: 24.2254 }, + { l: 99.6, x: 6.5, y: 24.3189 }, + { l: 99.6, x: 6.58, y: 24.4143 }, + { l: 99.6, x: 6.67, y: 24.5117 }, + { l: 99.6, x: 6.75, y: 24.6113 }, + { l: 99.6, x: 6.83, y: 24.7128 }, + { l: 99.6, x: 6.92, y: 24.8164 }, + { l: 99.6, x: 7, y: 24.922 }, + { l: 99.6, x: 7.08, y: 25.0294 }, + { l: 99.6, x: 7.17, y: 25.1387 }, + { l: 99.6, x: 7.25, y: 25.25 }, + { l: 99.6, x: 7.33, y: 25.363 }, + { l: 99.6, x: 7.42, y: 25.478 }, + { l: 99.6, x: 7.5, y: 25.5947 }, + { l: 99.6, x: 7.58, y: 25.7133 }, + { l: 99.6, x: 7.67, y: 25.8336 }, + { l: 99.6, x: 7.75, y: 25.9557 }, + { l: 99.6, x: 7.83, y: 26.0796 }, + { l: 99.6, x: 7.92, y: 26.2052 }, + { l: 99.6, x: 8, y: 26.3324 }, + { l: 99.6, x: 8.08, y: 26.4612 }, + { l: 99.6, x: 8.17, y: 26.5918 }, + { l: 99.6, x: 8.25, y: 26.724 }, + { l: 99.6, x: 8.33, y: 26.8579 }, + { l: 99.6, x: 8.42, y: 26.9934 }, + { l: 99.6, x: 8.5, y: 27.1303 }, + { l: 99.6, x: 8.58, y: 27.269 }, + { l: 99.6, x: 8.67, y: 27.4092 }, + { l: 99.6, x: 8.75, y: 27.5509 }, + { l: 99.6, x: 8.83, y: 27.6942 }, + { l: 99.6, x: 8.92, y: 27.839 }, + { l: 99.6, x: 9, y: 27.9853 }, + { l: 99.6, x: 9.08, y: 28.1333 }, + { l: 99.6, x: 9.17, y: 28.2827 }, + { l: 99.6, x: 9.25, y: 28.4336 }, + { l: 99.6, x: 9.33, y: 28.5861 }, + { l: 99.6, x: 9.42, y: 28.74 }, + { l: 99.6, x: 9.5, y: 28.8955 }, + { l: 99.6, x: 9.58, y: 29.0525 }, + { l: 99.6, x: 9.67, y: 29.2108 }, + { l: 99.6, x: 9.75, y: 29.3707 }, + { l: 99.6, x: 9.83, y: 29.5322 }, + { l: 99.6, x: 9.92, y: 29.6949 }, + { l: 99.6, x: 10, y: 29.8593 }, + { l: 99.6, x: 10.08, y: 30.0251 }, + { l: 99.6, x: 10.17, y: 30.1925 }, + { l: 99.6, x: 10.25, y: 30.3614 }, + { l: 99.6, x: 10.33, y: 30.5317 }, + { l: 99.6, x: 10.42, y: 30.7037 }, + { l: 99.6, x: 10.5, y: 30.8774 }, + { l: 99.6, x: 10.58, y: 31.0525 }, + { l: 99.6, x: 10.67, y: 31.2294 }, + { l: 99.6, x: 10.75, y: 31.4075 }, + { l: 99.6, x: 10.83, y: 31.5876 }, + { l: 99.6, x: 10.92, y: 31.7692 }, + { l: 99.6, x: 11, y: 31.9523 }, + { l: 99.6, x: 11.08, y: 32.1372 }, + { l: 99.6, x: 11.17, y: 32.3237 }, + { l: 99.6, x: 11.25, y: 32.5119 }, + { l: 99.6, x: 11.33, y: 32.7017 }, + { l: 99.6, x: 11.42, y: 32.8933 }, + { l: 99.6, x: 11.5, y: 33.0865 }, + { l: 99.6, x: 11.58, y: 33.2816 }, + { l: 99.6, x: 11.67, y: 33.4784 }, + { l: 99.6, x: 11.75, y: 33.6769 }, + { l: 99.6, x: 11.83, y: 33.8771 }, + { l: 99.6, x: 11.92, y: 34.0791 }, + { l: 99.6, x: 12, y: 34.283 }, + { l: 99.6, x: 12.08, y: 34.4889 }, + { l: 99.6, x: 12.17, y: 34.6965 }, + { l: 99.6, x: 12.25, y: 34.9059 }, + { l: 99.6, x: 12.33, y: 35.1174 }, + { l: 99.6, x: 12.42, y: 35.3308 }, + { l: 99.6, x: 12.5, y: 35.5463 }, + { l: 99.6, x: 12.58, y: 35.7637 }, + { l: 99.6, x: 12.67, y: 35.9832 }, + { l: 99.6, x: 12.75, y: 36.2048 }, + { l: 99.6, x: 12.83, y: 36.4284 }, + { l: 99.6, x: 12.92, y: 36.6541 }, + { l: 99.6, x: 13, y: 36.882 }, + { l: 99.6, x: 13.08, y: 37.1123 }, + { l: 99.6, x: 13.17, y: 37.3447 }, + { l: 99.6, x: 13.25, y: 37.5794 }, + { l: 99.6, x: 13.33, y: 37.8164 }, + { l: 99.6, x: 13.42, y: 38.056 }, + { l: 99.6, x: 13.5, y: 38.2978 }, + { l: 99.6, x: 13.58, y: 38.5419 }, + { l: 99.6, x: 13.67, y: 38.7889 }, + { l: 99.6, x: 13.75, y: 39.0381 }, + { l: 99.6, x: 13.83, y: 39.2902 }, + { l: 99.6, x: 13.92, y: 39.5447 }, + { l: 99.6, x: 14, y: 39.8021 }, + { l: 99.6, x: 14.08, y: 40.0621 }, + { l: 99.6, x: 14.17, y: 40.3249 }, + { l: 99.6, x: 14.25, y: 40.5908 }, + { l: 99.6, x: 14.33, y: 40.8594 }, + { l: 99.6, x: 14.42, y: 41.1313 }, + { l: 99.6, x: 14.5, y: 41.4061 }, + { l: 99.6, x: 14.58, y: 41.6841 }, + { l: 99.6, x: 14.67, y: 41.9653 }, + { l: 99.6, x: 14.75, y: 42.2498 }, + { l: 99.6, x: 14.83, y: 42.5379 }, + { l: 99.6, x: 14.92, y: 42.8293 }, + { l: 99.6, x: 15, y: 43.1244 }, + { l: 99.6, x: 15.08, y: 43.4232 }, + { l: 99.6, x: 15.17, y: 43.7257 }, + { l: 99.6, x: 15.25, y: 44.032 }, + { l: 99.6, x: 15.33, y: 44.3427 }, + { l: 99.6, x: 15.42, y: 44.6571 }, + { l: 99.6, x: 15.5, y: 44.9762 }, + { l: 99.6, x: 15.58, y: 45.2995 }, + { l: 99.6, x: 15.67, y: 45.6271 }, + { l: 99.6, x: 15.75, y: 45.9596 }, + { l: 99.6, x: 15.83, y: 46.2966 }, + { l: 99.6, x: 15.92, y: 46.6389 }, + { l: 99.6, x: 16, y: 46.9862 }, + { l: 99.6, x: 16.08, y: 47.3388 }, + { l: 99.6, x: 16.17, y: 47.6968 }, + { l: 99.6, x: 16.25, y: 48.0604 }, + { l: 99.6, x: 16.33, y: 48.4299 }, + { l: 99.6, x: 16.42, y: 48.8054 }, + { l: 99.6, x: 16.5, y: 49.1871 }, + { l: 99.6, x: 16.58, y: 49.5752 }, + { l: 99.6, x: 16.67, y: 49.9703 }, + { l: 99.6, x: 16.75, y: 50.372 }, + { l: 99.6, x: 16.83, y: 50.781 }, + { l: 99.6, x: 16.92, y: 51.1976 }, + { l: 99.6, x: 17, y: 51.6217 }, + { l: 99.6, x: 17.08, y: 52.0539 }, + { l: 99.6, x: 17.17, y: 52.4945 }, + { l: 99.6, x: 17.25, y: 52.9436 }, + { l: 99.6, x: 17.33, y: 53.4017 }, + { l: 99.6, x: 17.42, y: 53.8692 }, + { l: 99.6, x: 17.5, y: 54.3464 }, + { l: 99.6, x: 17.58, y: 54.8336 }, + { l: 99.6, x: 17.67, y: 55.3316 }, + { l: 99.6, x: 17.75, y: 55.8404 }, + { l: 99.6, x: 17.83, y: 56.3607 }, + { l: 99.6, x: 17.92, y: 56.8929 }, + { l: 99.6, x: 18, y: 57.4377 }, + { l: 99.6, x: 18.08, y: 57.9957 }, + { l: 99.6, x: 18.17, y: 58.5673 }, + { l: 99.6, x: 18.25, y: 59.1531 }, + { l: 99.6, x: 18.33, y: 59.7541 }, + { l: 99.6, x: 18.42, y: 60.3712 }, + { l: 99.6, x: 18.5, y: 61.0042 }, + { l: 99.6, x: 18.58, y: 61.654 }, + { l: 99.6, x: 18.67, y: 62.3228 }, + { l: 99.6, x: 18.75, y: 63.0106 }, ], }, ], }, - female: null, }, }, ], diff --git a/src/chartdata/trisomy21_height_male_centile_data.ts b/src/chartdata/trisomy21_height_male_centile_data.ts index a51a927..3b415ee 100644 --- a/src/chartdata/trisomy21_height_male_centile_data.ts +++ b/src/chartdata/trisomy21_height_male_centile_data.ts @@ -6,14510 +6,2230 @@ export const trisomy21HeightMaleCentileData: ReferenceGroup = { male: { height: [ { - sds: -2.67, + sds: -2.65, centile: 0.4, data: [ - { - l: '0.4', - x: 0.0, - y: 42.845, - }, - { - l: '0.4', - x: 0.0192, - y: 43.4089, - }, - { - l: '0.4', - x: 0.0383, - y: 43.9731, - }, - { - l: '0.4', - x: 0.0575, - y: 44.5377, - }, - { - l: '0.4', - x: 0.0767, - y: 45.1028, - }, - { - l: '0.4', - x: 0.0958, - y: 45.6205, - }, - { - l: '0.4', - x: 0.115, - y: 46.1176, - }, - { - l: '0.4', - x: 0.1342, - y: 46.6087, - }, - { - l: '0.4', - x: 0.1533, - y: 47.0995, - }, - { - l: '0.4', - x: 0.1725, - y: 47.5997, - }, - { - l: '0.4', - x: 0.1916, - y: 48.1352, - }, - { - l: '0.4', - x: 0.2108, - y: 48.675, - }, - { - l: '0.4', - x: 0.23, - y: 49.2154, - }, - { - l: '0.4', - x: 0.2491, - y: 49.7524, - }, - { - l: '0.4', - x: 0.2683, - y: 50.2796, - }, - { - l: '0.4', - x: 0.2875, - y: 50.7964, - }, - { - l: '0.4', - x: 0.3066, - y: 51.2998, - }, - { - l: '0.4', - x: 0.3258, - y: 51.7868, - }, - { - l: '0.4', - x: 0.345, - y: 52.2339, - }, - { - l: '0.4', - x: 0.3641, - y: 52.6577, - }, - { - l: '0.4', - x: 0.3833, - y: 53.0689, - }, - { - l: '0.4', - x: 0.4025, - y: 53.4726, - }, - { - l: '0.4', - x: 0.4216, - y: 53.8762, - }, - { - l: '0.4', - x: 0.4408, - y: 54.304, - }, - { - l: '0.4', - x: 0.46, - y: 54.7296, - }, - { - l: '0.4', - x: 0.4791, - y: 55.15, - }, - { - l: '0.4', - x: 0.4983, - y: 55.5624, - }, - { - l: '0.4', - x: 0.5175, - y: 55.9602, - }, - { - l: '0.4', - x: 0.5366, - y: 56.3449, - }, - { - l: '0.4', - x: 0.5558, - y: 56.7154, - }, - { - l: '0.4', - x: 0.5749, - y: 57.0701, - }, - { - l: '0.4', - x: 0.5941, - y: 57.3939, - }, - { - l: '0.4', - x: 0.6133, - y: 57.6971, - }, - { - l: '0.4', - x: 0.6324, - y: 57.9889, - }, - { - l: '0.4', - x: 0.6516, - y: 58.2733, - }, - { - l: '0.4', - x: 0.6708, - y: 58.5554, - }, - { - l: '0.4', - x: 0.6899, - y: 58.8554, - }, - { - l: '0.4', - x: 0.7091, - y: 59.1535, - }, - { - l: '0.4', - x: 0.7283, - y: 59.4483, - }, - { - l: '0.4', - x: 0.7474, - y: 59.7379, - }, - { - l: '0.4', - x: 0.7666, - y: 60.0193, - }, - { - l: '0.4', - x: 0.7858, - y: 60.2926, - }, - { - l: '0.4', - x: 0.8049, - y: 60.557, - }, - { - l: '0.4', - x: 0.8241, - y: 60.8115, - }, - { - l: '0.4', - x: 0.8433, - y: 61.046, - }, - { - l: '0.4', - x: 0.8624, - y: 61.2666, - }, - { - l: '0.4', - x: 0.8816, - y: 61.4805, - }, - { - l: '0.4', - x: 0.9008, - y: 61.6905, - }, - { - l: '0.4', - x: 0.9199, - y: 61.8997, - }, - { - l: '0.4', - x: 0.9391, - y: 62.1241, - }, - { - l: '0.4', - x: 0.9582, - y: 62.3489, - }, - { - l: '0.4', - x: 0.9774, - y: 62.5727, - }, - { - l: '0.4', - x: 0.9966, - y: 62.7942, - }, - { - l: '0.4', - x: 1.0157, - y: 63.0113, - }, - { - l: '0.4', - x: 1.0349, - y: 63.2238, - }, - { - l: '0.4', - x: 1.0541, - y: 63.4309, - }, - { - l: '0.4', - x: 1.0732, - y: 63.6315, - }, - { - l: '0.4', - x: 1.0924, - y: 63.818, - }, - { - l: '0.4', - x: 1.1116, - y: 63.9941, - }, - { - l: '0.4', - x: 1.1307, - y: 64.1659, - }, - { - l: '0.4', - x: 1.1499, - y: 64.3358, - }, - { - l: '0.4', - x: 1.1691, - y: 64.5061, - }, - { - l: '0.4', - x: 1.1882, - y: 64.6893, - }, - { - l: '0.4', - x: 1.2074, - y: 64.8743, - }, - { - l: '0.4', - x: 1.2266, - y: 65.0596, - }, - { - l: '0.4', - x: 1.2457, - y: 65.2441, - }, - { - l: '0.4', - x: 1.2649, - y: 65.4263, - }, - { - l: '0.4', - x: 1.2841, - y: 65.6056, - }, - { - l: '0.4', - x: 1.3032, - y: 65.7811, - }, - { - l: '0.4', - x: 1.3224, - y: 65.952, - }, - { - l: '0.4', - x: 1.3415, - y: 66.1118, - }, - { - l: '0.4', - x: 1.3607, - y: 66.2627, - }, - { - l: '0.4', - x: 1.3799, - y: 66.4105, - }, - { - l: '0.4', - x: 1.399, - y: 66.5569, - }, - { - l: '0.4', - x: 1.4182, - y: 66.7041, - }, - { - l: '0.4', - x: 1.4374, - y: 66.862, - }, - { - l: '0.4', - x: 1.4565, - y: 67.0223, - }, - { - l: '0.4', - x: 1.4757, - y: 67.1832, - }, - { - l: '0.4', - x: 1.4949, - y: 67.3436, - }, - { - l: '0.4', - x: 1.514, - y: 67.5023, - }, - { - l: '0.4', - x: 1.5332, - y: 67.6588, - }, - { - l: '0.4', - x: 1.5524, - y: 67.8122, - }, - { - l: '0.4', - x: 1.5715, - y: 67.9619, - }, - { - l: '0.4', - x: 1.5907, - y: 68.1023, - }, - { - l: '0.4', - x: 1.6099, - y: 68.2348, - }, - { - l: '0.4', - x: 1.629, - y: 68.3646, - }, - { - l: '0.4', - x: 1.6482, - y: 68.4934, - }, - { - l: '0.4', - x: 1.6674, - y: 68.623, - }, - { - l: '0.4', - x: 1.6865, - y: 68.7618, - }, - { - l: '0.4', - x: 1.7057, - y: 68.9033, - }, - { - l: '0.4', - x: 1.7248, - y: 69.0455, - }, - { - l: '0.4', - x: 1.744, - y: 69.1876, - }, - { - l: '0.4', - x: 1.7632, - y: 69.3285, - }, - { - l: '0.4', - x: 1.7823, - y: 69.4676, - }, - { - l: '0.4', - x: 1.8015, - y: 69.6042, - }, - { - l: '0.4', - x: 1.8207, - y: 69.7377, - }, - { - l: '0.4', - x: 1.8398, - y: 69.8635, - }, - { - l: '0.4', - x: 1.859, - y: 69.9819, - }, - { - l: '0.4', - x: 1.8782, - y: 70.0981, - }, - { - l: '0.4', - x: 1.8973, - y: 70.2136, - }, - { - l: '0.4', - x: 1.9165, - y: 70.3299, - }, - { - l: '0.4', - x: 1.9357, - y: 70.4544, - }, - { - l: '0.4', - x: 1.9548, - y: 70.5819, - }, - { - l: '0.4', - x: 1.974, - y: 70.7104, - }, - { - l: '0.4', - x: 1.9932, - y: 70.839, - }, - { - l: '0.4', - x: 2.0123, - y: 70.9669, - }, - { - l: '0.4', - x: 2.0957, - y: 71.4939, - }, - { - l: '0.4', - x: 2.179, - y: 71.964, - }, - { - l: '0.4', - x: 2.2623, - y: 72.48, - }, - { - l: '0.4', - x: 2.3457, - y: 72.9715, - }, - { - l: '0.4', - x: 2.429, - y: 73.4127, - }, - { - l: '0.4', - x: 2.5123, - y: 73.9, - }, - { - l: '0.4', - x: 2.5957, - y: 74.367, - }, - { - l: '0.4', - x: 2.679, - y: 74.7881, - }, - { - l: '0.4', - x: 2.7623, - y: 75.254, - }, - { - l: '0.4', - x: 2.8457, - y: 75.7012, - }, - { - l: '0.4', - x: 2.929, - y: 76.1049, - }, - { - l: '0.4', - x: 3.0123, - y: 76.5528, - }, - { - l: '0.4', - x: 3.0957, - y: 76.9847, - }, - { - l: '0.4', - x: 3.179, - y: 77.3766, - }, - { - l: '0.4', - x: 3.2623, - y: 77.8139, - }, - { - l: '0.4', - x: 3.3457, - y: 78.2374, - }, - { - l: '0.4', - x: 3.429, - y: 78.6235, - }, - { - l: '0.4', - x: 3.5123, - y: 79.0555, - }, - { - l: '0.4', - x: 3.5957, - y: 79.4753, - }, - { - l: '0.4', - x: 3.679, - y: 79.859, - }, - { - l: '0.4', - x: 3.7623, - y: 80.2898, - }, - { - l: '0.4', - x: 3.8457, - y: 80.71, - }, - { - l: '0.4', - x: 3.929, - y: 81.0958, - }, - { - l: '0.4', - x: 4.0123, - y: 81.5302, - }, - { - l: '0.4', - x: 4.0957, - y: 81.9545, - }, - { - l: '0.4', - x: 4.179, - y: 82.3439, - }, - { - l: '0.4', - x: 4.2623, - y: 82.7818, - }, - { - l: '0.4', - x: 4.3457, - y: 83.2088, - }, - { - l: '0.4', - x: 4.429, - y: 83.6, - }, - { - l: '0.4', - x: 4.5123, - y: 84.0401, - }, - { - l: '0.4', - x: 4.5957, - y: 84.4703, - }, - { - l: '0.4', - x: 4.679, - y: 84.866, - }, - { - l: '0.4', - x: 4.7623, - y: 85.3125, - }, - { - l: '0.4', - x: 4.8457, - y: 85.7493, - }, - { - l: '0.4', - x: 4.929, - y: 86.1508, - }, - { - l: '0.4', - x: 5.0123, - y: 86.6025, - }, - { - l: '0.4', - x: 5.0957, - y: 87.0433, - }, - { - l: '0.4', - x: 5.179, - y: 87.4471, - }, - { - l: '0.4', - x: 5.2623, - y: 87.9005, - }, - { - l: '0.4', - x: 5.3457, - y: 88.3413, - }, - { - l: '0.4', - x: 5.429, - y: 88.7438, - }, - { - l: '0.4', - x: 5.5123, - y: 89.1942, - }, - { - l: '0.4', - x: 5.5957, - y: 89.6312, - }, - { - l: '0.4', - x: 5.679, - y: 90.0293, - }, - { - l: '0.4', - x: 5.7623, - y: 90.4742, - }, - { - l: '0.4', - x: 5.8457, - y: 90.9051, - }, - { - l: '0.4', - x: 5.929, - y: 91.2976, - }, - { - l: '0.4', - x: 6.0123, - y: 91.7361, - }, - { - l: '0.4', - x: 6.0957, - y: 92.161, - }, - { - l: '0.4', - x: 6.179, - y: 92.5479, - }, - { - l: '0.4', - x: 6.2623, - y: 92.9799, - }, - { - l: '0.4', - x: 6.3457, - y: 93.3983, - }, - { - l: '0.4', - x: 6.429, - y: 93.7788, - }, - { - l: '0.4', - x: 6.5123, - y: 94.2037, - }, - { - l: '0.4', - x: 6.5957, - y: 94.6149, - }, - { - l: '0.4', - x: 6.679, - y: 94.989, - }, - { - l: '0.4', - x: 6.7623, - y: 95.4061, - }, - { - l: '0.4', - x: 6.8457, - y: 95.8093, - }, - { - l: '0.4', - x: 6.929, - y: 96.1752, - }, - { - l: '0.4', - x: 7.0123, - y: 96.5825, - }, - { - l: '0.4', - x: 7.0957, - y: 96.9753, - }, - { - l: '0.4', - x: 7.179, - y: 97.3312, - }, - { - l: '0.4', - x: 7.2623, - y: 97.7269, - }, - { - l: '0.4', - x: 7.3457, - y: 98.1083, - }, - { - l: '0.4', - x: 7.429, - y: 98.454, - }, - { - l: '0.4', - x: 7.5123, - y: 98.8384, - }, - { - l: '0.4', - x: 7.5957, - y: 99.2094, - }, - { - l: '0.4', - x: 7.679, - y: 99.5462, - }, - { - l: '0.4', - x: 7.7623, - y: 99.9216, - }, - { - l: '0.4', - x: 7.8457, - y: 100.2846, - }, - { - l: '0.4', - x: 7.929, - y: 100.6147, - }, - { - l: '0.4', - x: 8.0123, - y: 100.9834, - }, - { - l: '0.4', - x: 8.0957, - y: 101.3407, - }, - { - l: '0.4', - x: 8.179, - y: 101.6665, - }, - { - l: '0.4', - x: 8.2623, - y: 102.031, - }, - { - l: '0.4', - x: 8.3457, - y: 102.3847, - }, - { - l: '0.4', - x: 8.429, - y: 102.7075, - }, - { - l: '0.4', - x: 8.5123, - y: 103.0692, - }, - { - l: '0.4', - x: 8.5957, - y: 103.4211, - }, - { - l: '0.4', - x: 8.679, - y: 103.7436, - }, - { - l: '0.4', - x: 8.7623, - y: 104.1064, - }, - { - l: '0.4', - x: 8.8457, - y: 104.4612, - }, - { - l: '0.4', - x: 8.929, - y: 104.7876, - }, - { - l: '0.4', - x: 9.0123, - y: 105.1564, - }, - { - l: '0.4', - x: 9.0957, - y: 105.5178, - }, - { - l: '0.4', - x: 9.179, - y: 105.8508, - }, - { - l: '0.4', - x: 9.2623, - y: 106.227, - }, - { - l: '0.4', - x: 9.3457, - y: 106.5957, - }, - { - l: '0.4', - x: 9.429, - y: 106.9352, - }, - { - l: '0.4', - x: 9.5123, - y: 107.3184, - }, - { - l: '0.4', - x: 9.5957, - y: 107.6936, - }, - { - l: '0.4', - x: 9.679, - y: 108.0388, - }, - { - l: '0.4', - x: 9.7623, - y: 108.4286, - }, - { - l: '0.4', - x: 9.8457, - y: 108.8106, - }, - { - l: '0.4', - x: 9.929, - y: 109.1626, - }, - { - l: '0.4', - x: 10.0123, - y: 109.5613, - }, - { - l: '0.4', - x: 10.0957, - y: 109.9532, - }, - { - l: '0.4', - x: 10.179, - y: 110.3155, - }, - { - l: '0.4', - x: 10.2623, - y: 110.7264, - }, - { - l: '0.4', - x: 10.3457, - y: 111.1307, - }, - { - l: '0.4', - x: 10.429, - y: 111.5048, - }, - { - l: '0.4', - x: 10.5123, - y: 111.929, - }, - { - l: '0.4', - x: 10.5957, - y: 112.3464, - }, - { - l: '0.4', - x: 10.679, - y: 112.7326, - }, - { - l: '0.4', - x: 10.7623, - y: 113.1702, - }, - { - l: '0.4', - x: 10.8457, - y: 113.6011, - }, - { - l: '0.4', - x: 10.929, - y: 113.9994, - }, - { - l: '0.4', - x: 11.0123, - y: 114.451, - }, - { - l: '0.4', - x: 11.0957, - y: 114.8952, - }, - { - l: '0.4', - x: 11.179, - y: 115.3059, - }, - { - l: '0.4', - x: 11.2623, - y: 115.7716, - }, - { - l: '0.4', - x: 11.3457, - y: 116.2298, - }, - { - l: '0.4', - x: 11.429, - y: 116.6532, - }, - { - l: '0.4', - x: 11.5123, - y: 117.1326, - }, - { - l: '0.4', - x: 11.5957, - y: 117.6032, - }, - { - l: '0.4', - x: 11.679, - y: 118.037, - }, - { - l: '0.4', - x: 11.7623, - y: 118.5269, - }, - { - l: '0.4', - x: 11.8457, - y: 119.007, - }, - { - l: '0.4', - x: 11.929, - y: 119.4488, - }, - { - l: '0.4', - x: 12.0123, - y: 119.9473, - }, - { - l: '0.4', - x: 12.0957, - y: 120.4345, - }, - { - l: '0.4', - x: 12.179, - y: 120.8815, - }, - { - l: '0.4', - x: 12.2623, - y: 121.3841, - }, - { - l: '0.4', - x: 12.3457, - y: 121.8735, - }, - { - l: '0.4', - x: 12.429, - y: 122.3207, - }, - { - l: '0.4', - x: 12.5123, - y: 122.8214, - }, - { - l: '0.4', - x: 12.5957, - y: 123.3066, - }, - { - l: '0.4', - x: 12.679, - y: 123.7479, - }, - { - l: '0.4', - x: 12.7623, - y: 124.2391, - }, - { - l: '0.4', - x: 12.8457, - y: 124.7131, - }, - { - l: '0.4', - x: 12.929, - y: 125.1415, - }, - { - l: '0.4', - x: 13.0123, - y: 125.6164, - }, - { - l: '0.4', - x: 13.0957, - y: 126.0725, - }, - { - l: '0.4', - x: 13.179, - y: 126.4835, - }, - { - l: '0.4', - x: 13.2623, - y: 126.9382, - }, - { - l: '0.4', - x: 13.3457, - y: 127.3737, - }, - { - l: '0.4', - x: 13.429, - y: 127.7651, - }, - { - l: '0.4', - x: 13.5123, - y: 128.1972, - }, - { - l: '0.4', - x: 13.5957, - y: 128.6099, - }, - { - l: '0.4', - x: 13.679, - y: 128.9789, - }, - { - l: '0.4', - x: 13.7623, - y: 129.3845, - }, - { - l: '0.4', - x: 13.8457, - y: 129.7691, - }, - { - l: '0.4', - x: 13.929, - y: 130.113, - }, - { - l: '0.4', - x: 14.0123, - y: 130.4883, - }, - { - l: '0.4', - x: 14.0957, - y: 130.8431, - }, - { - l: '0.4', - x: 14.179, - y: 131.158, - }, - { - l: '0.4', - x: 14.2623, - y: 131.5014, - }, - { - l: '0.4', - x: 14.3457, - y: 131.8252, - }, - { - l: '0.4', - x: 14.429, - y: 132.112, - }, - { - l: '0.4', - x: 14.5123, - y: 132.4242, - }, - { - l: '0.4', - x: 14.5957, - y: 132.7185, - }, - { - l: '0.4', - x: 14.679, - y: 132.9786, - }, - { - l: '0.4', - x: 14.7623, - y: 133.2612, - }, - { - l: '0.4', - x: 14.8457, - y: 133.5271, - }, - { - l: '0.4', - x: 14.929, - y: 133.7615, - }, - { - l: '0.4', - x: 15.0123, - y: 134.0155, - }, - { - l: '0.4', - x: 15.0957, - y: 134.2566, - }, - { - l: '0.4', - x: 15.179, - y: 134.4685, - }, - { - l: '0.4', - x: 15.2623, - y: 134.6986, - }, - { - l: '0.4', - x: 15.3457, - y: 134.915, - }, - { - l: '0.4', - x: 15.429, - y: 135.1072, - }, - { - l: '0.4', - x: 15.5123, - y: 135.3154, - }, - { - l: '0.4', - x: 15.5957, - y: 135.5123, - }, - { - l: '0.4', - x: 15.679, - y: 135.6861, - }, - { - l: '0.4', - x: 15.7623, - y: 135.8746, - }, - { - l: '0.4', - x: 15.8457, - y: 136.0539, - }, - { - l: '0.4', - x: 15.929, - y: 136.2115, - }, - { - l: '0.4', - x: 16.0123, - y: 136.3829, - }, - { - l: '0.4', - x: 16.0957, - y: 136.5441, - }, - { - l: '0.4', - x: 16.179, - y: 136.6868, - }, - { - l: '0.4', - x: 16.2623, - y: 136.8426, - }, - { - l: '0.4', - x: 16.3457, - y: 136.9894, - }, - { - l: '0.4', - x: 16.429, - y: 137.1202, - }, - { - l: '0.4', - x: 16.5123, - y: 137.2622, - }, - { - l: '0.4', - x: 16.5957, - y: 137.3966, - }, - { - l: '0.4', - x: 16.679, - y: 137.5161, - }, - { - l: '0.4', - x: 16.7623, - y: 137.6465, - }, - { - l: '0.4', - x: 16.8457, - y: 137.77, - }, - { - l: '0.4', - x: 16.929, - y: 137.8798, - }, - { - l: '0.4', - x: 17.0123, - y: 137.9997, - }, - { - l: '0.4', - x: 17.0957, - y: 138.1125, - }, - { - l: '0.4', - x: 17.179, - y: 138.2135, - }, - { - l: '0.4', - x: 17.2623, - y: 138.3248, - }, - { - l: '0.4', - x: 17.3457, - y: 138.4288, - }, - { - l: '0.4', - x: 17.429, - y: 138.5227, - }, - { - l: '0.4', - x: 17.5123, - y: 138.6252, - }, - { - l: '0.4', - x: 17.5957, - y: 138.7217, - }, - { - l: '0.4', - x: 17.679, - y: 138.8073, - }, - { - l: '0.4', - x: 17.7623, - y: 138.9026, - }, - { - l: '0.4', - x: 17.8457, - y: 138.9918, - }, - { - l: '0.4', - x: 17.929, - y: 139.0711, - }, - { - l: '0.4', - x: 18.0123, - y: 139.1575, - }, - { - l: '0.4', - x: 18.0957, - y: 139.2391, - }, - { - l: '0.4', - x: 18.179, - y: 139.3114, - }, - { - l: '0.4', - x: 18.2623, - y: 139.3911, - }, - { - l: '0.4', - x: 18.3457, - y: 139.4645, - }, - { - l: '0.4', - x: 18.429, - y: 139.5299, - }, - { - l: '0.4', - x: 18.5123, - y: 139.6034, - }, - { - l: '0.4', - x: 18.5957, - y: 139.6743, - }, - { - l: '0.4', - x: 18.679, - y: 139.7348, - }, - { - l: '0.4', - x: 18.7623, - y: 139.8014, - }, - { - l: '0.4', - x: 18.8457, - y: 139.8638, - }, - { - l: '0.4', - x: 18.929, - y: 139.9193, - }, - { - l: '0.4', - x: 19.0123, - y: 139.9775, - }, - { - l: '0.4', - x: 19.0957, - y: 140.0344, - }, - { - l: '0.4', - x: 19.179, - y: 140.0853, - }, - { - l: '0.4', - x: 19.2623, - y: 140.1346, - }, - { - l: '0.4', - x: 19.3457, - y: 140.1824, - }, - { - l: '0.4', - x: 19.429, - y: 140.2263, - }, - { - l: '0.4', - x: 19.5123, - y: 140.2755, - }, - { - l: '0.4', - x: 19.5957, - y: 140.3234, - }, - { - l: '0.4', - x: 19.679, - y: 140.3653, - }, - { - l: '0.4', - x: 19.7623, - y: 140.4071, - }, - { - l: '0.4', - x: 19.8457, - y: 140.4469, - }, - { - l: '0.4', - x: 19.929, - y: 140.4803, - }, + { l: 0.4, x: 0, y: 42.8814 }, + { l: 0.4, x: 0.08, y: 45.2393 }, + { l: 0.4, x: 0.17, y: 47.5702 }, + { l: 0.4, x: 0.25, y: 49.817 }, + { l: 0.4, x: 0.33, y: 51.933 }, + { l: 0.4, x: 0.42, y: 53.883 }, + { l: 0.4, x: 0.5, y: 55.6428 }, + { l: 0.4, x: 0.58, y: 57.2057 }, + { l: 0.4, x: 0.67, y: 58.5889 }, + { l: 0.4, x: 0.75, y: 59.8225 }, + { l: 0.4, x: 0.83, y: 60.9345 }, + { l: 0.4, x: 0.92, y: 61.9479 }, + { l: 0.4, x: 1, y: 62.8811 }, + { l: 0.4, x: 1.08, y: 63.7488 }, + { l: 0.4, x: 1.17, y: 64.563 }, + { l: 0.4, x: 1.25, y: 65.334 }, + { l: 0.4, x: 1.33, y: 66.0677 }, + { l: 0.4, x: 1.42, y: 66.7677 }, + { l: 0.4, x: 1.5, y: 67.4364 }, + { l: 0.4, x: 1.58, y: 68.0771 }, + { l: 0.4, x: 1.67, y: 68.6919 }, + { l: 0.4, x: 1.75, y: 69.283 }, + { l: 0.4, x: 1.83, y: 69.8528 }, + { l: 0.4, x: 1.92, y: 70.4033 }, + { l: 0.4, x: 2, y: 70.9371 }, + { l: 0.4, x: 2.08, y: 71.4563 }, + { l: 0.4, x: 2.17, y: 71.9625 }, + { l: 0.4, x: 2.25, y: 72.457 }, + { l: 0.4, x: 2.33, y: 72.9408 }, + { l: 0.4, x: 2.42, y: 73.4155 }, + { l: 0.4, x: 2.5, y: 73.8821 }, + { l: 0.4, x: 2.58, y: 74.3415 }, + { l: 0.4, x: 2.67, y: 74.7942 }, + { l: 0.4, x: 2.75, y: 75.2403 }, + { l: 0.4, x: 2.83, y: 75.6802 }, + { l: 0.4, x: 2.92, y: 76.1141 }, + { l: 0.4, x: 3, y: 76.5428 }, + { l: 0.4, x: 3.08, y: 76.9672 }, + { l: 0.4, x: 3.17, y: 77.3882 }, + { l: 0.4, x: 3.25, y: 77.8063 }, + { l: 0.4, x: 3.33, y: 78.2224 }, + { l: 0.4, x: 3.42, y: 78.6367 }, + { l: 0.4, x: 3.5, y: 79.0498 }, + { l: 0.4, x: 3.58, y: 79.4619 }, + { l: 0.4, x: 3.67, y: 79.8736 }, + { l: 0.4, x: 3.75, y: 80.2852 }, + { l: 0.4, x: 3.83, y: 80.6976 }, + { l: 0.4, x: 3.92, y: 81.1112 }, + { l: 0.4, x: 4, y: 81.5263 }, + { l: 0.4, x: 4.08, y: 81.9426 }, + { l: 0.4, x: 4.17, y: 82.3601 }, + { l: 0.4, x: 4.25, y: 82.7786 }, + { l: 0.4, x: 4.33, y: 83.1977 }, + { l: 0.4, x: 4.42, y: 83.6173 }, + { l: 0.4, x: 4.5, y: 84.0378 }, + { l: 0.4, x: 4.58, y: 84.4599 }, + { l: 0.4, x: 4.67, y: 84.884 }, + { l: 0.4, x: 4.75, y: 85.3104 }, + { l: 0.4, x: 4.83, y: 85.739 }, + { l: 0.4, x: 4.92, y: 86.1695 }, + { l: 0.4, x: 5, y: 86.6012 }, + { l: 0.4, x: 5.08, y: 87.0337 }, + { l: 0.4, x: 5.17, y: 87.467 }, + { l: 0.4, x: 5.25, y: 87.9004 }, + { l: 0.4, x: 5.33, y: 88.3333 }, + { l: 0.4, x: 5.42, y: 88.7653 }, + { l: 0.4, x: 5.5, y: 89.196 }, + { l: 0.4, x: 5.58, y: 89.6253 }, + { l: 0.4, x: 5.67, y: 90.0528 }, + { l: 0.4, x: 5.75, y: 90.4783 }, + { l: 0.4, x: 5.83, y: 90.9017 }, + { l: 0.4, x: 5.92, y: 91.3232 }, + { l: 0.4, x: 6, y: 91.7426 }, + { l: 0.4, x: 6.08, y: 92.16 }, + { l: 0.4, x: 6.17, y: 92.5755 }, + { l: 0.4, x: 6.25, y: 92.9888 }, + { l: 0.4, x: 6.33, y: 93.3999 }, + { l: 0.4, x: 6.42, y: 93.8086 }, + { l: 0.4, x: 6.5, y: 94.215 }, + { l: 0.4, x: 6.58, y: 94.6191 }, + { l: 0.4, x: 6.67, y: 95.0209 }, + { l: 0.4, x: 6.75, y: 95.42 }, + { l: 0.4, x: 6.83, y: 95.8163 }, + { l: 0.4, x: 6.92, y: 96.2094 }, + { l: 0.4, x: 7, y: 96.5992 }, + { l: 0.4, x: 7.08, y: 96.9854 }, + { l: 0.4, x: 7.17, y: 97.3679 }, + { l: 0.4, x: 7.25, y: 97.7466 }, + { l: 0.4, x: 7.33, y: 98.1217 }, + { l: 0.4, x: 7.42, y: 98.4931 }, + { l: 0.4, x: 7.5, y: 98.861 }, + { l: 0.4, x: 7.58, y: 99.2257 }, + { l: 0.4, x: 7.67, y: 99.5876 }, + { l: 0.4, x: 7.75, y: 99.9467 }, + { l: 0.4, x: 7.83, y: 100.3035 }, + { l: 0.4, x: 7.92, y: 100.658 }, + { l: 0.4, x: 8, y: 101.0106 }, + { l: 0.4, x: 8.08, y: 101.3616 }, + { l: 0.4, x: 8.17, y: 101.7114 }, + { l: 0.4, x: 8.25, y: 102.0599 }, + { l: 0.4, x: 8.33, y: 102.4074 }, + { l: 0.4, x: 8.42, y: 102.7538 }, + { l: 0.4, x: 8.5, y: 103.0996 }, + { l: 0.4, x: 8.58, y: 103.4451 }, + { l: 0.4, x: 8.67, y: 103.791 }, + { l: 0.4, x: 8.75, y: 104.1376 }, + { l: 0.4, x: 8.83, y: 104.4856 }, + { l: 0.4, x: 8.92, y: 104.8355 }, + { l: 0.4, x: 9, y: 105.1877 }, + { l: 0.4, x: 9.08, y: 105.5421 }, + { l: 0.4, x: 9.17, y: 105.8989 }, + { l: 0.4, x: 9.25, y: 106.2581 }, + { l: 0.4, x: 9.33, y: 106.6198 }, + { l: 0.4, x: 9.42, y: 106.9836 }, + { l: 0.4, x: 9.5, y: 107.3496 }, + { l: 0.4, x: 9.58, y: 107.7176 }, + { l: 0.4, x: 9.67, y: 108.0876 }, + { l: 0.4, x: 9.75, y: 108.4598 }, + { l: 0.4, x: 9.83, y: 108.8345 }, + { l: 0.4, x: 9.92, y: 109.2116 }, + { l: 0.4, x: 10, y: 109.592 }, + { l: 0.4, x: 10.08, y: 109.9762 }, + { l: 0.4, x: 10.17, y: 110.3641 }, + { l: 0.4, x: 10.25, y: 110.7563 }, + { l: 0.4, x: 10.33, y: 111.1525 }, + { l: 0.4, x: 10.42, y: 111.5531 }, + { l: 0.4, x: 10.5, y: 111.9579 }, + { l: 0.4, x: 10.58, y: 112.3669 }, + { l: 0.4, x: 10.67, y: 112.7804 }, + { l: 0.4, x: 10.75, y: 113.1979 }, + { l: 0.4, x: 10.83, y: 113.6201 }, + { l: 0.4, x: 10.92, y: 114.0467 }, + { l: 0.4, x: 11, y: 114.4776 }, + { l: 0.4, x: 11.08, y: 114.9129 }, + { l: 0.4, x: 11.17, y: 115.3526 }, + { l: 0.4, x: 11.25, y: 115.7969 }, + { l: 0.4, x: 11.33, y: 116.2458 }, + { l: 0.4, x: 11.42, y: 116.6992 }, + { l: 0.4, x: 11.5, y: 117.1567 }, + { l: 0.4, x: 11.58, y: 117.6179 }, + { l: 0.4, x: 11.67, y: 118.0826 }, + { l: 0.4, x: 11.75, y: 118.5503 }, + { l: 0.4, x: 11.83, y: 119.0209 }, + { l: 0.4, x: 11.92, y: 119.4942 }, + { l: 0.4, x: 12, y: 119.9701 }, + { l: 0.4, x: 12.08, y: 120.4479 }, + { l: 0.4, x: 12.17, y: 120.927 }, + { l: 0.4, x: 12.25, y: 121.4071 }, + { l: 0.4, x: 12.33, y: 121.8873 }, + { l: 0.4, x: 12.42, y: 122.3669 }, + { l: 0.4, x: 12.5, y: 122.8453 }, + { l: 0.4, x: 12.58, y: 123.3217 }, + { l: 0.4, x: 12.67, y: 123.7954 }, + { l: 0.4, x: 12.75, y: 124.265 }, + { l: 0.4, x: 12.83, y: 124.7308 }, + { l: 0.4, x: 12.92, y: 125.191 }, + { l: 0.4, x: 13, y: 125.6453 }, + { l: 0.4, x: 13.08, y: 126.0936 }, + { l: 0.4, x: 13.17, y: 126.5354 }, + { l: 0.4, x: 13.25, y: 126.9704 }, + { l: 0.4, x: 13.33, y: 127.3988 }, + { l: 0.4, x: 13.42, y: 127.8195 }, + { l: 0.4, x: 13.5, y: 128.233 }, + { l: 0.4, x: 13.58, y: 128.6392 }, + { l: 0.4, x: 13.67, y: 129.0361 }, + { l: 0.4, x: 13.75, y: 129.4247 }, + { l: 0.4, x: 13.83, y: 129.8031 }, + { l: 0.4, x: 13.92, y: 130.1734 }, + { l: 0.4, x: 14, y: 130.5331 }, + { l: 0.4, x: 14.08, y: 130.8826 }, + { l: 0.4, x: 14.17, y: 131.2218 }, + { l: 0.4, x: 14.25, y: 131.551 }, + { l: 0.4, x: 14.33, y: 131.8701 }, + { l: 0.4, x: 14.42, y: 132.1791 }, + { l: 0.4, x: 14.5, y: 132.4785 }, + { l: 0.4, x: 14.58, y: 132.7685 }, + { l: 0.4, x: 14.67, y: 133.0488 }, + { l: 0.4, x: 14.75, y: 133.3198 }, + { l: 0.4, x: 14.83, y: 133.5819 }, + { l: 0.4, x: 14.92, y: 133.8348 }, + { l: 0.4, x: 15, y: 134.0781 }, + { l: 0.4, x: 15.08, y: 134.3158 }, + { l: 0.4, x: 15.17, y: 134.5442 }, + { l: 0.4, x: 15.25, y: 134.7649 }, + { l: 0.4, x: 15.33, y: 134.9781 }, + { l: 0.4, x: 15.42, y: 135.1852 }, + { l: 0.4, x: 15.5, y: 135.3848 }, + { l: 0.4, x: 15.58, y: 135.5788 }, + { l: 0.4, x: 15.67, y: 135.7663 }, + { l: 0.4, x: 15.75, y: 135.9468 }, + { l: 0.4, x: 15.83, y: 136.1235 }, + { l: 0.4, x: 15.92, y: 136.2934 }, + { l: 0.4, x: 16, y: 136.4577 }, + { l: 0.4, x: 16.08, y: 136.6166 }, + { l: 0.4, x: 16.17, y: 136.7703 }, + { l: 0.4, x: 16.25, y: 136.9196 }, + { l: 0.4, x: 16.33, y: 137.0643 }, + { l: 0.4, x: 16.42, y: 137.2051 }, + { l: 0.4, x: 16.5, y: 137.3412 }, + { l: 0.4, x: 16.58, y: 137.4735 }, + { l: 0.4, x: 16.67, y: 137.6023 }, + { l: 0.4, x: 16.75, y: 137.7272 }, + { l: 0.4, x: 16.83, y: 137.8488 }, + { l: 0.4, x: 16.92, y: 137.967 }, + { l: 0.4, x: 17, y: 138.082 }, + { l: 0.4, x: 17.08, y: 138.193 }, + { l: 0.4, x: 17.17, y: 138.3016 }, + { l: 0.4, x: 17.25, y: 138.4084 }, + { l: 0.4, x: 17.33, y: 138.5107 }, + { l: 0.4, x: 17.42, y: 138.6117 }, + { l: 0.4, x: 17.5, y: 138.71 }, + { l: 0.4, x: 17.58, y: 138.8052 }, + { l: 0.4, x: 17.67, y: 138.897 }, + { l: 0.4, x: 17.75, y: 138.9885 }, + { l: 0.4, x: 17.83, y: 139.0763 }, + { l: 0.4, x: 17.92, y: 139.1617 }, + { l: 0.4, x: 18, y: 139.2445 }, + { l: 0.4, x: 18.08, y: 139.325 }, + { l: 0.4, x: 18.17, y: 139.4027 }, + { l: 0.4, x: 18.25, y: 139.4793 }, + { l: 0.4, x: 18.33, y: 139.5518 }, + { l: 0.4, x: 18.42, y: 139.622 }, + { l: 0.4, x: 18.5, y: 139.6921 }, + { l: 0.4, x: 18.58, y: 139.7623 }, + { l: 0.4, x: 18.67, y: 139.8275 }, + { l: 0.4, x: 18.75, y: 139.8914 }, + { l: 0.4, x: 18.83, y: 139.9527 }, + { l: 0.4, x: 18.92, y: 140.0128 }, + { l: 0.4, x: 19, y: 140.0684 }, + { l: 0.4, x: 19.08, y: 140.1241 }, + { l: 0.4, x: 19.17, y: 140.1797 }, + { l: 0.4, x: 19.25, y: 140.2269 }, + { l: 0.4, x: 19.33, y: 140.2739 }, + { l: 0.4, x: 19.42, y: 140.3208 }, + { l: 0.4, x: 19.5, y: 140.3678 }, + { l: 0.4, x: 19.58, y: 140.4147 }, + { l: 0.4, x: 19.67, y: 140.4604 }, + { l: 0.4, x: 19.75, y: 140.5005 }, + { l: 0.4, x: 19.83, y: 140.54 }, + { l: 0.4, x: 19.92, y: 140.5761 }, + { l: 0.4, x: 20, y: 140.6106 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 0.0, - y: 44.5094, - }, - { - l: '2.0', - x: 0.0192, - y: 45.0903, - }, - { - l: '2.0', - x: 0.0383, - y: 45.6714, - }, - { - l: '2.0', - x: 0.0575, - y: 46.253, - }, - { - l: '2.0', - x: 0.0767, - y: 46.8348, - }, - { - l: '2.0', - x: 0.0958, - y: 47.3677, - }, - { - l: '2.0', - x: 0.115, - y: 47.8794, - }, - { - l: '2.0', - x: 0.1342, - y: 48.3848, - }, - { - l: '2.0', - x: 0.1533, - y: 48.8897, - }, - { - l: '2.0', - x: 0.1725, - y: 49.4043, - }, - { - l: '2.0', - x: 0.1916, - y: 49.9551, - }, - { - l: '2.0', - x: 0.2108, - y: 50.5102, - }, - { - l: '2.0', - x: 0.23, - y: 51.0657, - }, - { - l: '2.0', - x: 0.2491, - y: 51.6177, - }, - { - l: '2.0', - x: 0.2683, - y: 52.1595, - }, - { - l: '2.0', - x: 0.2875, - y: 52.6905, - }, - { - l: '2.0', - x: 0.3066, - y: 53.2076, - }, - { - l: '2.0', - x: 0.3258, - y: 53.7077, - }, - { - l: '2.0', - x: 0.345, - y: 54.1667, - }, - { - l: '2.0', - x: 0.3641, - y: 54.6017, - }, - { - l: '2.0', - x: 0.3833, - y: 55.0237, - }, - { - l: '2.0', - x: 0.4025, - y: 55.4379, - }, - { - l: '2.0', - x: 0.4216, - y: 55.8519, - }, - { - l: '2.0', - x: 0.4408, - y: 56.2906, - }, - { - l: '2.0', - x: 0.46, - y: 56.727, - }, - { - l: '2.0', - x: 0.4791, - y: 57.1579, - }, - { - l: '2.0', - x: 0.4983, - y: 57.5805, - }, - { - l: '2.0', - x: 0.5175, - y: 57.988, - }, - { - l: '2.0', - x: 0.5366, - y: 58.3821, - }, - { - l: '2.0', - x: 0.5558, - y: 58.7614, - }, - { - l: '2.0', - x: 0.5749, - y: 59.1246, - }, - { - l: '2.0', - x: 0.5941, - y: 59.4559, - }, - { - l: '2.0', - x: 0.6133, - y: 59.7662, - }, - { - l: '2.0', - x: 0.6324, - y: 60.0647, - }, - { - l: '2.0', - x: 0.6516, - y: 60.3557, - }, - { - l: '2.0', - x: 0.6708, - y: 60.6442, - }, - { - l: '2.0', - x: 0.6899, - y: 60.9509, - }, - { - l: '2.0', - x: 0.7091, - y: 61.2557, - }, - { - l: '2.0', - x: 0.7283, - y: 61.557, - }, - { - l: '2.0', - x: 0.7474, - y: 61.8531, - }, - { - l: '2.0', - x: 0.7666, - y: 62.1406, - }, - { - l: '2.0', - x: 0.7858, - y: 62.4199, - }, - { - l: '2.0', - x: 0.8049, - y: 62.6901, - }, - { - l: '2.0', - x: 0.8241, - y: 62.9501, - }, - { - l: '2.0', - x: 0.8433, - y: 63.1897, - }, - { - l: '2.0', - x: 0.8624, - y: 63.4151, - }, - { - l: '2.0', - x: 0.8816, - y: 63.6335, - }, - { - l: '2.0', - x: 0.9008, - y: 63.8481, - }, - { - l: '2.0', - x: 0.9199, - y: 64.0619, - }, - { - l: '2.0', - x: 0.9391, - y: 64.2911, - }, - { - l: '2.0', - x: 0.9582, - y: 64.5208, - }, - { - l: '2.0', - x: 0.9774, - y: 64.7494, - }, - { - l: '2.0', - x: 0.9966, - y: 64.9757, - }, - { - l: '2.0', - x: 1.0157, - y: 65.1977, - }, - { - l: '2.0', - x: 1.0349, - y: 65.4148, - }, - { - l: '2.0', - x: 1.0541, - y: 65.6264, - }, - { - l: '2.0', - x: 1.0732, - y: 65.8316, - }, - { - l: '2.0', - x: 1.0924, - y: 66.0222, - }, - { - l: '2.0', - x: 1.1116, - y: 66.2022, - }, - { - l: '2.0', - x: 1.1307, - y: 66.3779, - }, - { - l: '2.0', - x: 1.1499, - y: 66.5517, - }, - { - l: '2.0', - x: 1.1691, - y: 66.7259, - }, - { - l: '2.0', - x: 1.1882, - y: 66.9133, - }, - { - l: '2.0', - x: 1.2074, - y: 67.1027, - }, - { - l: '2.0', - x: 1.2266, - y: 67.2923, - }, - { - l: '2.0', - x: 1.2457, - y: 67.4812, - }, - { - l: '2.0', - x: 1.2649, - y: 67.6677, - }, - { - l: '2.0', - x: 1.2841, - y: 67.8513, - }, - { - l: '2.0', - x: 1.3032, - y: 68.0311, - }, - { - l: '2.0', - x: 1.3224, - y: 68.2061, - }, - { - l: '2.0', - x: 1.3415, - y: 68.3699, - }, - { - l: '2.0', - x: 1.3607, - y: 68.5246, - }, - { - l: '2.0', - x: 1.3799, - y: 68.676, - }, - { - l: '2.0', - x: 1.399, - y: 68.8262, - }, - { - l: '2.0', - x: 1.4182, - y: 68.9771, - }, - { - l: '2.0', - x: 1.4374, - y: 69.139, - }, - { - l: '2.0', - x: 1.4565, - y: 69.3035, - }, - { - l: '2.0', - x: 1.4757, - y: 69.4685, - }, - { - l: '2.0', - x: 1.4949, - y: 69.6331, - }, - { - l: '2.0', - x: 1.514, - y: 69.7961, - }, - { - l: '2.0', - x: 1.5332, - y: 69.9567, - }, - { - l: '2.0', - x: 1.5524, - y: 70.1143, - }, - { - l: '2.0', - x: 1.5715, - y: 70.2679, - }, - { - l: '2.0', - x: 1.5907, - y: 70.4122, - }, - { - l: '2.0', - x: 1.6099, - y: 70.5484, - }, - { - l: '2.0', - x: 1.629, - y: 70.6817, - }, - { - l: '2.0', - x: 1.6482, - y: 70.8141, - }, - { - l: '2.0', - x: 1.6674, - y: 70.9473, - }, - { - l: '2.0', - x: 1.6865, - y: 71.09, - }, - { - l: '2.0', - x: 1.7057, - y: 71.2356, - }, - { - l: '2.0', - x: 1.7248, - y: 71.3819, - }, - { - l: '2.0', - x: 1.744, - y: 71.528, - }, - { - l: '2.0', - x: 1.7632, - y: 71.673, - }, - { - l: '2.0', - x: 1.7823, - y: 71.8161, - }, - { - l: '2.0', - x: 1.8015, - y: 71.9568, - }, - { - l: '2.0', - x: 1.8207, - y: 72.0942, - }, - { - l: '2.0', - x: 1.8398, - y: 72.2237, - }, - { - l: '2.0', - x: 1.859, - y: 72.3457, - }, - { - l: '2.0', - x: 1.8782, - y: 72.4654, - }, - { - l: '2.0', - x: 1.8973, - y: 72.5844, - }, - { - l: '2.0', - x: 1.9165, - y: 72.7042, - }, - { - l: '2.0', - x: 1.9357, - y: 72.8325, - }, - { - l: '2.0', - x: 1.9548, - y: 72.964, - }, - { - l: '2.0', - x: 1.974, - y: 73.0964, - }, - { - l: '2.0', - x: 1.9932, - y: 73.229, - }, - { - l: '2.0', - x: 2.0123, - y: 73.3609, - }, - { - l: '2.0', - x: 2.0957, - y: 73.9046, - }, - { - l: '2.0', - x: 2.179, - y: 74.39, - }, - { - l: '2.0', - x: 2.2623, - y: 74.923, - }, - { - l: '2.0', - x: 2.3457, - y: 75.4311, - }, - { - l: '2.0', - x: 2.429, - y: 75.8876, - }, - { - l: '2.0', - x: 2.5123, - y: 76.3919, - }, - { - l: '2.0', - x: 2.5957, - y: 76.8756, - }, - { - l: '2.0', - x: 2.679, - y: 77.3119, - }, - { - l: '2.0', - x: 2.7623, - y: 77.795, - }, - { - l: '2.0', - x: 2.8457, - y: 78.2588, - }, - { - l: '2.0', - x: 2.929, - y: 78.6778, - }, - { - l: '2.0', - x: 3.0123, - y: 79.1429, - }, - { - l: '2.0', - x: 3.0957, - y: 79.5915, - }, - { - l: '2.0', - x: 3.179, - y: 79.9989, - }, - { - l: '2.0', - x: 3.2623, - y: 80.4537, - }, - { - l: '2.0', - x: 3.3457, - y: 80.8944, - }, - { - l: '2.0', - x: 3.429, - y: 81.2962, - }, - { - l: '2.0', - x: 3.5123, - y: 81.7462, - }, - { - l: '2.0', - x: 3.5957, - y: 82.1836, - }, - { - l: '2.0', - x: 3.679, - y: 82.5835, - }, - { - l: '2.0', - x: 3.7623, - y: 83.0328, - }, - { - l: '2.0', - x: 3.8457, - y: 83.4712, - }, - { - l: '2.0', - x: 3.929, - y: 83.8739, - }, - { - l: '2.0', - x: 4.0123, - y: 84.3275, - }, - { - l: '2.0', - x: 4.0957, - y: 84.7707, - }, - { - l: '2.0', - x: 4.179, - y: 85.1775, - }, - { - l: '2.0', - x: 4.2623, - y: 85.6353, - }, - { - l: '2.0', - x: 4.3457, - y: 86.0818, - }, - { - l: '2.0', - x: 4.429, - y: 86.4911, - }, - { - l: '2.0', - x: 4.5123, - y: 86.9517, - }, - { - l: '2.0', - x: 4.5957, - y: 87.4021, - }, - { - l: '2.0', - x: 4.679, - y: 87.8165, - }, - { - l: '2.0', - x: 4.7623, - y: 88.2842, - }, - { - l: '2.0', - x: 4.8457, - y: 88.742, - }, - { - l: '2.0', - x: 4.929, - y: 89.1627, - }, - { - l: '2.0', - x: 5.0123, - y: 89.6364, - }, - { - l: '2.0', - x: 5.0957, - y: 90.0987, - }, - { - l: '2.0', - x: 5.179, - y: 90.5224, - }, - { - l: '2.0', - x: 5.2623, - y: 90.9982, - }, - { - l: '2.0', - x: 5.3457, - y: 91.4609, - }, - { - l: '2.0', - x: 5.429, - y: 91.8835, - }, - { - l: '2.0', - x: 5.5123, - y: 92.3565, - }, - { - l: '2.0', - x: 5.5957, - y: 92.8155, - }, - { - l: '2.0', - x: 5.679, - y: 93.2339, - }, - { - l: '2.0', - x: 5.7623, - y: 93.7014, - }, - { - l: '2.0', - x: 5.8457, - y: 94.1543, - }, - { - l: '2.0', - x: 5.929, - y: 94.567, - }, - { - l: '2.0', - x: 6.0123, - y: 95.028, - }, - { - l: '2.0', - x: 6.0957, - y: 95.4748, - }, - { - l: '2.0', - x: 6.179, - y: 95.8817, - }, - { - l: '2.0', - x: 6.2623, - y: 96.336, - }, - { - l: '2.0', - x: 6.3457, - y: 96.776, - }, - { - l: '2.0', - x: 6.429, - y: 97.1763, - }, - { - l: '2.0', - x: 6.5123, - y: 97.6231, - }, - { - l: '2.0', - x: 6.5957, - y: 98.0556, - }, - { - l: '2.0', - x: 6.679, - y: 98.4489, - }, - { - l: '2.0', - x: 6.7623, - y: 98.8876, - }, - { - l: '2.0', - x: 6.8457, - y: 99.3116, - }, - { - l: '2.0', - x: 6.929, - y: 99.6963, - }, - { - l: '2.0', - x: 7.0123, - y: 100.1244, - }, - { - l: '2.0', - x: 7.0957, - y: 100.5373, - }, - { - l: '2.0', - x: 7.179, - y: 100.9114, - }, - { - l: '2.0', - x: 7.2623, - y: 101.3272, - }, - { - l: '2.0', - x: 7.3457, - y: 101.728, - }, - { - l: '2.0', - x: 7.429, - y: 102.0911, - }, - { - l: '2.0', - x: 7.5123, - y: 102.495, - }, - { - l: '2.0', - x: 7.5957, - y: 102.8847, - }, - { - l: '2.0', - x: 7.679, - y: 103.2384, - }, - { - l: '2.0', - x: 7.7623, - y: 103.6325, - }, - { - l: '2.0', - x: 7.8457, - y: 104.0136, - }, - { - l: '2.0', - x: 7.929, - y: 104.3601, - }, - { - l: '2.0', - x: 8.0123, - y: 104.747, - }, - { - l: '2.0', - x: 8.0957, - y: 105.1219, - }, - { - l: '2.0', - x: 8.179, - y: 105.4636, - }, - { - l: '2.0', - x: 8.2623, - y: 105.8459, - }, - { - l: '2.0', - x: 8.3457, - y: 106.2168, - }, - { - l: '2.0', - x: 8.429, - y: 106.5551, - }, - { - l: '2.0', - x: 8.5123, - y: 106.9341, - }, - { - l: '2.0', - x: 8.5957, - y: 107.3027, - }, - { - l: '2.0', - x: 8.679, - y: 107.6404, - }, - { - l: '2.0', - x: 8.7623, - y: 108.0202, - }, - { - l: '2.0', - x: 8.8457, - y: 108.3915, - }, - { - l: '2.0', - x: 8.929, - y: 108.7329, - }, - { - l: '2.0', - x: 9.0123, - y: 109.1186, - }, - { - l: '2.0', - x: 9.0957, - y: 109.4963, - }, - { - l: '2.0', - x: 9.179, - y: 109.8442, - }, - { - l: '2.0', - x: 9.2623, - y: 110.2371, - }, - { - l: '2.0', - x: 9.3457, - y: 110.622, - }, - { - l: '2.0', - x: 9.429, - y: 110.9763, - }, - { - l: '2.0', - x: 9.5123, - y: 111.376, - }, - { - l: '2.0', - x: 9.5957, - y: 111.7671, - }, - { - l: '2.0', - x: 9.679, - y: 112.1268, - }, - { - l: '2.0', - x: 9.7623, - y: 112.5327, - }, - { - l: '2.0', - x: 9.8457, - y: 112.9304, - }, - { - l: '2.0', - x: 9.929, - y: 113.2965, - }, - { - l: '2.0', - x: 10.0123, - y: 113.711, - }, - { - l: '2.0', - x: 10.0957, - y: 114.1182, - }, - { - l: '2.0', - x: 10.179, - y: 114.4944, - }, - { - l: '2.0', - x: 10.2623, - y: 114.9209, - }, - { - l: '2.0', - x: 10.3457, - y: 115.3402, - }, - { - l: '2.0', - x: 10.429, - y: 115.728, - }, - { - l: '2.0', - x: 10.5123, - y: 116.1673, - }, - { - l: '2.0', - x: 10.5957, - y: 116.5994, - }, - { - l: '2.0', - x: 10.679, - y: 116.9988, - }, - { - l: '2.0', - x: 10.7623, - y: 117.4511, - }, - { - l: '2.0', - x: 10.8457, - y: 117.8961, - }, - { - l: '2.0', - x: 10.929, - y: 118.3072, - }, - { - l: '2.0', - x: 11.0123, - y: 118.773, - }, - { - l: '2.0', - x: 11.0957, - y: 119.2307, - }, - { - l: '2.0', - x: 11.179, - y: 119.6536, - }, - { - l: '2.0', - x: 11.2623, - y: 120.1327, - }, - { - l: '2.0', - x: 11.3457, - y: 120.6037, - }, - { - l: '2.0', - x: 11.429, - y: 121.0386, - }, - { - l: '2.0', - x: 11.5123, - y: 121.5306, - }, - { - l: '2.0', - x: 11.5957, - y: 122.0132, - }, - { - l: '2.0', - x: 11.679, - y: 122.4577, - }, - { - l: '2.0', - x: 11.7623, - y: 122.9593, - }, - { - l: '2.0', - x: 11.8457, - y: 123.4503, - }, - { - l: '2.0', - x: 11.929, - y: 123.9018, - }, - { - l: '2.0', - x: 12.0123, - y: 124.4108, - }, - { - l: '2.0', - x: 12.0957, - y: 124.9079, - }, - { - l: '2.0', - x: 12.179, - y: 125.3635, - }, - { - l: '2.0', - x: 12.2623, - y: 125.8754, - }, - { - l: '2.0', - x: 12.3457, - y: 126.3734, - }, - { - l: '2.0', - x: 12.429, - y: 126.828, - }, - { - l: '2.0', - x: 12.5123, - y: 127.3366, - }, - { - l: '2.0', - x: 12.5957, - y: 127.8291, - }, - { - l: '2.0', - x: 12.679, - y: 128.2766, - }, - { - l: '2.0', - x: 12.7623, - y: 128.7744, - }, - { - l: '2.0', - x: 12.8457, - y: 129.2543, - }, - { - l: '2.0', - x: 12.929, - y: 129.6877, - }, - { - l: '2.0', - x: 13.0123, - y: 130.1678, - }, - { - l: '2.0', - x: 13.0957, - y: 130.6284, - }, - { - l: '2.0', - x: 13.179, - y: 131.0433, - }, - { - l: '2.0', - x: 13.2623, - y: 131.5018, - }, - { - l: '2.0', - x: 13.3457, - y: 131.9409, - }, - { - l: '2.0', - x: 13.429, - y: 132.335, - }, - { - l: '2.0', - x: 13.5123, - y: 132.7699, - }, - { - l: '2.0', - x: 13.5957, - y: 133.1851, - }, - { - l: '2.0', - x: 13.679, - y: 133.556, - }, - { - l: '2.0', - x: 13.7623, - y: 133.9635, - }, - { - l: '2.0', - x: 13.8457, - y: 134.3497, - }, - { - l: '2.0', - x: 13.929, - y: 134.6948, - }, - { - l: '2.0', - x: 14.0123, - y: 135.0712, - }, - { - l: '2.0', - x: 14.0957, - y: 135.4269, - }, - { - l: '2.0', - x: 14.179, - y: 135.7425, - }, - { - l: '2.0', - x: 14.2623, - y: 136.0864, - }, - { - l: '2.0', - x: 14.3457, - y: 136.4105, - }, - { - l: '2.0', - x: 14.429, - y: 136.6976, - }, - { - l: '2.0', - x: 14.5123, - y: 137.0099, - }, - { - l: '2.0', - x: 14.5957, - y: 137.3042, - }, - { - l: '2.0', - x: 14.679, - y: 137.5641, - }, - { - l: '2.0', - x: 14.7623, - y: 137.8465, - }, - { - l: '2.0', - x: 14.8457, - y: 138.1122, - }, - { - l: '2.0', - x: 14.929, - y: 138.3463, - }, - { - l: '2.0', - x: 15.0123, - y: 138.6, - }, - { - l: '2.0', - x: 15.0957, - y: 138.8406, - }, - { - l: '2.0', - x: 15.179, - y: 139.0521, - }, - { - l: '2.0', - x: 15.2623, - y: 139.2817, - }, - { - l: '2.0', - x: 15.3457, - y: 139.4976, - }, - { - l: '2.0', - x: 15.429, - y: 139.6893, - }, - { - l: '2.0', - x: 15.5123, - y: 139.897, - }, - { - l: '2.0', - x: 15.5957, - y: 140.0933, - }, - { - l: '2.0', - x: 15.679, - y: 140.2666, - }, - { - l: '2.0', - x: 15.7623, - y: 140.4546, - }, - { - l: '2.0', - x: 15.8457, - y: 140.6332, - }, - { - l: '2.0', - x: 15.929, - y: 140.7904, - }, - { - l: '2.0', - x: 16.0123, - y: 140.9611, - }, - { - l: '2.0', - x: 16.0957, - y: 141.1217, - }, - { - l: '2.0', - x: 16.179, - y: 141.2639, - }, - { - l: '2.0', - x: 16.2623, - y: 141.4192, - }, - { - l: '2.0', - x: 16.3457, - y: 141.5655, - }, - { - l: '2.0', - x: 16.429, - y: 141.6957, - }, - { - l: '2.0', - x: 16.5123, - y: 141.8372, - }, - { - l: '2.0', - x: 16.5957, - y: 141.9711, - }, - { - l: '2.0', - x: 16.679, - y: 142.0901, - }, - { - l: '2.0', - x: 16.7623, - y: 142.22, - }, - { - l: '2.0', - x: 16.8457, - y: 142.343, - }, - { - l: '2.0', - x: 16.929, - y: 142.4523, - }, - { - l: '2.0', - x: 17.0123, - y: 142.5717, - }, - { - l: '2.0', - x: 17.0957, - y: 142.684, - }, - { - l: '2.0', - x: 17.179, - y: 142.7846, - }, - { - l: '2.0', - x: 17.2623, - y: 142.8954, - }, - { - l: '2.0', - x: 17.3457, - y: 142.999, - }, - { - l: '2.0', - x: 17.429, - y: 143.0925, - }, - { - l: '2.0', - x: 17.5123, - y: 143.1945, - }, - { - l: '2.0', - x: 17.5957, - y: 143.2906, - }, - { - l: '2.0', - x: 17.679, - y: 143.3758, - }, - { - l: '2.0', - x: 17.7623, - y: 143.4707, - }, - { - l: '2.0', - x: 17.8457, - y: 143.5595, - }, - { - l: '2.0', - x: 17.929, - y: 143.6384, - }, - { - l: '2.0', - x: 18.0123, - y: 143.7244, - }, - { - l: '2.0', - x: 18.0957, - y: 143.8056, - }, - { - l: '2.0', - x: 18.179, - y: 143.8776, - }, - { - l: '2.0', - x: 18.2623, - y: 143.9569, - }, - { - l: '2.0', - x: 18.3457, - y: 144.03, - }, - { - l: '2.0', - x: 18.429, - y: 144.095, - }, - { - l: '2.0', - x: 18.5123, - y: 144.1682, - }, - { - l: '2.0', - x: 18.5957, - y: 144.2388, - }, - { - l: '2.0', - x: 18.679, - y: 144.299, - }, - { - l: '2.0', - x: 18.7623, - y: 144.3652, - }, - { - l: '2.0', - x: 18.8457, - y: 144.4273, - }, - { - l: '2.0', - x: 18.929, - y: 144.4826, - }, - { - l: '2.0', - x: 19.0123, - y: 144.5404, - }, - { - l: '2.0', - x: 19.0957, - y: 144.5971, - }, - { - l: '2.0', - x: 19.179, - y: 144.6477, - }, - { - l: '2.0', - x: 19.2623, - y: 144.6967, - }, - { - l: '2.0', - x: 19.3457, - y: 144.7444, - }, - { - l: '2.0', - x: 19.429, - y: 144.7879, - }, - { - l: '2.0', - x: 19.5123, - y: 144.8369, - }, - { - l: '2.0', - x: 19.5957, - y: 144.8845, - }, - { - l: '2.0', - x: 19.679, - y: 144.9263, - }, - { - l: '2.0', - x: 19.7623, - y: 144.9678, - }, - { - l: '2.0', - x: 19.8457, - y: 145.0075, - }, - { - l: '2.0', - x: 19.929, - y: 145.0407, - }, + { l: 2.0, x: 0, y: 44.3753 }, + { l: 2.0, x: 0.08, y: 46.7965 }, + { l: 2.0, x: 0.17, y: 49.1883 }, + { l: 2.0, x: 0.25, y: 51.4919 }, + { l: 2.0, x: 0.33, y: 53.6596 }, + { l: 2.0, x: 0.42, y: 55.6555 }, + { l: 2.0, x: 0.5, y: 57.4551 }, + { l: 2.0, x: 0.58, y: 59.0517 }, + { l: 2.0, x: 0.67, y: 60.4636 }, + { l: 2.0, x: 0.75, y: 61.7218 }, + { l: 2.0, x: 0.83, y: 62.8556 }, + { l: 2.0, x: 0.92, y: 63.8886 }, + { l: 2.0, x: 1, y: 64.84 }, + { l: 2.0, x: 1.08, y: 65.7249 }, + { l: 2.0, x: 1.17, y: 66.5557 }, + { l: 2.0, x: 1.25, y: 67.3428 }, + { l: 2.0, x: 1.33, y: 68.0925 }, + { l: 2.0, x: 1.42, y: 68.8082 }, + { l: 2.0, x: 1.5, y: 69.4925 }, + { l: 2.0, x: 1.58, y: 70.1486 }, + { l: 2.0, x: 1.67, y: 70.7786 }, + { l: 2.0, x: 1.75, y: 71.3849 }, + { l: 2.0, x: 1.83, y: 71.9697 }, + { l: 2.0, x: 1.92, y: 72.535 }, + { l: 2.0, x: 2, y: 73.0837 }, + { l: 2.0, x: 2.08, y: 73.6176 }, + { l: 2.0, x: 2.17, y: 74.1384 }, + { l: 2.0, x: 2.25, y: 74.6476 }, + { l: 2.0, x: 2.33, y: 75.1461 }, + { l: 2.0, x: 2.42, y: 75.6354 }, + { l: 2.0, x: 2.5, y: 76.1166 }, + { l: 2.0, x: 2.58, y: 76.5906 }, + { l: 2.0, x: 2.67, y: 77.058 }, + { l: 2.0, x: 2.75, y: 77.5188 }, + { l: 2.0, x: 2.83, y: 77.9733 }, + { l: 2.0, x: 2.92, y: 78.4219 }, + { l: 2.0, x: 3, y: 78.8653 }, + { l: 2.0, x: 3.08, y: 79.3045 }, + { l: 2.0, x: 3.17, y: 79.7403 }, + { l: 2.0, x: 3.25, y: 80.1734 }, + { l: 2.0, x: 3.33, y: 80.6045 }, + { l: 2.0, x: 3.42, y: 81.0341 }, + { l: 2.0, x: 3.5, y: 81.4625 }, + { l: 2.0, x: 3.58, y: 81.8901 }, + { l: 2.0, x: 3.67, y: 82.3174 }, + { l: 2.0, x: 3.75, y: 82.7449 }, + { l: 2.0, x: 3.83, y: 83.1732 }, + { l: 2.0, x: 3.92, y: 83.603 }, + { l: 2.0, x: 4, y: 84.0345 }, + { l: 2.0, x: 4.08, y: 84.4674 }, + { l: 2.0, x: 4.17, y: 84.9018 }, + { l: 2.0, x: 4.25, y: 85.3373 }, + { l: 2.0, x: 4.33, y: 85.7735 }, + { l: 2.0, x: 4.42, y: 86.2104 }, + { l: 2.0, x: 4.5, y: 86.6485 }, + { l: 2.0, x: 4.58, y: 87.0883 }, + { l: 2.0, x: 4.67, y: 87.5304 }, + { l: 2.0, x: 4.75, y: 87.975 }, + { l: 2.0, x: 4.83, y: 88.422 }, + { l: 2.0, x: 4.92, y: 88.871 }, + { l: 2.0, x: 5, y: 89.3214 }, + { l: 2.0, x: 5.08, y: 89.7729 }, + { l: 2.0, x: 5.17, y: 90.2252 }, + { l: 2.0, x: 5.25, y: 90.6779 }, + { l: 2.0, x: 5.33, y: 91.13 }, + { l: 2.0, x: 5.42, y: 91.5814 }, + { l: 2.0, x: 5.5, y: 92.0315 }, + { l: 2.0, x: 5.58, y: 92.4801 }, + { l: 2.0, x: 5.67, y: 92.9271 }, + { l: 2.0, x: 5.75, y: 93.372 }, + { l: 2.0, x: 5.83, y: 93.8148 }, + { l: 2.0, x: 5.92, y: 94.2556 }, + { l: 2.0, x: 6, y: 94.6944 }, + { l: 2.0, x: 6.08, y: 95.1311 }, + { l: 2.0, x: 6.17, y: 95.5658 }, + { l: 2.0, x: 6.25, y: 95.9982 }, + { l: 2.0, x: 6.33, y: 96.4284 }, + { l: 2.0, x: 6.42, y: 96.856 }, + { l: 2.0, x: 6.5, y: 97.2814 }, + { l: 2.0, x: 6.58, y: 97.7042 }, + { l: 2.0, x: 6.67, y: 98.1245 }, + { l: 2.0, x: 6.75, y: 98.5421 }, + { l: 2.0, x: 6.83, y: 98.9567 }, + { l: 2.0, x: 6.92, y: 99.368 }, + { l: 2.0, x: 7, y: 99.7757 }, + { l: 2.0, x: 7.08, y: 100.1796 }, + { l: 2.0, x: 7.17, y: 100.5796 }, + { l: 2.0, x: 7.25, y: 100.9755 }, + { l: 2.0, x: 7.33, y: 101.3677 }, + { l: 2.0, x: 7.42, y: 101.756 }, + { l: 2.0, x: 7.5, y: 102.1406 }, + { l: 2.0, x: 7.58, y: 102.5218 }, + { l: 2.0, x: 7.67, y: 102.8999 }, + { l: 2.0, x: 7.75, y: 103.2751 }, + { l: 2.0, x: 7.83, y: 103.6478 }, + { l: 2.0, x: 7.92, y: 104.0182 }, + { l: 2.0, x: 8, y: 104.3864 }, + { l: 2.0, x: 8.08, y: 104.7529 }, + { l: 2.0, x: 8.17, y: 105.118 }, + { l: 2.0, x: 8.25, y: 105.4817 }, + { l: 2.0, x: 8.33, y: 105.8443 }, + { l: 2.0, x: 8.42, y: 106.2058 }, + { l: 2.0, x: 8.5, y: 106.5663 }, + { l: 2.0, x: 8.58, y: 106.9266 }, + { l: 2.0, x: 8.67, y: 107.2871 }, + { l: 2.0, x: 8.75, y: 107.6483 }, + { l: 2.0, x: 8.83, y: 108.0109 }, + { l: 2.0, x: 8.92, y: 108.3752 }, + { l: 2.0, x: 9, y: 108.7418 }, + { l: 2.0, x: 9.08, y: 109.1107 }, + { l: 2.0, x: 9.17, y: 109.4819 }, + { l: 2.0, x: 9.25, y: 109.8554 }, + { l: 2.0, x: 9.33, y: 110.2313 }, + { l: 2.0, x: 9.42, y: 110.6094 }, + { l: 2.0, x: 9.5, y: 110.9895 }, + { l: 2.0, x: 9.58, y: 111.3715 }, + { l: 2.0, x: 9.67, y: 111.7555 }, + { l: 2.0, x: 9.75, y: 112.1415 }, + { l: 2.0, x: 9.83, y: 112.5299 }, + { l: 2.0, x: 9.92, y: 112.9207 }, + { l: 2.0, x: 10, y: 113.3147 }, + { l: 2.0, x: 10.08, y: 113.7123 }, + { l: 2.0, x: 10.17, y: 114.1137 }, + { l: 2.0, x: 10.25, y: 114.5191 }, + { l: 2.0, x: 10.33, y: 114.9286 }, + { l: 2.0, x: 10.42, y: 115.3423 }, + { l: 2.0, x: 10.5, y: 115.7601 }, + { l: 2.0, x: 10.58, y: 116.1821 }, + { l: 2.0, x: 10.67, y: 116.6084 }, + { l: 2.0, x: 10.75, y: 117.0385 }, + { l: 2.0, x: 10.83, y: 117.4732 }, + { l: 2.0, x: 10.92, y: 117.912 }, + { l: 2.0, x: 11, y: 118.3551 }, + { l: 2.0, x: 11.08, y: 118.8023 }, + { l: 2.0, x: 11.17, y: 119.2538 }, + { l: 2.0, x: 11.25, y: 119.7097 }, + { l: 2.0, x: 11.33, y: 120.1699 }, + { l: 2.0, x: 11.42, y: 120.6344 }, + { l: 2.0, x: 11.5, y: 121.1027 }, + { l: 2.0, x: 11.58, y: 121.5746 }, + { l: 2.0, x: 11.67, y: 122.0496 }, + { l: 2.0, x: 11.75, y: 122.5272 }, + { l: 2.0, x: 11.83, y: 123.0076 }, + { l: 2.0, x: 11.92, y: 123.4903 }, + { l: 2.0, x: 12, y: 123.9752 }, + { l: 2.0, x: 12.08, y: 124.4617 }, + { l: 2.0, x: 12.17, y: 124.9492 }, + { l: 2.0, x: 12.25, y: 125.4373 }, + { l: 2.0, x: 12.33, y: 125.925 }, + { l: 2.0, x: 12.42, y: 126.4119 }, + { l: 2.0, x: 12.5, y: 126.8972 }, + { l: 2.0, x: 12.58, y: 127.38 }, + { l: 2.0, x: 12.67, y: 127.8597 }, + { l: 2.0, x: 12.75, y: 128.335 }, + { l: 2.0, x: 12.83, y: 128.8061 }, + { l: 2.0, x: 12.92, y: 129.2711 }, + { l: 2.0, x: 13, y: 129.73 }, + { l: 2.0, x: 13.08, y: 130.1824 }, + { l: 2.0, x: 13.17, y: 130.6278 }, + { l: 2.0, x: 13.25, y: 131.0663 }, + { l: 2.0, x: 13.33, y: 131.4977 }, + { l: 2.0, x: 13.42, y: 131.9212 }, + { l: 2.0, x: 13.5, y: 132.3371 }, + { l: 2.0, x: 13.58, y: 132.7455 }, + { l: 2.0, x: 13.67, y: 133.1443 }, + { l: 2.0, x: 13.75, y: 133.5346 }, + { l: 2.0, x: 13.83, y: 133.9145 }, + { l: 2.0, x: 13.92, y: 134.2859 }, + { l: 2.0, x: 14, y: 134.6466 }, + { l: 2.0, x: 14.08, y: 134.9969 }, + { l: 2.0, x: 14.17, y: 135.3367 }, + { l: 2.0, x: 14.25, y: 135.6664 }, + { l: 2.0, x: 14.33, y: 135.9858 }, + { l: 2.0, x: 14.42, y: 136.2951 }, + { l: 2.0, x: 14.5, y: 136.5946 }, + { l: 2.0, x: 14.58, y: 136.8846 }, + { l: 2.0, x: 14.67, y: 137.1648 }, + { l: 2.0, x: 14.75, y: 137.4356 }, + { l: 2.0, x: 14.83, y: 137.6976 }, + { l: 2.0, x: 14.92, y: 137.9501 }, + { l: 2.0, x: 15, y: 138.1931 }, + { l: 2.0, x: 15.08, y: 138.4305 }, + { l: 2.0, x: 15.17, y: 138.6585 }, + { l: 2.0, x: 15.25, y: 138.8788 }, + { l: 2.0, x: 15.33, y: 139.0915 }, + { l: 2.0, x: 15.42, y: 139.2982 }, + { l: 2.0, x: 15.5, y: 139.4973 }, + { l: 2.0, x: 15.58, y: 139.6908 }, + { l: 2.0, x: 15.67, y: 139.8778 }, + { l: 2.0, x: 15.75, y: 140.0578 }, + { l: 2.0, x: 15.83, y: 140.234 }, + { l: 2.0, x: 15.92, y: 140.4034 }, + { l: 2.0, x: 16, y: 140.5672 }, + { l: 2.0, x: 16.08, y: 140.7256 }, + { l: 2.0, x: 16.17, y: 140.8788 }, + { l: 2.0, x: 16.25, y: 141.0277 }, + { l: 2.0, x: 16.33, y: 141.1718 }, + { l: 2.0, x: 16.42, y: 141.3122 }, + { l: 2.0, x: 16.5, y: 141.4478 }, + { l: 2.0, x: 16.58, y: 141.5797 }, + { l: 2.0, x: 16.67, y: 141.708 }, + { l: 2.0, x: 16.75, y: 141.8324 }, + { l: 2.0, x: 16.83, y: 141.9536 }, + { l: 2.0, x: 16.92, y: 142.0713 }, + { l: 2.0, x: 17, y: 142.1859 }, + { l: 2.0, x: 17.08, y: 142.2965 }, + { l: 2.0, x: 17.17, y: 142.4047 }, + { l: 2.0, x: 17.25, y: 142.5111 }, + { l: 2.0, x: 17.33, y: 142.613 }, + { l: 2.0, x: 17.42, y: 142.7136 }, + { l: 2.0, x: 17.5, y: 142.8115 }, + { l: 2.0, x: 17.58, y: 142.9063 }, + { l: 2.0, x: 17.67, y: 142.9977 }, + { l: 2.0, x: 17.75, y: 143.0888 }, + { l: 2.0, x: 17.83, y: 143.1764 }, + { l: 2.0, x: 17.92, y: 143.2614 }, + { l: 2.0, x: 18, y: 143.3439 }, + { l: 2.0, x: 18.08, y: 143.424 }, + { l: 2.0, x: 18.17, y: 143.5013 }, + { l: 2.0, x: 18.25, y: 143.5777 }, + { l: 2.0, x: 18.33, y: 143.6498 }, + { l: 2.0, x: 18.42, y: 143.7197 }, + { l: 2.0, x: 18.5, y: 143.7895 }, + { l: 2.0, x: 18.58, y: 143.8593 }, + { l: 2.0, x: 18.67, y: 143.9243 }, + { l: 2.0, x: 18.75, y: 143.9879 }, + { l: 2.0, x: 18.83, y: 144.0489 }, + { l: 2.0, x: 18.92, y: 144.1088 }, + { l: 2.0, x: 19, y: 144.1642 }, + { l: 2.0, x: 19.08, y: 144.2195 }, + { l: 2.0, x: 19.17, y: 144.2749 }, + { l: 2.0, x: 19.25, y: 144.3219 }, + { l: 2.0, x: 19.33, y: 144.3687 }, + { l: 2.0, x: 19.42, y: 144.4154 }, + { l: 2.0, x: 19.5, y: 144.4621 }, + { l: 2.0, x: 19.58, y: 144.5089 }, + { l: 2.0, x: 19.67, y: 144.5544 }, + { l: 2.0, x: 19.75, y: 144.5942 }, + { l: 2.0, x: 19.83, y: 144.6336 }, + { l: 2.0, x: 19.92, y: 144.6695 }, + { l: 2.0, x: 20, y: 144.7039 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 0.0, - y: 46.1737, - }, - { - l: '9.0', - x: 0.0192, - y: 46.7716, - }, - { - l: '9.0', - x: 0.0383, - y: 47.3698, - }, - { - l: '9.0', - x: 0.0575, - y: 47.9682, - }, - { - l: '9.0', - x: 0.0767, - y: 48.5668, - }, - { - l: '9.0', - x: 0.0958, - y: 49.1149, - }, - { - l: '9.0', - x: 0.115, - y: 49.6411, - }, - { - l: '9.0', - x: 0.1342, - y: 50.1608, - }, - { - l: '9.0', - x: 0.1533, - y: 50.68, - }, - { - l: '9.0', - x: 0.1725, - y: 51.209, - }, - { - l: '9.0', - x: 0.1916, - y: 51.775, - }, - { - l: '9.0', - x: 0.2108, - y: 52.3454, - }, - { - l: '9.0', - x: 0.23, - y: 52.9161, - }, - { - l: '9.0', - x: 0.2491, - y: 53.483, - }, - { - l: '9.0', - x: 0.2683, - y: 54.0394, - }, - { - l: '9.0', - x: 0.2875, - y: 54.5845, - }, - { - l: '9.0', - x: 0.3066, - y: 55.1153, - }, - { - l: '9.0', - x: 0.3258, - y: 55.6285, - }, - { - l: '9.0', - x: 0.345, - y: 56.0995, - }, - { - l: '9.0', - x: 0.3641, - y: 56.5457, - }, - { - l: '9.0', - x: 0.3833, - y: 56.9785, - }, - { - l: '9.0', - x: 0.4025, - y: 57.4032, - }, - { - l: '9.0', - x: 0.4216, - y: 57.8276, - }, - { - l: '9.0', - x: 0.4408, - y: 58.2773, - }, - { - l: '9.0', - x: 0.46, - y: 58.7244, - }, - { - l: '9.0', - x: 0.4791, - y: 59.1659, - }, - { - l: '9.0', - x: 0.4983, - y: 59.5986, - }, - { - l: '9.0', - x: 0.5175, - y: 60.0159, - }, - { - l: '9.0', - x: 0.5366, - y: 60.4192, - }, - { - l: '9.0', - x: 0.5558, - y: 60.8075, - }, - { - l: '9.0', - x: 0.5749, - y: 61.179, - }, - { - l: '9.0', - x: 0.5941, - y: 61.518, - }, - { - l: '9.0', - x: 0.6133, - y: 61.8353, - }, - { - l: '9.0', - x: 0.6324, - y: 62.1405, - }, - { - l: '9.0', - x: 0.6516, - y: 62.438, - }, - { - l: '9.0', - x: 0.6708, - y: 62.7329, - }, - { - l: '9.0', - x: 0.6899, - y: 63.0464, - }, - { - l: '9.0', - x: 0.7091, - y: 63.3579, - }, - { - l: '9.0', - x: 0.7283, - y: 63.6658, - }, - { - l: '9.0', - x: 0.7474, - y: 63.9682, - }, - { - l: '9.0', - x: 0.7666, - y: 64.262, - }, - { - l: '9.0', - x: 0.7858, - y: 64.5472, - }, - { - l: '9.0', - x: 0.8049, - y: 64.8231, - }, - { - l: '9.0', - x: 0.8241, - y: 65.0887, - }, - { - l: '9.0', - x: 0.8433, - y: 65.3334, - }, - { - l: '9.0', - x: 0.8624, - y: 65.5635, - }, - { - l: '9.0', - x: 0.8816, - y: 65.7866, - }, - { - l: '9.0', - x: 0.9008, - y: 66.0057, - }, - { - l: '9.0', - x: 0.9199, - y: 66.224, - }, - { - l: '9.0', - x: 0.9391, - y: 66.4581, - }, - { - l: '9.0', - x: 0.9582, - y: 66.6927, - }, - { - l: '9.0', - x: 0.9774, - y: 66.9262, - }, - { - l: '9.0', - x: 0.9966, - y: 67.1573, - }, - { - l: '9.0', - x: 1.0157, - y: 67.384, - }, - { - l: '9.0', - x: 1.0349, - y: 67.6058, - }, - { - l: '9.0', - x: 1.0541, - y: 67.822, - }, - { - l: '9.0', - x: 1.0732, - y: 68.0316, - }, - { - l: '9.0', - x: 1.0924, - y: 68.2264, - }, - { - l: '9.0', - x: 1.1116, - y: 68.4104, - }, - { - l: '9.0', - x: 1.1307, - y: 68.5899, - }, - { - l: '9.0', - x: 1.1499, - y: 68.7676, - }, - { - l: '9.0', - x: 1.1691, - y: 68.9458, - }, - { - l: '9.0', - x: 1.1882, - y: 69.1374, - }, - { - l: '9.0', - x: 1.2074, - y: 69.331, - }, - { - l: '9.0', - x: 1.2266, - y: 69.525, - }, - { - l: '9.0', - x: 1.2457, - y: 69.7182, - }, - { - l: '9.0', - x: 1.2649, - y: 69.9091, - }, - { - l: '9.0', - x: 1.2841, - y: 70.097, - }, - { - l: '9.0', - x: 1.3032, - y: 70.281, - }, - { - l: '9.0', - x: 1.3224, - y: 70.4603, - }, - { - l: '9.0', - x: 1.3415, - y: 70.6279, - }, - { - l: '9.0', - x: 1.3607, - y: 70.7864, - }, - { - l: '9.0', - x: 1.3799, - y: 70.9415, - }, - { - l: '9.0', - x: 1.399, - y: 71.0954, - }, - { - l: '9.0', - x: 1.4182, - y: 71.2501, - }, - { - l: '9.0', - x: 1.4374, - y: 71.4161, - }, - { - l: '9.0', - x: 1.4565, - y: 71.5846, - }, - { - l: '9.0', - x: 1.4757, - y: 71.7538, - }, - { - l: '9.0', - x: 1.4949, - y: 71.9227, - }, - { - l: '9.0', - x: 1.514, - y: 72.0898, - }, - { - l: '9.0', - x: 1.5332, - y: 72.2546, - }, - { - l: '9.0', - x: 1.5524, - y: 72.4163, - }, - { - l: '9.0', - x: 1.5715, - y: 72.574, - }, - { - l: '9.0', - x: 1.5907, - y: 72.7221, - }, - { - l: '9.0', - x: 1.6099, - y: 72.8619, - }, - { - l: '9.0', - x: 1.629, - y: 72.9988, - }, - { - l: '9.0', - x: 1.6482, - y: 73.1348, - }, - { - l: '9.0', - x: 1.6674, - y: 73.2716, - }, - { - l: '9.0', - x: 1.6865, - y: 73.4183, - }, - { - l: '9.0', - x: 1.7057, - y: 73.5678, - }, - { - l: '9.0', - x: 1.7248, - y: 73.7182, - }, - { - l: '9.0', - x: 1.744, - y: 73.8685, - }, - { - l: '9.0', - x: 1.7632, - y: 74.0175, - }, - { - l: '9.0', - x: 1.7823, - y: 74.1647, - }, - { - l: '9.0', - x: 1.8015, - y: 74.3093, - }, - { - l: '9.0', - x: 1.8207, - y: 74.4507, - }, - { - l: '9.0', - x: 1.8398, - y: 74.5839, - }, - { - l: '9.0', - x: 1.859, - y: 74.7095, - }, - { - l: '9.0', - x: 1.8782, - y: 74.8327, - }, - { - l: '9.0', - x: 1.8973, - y: 74.9551, - }, - { - l: '9.0', - x: 1.9165, - y: 75.0785, - }, - { - l: '9.0', - x: 1.9357, - y: 75.2106, - }, - { - l: '9.0', - x: 1.9548, - y: 75.346, - }, - { - l: '9.0', - x: 1.974, - y: 75.4824, - }, - { - l: '9.0', - x: 1.9932, - y: 75.619, - }, - { - l: '9.0', - x: 2.0123, - y: 75.7549, - }, - { - l: '9.0', - x: 2.0957, - y: 76.3153, - }, - { - l: '9.0', - x: 2.179, - y: 76.8159, - }, - { - l: '9.0', - x: 2.2623, - y: 77.3661, - }, - { - l: '9.0', - x: 2.3457, - y: 77.8908, - }, - { - l: '9.0', - x: 2.429, - y: 78.3624, - }, - { - l: '9.0', - x: 2.5123, - y: 78.8838, - }, - { - l: '9.0', - x: 2.5957, - y: 79.3841, - }, - { - l: '9.0', - x: 2.679, - y: 79.8357, - }, - { - l: '9.0', - x: 2.7623, - y: 80.3359, - }, - { - l: '9.0', - x: 2.8457, - y: 80.8164, - }, - { - l: '9.0', - x: 2.929, - y: 81.2507, - }, - { - l: '9.0', - x: 3.0123, - y: 81.733, - }, - { - l: '9.0', - x: 3.0957, - y: 82.1984, - }, - { - l: '9.0', - x: 3.179, - y: 82.6213, - }, - { - l: '9.0', - x: 3.2623, - y: 83.0934, - }, - { - l: '9.0', - x: 3.3457, - y: 83.5513, - }, - { - l: '9.0', - x: 3.429, - y: 83.9689, - }, - { - l: '9.0', - x: 3.5123, - y: 84.4368, - }, - { - l: '9.0', - x: 3.5957, - y: 84.8918, - }, - { - l: '9.0', - x: 3.679, - y: 85.3081, - }, - { - l: '9.0', - x: 3.7623, - y: 85.7758, - }, - { - l: '9.0', - x: 3.8457, - y: 86.2324, - }, - { - l: '9.0', - x: 3.929, - y: 86.6519, - }, - { - l: '9.0', - x: 4.0123, - y: 87.1247, - }, - { - l: '9.0', - x: 4.0957, - y: 87.5868, - }, - { - l: '9.0', - x: 4.179, - y: 88.0112, - }, - { - l: '9.0', - x: 4.2623, - y: 88.4889, - }, - { - l: '9.0', - x: 4.3457, - y: 88.9549, - }, - { - l: '9.0', - x: 4.429, - y: 89.3822, - }, - { - l: '9.0', - x: 4.5123, - y: 89.8633, - }, - { - l: '9.0', - x: 4.5957, - y: 90.3339, - }, - { - l: '9.0', - x: 4.679, - y: 90.767, - }, - { - l: '9.0', - x: 4.7623, - y: 91.2559, - }, - { - l: '9.0', - x: 4.8457, - y: 91.7346, - }, - { - l: '9.0', - x: 4.929, - y: 92.1747, - }, - { - l: '9.0', - x: 5.0123, - y: 92.6703, - }, - { - l: '9.0', - x: 5.0957, - y: 93.1541, - }, - { - l: '9.0', - x: 5.179, - y: 93.5976, - }, - { - l: '9.0', - x: 5.2623, - y: 94.0958, - }, - { - l: '9.0', - x: 5.3457, - y: 94.5804, - }, - { - l: '9.0', - x: 5.429, - y: 95.0232, - }, - { - l: '9.0', - x: 5.5123, - y: 95.5188, - }, - { - l: '9.0', - x: 5.5957, - y: 95.9999, - }, - { - l: '9.0', - x: 5.679, - y: 96.4384, - }, - { - l: '9.0', - x: 5.7623, - y: 96.9286, - }, - { - l: '9.0', - x: 5.8457, - y: 97.4036, - }, - { - l: '9.0', - x: 5.929, - y: 97.8363, - }, - { - l: '9.0', - x: 6.0123, - y: 98.3199, - }, - { - l: '9.0', - x: 6.0957, - y: 98.7886, - }, - { - l: '9.0', - x: 6.179, - y: 99.2155, - }, - { - l: '9.0', - x: 6.2623, - y: 99.6921, - }, - { - l: '9.0', - x: 6.3457, - y: 100.1538, - }, - { - l: '9.0', - x: 6.429, - y: 100.5737, - }, - { - l: '9.0', - x: 6.5123, - y: 101.0425, - }, - { - l: '9.0', - x: 6.5957, - y: 101.4962, - }, - { - l: '9.0', - x: 6.679, - y: 101.9089, - }, - { - l: '9.0', - x: 6.7623, - y: 102.3691, - }, - { - l: '9.0', - x: 6.8457, - y: 102.8138, - }, - { - l: '9.0', - x: 6.929, - y: 103.2173, - }, - { - l: '9.0', - x: 7.0123, - y: 103.6663, - }, - { - l: '9.0', - x: 7.0957, - y: 104.0993, - }, - { - l: '9.0', - x: 7.179, - y: 104.4915, - }, - { - l: '9.0', - x: 7.2623, - y: 104.9274, - }, - { - l: '9.0', - x: 7.3457, - y: 105.3477, - }, - { - l: '9.0', - x: 7.429, - y: 105.7283, - }, - { - l: '9.0', - x: 7.5123, - y: 106.1516, - }, - { - l: '9.0', - x: 7.5957, - y: 106.5599, - }, - { - l: '9.0', - x: 7.679, - y: 106.9305, - }, - { - l: '9.0', - x: 7.7623, - y: 107.3434, - }, - { - l: '9.0', - x: 7.8457, - y: 107.7427, - }, - { - l: '9.0', - x: 7.929, - y: 108.1056, - }, - { - l: '9.0', - x: 8.0123, - y: 108.5107, - }, - { - l: '9.0', - x: 8.0957, - y: 108.9031, - }, - { - l: '9.0', - x: 8.179, - y: 109.2608, - }, - { - l: '9.0', - x: 8.2623, - y: 109.6608, - }, - { - l: '9.0', - x: 8.3457, - y: 110.0488, - }, - { - l: '9.0', - x: 8.429, - y: 110.4027, - }, - { - l: '9.0', - x: 8.5123, - y: 110.7989, - }, - { - l: '9.0', - x: 8.5957, - y: 111.1843, - }, - { - l: '9.0', - x: 8.679, - y: 111.5372, - }, - { - l: '9.0', - x: 8.7623, - y: 111.934, - }, - { - l: '9.0', - x: 8.8457, - y: 112.3217, - }, - { - l: '9.0', - x: 8.929, - y: 112.6782, - }, - { - l: '9.0', - x: 9.0123, - y: 113.0807, - }, - { - l: '9.0', - x: 9.0957, - y: 113.4749, - }, - { - l: '9.0', - x: 9.179, - y: 113.8377, - }, - { - l: '9.0', - x: 9.2623, - y: 114.2473, - }, - { - l: '9.0', - x: 9.3457, - y: 114.6484, - }, - { - l: '9.0', - x: 9.429, - y: 115.0174, - }, - { - l: '9.0', - x: 9.5123, - y: 115.4336, - }, - { - l: '9.0', - x: 9.5957, - y: 115.8406, - }, - { - l: '9.0', - x: 9.679, - y: 116.2148, - }, - { - l: '9.0', - x: 9.7623, - y: 116.6368, - }, - { - l: '9.0', - x: 9.8457, - y: 117.0501, - }, - { - l: '9.0', - x: 9.929, - y: 117.4304, - }, - { - l: '9.0', - x: 10.0123, - y: 117.8607, - }, - { - l: '9.0', - x: 10.0957, - y: 118.2832, - }, - { - l: '9.0', - x: 10.179, - y: 118.6733, - }, - { - l: '9.0', - x: 10.2623, - y: 119.1153, - }, - { - l: '9.0', - x: 10.3457, - y: 119.5497, - }, - { - l: '9.0', - x: 10.429, - y: 119.9511, - }, - { - l: '9.0', - x: 10.5123, - y: 120.4056, - }, - { - l: '9.0', - x: 10.5957, - y: 120.8523, - }, - { - l: '9.0', - x: 10.679, - y: 121.265, - }, - { - l: '9.0', - x: 10.7623, - y: 121.732, - }, - { - l: '9.0', - x: 10.8457, - y: 122.1912, - }, - { - l: '9.0', - x: 10.929, - y: 122.615, - }, - { - l: '9.0', - x: 11.0123, - y: 123.0949, - }, - { - l: '9.0', - x: 11.0957, - y: 123.5662, - }, - { - l: '9.0', - x: 11.179, - y: 124.0012, - }, - { - l: '9.0', - x: 11.2623, - y: 124.4938, - }, - { - l: '9.0', - x: 11.3457, - y: 124.9776, - }, - { - l: '9.0', - x: 11.429, - y: 125.424, - }, - { - l: '9.0', - x: 11.5123, - y: 125.9287, - }, - { - l: '9.0', - x: 11.5957, - y: 126.4233, - }, - { - l: '9.0', - x: 11.679, - y: 126.8784, - }, - { - l: '9.0', - x: 11.7623, - y: 127.3916, - }, - { - l: '9.0', - x: 11.8457, - y: 127.8937, - }, - { - l: '9.0', - x: 11.929, - y: 128.3549, - }, - { - l: '9.0', - x: 12.0123, - y: 128.8743, - }, - { - l: '9.0', - x: 12.0957, - y: 129.3812, - }, - { - l: '9.0', - x: 12.179, - y: 129.8455, - }, - { - l: '9.0', - x: 12.2623, - y: 130.3667, - }, - { - l: '9.0', - x: 12.3457, - y: 130.8732, - }, - { - l: '9.0', - x: 12.429, - y: 131.3354, - }, - { - l: '9.0', - x: 12.5123, - y: 131.8519, - }, - { - l: '9.0', - x: 12.5957, - y: 132.3517, - }, - { - l: '9.0', - x: 12.679, - y: 132.8054, - }, - { - l: '9.0', - x: 12.7623, - y: 133.3096, - }, - { - l: '9.0', - x: 12.8457, - y: 133.7955, - }, - { - l: '9.0', - x: 12.929, - y: 134.2339, - }, - { - l: '9.0', - x: 13.0123, - y: 134.7191, - }, - { - l: '9.0', - x: 13.0957, - y: 135.1844, - }, - { - l: '9.0', - x: 13.179, - y: 135.6031, - }, - { - l: '9.0', - x: 13.2623, - y: 136.0655, - }, - { - l: '9.0', - x: 13.3457, - y: 136.508, - }, - { - l: '9.0', - x: 13.429, - y: 136.905, - }, - { - l: '9.0', - x: 13.5123, - y: 137.3427, - }, - { - l: '9.0', - x: 13.5957, - y: 137.7603, - }, - { - l: '9.0', - x: 13.679, - y: 138.1331, - }, - { - l: '9.0', - x: 13.7623, - y: 138.5425, - }, - { - l: '9.0', - x: 13.8457, - y: 138.9302, - }, - { - l: '9.0', - x: 13.929, - y: 139.2766, - }, - { - l: '9.0', - x: 14.0123, - y: 139.6542, - }, - { - l: '9.0', - x: 14.0957, - y: 140.0107, - }, - { - l: '9.0', - x: 14.179, - y: 140.3269, - }, - { - l: '9.0', - x: 14.2623, - y: 140.6713, - }, - { - l: '9.0', - x: 14.3457, - y: 140.9959, - }, - { - l: '9.0', - x: 14.429, - y: 141.2832, - }, - { - l: '9.0', - x: 14.5123, - y: 141.5956, - }, - { - l: '9.0', - x: 14.5957, - y: 141.8898, - }, - { - l: '9.0', - x: 14.679, - y: 142.1497, - }, - { - l: '9.0', - x: 14.7623, - y: 142.4319, - }, - { - l: '9.0', - x: 14.8457, - y: 142.6973, - }, - { - l: '9.0', - x: 14.929, - y: 142.9311, - }, - { - l: '9.0', - x: 15.0123, - y: 143.1844, - }, - { - l: '9.0', - x: 15.0957, - y: 143.4247, - }, - { - l: '9.0', - x: 15.179, - y: 143.6357, - }, - { - l: '9.0', - x: 15.2623, - y: 143.8648, - }, - { - l: '9.0', - x: 15.3457, - y: 144.0802, - }, - { - l: '9.0', - x: 15.429, - y: 144.2714, - }, - { - l: '9.0', - x: 15.5123, - y: 144.4786, - }, - { - l: '9.0', - x: 15.5957, - y: 144.6743, - }, - { - l: '9.0', - x: 15.679, - y: 144.8471, - }, - { - l: '9.0', - x: 15.7623, - y: 145.0345, - }, - { - l: '9.0', - x: 15.8457, - y: 145.2126, - }, - { - l: '9.0', - x: 15.929, - y: 145.3692, - }, - { - l: '9.0', - x: 16.0123, - y: 145.5394, - }, - { - l: '9.0', - x: 16.0957, - y: 145.6994, - }, - { - l: '9.0', - x: 16.179, - y: 145.8411, - }, - { - l: '9.0', - x: 16.2623, - y: 145.9958, - }, - { - l: '9.0', - x: 16.3457, - y: 146.1416, - }, - { - l: '9.0', - x: 16.429, - y: 146.2713, - }, - { - l: '9.0', - x: 16.5123, - y: 146.4122, - }, - { - l: '9.0', - x: 16.5957, - y: 146.5456, - }, - { - l: '9.0', - x: 16.679, - y: 146.6641, - }, - { - l: '9.0', - x: 16.7623, - y: 146.7935, - }, - { - l: '9.0', - x: 16.8457, - y: 146.916, - }, - { - l: '9.0', - x: 16.929, - y: 147.0248, - }, - { - l: '9.0', - x: 17.0123, - y: 147.1437, - }, - { - l: '9.0', - x: 17.0957, - y: 147.2556, - }, - { - l: '9.0', - x: 17.179, - y: 147.3557, - }, - { - l: '9.0', - x: 17.2623, - y: 147.4661, - }, - { - l: '9.0', - x: 17.3457, - y: 147.5692, - }, - { - l: '9.0', - x: 17.429, - y: 147.6623, - }, - { - l: '9.0', - x: 17.5123, - y: 147.7639, - }, - { - l: '9.0', - x: 17.5957, - y: 147.8595, - }, - { - l: '9.0', - x: 17.679, - y: 147.9443, - }, - { - l: '9.0', - x: 17.7623, - y: 148.0387, - }, - { - l: '9.0', - x: 17.8457, - y: 148.1271, - }, - { - l: '9.0', - x: 17.929, - y: 148.2057, - }, - { - l: '9.0', - x: 18.0123, - y: 148.2913, - }, - { - l: '9.0', - x: 18.0957, - y: 148.3722, - }, - { - l: '9.0', - x: 18.179, - y: 148.4438, - }, - { - l: '9.0', - x: 18.2623, - y: 148.5227, - }, - { - l: '9.0', - x: 18.3457, - y: 148.5954, - }, - { - l: '9.0', - x: 18.429, - y: 148.6601, - }, - { - l: '9.0', - x: 18.5123, - y: 148.733, - }, - { - l: '9.0', - x: 18.5957, - y: 148.8032, - }, - { - l: '9.0', - x: 18.679, - y: 148.8631, - }, - { - l: '9.0', - x: 18.7623, - y: 148.929, - }, - { - l: '9.0', - x: 18.8457, - y: 148.9908, - }, - { - l: '9.0', - x: 18.929, - y: 149.0458, - }, - { - l: '9.0', - x: 19.0123, - y: 149.1033, - }, - { - l: '9.0', - x: 19.0957, - y: 149.1597, - }, - { - l: '9.0', - x: 19.179, - y: 149.2102, - }, - { - l: '9.0', - x: 19.2623, - y: 149.2589, - }, - { - l: '9.0', - x: 19.3457, - y: 149.3063, - }, - { - l: '9.0', - x: 19.429, - y: 149.3496, - }, - { - l: '9.0', - x: 19.5123, - y: 149.3983, - }, - { - l: '9.0', - x: 19.5957, - y: 149.4457, - }, - { - l: '9.0', - x: 19.679, - y: 149.4873, - }, - { - l: '9.0', - x: 19.7623, - y: 149.5286, - }, - { - l: '9.0', - x: 19.8457, - y: 149.568, - }, - { - l: '9.0', - x: 19.929, - y: 149.6011, - }, + { l: 9.0, x: 0, y: 46.1551 }, + { l: 9.0, x: 0.08, y: 48.6517 }, + { l: 9.0, x: 0.17, y: 51.1159 }, + { l: 9.0, x: 0.25, y: 53.4872 }, + { l: 9.0, x: 0.33, y: 55.7166 }, + { l: 9.0, x: 0.42, y: 57.7673 }, + { l: 9.0, x: 0.5, y: 59.6141 }, + { l: 9.0, x: 0.58, y: 61.251 }, + { l: 9.0, x: 0.67, y: 62.6969 }, + { l: 9.0, x: 0.75, y: 63.9845 }, + { l: 9.0, x: 0.83, y: 65.1443 }, + { l: 9.0, x: 0.92, y: 66.2007 }, + { l: 9.0, x: 1, y: 67.1738 }, + { l: 9.0, x: 1.08, y: 68.0792 }, + { l: 9.0, x: 1.17, y: 68.9297 }, + { l: 9.0, x: 1.25, y: 69.7361 }, + { l: 9.0, x: 1.33, y: 70.5048 }, + { l: 9.0, x: 1.42, y: 71.2392 }, + { l: 9.0, x: 1.5, y: 71.942 }, + { l: 9.0, x: 1.58, y: 72.6164 }, + { l: 9.0, x: 1.67, y: 73.2647 }, + { l: 9.0, x: 1.75, y: 73.889 }, + { l: 9.0, x: 1.83, y: 74.4917 }, + { l: 9.0, x: 1.92, y: 75.0747 }, + { l: 9.0, x: 2, y: 75.6409 }, + { l: 9.0, x: 2.08, y: 76.1924 }, + { l: 9.0, x: 2.17, y: 76.7308 }, + { l: 9.0, x: 2.25, y: 77.2574 }, + { l: 9.0, x: 2.33, y: 77.7732 }, + { l: 9.0, x: 2.42, y: 78.2799 }, + { l: 9.0, x: 2.5, y: 78.7786 }, + { l: 9.0, x: 2.58, y: 79.2701 }, + { l: 9.0, x: 2.67, y: 79.7549 }, + { l: 9.0, x: 2.75, y: 80.2332 }, + { l: 9.0, x: 2.83, y: 80.7052 }, + { l: 9.0, x: 2.92, y: 81.1713 }, + { l: 9.0, x: 3, y: 81.6322 }, + { l: 9.0, x: 3.08, y: 82.0891 }, + { l: 9.0, x: 3.17, y: 82.5425 }, + { l: 9.0, x: 3.25, y: 82.9935 }, + { l: 9.0, x: 3.33, y: 83.4425 }, + { l: 9.0, x: 3.42, y: 83.8902 }, + { l: 9.0, x: 3.5, y: 84.3368 }, + { l: 9.0, x: 3.58, y: 84.7829 }, + { l: 9.0, x: 3.67, y: 85.2289 }, + { l: 9.0, x: 3.75, y: 85.6751 }, + { l: 9.0, x: 3.83, y: 86.1225 }, + { l: 9.0, x: 3.92, y: 86.5716 }, + { l: 9.0, x: 4, y: 87.0226 }, + { l: 9.0, x: 4.08, y: 87.4754 }, + { l: 9.0, x: 4.17, y: 87.9298 }, + { l: 9.0, x: 4.25, y: 88.3855 }, + { l: 9.0, x: 4.33, y: 88.8422 }, + { l: 9.0, x: 4.42, y: 89.2998 }, + { l: 9.0, x: 4.5, y: 89.7587 }, + { l: 9.0, x: 4.58, y: 90.2196 }, + { l: 9.0, x: 4.67, y: 90.6831 }, + { l: 9.0, x: 4.75, y: 91.1494 }, + { l: 9.0, x: 4.83, y: 91.6183 }, + { l: 9.0, x: 4.92, y: 92.0894 }, + { l: 9.0, x: 5, y: 92.5622 }, + { l: 9.0, x: 5.08, y: 93.0363 }, + { l: 9.0, x: 5.17, y: 93.5113 }, + { l: 9.0, x: 5.25, y: 93.9867 }, + { l: 9.0, x: 5.33, y: 94.4619 }, + { l: 9.0, x: 5.42, y: 94.9363 }, + { l: 9.0, x: 5.5, y: 95.4095 }, + { l: 9.0, x: 5.58, y: 95.8813 }, + { l: 9.0, x: 5.67, y: 96.3513 }, + { l: 9.0, x: 5.75, y: 96.8194 }, + { l: 9.0, x: 5.83, y: 97.2853 }, + { l: 9.0, x: 5.92, y: 97.7492 }, + { l: 9.0, x: 6, y: 98.211 }, + { l: 9.0, x: 6.08, y: 98.6707 }, + { l: 9.0, x: 6.17, y: 99.1283 }, + { l: 9.0, x: 6.25, y: 99.5835 }, + { l: 9.0, x: 6.33, y: 100.0364 }, + { l: 9.0, x: 6.42, y: 100.4866 }, + { l: 9.0, x: 6.5, y: 100.9344 }, + { l: 9.0, x: 6.58, y: 101.3795 }, + { l: 9.0, x: 6.67, y: 101.822 }, + { l: 9.0, x: 6.75, y: 102.2616 }, + { l: 9.0, x: 6.83, y: 102.698 }, + { l: 9.0, x: 6.92, y: 103.1308 }, + { l: 9.0, x: 7, y: 103.5599 }, + { l: 9.0, x: 7.08, y: 103.9849 }, + { l: 9.0, x: 7.17, y: 104.4057 }, + { l: 9.0, x: 7.25, y: 104.8223 }, + { l: 9.0, x: 7.33, y: 105.2348 }, + { l: 9.0, x: 7.42, y: 105.6432 }, + { l: 9.0, x: 7.5, y: 106.0477 }, + { l: 9.0, x: 7.58, y: 106.4485 }, + { l: 9.0, x: 7.67, y: 106.846 }, + { l: 9.0, x: 7.75, y: 107.2404 }, + { l: 9.0, x: 7.83, y: 107.6321 }, + { l: 9.0, x: 7.92, y: 108.0213 }, + { l: 9.0, x: 8, y: 108.4081 }, + { l: 9.0, x: 8.08, y: 108.7931 }, + { l: 9.0, x: 8.17, y: 109.1765 }, + { l: 9.0, x: 8.25, y: 109.5584 }, + { l: 9.0, x: 8.33, y: 109.939 }, + { l: 9.0, x: 8.42, y: 110.3182 }, + { l: 9.0, x: 8.5, y: 110.6965 }, + { l: 9.0, x: 8.58, y: 111.0743 }, + { l: 9.0, x: 8.67, y: 111.4523 }, + { l: 9.0, x: 8.75, y: 111.8308 }, + { l: 9.0, x: 8.83, y: 112.2107 }, + { l: 9.0, x: 8.92, y: 112.5922 }, + { l: 9.0, x: 9, y: 112.9761 }, + { l: 9.0, x: 9.08, y: 113.3621 }, + { l: 9.0, x: 9.17, y: 113.7504 }, + { l: 9.0, x: 9.25, y: 114.141 }, + { l: 9.0, x: 9.33, y: 114.5339 }, + { l: 9.0, x: 9.42, y: 114.9289 }, + { l: 9.0, x: 9.5, y: 115.3258 }, + { l: 9.0, x: 9.58, y: 115.7246 }, + { l: 9.0, x: 9.67, y: 116.1251 }, + { l: 9.0, x: 9.75, y: 116.5276 }, + { l: 9.0, x: 9.83, y: 116.9324 }, + { l: 9.0, x: 9.92, y: 117.3395 }, + { l: 9.0, x: 10, y: 117.7497 }, + { l: 9.0, x: 10.08, y: 118.1633 }, + { l: 9.0, x: 10.17, y: 118.5807 }, + { l: 9.0, x: 10.25, y: 119.002 }, + { l: 9.0, x: 10.33, y: 119.4273 }, + { l: 9.0, x: 10.42, y: 119.8566 }, + { l: 9.0, x: 10.5, y: 120.29 }, + { l: 9.0, x: 10.58, y: 120.7273 }, + { l: 9.0, x: 10.67, y: 121.1688 }, + { l: 9.0, x: 10.75, y: 121.6139 }, + { l: 9.0, x: 10.83, y: 122.0635 }, + { l: 9.0, x: 10.92, y: 122.517 }, + { l: 9.0, x: 11, y: 122.9745 }, + { l: 9.0, x: 11.08, y: 123.436 }, + { l: 9.0, x: 11.17, y: 123.9014 }, + { l: 9.0, x: 11.25, y: 124.3711 }, + { l: 9.0, x: 11.33, y: 124.8448 }, + { l: 9.0, x: 11.42, y: 125.3225 }, + { l: 9.0, x: 11.5, y: 125.8038 }, + { l: 9.0, x: 11.58, y: 126.2882 }, + { l: 9.0, x: 11.67, y: 126.7755 }, + { l: 9.0, x: 11.75, y: 127.2651 }, + { l: 9.0, x: 11.83, y: 127.7571 }, + { l: 9.0, x: 11.92, y: 128.2509 }, + { l: 9.0, x: 12, y: 128.7466 }, + { l: 9.0, x: 12.08, y: 129.2435 }, + { l: 9.0, x: 12.17, y: 129.741 }, + { l: 9.0, x: 12.25, y: 130.2386 }, + { l: 9.0, x: 12.33, y: 130.7354 }, + { l: 9.0, x: 12.42, y: 131.2309 }, + { l: 9.0, x: 12.5, y: 131.7243 }, + { l: 9.0, x: 12.58, y: 132.2149 }, + { l: 9.0, x: 12.67, y: 132.7018 }, + { l: 9.0, x: 12.75, y: 133.1838 }, + { l: 9.0, x: 12.83, y: 133.6612 }, + { l: 9.0, x: 12.92, y: 134.132 }, + { l: 9.0, x: 13, y: 134.5961 }, + { l: 9.0, x: 13.08, y: 135.0534 }, + { l: 9.0, x: 13.17, y: 135.5034 }, + { l: 9.0, x: 13.25, y: 135.9458 }, + { l: 9.0, x: 13.33, y: 136.3809 }, + { l: 9.0, x: 13.42, y: 136.8077 }, + { l: 9.0, x: 13.5, y: 137.2266 }, + { l: 9.0, x: 13.58, y: 137.6376 }, + { l: 9.0, x: 13.67, y: 138.0386 }, + { l: 9.0, x: 13.75, y: 138.4309 }, + { l: 9.0, x: 13.83, y: 138.8124 }, + { l: 9.0, x: 13.92, y: 139.1853 }, + { l: 9.0, x: 14, y: 139.5472 }, + { l: 9.0, x: 14.08, y: 139.8985 }, + { l: 9.0, x: 14.17, y: 140.2391 }, + { l: 9.0, x: 14.25, y: 140.5693 }, + { l: 9.0, x: 14.33, y: 140.8891 }, + { l: 9.0, x: 14.42, y: 141.1987 }, + { l: 9.0, x: 14.5, y: 141.4982 }, + { l: 9.0, x: 14.58, y: 141.7883 }, + { l: 9.0, x: 14.67, y: 142.0684 }, + { l: 9.0, x: 14.75, y: 142.339 }, + { l: 9.0, x: 14.83, y: 142.6007 }, + { l: 9.0, x: 14.92, y: 142.8529 }, + { l: 9.0, x: 15, y: 143.0956 }, + { l: 9.0, x: 15.08, y: 143.3325 }, + { l: 9.0, x: 15.17, y: 143.5601 }, + { l: 9.0, x: 15.25, y: 143.7798 }, + { l: 9.0, x: 15.33, y: 143.992 }, + { l: 9.0, x: 15.42, y: 144.1981 }, + { l: 9.0, x: 15.5, y: 144.3967 }, + { l: 9.0, x: 15.58, y: 144.5896 }, + { l: 9.0, x: 15.67, y: 144.776 }, + { l: 9.0, x: 15.75, y: 144.9554 }, + { l: 9.0, x: 15.83, y: 145.131 }, + { l: 9.0, x: 15.92, y: 145.2998 }, + { l: 9.0, x: 16, y: 145.4631 }, + { l: 9.0, x: 16.08, y: 145.6209 }, + { l: 9.0, x: 16.17, y: 145.7735 }, + { l: 9.0, x: 16.25, y: 145.9218 }, + { l: 9.0, x: 16.33, y: 146.0653 }, + { l: 9.0, x: 16.42, y: 146.2051 }, + { l: 9.0, x: 16.5, y: 146.3402 }, + { l: 9.0, x: 16.58, y: 146.4715 }, + { l: 9.0, x: 16.67, y: 146.5992 }, + { l: 9.0, x: 16.75, y: 146.7231 }, + { l: 9.0, x: 16.83, y: 146.8438 }, + { l: 9.0, x: 16.92, y: 146.961 }, + { l: 9.0, x: 17, y: 147.0751 }, + { l: 9.0, x: 17.08, y: 147.1852 }, + { l: 9.0, x: 17.17, y: 147.2929 }, + { l: 9.0, x: 17.25, y: 147.3988 }, + { l: 9.0, x: 17.33, y: 147.5002 }, + { l: 9.0, x: 17.42, y: 147.6004 }, + { l: 9.0, x: 17.5, y: 147.6977 }, + { l: 9.0, x: 17.58, y: 147.7921 }, + { l: 9.0, x: 17.67, y: 147.8831 }, + { l: 9.0, x: 17.75, y: 147.9738 }, + { l: 9.0, x: 17.83, y: 148.0609 }, + { l: 9.0, x: 17.92, y: 148.1455 }, + { l: 9.0, x: 18, y: 148.2275 }, + { l: 9.0, x: 18.08, y: 148.3073 }, + { l: 9.0, x: 18.17, y: 148.3842 }, + { l: 9.0, x: 18.25, y: 148.4601 }, + { l: 9.0, x: 18.33, y: 148.5319 }, + { l: 9.0, x: 18.42, y: 148.6014 }, + { l: 9.0, x: 18.5, y: 148.6709 }, + { l: 9.0, x: 18.58, y: 148.7404 }, + { l: 9.0, x: 18.67, y: 148.805 }, + { l: 9.0, x: 18.75, y: 148.8683 }, + { l: 9.0, x: 18.83, y: 148.929 }, + { l: 9.0, x: 18.92, y: 148.9886 }, + { l: 9.0, x: 19, y: 149.0436 }, + { l: 9.0, x: 19.08, y: 149.0987 }, + { l: 9.0, x: 19.17, y: 149.1537 }, + { l: 9.0, x: 19.25, y: 149.2005 }, + { l: 9.0, x: 19.33, y: 149.247 }, + { l: 9.0, x: 19.42, y: 149.2935 }, + { l: 9.0, x: 19.5, y: 149.34 }, + { l: 9.0, x: 19.58, y: 149.3864 }, + { l: 9.0, x: 19.67, y: 149.4317 }, + { l: 9.0, x: 19.75, y: 149.4713 }, + { l: 9.0, x: 19.83, y: 149.5104 }, + { l: 9.0, x: 19.92, y: 149.5462 }, + { l: 9.0, x: 20, y: 149.5804 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 0.0, - y: 47.838, - }, - { - l: '25.0', - x: 0.0192, - y: 48.453, - }, - { - l: '25.0', - x: 0.0383, - y: 49.0682, - }, - { - l: '25.0', - x: 0.0575, - y: 49.6834, - }, - { - l: '25.0', - x: 0.0767, - y: 50.2987, - }, - { - l: '25.0', - x: 0.0958, - y: 50.8621, - }, - { - l: '25.0', - x: 0.115, - y: 51.4029, - }, - { - l: '25.0', - x: 0.1342, - y: 51.9369, - }, - { - l: '25.0', - x: 0.1533, - y: 52.4702, - }, - { - l: '25.0', - x: 0.1725, - y: 53.0136, - }, - { - l: '25.0', - x: 0.1916, - y: 53.5948, - }, - { - l: '25.0', - x: 0.2108, - y: 54.1805, - }, - { - l: '25.0', - x: 0.23, - y: 54.7664, - }, - { - l: '25.0', - x: 0.2491, - y: 55.3483, - }, - { - l: '25.0', - x: 0.2683, - y: 55.9193, - }, - { - l: '25.0', - x: 0.2875, - y: 56.4785, - }, - { - l: '25.0', - x: 0.3066, - y: 57.023, - }, - { - l: '25.0', - x: 0.3258, - y: 57.5493, - }, - { - l: '25.0', - x: 0.345, - y: 58.0322, - }, - { - l: '25.0', - x: 0.3641, - y: 58.4896, - }, - { - l: '25.0', - x: 0.3833, - y: 58.9332, - }, - { - l: '25.0', - x: 0.4025, - y: 59.3685, - }, - { - l: '25.0', - x: 0.4216, - y: 59.8033, - }, - { - l: '25.0', - x: 0.4408, - y: 60.2639, - }, - { - l: '25.0', - x: 0.46, - y: 60.7218, - }, - { - l: '25.0', - x: 0.4791, - y: 61.1738, - }, - { - l: '25.0', - x: 0.4983, - y: 61.6168, - }, - { - l: '25.0', - x: 0.5175, - y: 62.0437, - }, - { - l: '25.0', - x: 0.5366, - y: 62.4564, - }, - { - l: '25.0', - x: 0.5558, - y: 62.8535, - }, - { - l: '25.0', - x: 0.5749, - y: 63.2335, - }, - { - l: '25.0', - x: 0.5941, - y: 63.5801, - }, - { - l: '25.0', - x: 0.6133, - y: 63.9045, - }, - { - l: '25.0', - x: 0.6324, - y: 64.2164, - }, - { - l: '25.0', - x: 0.6516, - y: 64.5203, - }, - { - l: '25.0', - x: 0.6708, - y: 64.8217, - }, - { - l: '25.0', - x: 0.6899, - y: 65.1419, - }, - { - l: '25.0', - x: 0.7091, - y: 65.4601, - }, - { - l: '25.0', - x: 0.7283, - y: 65.7745, - }, - { - l: '25.0', - x: 0.7474, - y: 66.0834, - }, - { - l: '25.0', - x: 0.7666, - y: 66.3833, - }, - { - l: '25.0', - x: 0.7858, - y: 66.6745, - }, - { - l: '25.0', - x: 0.8049, - y: 66.9562, - }, - { - l: '25.0', - x: 0.8241, - y: 67.2273, - }, - { - l: '25.0', - x: 0.8433, - y: 67.477, - }, - { - l: '25.0', - x: 0.8624, - y: 67.712, - }, - { - l: '25.0', - x: 0.8816, - y: 67.9397, - }, - { - l: '25.0', - x: 0.9008, - y: 68.1633, - }, - { - l: '25.0', - x: 0.9199, - y: 68.3861, - }, - { - l: '25.0', - x: 0.9391, - y: 68.6252, - }, - { - l: '25.0', - x: 0.9582, - y: 68.8645, - }, - { - l: '25.0', - x: 0.9774, - y: 69.1029, - }, - { - l: '25.0', - x: 0.9966, - y: 69.3389, - }, - { - l: '25.0', - x: 1.0157, - y: 69.5704, - }, - { - l: '25.0', - x: 1.0349, - y: 69.7969, - }, - { - l: '25.0', - x: 1.0541, - y: 70.0176, - }, - { - l: '25.0', - x: 1.0732, - y: 70.2317, - }, - { - l: '25.0', - x: 1.0924, - y: 70.4306, - }, - { - l: '25.0', - x: 1.1116, - y: 70.6185, - }, - { - l: '25.0', - x: 1.1307, - y: 70.802, - }, - { - l: '25.0', - x: 1.1499, - y: 70.9835, - }, - { - l: '25.0', - x: 1.1691, - y: 71.1656, - }, - { - l: '25.0', - x: 1.1882, - y: 71.3614, - }, - { - l: '25.0', - x: 1.2074, - y: 71.5594, - }, - { - l: '25.0', - x: 1.2266, - y: 71.7577, - }, - { - l: '25.0', - x: 1.2457, - y: 71.9553, - }, - { - l: '25.0', - x: 1.2649, - y: 72.1505, - }, - { - l: '25.0', - x: 1.2841, - y: 72.3427, - }, - { - l: '25.0', - x: 1.3032, - y: 72.531, - }, - { - l: '25.0', - x: 1.3224, - y: 72.7145, - }, - { - l: '25.0', - x: 1.3415, - y: 72.886, - }, - { - l: '25.0', - x: 1.3607, - y: 73.0482, - }, - { - l: '25.0', - x: 1.3799, - y: 73.207, - }, - { - l: '25.0', - x: 1.399, - y: 73.3646, - }, - { - l: '25.0', - x: 1.4182, - y: 73.523, - }, - { - l: '25.0', - x: 1.4374, - y: 73.6931, - }, - { - l: '25.0', - x: 1.4565, - y: 73.8658, - }, - { - l: '25.0', - x: 1.4757, - y: 74.0392, - }, - { - l: '25.0', - x: 1.4949, - y: 74.2122, - }, - { - l: '25.0', - x: 1.514, - y: 74.3836, - }, - { - l: '25.0', - x: 1.5332, - y: 74.5525, - }, - { - l: '25.0', - x: 1.5524, - y: 74.7183, - }, - { - l: '25.0', - x: 1.5715, - y: 74.8801, - }, - { - l: '25.0', - x: 1.5907, - y: 75.032, - }, - { - l: '25.0', - x: 1.6099, - y: 75.1754, - }, - { - l: '25.0', - x: 1.629, - y: 75.3159, - }, - { - l: '25.0', - x: 1.6482, - y: 75.4555, - }, - { - l: '25.0', - x: 1.6674, - y: 75.596, - }, - { - l: '25.0', - x: 1.6865, - y: 75.7465, - }, - { - l: '25.0', - x: 1.7057, - y: 75.9001, - }, - { - l: '25.0', - x: 1.7248, - y: 76.0545, - }, - { - l: '25.0', - x: 1.744, - y: 76.2089, - }, - { - l: '25.0', - x: 1.7632, - y: 76.362, - }, - { - l: '25.0', - x: 1.7823, - y: 76.5132, - }, - { - l: '25.0', - x: 1.8015, - y: 76.6619, - }, - { - l: '25.0', - x: 1.8207, - y: 76.8072, - }, - { - l: '25.0', - x: 1.8398, - y: 76.9442, - }, - { - l: '25.0', - x: 1.859, - y: 77.0733, - }, - { - l: '25.0', - x: 1.8782, - y: 77.1999, - }, - { - l: '25.0', - x: 1.8973, - y: 77.3259, - }, - { - l: '25.0', - x: 1.9165, - y: 77.4528, - }, - { - l: '25.0', - x: 1.9357, - y: 77.5887, - }, - { - l: '25.0', - x: 1.9548, - y: 77.7281, - }, - { - l: '25.0', - x: 1.974, - y: 77.8684, - }, - { - l: '25.0', - x: 1.9932, - y: 78.009, - }, - { - l: '25.0', - x: 2.0123, - y: 78.1489, - }, - { - l: '25.0', - x: 2.0957, - y: 78.726, - }, - { - l: '25.0', - x: 2.179, - y: 79.2419, - }, - { - l: '25.0', - x: 2.2623, - y: 79.8092, - }, - { - l: '25.0', - x: 2.3457, - y: 80.3505, - }, - { - l: '25.0', - x: 2.429, - y: 80.8373, - }, - { - l: '25.0', - x: 2.5123, - y: 81.3758, - }, - { - l: '25.0', - x: 2.5957, - y: 81.8927, - }, - { - l: '25.0', - x: 2.679, - y: 82.3595, - }, - { - l: '25.0', - x: 2.7623, - y: 82.8768, - }, - { - l: '25.0', - x: 2.8457, - y: 83.374, - }, - { - l: '25.0', - x: 2.929, - y: 83.8235, - }, - { - l: '25.0', - x: 3.0123, - y: 84.323, - }, - { - l: '25.0', - x: 3.0957, - y: 84.8053, - }, - { - l: '25.0', - x: 3.179, - y: 85.2436, - }, - { - l: '25.0', - x: 3.2623, - y: 85.7332, - }, - { - l: '25.0', - x: 3.3457, - y: 86.2082, - }, - { - l: '25.0', - x: 3.429, - y: 86.6416, - }, - { - l: '25.0', - x: 3.5123, - y: 87.1274, - }, - { - l: '25.0', - x: 3.5957, - y: 87.6001, - }, - { - l: '25.0', - x: 3.679, - y: 88.0326, - }, - { - l: '25.0', - x: 3.7623, - y: 88.5188, - }, - { - l: '25.0', - x: 3.8457, - y: 88.9936, - }, - { - l: '25.0', - x: 3.929, - y: 89.43, - }, - { - l: '25.0', - x: 4.0123, - y: 89.922, - }, - { - l: '25.0', - x: 4.0957, - y: 90.403, - }, - { - l: '25.0', - x: 4.179, - y: 90.8449, - }, - { - l: '25.0', - x: 4.2623, - y: 91.3424, - }, - { - l: '25.0', - x: 4.3457, - y: 91.8279, - }, - { - l: '25.0', - x: 4.429, - y: 92.2733, - }, - { - l: '25.0', - x: 4.5123, - y: 92.7749, - }, - { - l: '25.0', - x: 4.5957, - y: 93.2657, - }, - { - l: '25.0', - x: 4.679, - y: 93.7174, - }, - { - l: '25.0', - x: 4.7623, - y: 94.2276, - }, - { - l: '25.0', - x: 4.8457, - y: 94.7273, - }, - { - l: '25.0', - x: 4.929, - y: 95.1867, - }, - { - l: '25.0', - x: 5.0123, - y: 95.7042, - }, - { - l: '25.0', - x: 5.0957, - y: 96.2095, - }, - { - l: '25.0', - x: 5.179, - y: 96.6729, - }, - { - l: '25.0', - x: 5.2623, - y: 97.1935, - }, - { - l: '25.0', - x: 5.3457, - y: 97.7, - }, - { - l: '25.0', - x: 5.429, - y: 98.1629, - }, - { - l: '25.0', - x: 5.5123, - y: 98.6811, - }, - { - l: '25.0', - x: 5.5957, - y: 99.1843, - }, - { - l: '25.0', - x: 5.679, - y: 99.643, - }, - { - l: '25.0', - x: 5.7623, - y: 100.1558, - }, - { - l: '25.0', - x: 5.8457, - y: 100.6528, - }, - { - l: '25.0', - x: 5.929, - y: 101.1057, - }, - { - l: '25.0', - x: 6.0123, - y: 101.6118, - }, - { - l: '25.0', - x: 6.0957, - y: 102.1024, - }, - { - l: '25.0', - x: 6.179, - y: 102.5492, - }, - { - l: '25.0', - x: 6.2623, - y: 103.0482, - }, - { - l: '25.0', - x: 6.3457, - y: 103.5315, - }, - { - l: '25.0', - x: 6.429, - y: 103.9711, - }, - { - l: '25.0', - x: 6.5123, - y: 104.4619, - }, - { - l: '25.0', - x: 6.5957, - y: 104.9369, - }, - { - l: '25.0', - x: 6.679, - y: 105.3689, - }, - { - l: '25.0', - x: 6.7623, - y: 105.8506, - }, - { - l: '25.0', - x: 6.8457, - y: 106.316, - }, - { - l: '25.0', - x: 6.929, - y: 106.7383, - }, - { - l: '25.0', - x: 7.0123, - y: 107.2082, - }, - { - l: '25.0', - x: 7.0957, - y: 107.6613, - }, - { - l: '25.0', - x: 7.179, - y: 108.0717, - }, - { - l: '25.0', - x: 7.2623, - y: 108.5277, - }, - { - l: '25.0', - x: 7.3457, - y: 108.9673, - }, - { - l: '25.0', - x: 7.429, - y: 109.3655, - }, - { - l: '25.0', - x: 7.5123, - y: 109.8082, - }, - { - l: '25.0', - x: 7.5957, - y: 110.2352, - }, - { - l: '25.0', - x: 7.679, - y: 110.6227, - }, - { - l: '25.0', - x: 7.7623, - y: 111.0544, - }, - { - l: '25.0', - x: 7.8457, - y: 111.4717, - }, - { - l: '25.0', - x: 7.929, - y: 111.851, - }, - { - l: '25.0', - x: 8.0123, - y: 112.2743, - }, - { - l: '25.0', - x: 8.0957, - y: 112.6844, - }, - { - l: '25.0', - x: 8.179, - y: 113.0579, - }, - { - l: '25.0', - x: 8.2623, - y: 113.4757, - }, - { - l: '25.0', - x: 8.3457, - y: 113.8808, - }, - { - l: '25.0', - x: 8.429, - y: 114.2502, - }, - { - l: '25.0', - x: 8.5123, - y: 114.6638, - }, - { - l: '25.0', - x: 8.5957, - y: 115.0659, - }, - { - l: '25.0', - x: 8.679, - y: 115.434, - }, - { - l: '25.0', - x: 8.7623, - y: 115.8478, - }, - { - l: '25.0', - x: 8.8457, - y: 116.252, - }, - { - l: '25.0', - x: 8.929, - y: 116.6235, - }, - { - l: '25.0', - x: 9.0123, - y: 117.0429, - }, - { - l: '25.0', - x: 9.0957, - y: 117.4534, - }, - { - l: '25.0', - x: 9.179, - y: 117.8311, - }, - { - l: '25.0', - x: 9.2623, - y: 118.2574, - }, - { - l: '25.0', - x: 9.3457, - y: 118.6748, - }, - { - l: '25.0', - x: 9.429, - y: 119.0585, - }, - { - l: '25.0', - x: 9.5123, - y: 119.4912, - }, - { - l: '25.0', - x: 9.5957, - y: 119.9141, - }, - { - l: '25.0', - x: 9.679, - y: 120.3028, - }, - { - l: '25.0', - x: 9.7623, - y: 120.7409, - }, - { - l: '25.0', - x: 9.8457, - y: 121.1698, - }, - { - l: '25.0', - x: 9.929, - y: 121.5643, - }, - { - l: '25.0', - x: 10.0123, - y: 122.0104, - }, - { - l: '25.0', - x: 10.0957, - y: 122.4482, - }, - { - l: '25.0', - x: 10.179, - y: 122.8523, - }, - { - l: '25.0', - x: 10.2623, - y: 123.3098, - }, - { - l: '25.0', - x: 10.3457, - y: 123.7592, - }, - { - l: '25.0', - x: 10.429, - y: 124.1742, - }, - { - l: '25.0', - x: 10.5123, - y: 124.6439, - }, - { - l: '25.0', - x: 10.5957, - y: 125.1053, - }, - { - l: '25.0', - x: 10.679, - y: 125.5312, - }, - { - l: '25.0', - x: 10.7623, - y: 126.0129, - }, - { - l: '25.0', - x: 10.8457, - y: 126.4862, - }, - { - l: '25.0', - x: 10.929, - y: 126.9228, - }, - { - l: '25.0', - x: 11.0123, - y: 127.4169, - }, - { - l: '25.0', - x: 11.0957, - y: 127.9016, - }, - { - l: '25.0', - x: 11.179, - y: 128.3489, - }, - { - l: '25.0', - x: 11.2623, - y: 128.8549, - }, - { - l: '25.0', - x: 11.3457, - y: 129.3515, - }, - { - l: '25.0', - x: 11.429, - y: 129.8095, - }, - { - l: '25.0', - x: 11.5123, - y: 130.3267, - }, - { - l: '25.0', - x: 11.5957, - y: 130.8333, - }, - { - l: '25.0', - x: 11.679, - y: 131.2991, - }, - { - l: '25.0', - x: 11.7623, - y: 131.824, - }, - { - l: '25.0', - x: 11.8457, - y: 132.337, - }, - { - l: '25.0', - x: 11.929, - y: 132.8079, - }, - { - l: '25.0', - x: 12.0123, - y: 133.3379, - }, - { - l: '25.0', - x: 12.0957, - y: 133.8546, - }, - { - l: '25.0', - x: 12.179, - y: 134.3275, - }, - { - l: '25.0', - x: 12.2623, - y: 134.858, - }, - { - l: '25.0', - x: 12.3457, - y: 135.3731, - }, - { - l: '25.0', - x: 12.429, - y: 135.8427, - }, - { - l: '25.0', - x: 12.5123, - y: 136.3671, - }, - { - l: '25.0', - x: 12.5957, - y: 136.8742, - }, - { - l: '25.0', - x: 12.679, - y: 137.3341, - }, - { - l: '25.0', - x: 12.7623, - y: 137.8449, - }, - { - l: '25.0', - x: 12.8457, - y: 138.3367, - }, - { - l: '25.0', - x: 12.929, - y: 138.78, - }, - { - l: '25.0', - x: 13.0123, - y: 139.2705, - }, - { - l: '25.0', - x: 13.0957, - y: 139.7403, - }, - { - l: '25.0', - x: 13.179, - y: 140.1628, - }, - { - l: '25.0', - x: 13.2623, - y: 140.6292, - }, - { - l: '25.0', - x: 13.3457, - y: 141.0751, - }, - { - l: '25.0', - x: 13.429, - y: 141.4749, - }, - { - l: '25.0', - x: 13.5123, - y: 141.9154, - }, - { - l: '25.0', - x: 13.5957, - y: 142.3355, - }, - { - l: '25.0', - x: 13.679, - y: 142.7103, - }, - { - l: '25.0', - x: 13.7623, - y: 143.1215, - }, - { - l: '25.0', - x: 13.8457, - y: 143.5108, - }, - { - l: '25.0', - x: 13.929, - y: 143.8584, - }, - { - l: '25.0', - x: 14.0123, - y: 144.2371, - }, - { - l: '25.0', - x: 14.0957, - y: 144.5946, - }, - { - l: '25.0', - x: 14.179, - y: 144.9114, - }, - { - l: '25.0', - x: 14.2623, - y: 145.2563, - }, - { - l: '25.0', - x: 14.3457, - y: 145.5812, - }, - { - l: '25.0', - x: 14.429, - y: 145.8687, - }, - { - l: '25.0', - x: 14.5123, - y: 146.1812, - }, - { - l: '25.0', - x: 14.5957, - y: 146.4755, - }, - { - l: '25.0', - x: 14.679, - y: 146.7353, - }, - { - l: '25.0', - x: 14.7623, - y: 147.0173, - }, - { - l: '25.0', - x: 14.8457, - y: 147.2824, - }, - { - l: '25.0', - x: 14.929, - y: 147.516, - }, - { - l: '25.0', - x: 15.0123, - y: 147.7688, - }, - { - l: '25.0', - x: 15.0957, - y: 148.0087, - }, - { - l: '25.0', - x: 15.179, - y: 148.2193, - }, - { - l: '25.0', - x: 15.2623, - y: 148.4479, - }, - { - l: '25.0', - x: 15.3457, - y: 148.6628, - }, - { - l: '25.0', - x: 15.429, - y: 148.8536, - }, - { - l: '25.0', - x: 15.5123, - y: 149.0601, - }, - { - l: '25.0', - x: 15.5957, - y: 149.2553, - }, - { - l: '25.0', - x: 15.679, - y: 149.4276, - }, - { - l: '25.0', - x: 15.7623, - y: 149.6144, - }, - { - l: '25.0', - x: 15.8457, - y: 149.7919, - }, - { - l: '25.0', - x: 15.929, - y: 149.948, - }, - { - l: '25.0', - x: 16.0123, - y: 150.1176, - }, - { - l: '25.0', - x: 16.0957, - y: 150.2771, - }, - { - l: '25.0', - x: 16.179, - y: 150.4183, - }, - { - l: '25.0', - x: 16.2623, - y: 150.5724, - }, - { - l: '25.0', - x: 16.3457, - y: 150.7176, - }, - { - l: '25.0', - x: 16.429, - y: 150.8469, - }, - { - l: '25.0', - x: 16.5123, - y: 150.9872, - }, - { - l: '25.0', - x: 16.5957, - y: 151.12, - }, - { - l: '25.0', - x: 16.679, - y: 151.2382, - }, - { - l: '25.0', - x: 16.7623, - y: 151.3669, - }, - { - l: '25.0', - x: 16.8457, - y: 151.489, - }, - { - l: '25.0', - x: 16.929, - y: 151.5974, - }, - { - l: '25.0', - x: 17.0123, - y: 151.7158, - }, - { - l: '25.0', - x: 17.0957, - y: 151.8271, - }, - { - l: '25.0', - x: 17.179, - y: 151.9269, - }, - { - l: '25.0', - x: 17.2623, - y: 152.0367, - }, - { - l: '25.0', - x: 17.3457, - y: 152.1394, - }, - { - l: '25.0', - x: 17.429, - y: 152.2321, - }, - { - l: '25.0', - x: 17.5123, - y: 152.3332, - }, - { - l: '25.0', - x: 17.5957, - y: 152.4284, - }, - { - l: '25.0', - x: 17.679, - y: 152.5128, - }, - { - l: '25.0', - x: 17.7623, - y: 152.6068, - }, - { - l: '25.0', - x: 17.8457, - y: 152.6948, - }, - { - l: '25.0', - x: 17.929, - y: 152.773, - }, - { - l: '25.0', - x: 18.0123, - y: 152.8582, - }, - { - l: '25.0', - x: 18.0957, - y: 152.9387, - }, - { - l: '25.0', - x: 18.179, - y: 153.0099, - }, - { - l: '25.0', - x: 18.2623, - y: 153.0885, - }, - { - l: '25.0', - x: 18.3457, - y: 153.1609, - }, - { - l: '25.0', - x: 18.429, - y: 153.2253, - }, - { - l: '25.0', - x: 18.5123, - y: 153.2978, - }, - { - l: '25.0', - x: 18.5957, - y: 153.3676, - }, - { - l: '25.0', - x: 18.679, - y: 153.4273, - }, - { - l: '25.0', - x: 18.7623, - y: 153.4928, - }, - { - l: '25.0', - x: 18.8457, - y: 153.5543, - }, - { - l: '25.0', - x: 18.929, - y: 153.609, - }, - { - l: '25.0', - x: 19.0123, - y: 153.6663, - }, - { - l: '25.0', - x: 19.0957, - y: 153.7224, - }, - { - l: '25.0', - x: 19.179, - y: 153.7726, - }, - { - l: '25.0', - x: 19.2623, - y: 153.8211, - }, - { - l: '25.0', - x: 19.3457, - y: 153.8682, - }, - { - l: '25.0', - x: 19.429, - y: 153.9113, - }, - { - l: '25.0', - x: 19.5123, - y: 153.9598, - }, - { - l: '25.0', - x: 19.5957, - y: 154.0069, - }, - { - l: '25.0', - x: 19.679, - y: 154.0482, - }, - { - l: '25.0', - x: 19.7623, - y: 154.0894, - }, - { - l: '25.0', - x: 19.8457, - y: 154.1286, - }, - { - l: '25.0', - x: 19.929, - y: 154.1615, - }, + { l: 25.0, x: 0, y: 47.8185 }, + { l: 25.0, x: 0.08, y: 50.3856 }, + { l: 25.0, x: 0.17, y: 52.9176 }, + { l: 25.0, x: 0.25, y: 55.3522 }, + { l: 25.0, x: 0.33, y: 57.6392 }, + { l: 25.0, x: 0.42, y: 59.741 }, + { l: 25.0, x: 0.5, y: 61.6321 }, + { l: 25.0, x: 0.58, y: 63.3064 }, + { l: 25.0, x: 0.67, y: 64.7842 }, + { l: 25.0, x: 0.75, y: 66.0993 }, + { l: 25.0, x: 0.83, y: 67.2834 }, + { l: 25.0, x: 0.92, y: 68.3617 }, + { l: 25.0, x: 1, y: 69.3551 }, + { l: 25.0, x: 1.08, y: 70.2795 }, + { l: 25.0, x: 1.17, y: 71.1485 }, + { l: 25.0, x: 1.25, y: 71.9729 }, + { l: 25.0, x: 1.33, y: 72.7593 }, + { l: 25.0, x: 1.42, y: 73.5113 }, + { l: 25.0, x: 1.5, y: 74.2315 }, + { l: 25.0, x: 1.58, y: 74.923 }, + { l: 25.0, x: 1.67, y: 75.5882 }, + { l: 25.0, x: 1.75, y: 76.2294 }, + { l: 25.0, x: 1.83, y: 76.8488 }, + { l: 25.0, x: 1.92, y: 77.4484 }, + { l: 25.0, x: 2, y: 78.0311 }, + { l: 25.0, x: 2.08, y: 78.5989 }, + { l: 25.0, x: 2.17, y: 79.1536 }, + { l: 25.0, x: 2.25, y: 79.6965 }, + { l: 25.0, x: 2.33, y: 80.2287 }, + { l: 25.0, x: 2.42, y: 80.7517 }, + { l: 25.0, x: 2.5, y: 81.2666 }, + { l: 25.0, x: 2.58, y: 81.7744 }, + { l: 25.0, x: 2.67, y: 82.2755 }, + { l: 25.0, x: 2.75, y: 82.7701 }, + { l: 25.0, x: 2.83, y: 83.2585 }, + { l: 25.0, x: 2.92, y: 83.741 }, + { l: 25.0, x: 3, y: 84.2183 }, + { l: 25.0, x: 3.08, y: 84.6916 }, + { l: 25.0, x: 3.17, y: 85.1616 }, + { l: 25.0, x: 3.25, y: 85.6292 }, + { l: 25.0, x: 3.33, y: 86.095 }, + { l: 25.0, x: 3.42, y: 86.5596 }, + { l: 25.0, x: 3.5, y: 87.0233 }, + { l: 25.0, x: 3.58, y: 87.4866 }, + { l: 25.0, x: 3.67, y: 87.95 }, + { l: 25.0, x: 3.75, y: 88.4138 }, + { l: 25.0, x: 3.83, y: 88.879 }, + { l: 25.0, x: 3.92, y: 89.3462 }, + { l: 25.0, x: 4, y: 89.8155 }, + { l: 25.0, x: 4.08, y: 90.2867 }, + { l: 25.0, x: 4.17, y: 90.7598 }, + { l: 25.0, x: 4.25, y: 91.2345 }, + { l: 25.0, x: 4.33, y: 91.7103 }, + { l: 25.0, x: 4.42, y: 92.1872 }, + { l: 25.0, x: 4.5, y: 92.6656 }, + { l: 25.0, x: 4.58, y: 93.1463 }, + { l: 25.0, x: 4.67, y: 93.6298 }, + { l: 25.0, x: 4.75, y: 94.1163 }, + { l: 25.0, x: 4.83, y: 94.6056 }, + { l: 25.0, x: 4.92, y: 95.0975 }, + { l: 25.0, x: 5, y: 95.5912 }, + { l: 25.0, x: 5.08, y: 96.0863 }, + { l: 25.0, x: 5.17, y: 96.5825 }, + { l: 25.0, x: 5.25, y: 97.0793 }, + { l: 25.0, x: 5.33, y: 97.5759 }, + { l: 25.0, x: 5.42, y: 98.0719 }, + { l: 25.0, x: 5.5, y: 98.5667 }, + { l: 25.0, x: 5.58, y: 99.0601 }, + { l: 25.0, x: 5.67, y: 99.5518 }, + { l: 25.0, x: 5.75, y: 100.0415 }, + { l: 25.0, x: 5.83, y: 100.5289 }, + { l: 25.0, x: 5.92, y: 101.0144 }, + { l: 25.0, x: 6, y: 101.4977 }, + { l: 25.0, x: 6.08, y: 101.9789 }, + { l: 25.0, x: 6.17, y: 102.4579 }, + { l: 25.0, x: 6.25, y: 102.9344 }, + { l: 25.0, x: 6.33, y: 103.4085 }, + { l: 25.0, x: 6.42, y: 103.8799 }, + { l: 25.0, x: 6.5, y: 104.3486 }, + { l: 25.0, x: 6.58, y: 104.8146 }, + { l: 25.0, x: 6.67, y: 105.2779 }, + { l: 25.0, x: 6.75, y: 105.738 }, + { l: 25.0, x: 6.83, y: 106.1947 }, + { l: 25.0, x: 6.92, y: 106.6477 }, + { l: 25.0, x: 7, y: 107.0967 }, + { l: 25.0, x: 7.08, y: 107.5415 }, + { l: 25.0, x: 7.17, y: 107.9818 }, + { l: 25.0, x: 7.25, y: 108.4176 }, + { l: 25.0, x: 7.33, y: 108.8492 }, + { l: 25.0, x: 7.42, y: 109.2764 }, + { l: 25.0, x: 7.5, y: 109.6994 }, + { l: 25.0, x: 7.58, y: 110.1185 }, + { l: 25.0, x: 7.67, y: 110.5341 }, + { l: 25.0, x: 7.75, y: 110.9465 }, + { l: 25.0, x: 7.83, y: 111.356 }, + { l: 25.0, x: 7.92, y: 111.7627 }, + { l: 25.0, x: 8, y: 112.167 }, + { l: 25.0, x: 8.08, y: 112.5692 }, + { l: 25.0, x: 8.17, y: 112.9697 }, + { l: 25.0, x: 8.25, y: 113.3685 }, + { l: 25.0, x: 8.33, y: 113.7659 }, + { l: 25.0, x: 8.42, y: 114.1619 }, + { l: 25.0, x: 8.5, y: 114.5566 }, + { l: 25.0, x: 8.58, y: 114.9508 }, + { l: 25.0, x: 8.67, y: 115.3451 }, + { l: 25.0, x: 8.75, y: 115.7399 }, + { l: 25.0, x: 8.83, y: 116.1359 }, + { l: 25.0, x: 8.92, y: 116.5336 }, + { l: 25.0, x: 9, y: 116.9335 }, + { l: 25.0, x: 9.08, y: 117.3356 }, + { l: 25.0, x: 9.17, y: 117.7399 }, + { l: 25.0, x: 9.25, y: 118.1464 }, + { l: 25.0, x: 9.33, y: 118.5553 }, + { l: 25.0, x: 9.42, y: 118.966 }, + { l: 25.0, x: 9.5, y: 119.3787 }, + { l: 25.0, x: 9.58, y: 119.7931 }, + { l: 25.0, x: 9.67, y: 120.2092 }, + { l: 25.0, x: 9.75, y: 120.6271 }, + { l: 25.0, x: 9.83, y: 121.0472 }, + { l: 25.0, x: 9.92, y: 121.4694 }, + { l: 25.0, x: 10, y: 121.8947 }, + { l: 25.0, x: 10.08, y: 122.3234 }, + { l: 25.0, x: 10.17, y: 122.7557 }, + { l: 25.0, x: 10.25, y: 123.1919 }, + { l: 25.0, x: 10.33, y: 123.6319 }, + { l: 25.0, x: 10.42, y: 124.0759 }, + { l: 25.0, x: 10.5, y: 124.5237 }, + { l: 25.0, x: 10.58, y: 124.9753 }, + { l: 25.0, x: 10.67, y: 125.4311 }, + { l: 25.0, x: 10.75, y: 125.8903 }, + { l: 25.0, x: 10.83, y: 126.3537 }, + { l: 25.0, x: 10.92, y: 126.821 }, + { l: 25.0, x: 11, y: 127.292 }, + { l: 25.0, x: 11.08, y: 127.7667 }, + { l: 25.0, x: 11.17, y: 128.2453 }, + { l: 25.0, x: 11.25, y: 128.7278 }, + { l: 25.0, x: 11.33, y: 129.2141 }, + { l: 25.0, x: 11.42, y: 129.7042 }, + { l: 25.0, x: 11.5, y: 130.1976 }, + { l: 25.0, x: 11.58, y: 130.6938 }, + { l: 25.0, x: 11.67, y: 131.1926 }, + { l: 25.0, x: 11.75, y: 131.6933 }, + { l: 25.0, x: 11.83, y: 132.1961 }, + { l: 25.0, x: 11.92, y: 132.7004 }, + { l: 25.0, x: 12, y: 133.2062 }, + { l: 25.0, x: 12.08, y: 133.7128 }, + { l: 25.0, x: 12.17, y: 134.2195 }, + { l: 25.0, x: 12.25, y: 134.726 }, + { l: 25.0, x: 12.33, y: 135.2313 }, + { l: 25.0, x: 12.42, y: 135.7349 }, + { l: 25.0, x: 12.5, y: 136.236 }, + { l: 25.0, x: 12.58, y: 136.7337 }, + { l: 25.0, x: 12.67, y: 137.2274 }, + { l: 25.0, x: 12.75, y: 137.7156 }, + { l: 25.0, x: 12.83, y: 138.1989 }, + { l: 25.0, x: 12.92, y: 138.6751 }, + { l: 25.0, x: 13, y: 139.1442 }, + { l: 25.0, x: 13.08, y: 139.6061 }, + { l: 25.0, x: 13.17, y: 140.0602 }, + { l: 25.0, x: 13.25, y: 140.5065 }, + { l: 25.0, x: 13.33, y: 140.945 }, + { l: 25.0, x: 13.42, y: 141.3748 }, + { l: 25.0, x: 13.5, y: 141.7964 }, + { l: 25.0, x: 13.58, y: 142.2099 }, + { l: 25.0, x: 13.67, y: 142.613 }, + { l: 25.0, x: 13.75, y: 143.0071 }, + { l: 25.0, x: 13.83, y: 143.3902 }, + { l: 25.0, x: 13.92, y: 143.7645 }, + { l: 25.0, x: 14, y: 144.1275 }, + { l: 25.0, x: 14.08, y: 144.4797 }, + { l: 25.0, x: 14.17, y: 144.8209 }, + { l: 25.0, x: 14.25, y: 145.1517 }, + { l: 25.0, x: 14.33, y: 145.4719 }, + { l: 25.0, x: 14.42, y: 145.7817 }, + { l: 25.0, x: 14.5, y: 146.0814 }, + { l: 25.0, x: 14.58, y: 146.3715 }, + { l: 25.0, x: 14.67, y: 146.6514 }, + { l: 25.0, x: 14.75, y: 146.9219 }, + { l: 25.0, x: 14.83, y: 147.1834 }, + { l: 25.0, x: 14.92, y: 147.4353 }, + { l: 25.0, x: 15, y: 147.6775 }, + { l: 25.0, x: 15.08, y: 147.914 }, + { l: 25.0, x: 15.17, y: 148.1412 }, + { l: 25.0, x: 15.25, y: 148.3605 }, + { l: 25.0, x: 15.33, y: 148.5722 }, + { l: 25.0, x: 15.42, y: 148.7778 }, + { l: 25.0, x: 15.5, y: 148.9758 }, + { l: 25.0, x: 15.58, y: 149.1682 }, + { l: 25.0, x: 15.67, y: 149.354 }, + { l: 25.0, x: 15.75, y: 149.5329 }, + { l: 25.0, x: 15.83, y: 149.7079 }, + { l: 25.0, x: 15.92, y: 149.8762 }, + { l: 25.0, x: 16, y: 150.0389 }, + { l: 25.0, x: 16.08, y: 150.1961 }, + { l: 25.0, x: 16.17, y: 150.3482 }, + { l: 25.0, x: 16.25, y: 150.4959 }, + { l: 25.0, x: 16.33, y: 150.639 }, + { l: 25.0, x: 16.42, y: 150.7782 }, + { l: 25.0, x: 16.5, y: 150.9127 }, + { l: 25.0, x: 16.58, y: 151.0436 }, + { l: 25.0, x: 16.67, y: 151.1708 }, + { l: 25.0, x: 16.75, y: 151.2942 }, + { l: 25.0, x: 16.83, y: 151.4144 }, + { l: 25.0, x: 16.92, y: 151.5311 }, + { l: 25.0, x: 17, y: 151.6447 }, + { l: 25.0, x: 17.08, y: 151.7543 }, + { l: 25.0, x: 17.17, y: 151.8615 }, + { l: 25.0, x: 17.25, y: 151.967 }, + { l: 25.0, x: 17.33, y: 152.0679 }, + { l: 25.0, x: 17.42, y: 152.1677 }, + { l: 25.0, x: 17.5, y: 152.2646 }, + { l: 25.0, x: 17.58, y: 152.3585 }, + { l: 25.0, x: 17.67, y: 152.4492 }, + { l: 25.0, x: 17.75, y: 152.5394 }, + { l: 25.0, x: 17.83, y: 152.6261 }, + { l: 25.0, x: 17.92, y: 152.7103 }, + { l: 25.0, x: 18, y: 152.792 }, + { l: 25.0, x: 18.08, y: 152.8714 }, + { l: 25.0, x: 18.17, y: 152.9479 }, + { l: 25.0, x: 18.25, y: 153.0235 }, + { l: 25.0, x: 18.33, y: 153.0949 }, + { l: 25.0, x: 18.42, y: 153.1641 }, + { l: 25.0, x: 18.5, y: 153.2332 }, + { l: 25.0, x: 18.58, y: 153.3024 }, + { l: 25.0, x: 18.67, y: 153.3667 }, + { l: 25.0, x: 18.75, y: 153.4296 }, + { l: 25.0, x: 18.83, y: 153.49 }, + { l: 25.0, x: 18.92, y: 153.5493 }, + { l: 25.0, x: 19, y: 153.6041 }, + { l: 25.0, x: 19.08, y: 153.6589 }, + { l: 25.0, x: 19.17, y: 153.7137 }, + { l: 25.0, x: 19.25, y: 153.7602 }, + { l: 25.0, x: 19.33, y: 153.8064 }, + { l: 25.0, x: 19.42, y: 153.8527 }, + { l: 25.0, x: 19.5, y: 153.8989 }, + { l: 25.0, x: 19.58, y: 153.9452 }, + { l: 25.0, x: 19.67, y: 153.9902 }, + { l: 25.0, x: 19.75, y: 154.0296 }, + { l: 25.0, x: 19.83, y: 154.0685 }, + { l: 25.0, x: 19.92, y: 154.1041 }, + { l: 25.0, x: 20, y: 154.1381 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 0.0, - y: 49.5024, - }, - { - l: '50.0', - x: 0.0192, - y: 50.1344, - }, - { - l: '50.0', - x: 0.0383, - y: 50.7665, - }, - { - l: '50.0', - x: 0.0575, - y: 51.3986, - }, - { - l: '50.0', - x: 0.0767, - y: 52.0307, - }, - { - l: '50.0', - x: 0.0958, - y: 52.6093, - }, - { - l: '50.0', - x: 0.115, - y: 53.1647, - }, - { - l: '50.0', - x: 0.1342, - y: 53.7129, - }, - { - l: '50.0', - x: 0.1533, - y: 54.2605, - }, - { - l: '50.0', - x: 0.1725, - y: 54.8182, - }, - { - l: '50.0', - x: 0.1916, - y: 55.4147, - }, - { - l: '50.0', - x: 0.2108, - y: 56.0157, - }, - { - l: '50.0', - x: 0.23, - y: 56.6168, - }, - { - l: '50.0', - x: 0.2491, - y: 57.2136, - }, - { - l: '50.0', - x: 0.2683, - y: 57.7991, - }, - { - l: '50.0', - x: 0.2875, - y: 58.3726, - }, - { - l: '50.0', - x: 0.3066, - y: 58.9307, - }, - { - l: '50.0', - x: 0.3258, - y: 59.4701, - }, - { - l: '50.0', - x: 0.345, - y: 59.965, - }, - { - l: '50.0', - x: 0.3641, - y: 60.4336, - }, - { - l: '50.0', - x: 0.3833, - y: 60.888, - }, - { - l: '50.0', - x: 0.4025, - y: 61.3338, - }, - { - l: '50.0', - x: 0.4216, - y: 61.779, - }, - { - l: '50.0', - x: 0.4408, - y: 62.2505, - }, - { - l: '50.0', - x: 0.46, - y: 62.7192, - }, - { - l: '50.0', - x: 0.4791, - y: 63.1817, - }, - { - l: '50.0', - x: 0.4983, - y: 63.6349, - }, - { - l: '50.0', - x: 0.5175, - y: 64.0716, - }, - { - l: '50.0', - x: 0.5366, - y: 64.4936, - }, - { - l: '50.0', - x: 0.5558, - y: 64.8996, - }, - { - l: '50.0', - x: 0.5749, - y: 65.2879, - }, - { - l: '50.0', - x: 0.5941, - y: 65.6421, - }, - { - l: '50.0', - x: 0.6133, - y: 65.9736, - }, - { - l: '50.0', - x: 0.6324, - y: 66.2922, - }, - { - l: '50.0', - x: 0.6516, - y: 66.6027, - }, - { - l: '50.0', - x: 0.6708, - y: 66.9104, - }, - { - l: '50.0', - x: 0.6899, - y: 67.2374, - }, - { - l: '50.0', - x: 0.7091, - y: 67.5623, - }, - { - l: '50.0', - x: 0.7283, - y: 67.8832, - }, - { - l: '50.0', - x: 0.7474, - y: 68.1985, - }, - { - l: '50.0', - x: 0.7666, - y: 68.5046, - }, - { - l: '50.0', - x: 0.7858, - y: 68.8018, - }, - { - l: '50.0', - x: 0.8049, - y: 69.0893, - }, - { - l: '50.0', - x: 0.8241, - y: 69.3659, - }, - { - l: '50.0', - x: 0.8433, - y: 69.6207, - }, - { - l: '50.0', - x: 0.8624, - y: 69.8605, - }, - { - l: '50.0', - x: 0.8816, - y: 70.0928, - }, - { - l: '50.0', - x: 0.9008, - y: 70.3209, - }, - { - l: '50.0', - x: 0.9199, - y: 70.5483, - }, - { - l: '50.0', - x: 0.9391, - y: 70.7922, - }, - { - l: '50.0', - x: 0.9582, - y: 71.0364, - }, - { - l: '50.0', - x: 0.9774, - y: 71.2797, - }, - { - l: '50.0', - x: 0.9966, - y: 71.5205, - }, - { - l: '50.0', - x: 1.0157, - y: 71.7567, - }, - { - l: '50.0', - x: 1.0349, - y: 71.9879, - }, - { - l: '50.0', - x: 1.0541, - y: 72.2132, - }, - { - l: '50.0', - x: 1.0732, - y: 72.4317, - }, - { - l: '50.0', - x: 1.0924, - y: 72.6348, - }, - { - l: '50.0', - x: 1.1116, - y: 72.8267, - }, - { - l: '50.0', - x: 1.1307, - y: 73.014, - }, - { - l: '50.0', - x: 1.1499, - y: 73.1994, - }, - { - l: '50.0', - x: 1.1691, - y: 73.3854, - }, - { - l: '50.0', - x: 1.1882, - y: 73.5855, - }, - { - l: '50.0', - x: 1.2074, - y: 73.7877, - }, - { - l: '50.0', - x: 1.2266, - y: 73.9904, - }, - { - l: '50.0', - x: 1.2457, - y: 74.1923, - }, - { - l: '50.0', - x: 1.2649, - y: 74.3919, - }, - { - l: '50.0', - x: 1.2841, - y: 74.5884, - }, - { - l: '50.0', - x: 1.3032, - y: 74.781, - }, - { - l: '50.0', - x: 1.3224, - y: 74.9686, - }, - { - l: '50.0', - x: 1.3415, - y: 75.1441, - }, - { - l: '50.0', - x: 1.3607, - y: 75.3101, - }, - { - l: '50.0', - x: 1.3799, - y: 75.4726, - }, - { - l: '50.0', - x: 1.399, - y: 75.6338, - }, - { - l: '50.0', - x: 1.4182, - y: 75.796, - }, - { - l: '50.0', - x: 1.4374, - y: 75.9701, - }, - { - l: '50.0', - x: 1.4565, - y: 76.147, - }, - { - l: '50.0', - x: 1.4757, - y: 76.3245, - }, - { - l: '50.0', - x: 1.4949, - y: 76.5017, - }, - { - l: '50.0', - x: 1.514, - y: 76.6773, - }, - { - l: '50.0', - x: 1.5332, - y: 76.8504, - }, - { - l: '50.0', - x: 1.5524, - y: 77.0203, - }, - { - l: '50.0', - x: 1.5715, - y: 77.1862, - }, - { - l: '50.0', - x: 1.5907, - y: 77.3419, - }, - { - l: '50.0', - x: 1.6099, - y: 77.4889, - }, - { - l: '50.0', - x: 1.629, - y: 77.633, - }, - { - l: '50.0', - x: 1.6482, - y: 77.7762, - }, - { - l: '50.0', - x: 1.6674, - y: 77.9203, - }, - { - l: '50.0', - x: 1.6865, - y: 78.0748, - }, - { - l: '50.0', - x: 1.7057, - y: 78.2324, - }, - { - l: '50.0', - x: 1.7248, - y: 78.3909, - }, - { - l: '50.0', - x: 1.744, - y: 78.5493, - }, - { - l: '50.0', - x: 1.7632, - y: 78.7065, - }, - { - l: '50.0', - x: 1.7823, - y: 78.8618, - }, - { - l: '50.0', - x: 1.8015, - y: 79.0145, - }, - { - l: '50.0', - x: 1.8207, - y: 79.1637, - }, - { - l: '50.0', - x: 1.8398, - y: 79.3044, - }, - { - l: '50.0', - x: 1.859, - y: 79.437, - }, - { - l: '50.0', - x: 1.8782, - y: 79.5672, - }, - { - l: '50.0', - x: 1.8973, - y: 79.6967, - }, - { - l: '50.0', - x: 1.9165, - y: 79.8271, - }, - { - l: '50.0', - x: 1.9357, - y: 79.9669, - }, - { - l: '50.0', - x: 1.9548, - y: 80.1101, - }, - { - l: '50.0', - x: 1.974, - y: 80.2544, - }, - { - l: '50.0', - x: 1.9932, - y: 80.399, - }, - { - l: '50.0', - x: 2.0123, - y: 80.543, - }, - { - l: '50.0', - x: 2.0957, - y: 81.1367, - }, - { - l: '50.0', - x: 2.179, - y: 81.6679, - }, - { - l: '50.0', - x: 2.2623, - y: 82.2522, - }, - { - l: '50.0', - x: 2.3457, - y: 82.8101, - }, - { - l: '50.0', - x: 2.429, - y: 83.3122, - }, - { - l: '50.0', - x: 2.5123, - y: 83.8677, - }, - { - l: '50.0', - x: 2.5957, - y: 84.4012, - }, - { - l: '50.0', - x: 2.679, - y: 84.8833, - }, - { - l: '50.0', - x: 2.7623, - y: 85.4177, - }, - { - l: '50.0', - x: 2.8457, - y: 85.9316, - }, - { - l: '50.0', - x: 2.929, - y: 86.3964, - }, - { - l: '50.0', - x: 3.0123, - y: 86.9131, - }, - { - l: '50.0', - x: 3.0957, - y: 87.4121, - }, - { - l: '50.0', - x: 3.179, - y: 87.8659, - }, - { - l: '50.0', - x: 3.2623, - y: 88.373, - }, - { - l: '50.0', - x: 3.3457, - y: 88.8651, - }, - { - l: '50.0', - x: 3.429, - y: 89.3144, - }, - { - l: '50.0', - x: 3.5123, - y: 89.8181, - }, - { - l: '50.0', - x: 3.5957, - y: 90.3083, - }, - { - l: '50.0', - x: 3.679, - y: 90.7571, - }, - { - l: '50.0', - x: 3.7623, - y: 91.2618, - }, - { - l: '50.0', - x: 3.8457, - y: 91.7548, - }, - { - l: '50.0', - x: 3.929, - y: 92.2081, - }, - { - l: '50.0', - x: 4.0123, - y: 92.7192, - }, - { - l: '50.0', - x: 4.0957, - y: 93.2191, - }, - { - l: '50.0', - x: 4.179, - y: 93.6785, - }, - { - l: '50.0', - x: 4.2623, - y: 94.1959, - }, - { - l: '50.0', - x: 4.3457, - y: 94.701, - }, - { - l: '50.0', - x: 4.429, - y: 95.1644, - }, - { - l: '50.0', - x: 4.5123, - y: 95.6865, - }, - { - l: '50.0', - x: 4.5957, - y: 96.1975, - }, - { - l: '50.0', - x: 4.679, - y: 96.6679, - }, - { - l: '50.0', - x: 4.7623, - y: 97.1993, - }, - { - l: '50.0', - x: 4.8457, - y: 97.7199, - }, - { - l: '50.0', - x: 4.929, - y: 98.1987, - }, - { - l: '50.0', - x: 5.0123, - y: 98.7381, - }, - { - l: '50.0', - x: 5.0957, - y: 99.2649, - }, - { - l: '50.0', - x: 5.179, - y: 99.7481, - }, - { - l: '50.0', - x: 5.2623, - y: 100.2911, - }, - { - l: '50.0', - x: 5.3457, - y: 100.8196, - }, - { - l: '50.0', - x: 5.429, - y: 101.3026, - }, - { - l: '50.0', - x: 5.5123, - y: 101.8434, - }, - { - l: '50.0', - x: 5.5957, - y: 102.3686, - }, - { - l: '50.0', - x: 5.679, - y: 102.8476, - }, - { - l: '50.0', - x: 5.7623, - y: 103.3831, - }, - { - l: '50.0', - x: 5.8457, - y: 103.902, - }, - { - l: '50.0', - x: 5.929, - y: 104.375, - }, - { - l: '50.0', - x: 6.0123, - y: 104.9037, - }, - { - l: '50.0', - x: 6.0957, - y: 105.4162, - }, - { - l: '50.0', - x: 6.179, - y: 105.883, - }, - { - l: '50.0', - x: 6.2623, - y: 106.4043, - }, - { - l: '50.0', - x: 6.3457, - y: 106.9092, - }, - { - l: '50.0', - x: 6.429, - y: 107.3685, - }, - { - l: '50.0', - x: 6.5123, - y: 107.8813, - }, - { - l: '50.0', - x: 6.5957, - y: 108.3776, - }, - { - l: '50.0', - x: 6.679, - y: 108.8289, - }, - { - l: '50.0', - x: 6.7623, - y: 109.332, - }, - { - l: '50.0', - x: 6.8457, - y: 109.8182, - }, - { - l: '50.0', - x: 6.929, - y: 110.2593, - }, - { - l: '50.0', - x: 7.0123, - y: 110.7501, - }, - { - l: '50.0', - x: 7.0957, - y: 111.2233, - }, - { - l: '50.0', - x: 7.179, - y: 111.6518, - }, - { - l: '50.0', - x: 7.2623, - y: 112.128, - }, - { - l: '50.0', - x: 7.3457, - y: 112.587, - }, - { - l: '50.0', - x: 7.429, - y: 113.0026, - }, - { - l: '50.0', - x: 7.5123, - y: 113.4648, - }, - { - l: '50.0', - x: 7.5957, - y: 113.9105, - }, - { - l: '50.0', - x: 7.679, - y: 114.3149, - }, - { - l: '50.0', - x: 7.7623, - y: 114.7653, - }, - { - l: '50.0', - x: 7.8457, - y: 115.2007, - }, - { - l: '50.0', - x: 7.929, - y: 115.5964, - }, - { - l: '50.0', - x: 8.0123, - y: 116.0379, - }, - { - l: '50.0', - x: 8.0957, - y: 116.4656, - }, - { - l: '50.0', - x: 8.179, - y: 116.8551, - }, - { - l: '50.0', - x: 8.2623, - y: 117.2906, - }, - { - l: '50.0', - x: 8.3457, - y: 117.7128, - }, - { - l: '50.0', - x: 8.429, - y: 118.0978, - }, - { - l: '50.0', - x: 8.5123, - y: 118.5286, - }, - { - l: '50.0', - x: 8.5957, - y: 118.9475, - }, - { - l: '50.0', - x: 8.679, - y: 119.3308, - }, - { - l: '50.0', - x: 8.7623, - y: 119.7616, - }, - { - l: '50.0', - x: 8.8457, - y: 120.1823, - }, - { - l: '50.0', - x: 8.929, - y: 120.5688, - }, - { - l: '50.0', - x: 9.0123, - y: 121.005, - }, - { - l: '50.0', - x: 9.0957, - y: 121.4319, - }, - { - l: '50.0', - x: 9.179, - y: 121.8246, - }, - { - l: '50.0', - x: 9.2623, - y: 122.2676, - }, - { - l: '50.0', - x: 9.3457, - y: 122.7011, - }, - { - l: '50.0', - x: 9.429, - y: 123.0996, - }, - { - l: '50.0', - x: 9.5123, - y: 123.5487, - }, - { - l: '50.0', - x: 9.5957, - y: 123.9876, - }, - { - l: '50.0', - x: 9.679, - y: 124.3907, - }, - { - l: '50.0', - x: 9.7623, - y: 124.8451, - }, - { - l: '50.0', - x: 9.8457, - y: 125.2895, - }, - { - l: '50.0', - x: 9.929, - y: 125.6982, - }, - { - l: '50.0', - x: 10.0123, - y: 126.1601, - }, - { - l: '50.0', - x: 10.0957, - y: 126.6132, - }, - { - l: '50.0', - x: 10.179, - y: 127.0312, - }, - { - l: '50.0', - x: 10.2623, - y: 127.5043, - }, - { - l: '50.0', - x: 10.3457, - y: 127.9687, - }, - { - l: '50.0', - x: 10.429, - y: 128.3973, - }, - { - l: '50.0', - x: 10.5123, - y: 128.8822, - }, - { - l: '50.0', - x: 10.5957, - y: 129.3582, - }, - { - l: '50.0', - x: 10.679, - y: 129.7973, - }, - { - l: '50.0', - x: 10.7623, - y: 130.2938, - }, - { - l: '50.0', - x: 10.8457, - y: 130.7812, - }, - { - l: '50.0', - x: 10.929, - y: 131.2307, - }, - { - l: '50.0', - x: 11.0123, - y: 131.7388, - }, - { - l: '50.0', - x: 11.0957, - y: 132.2371, - }, - { - l: '50.0', - x: 11.179, - y: 132.6965, - }, - { - l: '50.0', - x: 11.2623, - y: 133.216, - }, - { - l: '50.0', - x: 11.3457, - y: 133.7255, - }, - { - l: '50.0', - x: 11.429, - y: 134.1949, - }, - { - l: '50.0', - x: 11.5123, - y: 134.7248, - }, - { - l: '50.0', - x: 11.5957, - y: 135.2433, - }, - { - l: '50.0', - x: 11.679, - y: 135.7198, - }, - { - l: '50.0', - x: 11.7623, - y: 136.2563, - }, - { - l: '50.0', - x: 11.8457, - y: 136.7803, - }, - { - l: '50.0', - x: 11.929, - y: 137.2609, - }, - { - l: '50.0', - x: 12.0123, - y: 137.8014, - }, - { - l: '50.0', - x: 12.0957, - y: 138.328, - }, - { - l: '50.0', - x: 12.179, - y: 138.8095, - }, - { - l: '50.0', - x: 12.2623, - y: 139.3492, - }, - { - l: '50.0', - x: 12.3457, - y: 139.873, - }, - { - l: '50.0', - x: 12.429, - y: 140.35, - }, - { - l: '50.0', - x: 12.5123, - y: 140.8824, - }, - { - l: '50.0', - x: 12.5957, - y: 141.3967, - }, - { - l: '50.0', - x: 12.679, - y: 141.8629, - }, - { - l: '50.0', - x: 12.7623, - y: 142.3801, - }, - { - l: '50.0', - x: 12.8457, - y: 142.8779, - }, - { - l: '50.0', - x: 12.929, - y: 143.3262, - }, - { - l: '50.0', - x: 13.0123, - y: 143.8218, - }, - { - l: '50.0', - x: 13.0957, - y: 144.2962, - }, - { - l: '50.0', - x: 13.179, - y: 144.7226, - }, - { - l: '50.0', - x: 13.2623, - y: 145.1929, - }, - { - l: '50.0', - x: 13.3457, - y: 145.6422, - }, - { - l: '50.0', - x: 13.429, - y: 146.0448, - }, - { - l: '50.0', - x: 13.5123, - y: 146.4882, - }, - { - l: '50.0', - x: 13.5957, - y: 146.9107, - }, - { - l: '50.0', - x: 13.679, - y: 147.2874, - }, - { - l: '50.0', - x: 13.7623, - y: 147.7006, - }, - { - l: '50.0', - x: 13.8457, - y: 148.0914, - }, - { - l: '50.0', - x: 13.929, - y: 148.4403, - }, - { - l: '50.0', - x: 14.0123, - y: 148.82, - }, - { - l: '50.0', - x: 14.0957, - y: 149.1784, - }, - { - l: '50.0', - x: 14.179, - y: 149.4959, - }, - { - l: '50.0', - x: 14.2623, - y: 149.8413, - }, - { - l: '50.0', - x: 14.3457, - y: 150.1666, - }, - { - l: '50.0', - x: 14.429, - y: 150.4543, - }, - { - l: '50.0', - x: 14.5123, - y: 150.7669, - }, - { - l: '50.0', - x: 14.5957, - y: 151.0612, - }, - { - l: '50.0', - x: 14.679, - y: 151.3208, - }, - { - l: '50.0', - x: 14.7623, - y: 151.6027, - }, - { - l: '50.0', - x: 14.8457, - y: 151.8675, - }, - { - l: '50.0', - x: 14.929, - y: 152.1008, - }, - { - l: '50.0', - x: 15.0123, - y: 152.3533, - }, - { - l: '50.0', - x: 15.0957, - y: 152.5927, - }, - { - l: '50.0', - x: 15.179, - y: 152.8029, - }, - { - l: '50.0', - x: 15.2623, - y: 153.031, - }, - { - l: '50.0', - x: 15.3457, - y: 153.2454, - }, - { - l: '50.0', - x: 15.429, - y: 153.4357, - }, - { - l: '50.0', - x: 15.5123, - y: 153.6417, - }, - { - l: '50.0', - x: 15.5957, - y: 153.8363, - }, - { - l: '50.0', - x: 15.679, - y: 154.0081, - }, - { - l: '50.0', - x: 15.7623, - y: 154.1943, - }, - { - l: '50.0', - x: 15.8457, - y: 154.3713, - }, - { - l: '50.0', - x: 15.929, - y: 154.5268, - }, - { - l: '50.0', - x: 16.0123, - y: 154.6959, - }, - { - l: '50.0', - x: 16.0957, - y: 154.8548, - }, - { - l: '50.0', - x: 16.179, - y: 154.9955, - }, - { - l: '50.0', - x: 16.2623, - y: 155.149, - }, - { - l: '50.0', - x: 16.3457, - y: 155.2937, - }, - { - l: '50.0', - x: 16.429, - y: 155.4224, - }, - { - l: '50.0', - x: 16.5123, - y: 155.5622, - }, - { - l: '50.0', - x: 16.5957, - y: 155.6945, - }, - { - l: '50.0', - x: 16.679, - y: 155.8122, - }, - { - l: '50.0', - x: 16.7623, - y: 155.9404, - }, - { - l: '50.0', - x: 16.8457, - y: 156.062, - }, - { - l: '50.0', - x: 16.929, - y: 156.1699, - }, - { - l: '50.0', - x: 17.0123, - y: 156.2878, - }, - { - l: '50.0', - x: 17.0957, - y: 156.3987, - }, - { - l: '50.0', - x: 17.179, - y: 156.498, - }, - { - l: '50.0', - x: 17.2623, - y: 156.6073, - }, - { - l: '50.0', - x: 17.3457, - y: 156.7095, - }, - { - l: '50.0', - x: 17.429, - y: 156.8019, - }, - { - l: '50.0', - x: 17.5123, - y: 156.9025, - }, - { - l: '50.0', - x: 17.5957, - y: 156.9973, - }, - { - l: '50.0', - x: 17.679, - y: 157.0813, - }, - { - l: '50.0', - x: 17.7623, - y: 157.1749, - }, - { - l: '50.0', - x: 17.8457, - y: 157.2625, - }, - { - l: '50.0', - x: 17.929, - y: 157.3403, - }, - { - l: '50.0', - x: 18.0123, - y: 157.4251, - }, - { - l: '50.0', - x: 18.0957, - y: 157.5052, - }, - { - l: '50.0', - x: 18.179, - y: 157.5761, - }, - { - l: '50.0', - x: 18.2623, - y: 157.6543, - }, - { - l: '50.0', - x: 18.3457, - y: 157.7263, - }, - { - l: '50.0', - x: 18.429, - y: 157.7904, - }, - { - l: '50.0', - x: 18.5123, - y: 157.8626, - }, - { - l: '50.0', - x: 18.5957, - y: 157.9321, - }, - { - l: '50.0', - x: 18.679, - y: 157.9914, - }, - { - l: '50.0', - x: 18.7623, - y: 158.0566, - }, - { - l: '50.0', - x: 18.8457, - y: 158.1178, - }, - { - l: '50.0', - x: 18.929, - y: 158.1723, - }, - { - l: '50.0', - x: 19.0123, - y: 158.2292, - }, - { - l: '50.0', - x: 19.0957, - y: 158.2851, - }, - { - l: '50.0', - x: 19.179, - y: 158.335, - }, - { - l: '50.0', - x: 19.2623, - y: 158.3832, - }, - { - l: '50.0', - x: 19.3457, - y: 158.4301, - }, - { - l: '50.0', - x: 19.429, - y: 158.473, - }, - { - l: '50.0', - x: 19.5123, - y: 158.5212, - }, - { - l: '50.0', - x: 19.5957, - y: 158.5681, - }, - { - l: '50.0', - x: 19.679, - y: 158.6092, - }, - { - l: '50.0', - x: 19.7623, - y: 158.6501, - }, - { - l: '50.0', - x: 19.8457, - y: 158.6892, - }, - { - l: '50.0', - x: 19.929, - y: 158.7219, - }, + { l: 50.0, x: 0, y: 49.5024 }, + { l: 50.0, x: 0.08, y: 52.1408 }, + { l: 50.0, x: 0.17, y: 54.7414 }, + { l: 50.0, x: 0.25, y: 57.2401 }, + { l: 50.0, x: 0.33, y: 59.5854 }, + { l: 50.0, x: 0.42, y: 61.7389 }, + { l: 50.0, x: 0.5, y: 63.6748 }, + { l: 50.0, x: 0.58, y: 65.3872 }, + { l: 50.0, x: 0.67, y: 66.8972 }, + { l: 50.0, x: 0.75, y: 68.2402 }, + { l: 50.0, x: 0.83, y: 69.4488 }, + { l: 50.0, x: 0.92, y: 70.5493 }, + { l: 50.0, x: 1, y: 71.5631 }, + { l: 50.0, x: 1.08, y: 72.507 }, + { l: 50.0, x: 1.17, y: 73.3946 }, + { l: 50.0, x: 1.25, y: 74.2372 }, + { l: 50.0, x: 1.33, y: 75.0416 }, + { l: 50.0, x: 1.42, y: 75.8113 }, + { l: 50.0, x: 1.5, y: 76.549 }, + { l: 50.0, x: 1.58, y: 77.2579 }, + { l: 50.0, x: 1.67, y: 77.9404 }, + { l: 50.0, x: 1.75, y: 78.5987 }, + { l: 50.0, x: 1.83, y: 79.2349 }, + { l: 50.0, x: 1.92, y: 79.8512 }, + { l: 50.0, x: 2, y: 80.4506 }, + { l: 50.0, x: 2.08, y: 81.035 }, + { l: 50.0, x: 2.17, y: 81.6063 }, + { l: 50.0, x: 2.25, y: 82.1657 }, + { l: 50.0, x: 2.33, y: 82.7144 }, + { l: 50.0, x: 2.42, y: 83.2538 }, + { l: 50.0, x: 2.5, y: 83.7852 }, + { l: 50.0, x: 2.58, y: 84.3095 }, + { l: 50.0, x: 2.67, y: 84.8272 }, + { l: 50.0, x: 2.75, y: 85.3383 }, + { l: 50.0, x: 2.83, y: 85.8432 }, + { l: 50.0, x: 2.92, y: 86.3423 }, + { l: 50.0, x: 3, y: 86.8362 }, + { l: 50.0, x: 3.08, y: 87.3261 }, + { l: 50.0, x: 3.17, y: 87.8129 }, + { l: 50.0, x: 3.25, y: 88.2973 }, + { l: 50.0, x: 3.33, y: 88.7802 }, + { l: 50.0, x: 3.42, y: 89.2618 }, + { l: 50.0, x: 3.5, y: 89.7428 }, + { l: 50.0, x: 3.58, y: 90.2236 }, + { l: 50.0, x: 3.67, y: 90.7046 }, + { l: 50.0, x: 3.75, y: 91.1862 }, + { l: 50.0, x: 3.83, y: 91.6694 }, + { l: 50.0, x: 3.92, y: 92.1549 }, + { l: 50.0, x: 4, y: 92.6427 }, + { l: 50.0, x: 4.08, y: 93.1326 }, + { l: 50.0, x: 4.17, y: 93.6247 }, + { l: 50.0, x: 4.25, y: 94.1185 }, + { l: 50.0, x: 4.33, y: 94.6136 }, + { l: 50.0, x: 4.42, y: 95.1101 }, + { l: 50.0, x: 4.5, y: 95.6083 }, + { l: 50.0, x: 4.58, y: 96.109 }, + { l: 50.0, x: 4.67, y: 96.6127 }, + { l: 50.0, x: 4.75, y: 97.1197 }, + { l: 50.0, x: 4.83, y: 97.6298 }, + { l: 50.0, x: 4.92, y: 98.1426 }, + { l: 50.0, x: 5, y: 98.6574 }, + { l: 50.0, x: 5.08, y: 99.1738 }, + { l: 50.0, x: 5.17, y: 99.6915 }, + { l: 50.0, x: 5.25, y: 100.21 }, + { l: 50.0, x: 5.33, y: 100.7283 }, + { l: 50.0, x: 5.42, y: 101.2461 }, + { l: 50.0, x: 5.5, y: 101.7627 }, + { l: 50.0, x: 5.58, y: 102.278 }, + { l: 50.0, x: 5.67, y: 102.7916 }, + { l: 50.0, x: 5.75, y: 103.3032 }, + { l: 50.0, x: 5.83, y: 103.8125 }, + { l: 50.0, x: 5.92, y: 104.3198 }, + { l: 50.0, x: 6, y: 104.8249 }, + { l: 50.0, x: 6.08, y: 105.3278 }, + { l: 50.0, x: 6.17, y: 105.8285 }, + { l: 50.0, x: 6.25, y: 106.3266 }, + { l: 50.0, x: 6.33, y: 106.8222 }, + { l: 50.0, x: 6.42, y: 107.3149 }, + { l: 50.0, x: 6.5, y: 107.8049 }, + { l: 50.0, x: 6.58, y: 108.292 }, + { l: 50.0, x: 6.67, y: 108.7762 }, + { l: 50.0, x: 6.75, y: 109.2571 }, + { l: 50.0, x: 6.83, y: 109.7345 }, + { l: 50.0, x: 6.92, y: 110.2079 }, + { l: 50.0, x: 7, y: 110.6771 }, + { l: 50.0, x: 7.08, y: 111.1418 }, + { l: 50.0, x: 7.17, y: 111.6019 }, + { l: 50.0, x: 7.25, y: 112.0572 }, + { l: 50.0, x: 7.33, y: 112.508 }, + { l: 50.0, x: 7.42, y: 112.9542 }, + { l: 50.0, x: 7.5, y: 113.396 }, + { l: 50.0, x: 7.58, y: 113.8337 }, + { l: 50.0, x: 7.67, y: 114.2677 }, + { l: 50.0, x: 7.75, y: 114.6982 }, + { l: 50.0, x: 7.83, y: 115.1257 }, + { l: 50.0, x: 7.92, y: 115.5502 }, + { l: 50.0, x: 8, y: 115.9721 }, + { l: 50.0, x: 8.08, y: 116.3918 }, + { l: 50.0, x: 8.17, y: 116.8096 }, + { l: 50.0, x: 8.25, y: 117.2256 }, + { l: 50.0, x: 8.33, y: 117.64 }, + { l: 50.0, x: 8.42, y: 118.0528 }, + { l: 50.0, x: 8.5, y: 118.4643 }, + { l: 50.0, x: 8.58, y: 118.8751 }, + { l: 50.0, x: 8.67, y: 119.2859 }, + { l: 50.0, x: 8.75, y: 119.6971 }, + { l: 50.0, x: 8.83, y: 120.1095 }, + { l: 50.0, x: 8.92, y: 120.5235 }, + { l: 50.0, x: 9, y: 120.9397 }, + { l: 50.0, x: 9.08, y: 121.358 }, + { l: 50.0, x: 9.17, y: 121.7785 }, + { l: 50.0, x: 9.25, y: 122.2012 }, + { l: 50.0, x: 9.33, y: 122.6261 }, + { l: 50.0, x: 9.42, y: 123.0529 }, + { l: 50.0, x: 9.5, y: 123.4815 }, + { l: 50.0, x: 9.58, y: 123.9117 }, + { l: 50.0, x: 9.67, y: 124.3435 }, + { l: 50.0, x: 9.75, y: 124.777 }, + { l: 50.0, x: 9.83, y: 125.2126 }, + { l: 50.0, x: 9.92, y: 125.6502 }, + { l: 50.0, x: 10, y: 126.0908 }, + { l: 50.0, x: 10.08, y: 126.5347 }, + { l: 50.0, x: 10.17, y: 126.9821 }, + { l: 50.0, x: 10.25, y: 127.4333 }, + { l: 50.0, x: 10.33, y: 127.8882 }, + { l: 50.0, x: 10.42, y: 128.347 }, + { l: 50.0, x: 10.5, y: 128.8095 }, + { l: 50.0, x: 10.58, y: 129.2757 }, + { l: 50.0, x: 10.67, y: 129.7458 }, + { l: 50.0, x: 10.75, y: 130.2193 }, + { l: 50.0, x: 10.83, y: 130.6968 }, + { l: 50.0, x: 10.92, y: 131.1779 }, + { l: 50.0, x: 11, y: 131.6626 }, + { l: 50.0, x: 11.08, y: 132.1508 }, + { l: 50.0, x: 11.17, y: 132.6426 }, + { l: 50.0, x: 11.25, y: 133.1381 }, + { l: 50.0, x: 11.33, y: 133.6372 }, + { l: 50.0, x: 11.42, y: 134.1398 }, + { l: 50.0, x: 11.5, y: 134.6454 }, + { l: 50.0, x: 11.58, y: 135.1536 }, + { l: 50.0, x: 11.67, y: 135.664 }, + { l: 50.0, x: 11.75, y: 136.176 }, + { l: 50.0, x: 11.83, y: 136.6897 }, + { l: 50.0, x: 11.92, y: 137.2046 }, + { l: 50.0, x: 12, y: 137.7206 }, + { l: 50.0, x: 12.08, y: 138.237 }, + { l: 50.0, x: 12.17, y: 138.7532 }, + { l: 50.0, x: 12.25, y: 139.2687 }, + { l: 50.0, x: 12.33, y: 139.7826 }, + { l: 50.0, x: 12.42, y: 140.2943 }, + { l: 50.0, x: 12.5, y: 140.8031 }, + { l: 50.0, x: 12.58, y: 141.3081 }, + { l: 50.0, x: 12.67, y: 141.8086 }, + { l: 50.0, x: 12.75, y: 142.3032 }, + { l: 50.0, x: 12.83, y: 142.7924 }, + { l: 50.0, x: 12.92, y: 143.2741 }, + { l: 50.0, x: 13, y: 143.7483 }, + { l: 50.0, x: 13.08, y: 144.2148 }, + { l: 50.0, x: 13.17, y: 144.6731 }, + { l: 50.0, x: 13.25, y: 145.1232 }, + { l: 50.0, x: 13.33, y: 145.5652 }, + { l: 50.0, x: 13.42, y: 145.9981 }, + { l: 50.0, x: 13.5, y: 146.4225 }, + { l: 50.0, x: 13.58, y: 146.8384 }, + { l: 50.0, x: 13.67, y: 147.2437 }, + { l: 50.0, x: 13.75, y: 147.6397 }, + { l: 50.0, x: 13.83, y: 148.0244 }, + { l: 50.0, x: 13.92, y: 148.4 }, + { l: 50.0, x: 14, y: 148.7641 }, + { l: 50.0, x: 14.08, y: 149.1172 }, + { l: 50.0, x: 14.17, y: 149.4592 }, + { l: 50.0, x: 14.25, y: 149.7905 }, + { l: 50.0, x: 14.33, y: 150.1111 }, + { l: 50.0, x: 14.42, y: 150.4211 }, + { l: 50.0, x: 14.5, y: 150.7209 }, + { l: 50.0, x: 14.58, y: 151.011 }, + { l: 50.0, x: 14.67, y: 151.2909 }, + { l: 50.0, x: 14.75, y: 151.5612 }, + { l: 50.0, x: 14.83, y: 151.8224 }, + { l: 50.0, x: 14.92, y: 152.074 }, + { l: 50.0, x: 15, y: 152.3159 }, + { l: 50.0, x: 15.08, y: 152.552 }, + { l: 50.0, x: 15.17, y: 152.7787 }, + { l: 50.0, x: 15.25, y: 152.9975 }, + { l: 50.0, x: 15.33, y: 153.2087 }, + { l: 50.0, x: 15.42, y: 153.4138 }, + { l: 50.0, x: 15.5, y: 153.6113 }, + { l: 50.0, x: 15.58, y: 153.8031 }, + { l: 50.0, x: 15.67, y: 153.9884 }, + { l: 50.0, x: 15.75, y: 154.1667 }, + { l: 50.0, x: 15.83, y: 154.3412 }, + { l: 50.0, x: 15.92, y: 154.5089 }, + { l: 50.0, x: 16, y: 154.671 }, + { l: 50.0, x: 16.08, y: 154.8277 }, + { l: 50.0, x: 16.17, y: 154.9792 }, + { l: 50.0, x: 16.25, y: 155.1264 }, + { l: 50.0, x: 16.33, y: 155.2689 }, + { l: 50.0, x: 16.42, y: 155.4076 }, + { l: 50.0, x: 16.5, y: 155.5416 }, + { l: 50.0, x: 16.58, y: 155.6719 }, + { l: 50.0, x: 16.67, y: 155.7986 }, + { l: 50.0, x: 16.75, y: 155.9215 }, + { l: 50.0, x: 16.83, y: 156.0412 }, + { l: 50.0, x: 16.92, y: 156.1574 }, + { l: 50.0, x: 17, y: 156.2705 }, + { l: 50.0, x: 17.08, y: 156.3797 }, + { l: 50.0, x: 17.17, y: 156.4864 }, + { l: 50.0, x: 17.25, y: 156.5914 }, + { l: 50.0, x: 17.33, y: 156.6919 }, + { l: 50.0, x: 17.42, y: 156.7912 }, + { l: 50.0, x: 17.5, y: 156.8877 }, + { l: 50.0, x: 17.58, y: 156.9812 }, + { l: 50.0, x: 17.67, y: 157.0714 }, + { l: 50.0, x: 17.75, y: 157.1612 }, + { l: 50.0, x: 17.83, y: 157.2475 }, + { l: 50.0, x: 17.92, y: 157.3313 }, + { l: 50.0, x: 18, y: 157.4126 }, + { l: 50.0, x: 18.08, y: 157.4916 }, + { l: 50.0, x: 18.17, y: 157.5678 }, + { l: 50.0, x: 18.25, y: 157.643 }, + { l: 50.0, x: 18.33, y: 157.7141 }, + { l: 50.0, x: 18.42, y: 157.7829 }, + { l: 50.0, x: 18.5, y: 157.8517 }, + { l: 50.0, x: 18.58, y: 157.9205 }, + { l: 50.0, x: 18.67, y: 157.9845 }, + { l: 50.0, x: 18.75, y: 158.0471 }, + { l: 50.0, x: 18.83, y: 158.1072 }, + { l: 50.0, x: 18.92, y: 158.1662 }, + { l: 50.0, x: 19, y: 158.2207 }, + { l: 50.0, x: 19.08, y: 158.2752 }, + { l: 50.0, x: 19.17, y: 158.3297 }, + { l: 50.0, x: 19.25, y: 158.376 }, + { l: 50.0, x: 19.33, y: 158.422 }, + { l: 50.0, x: 19.42, y: 158.468 }, + { l: 50.0, x: 19.5, y: 158.514 }, + { l: 50.0, x: 19.58, y: 158.56 }, + { l: 50.0, x: 19.67, y: 158.6048 }, + { l: 50.0, x: 19.75, y: 158.644 }, + { l: 50.0, x: 19.83, y: 158.6827 }, + { l: 50.0, x: 19.92, y: 158.7181 }, + { l: 50.0, x: 20, y: 158.7519 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 0.0, - y: 51.1667, - }, - { - l: '75.0', - x: 0.0192, - y: 51.8158, - }, - { - l: '75.0', - x: 0.0383, - y: 52.4649, - }, - { - l: '75.0', - x: 0.0575, - y: 53.1138, - }, - { - l: '75.0', - x: 0.0767, - y: 53.7626, - }, - { - l: '75.0', - x: 0.0958, - y: 54.3565, - }, - { - l: '75.0', - x: 0.115, - y: 54.9264, - }, - { - l: '75.0', - x: 0.1342, - y: 55.489, - }, - { - l: '75.0', - x: 0.1533, - y: 56.0507, - }, - { - l: '75.0', - x: 0.1725, - y: 56.6228, - }, - { - l: '75.0', - x: 0.1916, - y: 57.2346, - }, - { - l: '75.0', - x: 0.2108, - y: 57.8509, - }, - { - l: '75.0', - x: 0.23, - y: 58.4671, - }, - { - l: '75.0', - x: 0.2491, - y: 59.0789, - }, - { - l: '75.0', - x: 0.2683, - y: 59.679, - }, - { - l: '75.0', - x: 0.2875, - y: 60.2666, - }, - { - l: '75.0', - x: 0.3066, - y: 60.8384, - }, - { - l: '75.0', - x: 0.3258, - y: 61.391, - }, - { - l: '75.0', - x: 0.345, - y: 61.8978, - }, - { - l: '75.0', - x: 0.3641, - y: 62.3776, - }, - { - l: '75.0', - x: 0.3833, - y: 62.8428, - }, - { - l: '75.0', - x: 0.4025, - y: 63.2991, - }, - { - l: '75.0', - x: 0.4216, - y: 63.7547, - }, - { - l: '75.0', - x: 0.4408, - y: 64.2372, - }, - { - l: '75.0', - x: 0.46, - y: 64.7166, - }, - { - l: '75.0', - x: 0.4791, - y: 65.1896, - }, - { - l: '75.0', - x: 0.4983, - y: 65.653, - }, - { - l: '75.0', - x: 0.5175, - y: 66.0995, - }, - { - l: '75.0', - x: 0.5366, - y: 66.5308, - }, - { - l: '75.0', - x: 0.5558, - y: 66.9456, - }, - { - l: '75.0', - x: 0.5749, - y: 67.3424, - }, - { - l: '75.0', - x: 0.5941, - y: 67.7042, - }, - { - l: '75.0', - x: 0.6133, - y: 68.0427, - }, - { - l: '75.0', - x: 0.6324, - y: 68.3681, - }, - { - l: '75.0', - x: 0.6516, - y: 68.685, - }, - { - l: '75.0', - x: 0.6708, - y: 68.9992, - }, - { - l: '75.0', - x: 0.6899, - y: 69.3329, - }, - { - l: '75.0', - x: 0.7091, - y: 69.6645, - }, - { - l: '75.0', - x: 0.7283, - y: 69.992, - }, - { - l: '75.0', - x: 0.7474, - y: 70.3136, - }, - { - l: '75.0', - x: 0.7666, - y: 70.626, - }, - { - l: '75.0', - x: 0.7858, - y: 70.9291, - }, - { - l: '75.0', - x: 0.8049, - y: 71.2223, - }, - { - l: '75.0', - x: 0.8241, - y: 71.5045, - }, - { - l: '75.0', - x: 0.8433, - y: 71.7644, - }, - { - l: '75.0', - x: 0.8624, - y: 72.0089, - }, - { - l: '75.0', - x: 0.8816, - y: 72.2458, - }, - { - l: '75.0', - x: 0.9008, - y: 72.4785, - }, - { - l: '75.0', - x: 0.9199, - y: 72.7104, - }, - { - l: '75.0', - x: 0.9391, - y: 72.9592, - }, - { - l: '75.0', - x: 0.9582, - y: 73.2083, - }, - { - l: '75.0', - x: 0.9774, - y: 73.4564, - }, - { - l: '75.0', - x: 0.9966, - y: 73.7021, - }, - { - l: '75.0', - x: 1.0157, - y: 73.943, - }, - { - l: '75.0', - x: 1.0349, - y: 74.1789, - }, - { - l: '75.0', - x: 1.0541, - y: 74.4088, - }, - { - l: '75.0', - x: 1.0732, - y: 74.6317, - }, - { - l: '75.0', - x: 1.0924, - y: 74.839, - }, - { - l: '75.0', - x: 1.1116, - y: 75.0348, - }, - { - l: '75.0', - x: 1.1307, - y: 75.226, - }, - { - l: '75.0', - x: 1.1499, - y: 75.4153, - }, - { - l: '75.0', - x: 1.1691, - y: 75.6052, - }, - { - l: '75.0', - x: 1.1882, - y: 75.8095, - }, - { - l: '75.0', - x: 1.2074, - y: 76.0161, - }, - { - l: '75.0', - x: 1.2266, - y: 76.2231, - }, - { - l: '75.0', - x: 1.2457, - y: 76.4294, - }, - { - l: '75.0', - x: 1.2649, - y: 76.6333, - }, - { - l: '75.0', - x: 1.2841, - y: 76.8342, - }, - { - l: '75.0', - x: 1.3032, - y: 77.031, - }, - { - l: '75.0', - x: 1.3224, - y: 77.2228, - }, - { - l: '75.0', - x: 1.3415, - y: 77.4022, - }, - { - l: '75.0', - x: 1.3607, - y: 77.5719, - }, - { - l: '75.0', - x: 1.3799, - y: 77.7381, - }, - { - l: '75.0', - x: 1.399, - y: 77.9031, - }, - { - l: '75.0', - x: 1.4182, - y: 78.069, - }, - { - l: '75.0', - x: 1.4374, - y: 78.2471, - }, - { - l: '75.0', - x: 1.4565, - y: 78.4281, - }, - { - l: '75.0', - x: 1.4757, - y: 78.6099, - }, - { - l: '75.0', - x: 1.4949, - y: 78.7913, - }, - { - l: '75.0', - x: 1.514, - y: 78.971, - }, - { - l: '75.0', - x: 1.5332, - y: 79.1483, - }, - { - l: '75.0', - x: 1.5524, - y: 79.3223, - }, - { - l: '75.0', - x: 1.5715, - y: 79.4922, - }, - { - l: '75.0', - x: 1.5907, - y: 79.6518, - }, - { - l: '75.0', - x: 1.6099, - y: 79.8024, - }, - { - l: '75.0', - x: 1.629, - y: 79.9501, - }, - { - l: '75.0', - x: 1.6482, - y: 80.0969, - }, - { - l: '75.0', - x: 1.6674, - y: 80.2446, - }, - { - l: '75.0', - x: 1.6865, - y: 80.403, - }, - { - l: '75.0', - x: 1.7057, - y: 80.5646, - }, - { - l: '75.0', - x: 1.7248, - y: 80.7272, - }, - { - l: '75.0', - x: 1.744, - y: 80.8897, - }, - { - l: '75.0', - x: 1.7632, - y: 81.051, - }, - { - l: '75.0', - x: 1.7823, - y: 81.2104, - }, - { - l: '75.0', - x: 1.8015, - y: 81.367, - }, - { - l: '75.0', - x: 1.8207, - y: 81.5202, - }, - { - l: '75.0', - x: 1.8398, - y: 81.6647, - }, - { - l: '75.0', - x: 1.859, - y: 81.8008, - }, - { - l: '75.0', - x: 1.8782, - y: 81.9345, - }, - { - l: '75.0', - x: 1.8973, - y: 82.0674, - }, - { - l: '75.0', - x: 1.9165, - y: 82.2014, - }, - { - l: '75.0', - x: 1.9357, - y: 82.345, - }, - { - l: '75.0', - x: 1.9548, - y: 82.4921, - }, - { - l: '75.0', - x: 1.974, - y: 82.6404, - }, - { - l: '75.0', - x: 1.9932, - y: 82.789, - }, - { - l: '75.0', - x: 2.0123, - y: 82.937, - }, - { - l: '75.0', - x: 2.0957, - y: 83.5475, - }, - { - l: '75.0', - x: 2.179, - y: 84.0939, - }, - { - l: '75.0', - x: 2.2623, - y: 84.6953, - }, - { - l: '75.0', - x: 2.3457, - y: 85.2698, - }, - { - l: '75.0', - x: 2.429, - y: 85.787, - }, - { - l: '75.0', - x: 2.5123, - y: 86.3596, - }, - { - l: '75.0', - x: 2.5957, - y: 86.9098, - }, - { - l: '75.0', - x: 2.679, - y: 87.4071, - }, - { - l: '75.0', - x: 2.7623, - y: 87.9586, - }, - { - l: '75.0', - x: 2.8457, - y: 88.4892, - }, - { - l: '75.0', - x: 2.929, - y: 88.9693, - }, - { - l: '75.0', - x: 3.0123, - y: 89.5032, - }, - { - l: '75.0', - x: 3.0957, - y: 90.019, - }, - { - l: '75.0', - x: 3.179, - y: 90.4882, - }, - { - l: '75.0', - x: 3.2623, - y: 91.0128, - }, - { - l: '75.0', - x: 3.3457, - y: 91.522, - }, - { - l: '75.0', - x: 3.429, - y: 91.9871, - }, - { - l: '75.0', - x: 3.5123, - y: 92.5087, - }, - { - l: '75.0', - x: 3.5957, - y: 93.0166, - }, - { - l: '75.0', - x: 3.679, - y: 93.4817, - }, - { - l: '75.0', - x: 3.7623, - y: 94.0048, - }, - { - l: '75.0', - x: 3.8457, - y: 94.516, - }, - { - l: '75.0', - x: 3.929, - y: 94.9861, - }, - { - l: '75.0', - x: 4.0123, - y: 95.5165, - }, - { - l: '75.0', - x: 4.0957, - y: 96.0353, - }, - { - l: '75.0', - x: 4.179, - y: 96.5122, - }, - { - l: '75.0', - x: 4.2623, - y: 97.0494, - }, - { - l: '75.0', - x: 4.3457, - y: 97.574, - }, - { - l: '75.0', - x: 4.429, - y: 98.0555, - }, - { - l: '75.0', - x: 4.5123, - y: 98.5981, - }, - { - l: '75.0', - x: 4.5957, - y: 99.1292, - }, - { - l: '75.0', - x: 4.679, - y: 99.6184, - }, - { - l: '75.0', - x: 4.7623, - y: 100.171, - }, - { - l: '75.0', - x: 4.8457, - y: 100.7125, - }, - { - l: '75.0', - x: 4.929, - y: 101.2107, - }, - { - l: '75.0', - x: 5.0123, - y: 101.772, - }, - { - l: '75.0', - x: 5.0957, - y: 102.3203, - }, - { - l: '75.0', - x: 5.179, - y: 102.8234, - }, - { - l: '75.0', - x: 5.2623, - y: 103.3888, - }, - { - l: '75.0', - x: 5.3457, - y: 103.9391, - }, - { - l: '75.0', - x: 5.429, - y: 104.4422, - }, - { - l: '75.0', - x: 5.5123, - y: 105.0058, - }, - { - l: '75.0', - x: 5.5957, - y: 105.553, - }, - { - l: '75.0', - x: 5.679, - y: 106.0521, - }, - { - l: '75.0', - x: 5.7623, - y: 106.6103, - }, - { - l: '75.0', - x: 5.8457, - y: 107.1513, - }, - { - l: '75.0', - x: 5.929, - y: 107.6444, - }, - { - l: '75.0', - x: 6.0123, - y: 108.1957, - }, - { - l: '75.0', - x: 6.0957, - y: 108.73, - }, - { - l: '75.0', - x: 6.179, - y: 109.2168, - }, - { - l: '75.0', - x: 6.2623, - y: 109.7604, - }, - { - l: '75.0', - x: 6.3457, - y: 110.287, - }, - { - l: '75.0', - x: 6.429, - y: 110.766, - }, - { - l: '75.0', - x: 6.5123, - y: 111.3007, - }, - { - l: '75.0', - x: 6.5957, - y: 111.8182, - }, - { - l: '75.0', - x: 6.679, - y: 112.2888, - }, - { - l: '75.0', - x: 6.7623, - y: 112.8135, - }, - { - l: '75.0', - x: 6.8457, - y: 113.3205, - }, - { - l: '75.0', - x: 6.929, - y: 113.7803, - }, - { - l: '75.0', - x: 7.0123, - y: 114.292, - }, - { - l: '75.0', - x: 7.0957, - y: 114.7852, - }, - { - l: '75.0', - x: 7.179, - y: 115.232, - }, - { - l: '75.0', - x: 7.2623, - y: 115.7283, - }, - { - l: '75.0', - x: 7.3457, - y: 116.2067, - }, - { - l: '75.0', - x: 7.429, - y: 116.6398, - }, - { - l: '75.0', - x: 7.5123, - y: 117.1213, - }, - { - l: '75.0', - x: 7.5957, - y: 117.5857, - }, - { - l: '75.0', - x: 7.679, - y: 118.007, - }, - { - l: '75.0', - x: 7.7623, - y: 118.4762, - }, - { - l: '75.0', - x: 7.8457, - y: 118.9298, - }, - { - l: '75.0', - x: 7.929, - y: 119.3418, - }, - { - l: '75.0', - x: 8.0123, - y: 119.8015, - }, - { - l: '75.0', - x: 8.0957, - y: 120.2468, - }, - { - l: '75.0', - x: 8.179, - y: 120.6523, - }, - { - l: '75.0', - x: 8.2623, - y: 121.1055, - }, - { - l: '75.0', - x: 8.3457, - y: 121.5449, - }, - { - l: '75.0', - x: 8.429, - y: 121.9453, - }, - { - l: '75.0', - x: 8.5123, - y: 122.3935, - }, - { - l: '75.0', - x: 8.5957, - y: 122.829, - }, - { - l: '75.0', - x: 8.679, - y: 123.2276, - }, - { - l: '75.0', - x: 8.7623, - y: 123.6753, - }, - { - l: '75.0', - x: 8.8457, - y: 124.1125, - }, - { - l: '75.0', - x: 8.929, - y: 124.5141, - }, - { - l: '75.0', - x: 9.0123, - y: 124.9672, - }, - { - l: '75.0', - x: 9.0957, - y: 125.4104, - }, - { - l: '75.0', - x: 9.179, - y: 125.818, - }, - { - l: '75.0', - x: 9.2623, - y: 126.2777, - }, - { - l: '75.0', - x: 9.3457, - y: 126.7275, - }, - { - l: '75.0', - x: 9.429, - y: 127.1407, - }, - { - l: '75.0', - x: 9.5123, - y: 127.6063, - }, - { - l: '75.0', - x: 9.5957, - y: 128.0611, - }, - { - l: '75.0', - x: 9.679, - y: 128.4787, - }, - { - l: '75.0', - x: 9.7623, - y: 128.9492, - }, - { - l: '75.0', - x: 9.8457, - y: 129.4092, - }, - { - l: '75.0', - x: 9.929, - y: 129.8321, - }, - { - l: '75.0', - x: 10.0123, - y: 130.3098, - }, - { - l: '75.0', - x: 10.0957, - y: 130.7782, - }, - { - l: '75.0', - x: 10.179, - y: 131.2101, - }, - { - l: '75.0', - x: 10.2623, - y: 131.6987, - }, - { - l: '75.0', - x: 10.3457, - y: 132.1782, - }, - { - l: '75.0', - x: 10.429, - y: 132.6205, - }, - { - l: '75.0', - x: 10.5123, - y: 133.1205, - }, - { - l: '75.0', - x: 10.5957, - y: 133.6111, - }, - { - l: '75.0', - x: 10.679, - y: 134.0635, - }, - { - l: '75.0', - x: 10.7623, - y: 134.5747, - }, - { - l: '75.0', - x: 10.8457, - y: 135.0763, - }, - { - l: '75.0', - x: 10.929, - y: 135.5385, - }, - { - l: '75.0', - x: 11.0123, - y: 136.0607, - }, - { - l: '75.0', - x: 11.0957, - y: 136.5726, - }, - { - l: '75.0', - x: 11.179, - y: 137.0442, - }, - { - l: '75.0', - x: 11.2623, - y: 137.5771, - }, - { - l: '75.0', - x: 11.3457, - y: 138.0994, - }, - { - l: '75.0', - x: 11.429, - y: 138.5803, - }, - { - l: '75.0', - x: 11.5123, - y: 139.1228, - }, - { - l: '75.0', - x: 11.5957, - y: 139.6534, - }, - { - l: '75.0', - x: 11.679, - y: 140.1405, - }, - { - l: '75.0', - x: 11.7623, - y: 140.6887, - }, - { - l: '75.0', - x: 11.8457, - y: 141.2236, - }, - { - l: '75.0', - x: 11.929, - y: 141.7139, - }, - { - l: '75.0', - x: 12.0123, - y: 142.265, - }, - { - l: '75.0', - x: 12.0957, - y: 142.8013, - }, - { - l: '75.0', - x: 12.179, - y: 143.2915, - }, - { - l: '75.0', - x: 12.2623, - y: 143.8405, - }, - { - l: '75.0', - x: 12.3457, - y: 144.3728, - }, - { - l: '75.0', - x: 12.429, - y: 144.8573, - }, - { - l: '75.0', - x: 12.5123, - y: 145.3976, - }, - { - l: '75.0', - x: 12.5957, - y: 145.9192, - }, - { - l: '75.0', - x: 12.679, - y: 146.3916, - }, - { - l: '75.0', - x: 12.7623, - y: 146.9154, - }, - { - l: '75.0', - x: 12.8457, - y: 147.4191, - }, - { - l: '75.0', - x: 12.929, - y: 147.8724, - }, - { - l: '75.0', - x: 13.0123, - y: 148.3731, - }, - { - l: '75.0', - x: 13.0957, - y: 148.8522, - }, - { - l: '75.0', - x: 13.179, - y: 149.2824, - }, - { - l: '75.0', - x: 13.2623, - y: 149.7566, - }, - { - l: '75.0', - x: 13.3457, - y: 150.2093, - }, - { - l: '75.0', - x: 13.429, - y: 150.6147, - }, - { - l: '75.0', - x: 13.5123, - y: 151.0609, - }, - { - l: '75.0', - x: 13.5957, - y: 151.4859, - }, - { - l: '75.0', - x: 13.679, - y: 151.8645, - }, - { - l: '75.0', - x: 13.7623, - y: 152.2796, - }, - { - l: '75.0', - x: 13.8457, - y: 152.672, - }, - { - l: '75.0', - x: 13.929, - y: 153.0221, - }, - { - l: '75.0', - x: 14.0123, - y: 153.403, - }, - { - l: '75.0', - x: 14.0957, - y: 153.7622, - }, - { - l: '75.0', - x: 14.179, - y: 154.0803, - }, - { - l: '75.0', - x: 14.2623, - y: 154.4263, - }, - { - l: '75.0', - x: 14.3457, - y: 154.752, - }, - { - l: '75.0', - x: 14.429, - y: 155.0398, - }, - { - l: '75.0', - x: 14.5123, - y: 155.3526, - }, - { - l: '75.0', - x: 14.5957, - y: 155.6468, - }, - { - l: '75.0', - x: 14.679, - y: 155.9064, - }, - { - l: '75.0', - x: 14.7623, - y: 156.188, - }, - { - l: '75.0', - x: 14.8457, - y: 156.4527, - }, - { - l: '75.0', - x: 14.929, - y: 156.6856, - }, - { - l: '75.0', - x: 15.0123, - y: 156.9377, - }, - { - l: '75.0', - x: 15.0957, - y: 157.1767, - }, - { - l: '75.0', - x: 15.179, - y: 157.3865, - }, - { - l: '75.0', - x: 15.2623, - y: 157.6141, - }, - { - l: '75.0', - x: 15.3457, - y: 157.828, - }, - { - l: '75.0', - x: 15.429, - y: 158.0178, - }, - { - l: '75.0', - x: 15.5123, - y: 158.2232, - }, - { - l: '75.0', - x: 15.5957, - y: 158.4173, - }, - { - l: '75.0', - x: 15.679, - y: 158.5886, - }, - { - l: '75.0', - x: 15.7623, - y: 158.7742, - }, - { - l: '75.0', - x: 15.8457, - y: 158.9506, - }, - { - l: '75.0', - x: 15.929, - y: 159.1057, - }, - { - l: '75.0', - x: 16.0123, - y: 159.2741, - }, - { - l: '75.0', - x: 16.0957, - y: 159.4325, - }, - { - l: '75.0', - x: 16.179, - y: 159.5726, - }, - { - l: '75.0', - x: 16.2623, - y: 159.7256, - }, - { - l: '75.0', - x: 16.3457, - y: 159.8697, - }, - { - l: '75.0', - x: 16.429, - y: 159.998, - }, - { - l: '75.0', - x: 16.5123, - y: 160.1372, - }, - { - l: '75.0', - x: 16.5957, - y: 160.269, - }, - { - l: '75.0', - x: 16.679, - y: 160.3862, - }, - { - l: '75.0', - x: 16.7623, - y: 160.5139, - }, - { - l: '75.0', - x: 16.8457, - y: 160.6349, - }, - { - l: '75.0', - x: 16.929, - y: 160.7424, - }, - { - l: '75.0', - x: 17.0123, - y: 160.8598, - }, - { - l: '75.0', - x: 17.0957, - y: 160.9702, - }, - { - l: '75.0', - x: 17.179, - y: 161.0691, - }, - { - l: '75.0', - x: 17.2623, - y: 161.178, - }, - { - l: '75.0', - x: 17.3457, - y: 161.2797, - }, - { - l: '75.0', - x: 17.429, - y: 161.3716, - }, - { - l: '75.0', - x: 17.5123, - y: 161.4719, - }, - { - l: '75.0', - x: 17.5957, - y: 161.5662, - }, - { - l: '75.0', - x: 17.679, - y: 161.6498, - }, - { - l: '75.0', - x: 17.7623, - y: 161.743, - }, - { - l: '75.0', - x: 17.8457, - y: 161.8301, - }, - { - l: '75.0', - x: 17.929, - y: 161.9076, - }, - { - l: '75.0', - x: 18.0123, - y: 161.992, - }, - { - l: '75.0', - x: 18.0957, - y: 162.0717, - }, - { - l: '75.0', - x: 18.179, - y: 162.1423, - }, - { - l: '75.0', - x: 18.2623, - y: 162.2201, - }, - { - l: '75.0', - x: 18.3457, - y: 162.2918, - }, - { - l: '75.0', - x: 18.429, - y: 162.3555, - }, - { - l: '75.0', - x: 18.5123, - y: 162.4273, - }, - { - l: '75.0', - x: 18.5957, - y: 162.4965, - }, - { - l: '75.0', - x: 18.679, - y: 162.5556, - }, - { - l: '75.0', - x: 18.7623, - y: 162.6205, - }, - { - l: '75.0', - x: 18.8457, - y: 162.6813, - }, - { - l: '75.0', - x: 18.929, - y: 162.7355, - }, - { - l: '75.0', - x: 19.0123, - y: 162.7922, - }, - { - l: '75.0', - x: 19.0957, - y: 162.8477, - }, - { - l: '75.0', - x: 19.179, - y: 162.8974, - }, - { - l: '75.0', - x: 19.2623, - y: 162.9454, - }, - { - l: '75.0', - x: 19.3457, - y: 162.992, - }, - { - l: '75.0', - x: 19.429, - y: 163.0347, - }, - { - l: '75.0', - x: 19.5123, - y: 163.0827, - }, - { - l: '75.0', - x: 19.5957, - y: 163.1293, - }, - { - l: '75.0', - x: 19.679, - y: 163.1702, - }, - { - l: '75.0', - x: 19.7623, - y: 163.2109, - }, - { - l: '75.0', - x: 19.8457, - y: 163.2497, - }, - { - l: '75.0', - x: 19.929, - y: 163.2823, - }, + { l: 75.0, x: 0, y: 51.1862 }, + { l: 75.0, x: 0.08, y: 53.8961 }, + { l: 75.0, x: 0.17, y: 56.5652 }, + { l: 75.0, x: 0.25, y: 59.128 }, + { l: 75.0, x: 0.33, y: 61.5316 }, + { l: 75.0, x: 0.42, y: 63.7369 }, + { l: 75.0, x: 0.5, y: 65.7176 }, + { l: 75.0, x: 0.58, y: 67.4679 }, + { l: 75.0, x: 0.67, y: 69.0102 }, + { l: 75.0, x: 0.75, y: 70.3811 }, + { l: 75.0, x: 0.83, y: 71.6142 }, + { l: 75.0, x: 0.92, y: 72.7368 }, + { l: 75.0, x: 1, y: 73.7712 }, + { l: 75.0, x: 1.08, y: 74.7344 }, + { l: 75.0, x: 1.17, y: 75.6406 }, + { l: 75.0, x: 1.25, y: 76.5015 }, + { l: 75.0, x: 1.33, y: 77.3239 }, + { l: 75.0, x: 1.42, y: 78.1114 }, + { l: 75.0, x: 1.5, y: 78.8666 }, + { l: 75.0, x: 1.58, y: 79.5929 }, + { l: 75.0, x: 1.67, y: 80.2926 }, + { l: 75.0, x: 1.75, y: 80.9679 }, + { l: 75.0, x: 1.83, y: 81.621 }, + { l: 75.0, x: 1.92, y: 82.2541 }, + { l: 75.0, x: 2, y: 82.8701 }, + { l: 75.0, x: 2.08, y: 83.4712 }, + { l: 75.0, x: 2.17, y: 84.059 }, + { l: 75.0, x: 2.25, y: 84.6349 }, + { l: 75.0, x: 2.33, y: 85.2 }, + { l: 75.0, x: 2.42, y: 85.7559 }, + { l: 75.0, x: 2.5, y: 86.3038 }, + { l: 75.0, x: 2.58, y: 86.8446 }, + { l: 75.0, x: 2.67, y: 87.3788 }, + { l: 75.0, x: 2.75, y: 87.9065 }, + { l: 75.0, x: 2.83, y: 88.428 }, + { l: 75.0, x: 2.92, y: 88.9436 }, + { l: 75.0, x: 3, y: 89.4541 }, + { l: 75.0, x: 3.08, y: 89.9607 }, + { l: 75.0, x: 3.17, y: 90.4642 }, + { l: 75.0, x: 3.25, y: 90.9655 }, + { l: 75.0, x: 3.33, y: 91.4653 }, + { l: 75.0, x: 3.42, y: 91.9641 }, + { l: 75.0, x: 3.5, y: 92.4624 }, + { l: 75.0, x: 3.58, y: 92.9606 }, + { l: 75.0, x: 3.67, y: 93.4592 }, + { l: 75.0, x: 3.75, y: 93.9587 }, + { l: 75.0, x: 3.83, y: 94.4599 }, + { l: 75.0, x: 3.92, y: 94.9636 }, + { l: 75.0, x: 4, y: 95.4699 }, + { l: 75.0, x: 4.08, y: 95.9786 }, + { l: 75.0, x: 4.17, y: 96.4895 }, + { l: 75.0, x: 4.25, y: 97.0025 }, + { l: 75.0, x: 4.33, y: 97.517 }, + { l: 75.0, x: 4.42, y: 98.033 }, + { l: 75.0, x: 4.5, y: 98.551 }, + { l: 75.0, x: 4.58, y: 99.0717 }, + { l: 75.0, x: 4.67, y: 99.5956 }, + { l: 75.0, x: 4.75, y: 100.1231 }, + { l: 75.0, x: 4.83, y: 100.6539 }, + { l: 75.0, x: 4.92, y: 101.1877 }, + { l: 75.0, x: 5, y: 101.7236 }, + { l: 75.0, x: 5.08, y: 102.2614 }, + { l: 75.0, x: 5.17, y: 102.8006 }, + { l: 75.0, x: 5.25, y: 103.3407 }, + { l: 75.0, x: 5.33, y: 103.8807 }, + { l: 75.0, x: 5.42, y: 104.4203 }, + { l: 75.0, x: 5.5, y: 104.9587 }, + { l: 75.0, x: 5.58, y: 105.4959 }, + { l: 75.0, x: 5.67, y: 106.0314 }, + { l: 75.0, x: 5.75, y: 106.5649 }, + { l: 75.0, x: 5.83, y: 107.0961 }, + { l: 75.0, x: 5.92, y: 107.6252 }, + { l: 75.0, x: 6, y: 108.1521 }, + { l: 75.0, x: 6.08, y: 108.6767 }, + { l: 75.0, x: 6.17, y: 109.1991 }, + { l: 75.0, x: 6.25, y: 109.7188 }, + { l: 75.0, x: 6.33, y: 110.2359 }, + { l: 75.0, x: 6.42, y: 110.7499 }, + { l: 75.0, x: 6.5, y: 111.2612 }, + { l: 75.0, x: 6.58, y: 111.7694 }, + { l: 75.0, x: 6.67, y: 112.2745 }, + { l: 75.0, x: 6.75, y: 112.7762 }, + { l: 75.0, x: 6.83, y: 113.2743 }, + { l: 75.0, x: 6.92, y: 113.7681 }, + { l: 75.0, x: 7, y: 114.2575 }, + { l: 75.0, x: 7.08, y: 114.7421 }, + { l: 75.0, x: 7.17, y: 115.222 }, + { l: 75.0, x: 7.25, y: 115.6968 }, + { l: 75.0, x: 7.33, y: 116.1668 }, + { l: 75.0, x: 7.42, y: 116.632 }, + { l: 75.0, x: 7.5, y: 117.0926 }, + { l: 75.0, x: 7.58, y: 117.5489 }, + { l: 75.0, x: 7.67, y: 118.0013 }, + { l: 75.0, x: 7.75, y: 118.4499 }, + { l: 75.0, x: 7.83, y: 118.8954 }, + { l: 75.0, x: 7.92, y: 119.3377 }, + { l: 75.0, x: 8, y: 119.7772 }, + { l: 75.0, x: 8.08, y: 120.2144 }, + { l: 75.0, x: 8.17, y: 120.6495 }, + { l: 75.0, x: 8.25, y: 121.0827 }, + { l: 75.0, x: 8.33, y: 121.5141 }, + { l: 75.0, x: 8.42, y: 121.9437 }, + { l: 75.0, x: 8.5, y: 122.372 }, + { l: 75.0, x: 8.58, y: 122.7994 }, + { l: 75.0, x: 8.67, y: 123.2267 }, + { l: 75.0, x: 8.75, y: 123.6543 }, + { l: 75.0, x: 8.83, y: 124.0831 }, + { l: 75.0, x: 8.92, y: 124.5134 }, + { l: 75.0, x: 9, y: 124.9459 }, + { l: 75.0, x: 9.08, y: 125.3804 }, + { l: 75.0, x: 9.17, y: 125.8171 }, + { l: 75.0, x: 9.25, y: 126.256 }, + { l: 75.0, x: 9.33, y: 126.6969 }, + { l: 75.0, x: 9.42, y: 127.1398 }, + { l: 75.0, x: 9.5, y: 127.5843 }, + { l: 75.0, x: 9.58, y: 128.0303 }, + { l: 75.0, x: 9.67, y: 128.4778 }, + { l: 75.0, x: 9.75, y: 128.9269 }, + { l: 75.0, x: 9.83, y: 129.378 }, + { l: 75.0, x: 9.92, y: 129.831 }, + { l: 75.0, x: 10, y: 130.2869 }, + { l: 75.0, x: 10.08, y: 130.746 }, + { l: 75.0, x: 10.17, y: 131.2085 }, + { l: 75.0, x: 10.25, y: 131.6747 }, + { l: 75.0, x: 10.33, y: 132.1445 }, + { l: 75.0, x: 10.42, y: 132.6181 }, + { l: 75.0, x: 10.5, y: 133.0953 }, + { l: 75.0, x: 10.58, y: 133.5761 }, + { l: 75.0, x: 10.67, y: 134.0605 }, + { l: 75.0, x: 10.75, y: 134.5483 }, + { l: 75.0, x: 10.83, y: 135.0399 }, + { l: 75.0, x: 10.92, y: 135.5348 }, + { l: 75.0, x: 11, y: 136.0332 }, + { l: 75.0, x: 11.08, y: 136.5349 }, + { l: 75.0, x: 11.17, y: 137.0399 }, + { l: 75.0, x: 11.25, y: 137.5484 }, + { l: 75.0, x: 11.33, y: 138.0603 }, + { l: 75.0, x: 11.42, y: 138.5754 }, + { l: 75.0, x: 11.5, y: 139.0932 }, + { l: 75.0, x: 11.58, y: 139.6134 }, + { l: 75.0, x: 11.67, y: 140.1354 }, + { l: 75.0, x: 11.75, y: 140.6587 }, + { l: 75.0, x: 11.83, y: 141.1833 }, + { l: 75.0, x: 11.92, y: 141.7088 }, + { l: 75.0, x: 12, y: 142.235 }, + { l: 75.0, x: 12.08, y: 142.7612 }, + { l: 75.0, x: 12.17, y: 143.2869 }, + { l: 75.0, x: 12.25, y: 143.8114 }, + { l: 75.0, x: 12.33, y: 144.3339 }, + { l: 75.0, x: 12.42, y: 144.8537 }, + { l: 75.0, x: 12.5, y: 145.3702 }, + { l: 75.0, x: 12.58, y: 145.8825 }, + { l: 75.0, x: 12.67, y: 146.3898 }, + { l: 75.0, x: 12.75, y: 146.8908 }, + { l: 75.0, x: 12.83, y: 147.3859 }, + { l: 75.0, x: 12.92, y: 147.8731 }, + { l: 75.0, x: 13, y: 148.3524 }, + { l: 75.0, x: 13.08, y: 148.8235 }, + { l: 75.0, x: 13.17, y: 149.286 }, + { l: 75.0, x: 13.25, y: 149.7399 }, + { l: 75.0, x: 13.33, y: 150.1854 }, + { l: 75.0, x: 13.42, y: 150.6214 }, + { l: 75.0, x: 13.5, y: 151.0486 }, + { l: 75.0, x: 13.58, y: 151.4669 }, + { l: 75.0, x: 13.67, y: 151.8744 }, + { l: 75.0, x: 13.75, y: 152.2723 }, + { l: 75.0, x: 13.83, y: 152.6586 }, + { l: 75.0, x: 13.92, y: 153.0355 }, + { l: 75.0, x: 14, y: 153.4007 }, + { l: 75.0, x: 14.08, y: 153.7547 }, + { l: 75.0, x: 14.17, y: 154.0975 }, + { l: 75.0, x: 14.25, y: 154.4293 }, + { l: 75.0, x: 14.33, y: 154.7503 }, + { l: 75.0, x: 14.42, y: 155.0605 }, + { l: 75.0, x: 14.5, y: 155.3604 }, + { l: 75.0, x: 14.58, y: 155.6505 }, + { l: 75.0, x: 14.67, y: 155.9304 }, + { l: 75.0, x: 14.75, y: 156.2005 }, + { l: 75.0, x: 14.83, y: 156.4614 }, + { l: 75.0, x: 14.92, y: 156.7127 }, + { l: 75.0, x: 15, y: 156.9543 }, + { l: 75.0, x: 15.08, y: 157.19 }, + { l: 75.0, x: 15.17, y: 157.4162 }, + { l: 75.0, x: 15.25, y: 157.6345 }, + { l: 75.0, x: 15.33, y: 157.8452 }, + { l: 75.0, x: 15.42, y: 158.0498 }, + { l: 75.0, x: 15.5, y: 158.2468 }, + { l: 75.0, x: 15.58, y: 158.438 }, + { l: 75.0, x: 15.67, y: 158.6228 }, + { l: 75.0, x: 15.75, y: 158.8005 }, + { l: 75.0, x: 15.83, y: 158.9745 }, + { l: 75.0, x: 15.92, y: 159.1416 }, + { l: 75.0, x: 16, y: 159.3031 }, + { l: 75.0, x: 16.08, y: 159.4593 }, + { l: 75.0, x: 16.17, y: 159.6102 }, + { l: 75.0, x: 16.25, y: 159.7569 }, + { l: 75.0, x: 16.33, y: 159.8988 }, + { l: 75.0, x: 16.42, y: 160.037 }, + { l: 75.0, x: 16.5, y: 160.1705 }, + { l: 75.0, x: 16.58, y: 160.3002 }, + { l: 75.0, x: 16.67, y: 160.4264 }, + { l: 75.0, x: 16.75, y: 160.5488 }, + { l: 75.0, x: 16.83, y: 160.668 }, + { l: 75.0, x: 16.92, y: 160.7837 }, + { l: 75.0, x: 17, y: 160.8963 }, + { l: 75.0, x: 17.08, y: 161.0051 }, + { l: 75.0, x: 17.17, y: 161.1113 }, + { l: 75.0, x: 17.25, y: 161.2158 }, + { l: 75.0, x: 17.33, y: 161.3159 }, + { l: 75.0, x: 17.42, y: 161.4147 }, + { l: 75.0, x: 17.5, y: 161.5108 }, + { l: 75.0, x: 17.58, y: 161.6039 }, + { l: 75.0, x: 17.67, y: 161.6936 }, + { l: 75.0, x: 17.75, y: 161.783 }, + { l: 75.0, x: 17.83, y: 161.8689 }, + { l: 75.0, x: 17.92, y: 161.9523 }, + { l: 75.0, x: 18, y: 162.0332 }, + { l: 75.0, x: 18.08, y: 162.1118 }, + { l: 75.0, x: 18.17, y: 162.1877 }, + { l: 75.0, x: 18.25, y: 162.2625 }, + { l: 75.0, x: 18.33, y: 162.3333 }, + { l: 75.0, x: 18.42, y: 162.4017 }, + { l: 75.0, x: 18.5, y: 162.4702 }, + { l: 75.0, x: 18.58, y: 162.5386 }, + { l: 75.0, x: 18.67, y: 162.6023 }, + { l: 75.0, x: 18.75, y: 162.6646 }, + { l: 75.0, x: 18.83, y: 162.7244 }, + { l: 75.0, x: 18.92, y: 162.7831 }, + { l: 75.0, x: 19, y: 162.8373 }, + { l: 75.0, x: 19.08, y: 162.8915 }, + { l: 75.0, x: 19.17, y: 162.9457 }, + { l: 75.0, x: 19.25, y: 162.9918 }, + { l: 75.0, x: 19.33, y: 163.0376 }, + { l: 75.0, x: 19.42, y: 163.0833 }, + { l: 75.0, x: 19.5, y: 163.1291 }, + { l: 75.0, x: 19.58, y: 163.1748 }, + { l: 75.0, x: 19.67, y: 163.2194 }, + { l: 75.0, x: 19.75, y: 163.2584 }, + { l: 75.0, x: 19.83, y: 163.2969 }, + { l: 75.0, x: 19.92, y: 163.3321 }, + { l: 75.0, x: 20, y: 163.3657 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 0.0, - y: 52.831, - }, - { - l: '91.0', - x: 0.0192, - y: 53.4972, - }, - { - l: '91.0', - x: 0.0383, - y: 54.1632, - }, - { - l: '91.0', - x: 0.0575, - y: 54.829, - }, - { - l: '91.0', - x: 0.0767, - y: 55.4946, - }, - { - l: '91.0', - x: 0.0958, - y: 56.1037, - }, - { - l: '91.0', - x: 0.115, - y: 56.6882, - }, - { - l: '91.0', - x: 0.1342, - y: 57.2651, - }, - { - l: '91.0', - x: 0.1533, - y: 57.841, - }, - { - l: '91.0', - x: 0.1725, - y: 58.4274, - }, - { - l: '91.0', - x: 0.1916, - y: 59.0545, - }, - { - l: '91.0', - x: 0.2108, - y: 59.6861, - }, - { - l: '91.0', - x: 0.23, - y: 60.3175, - }, - { - l: '91.0', - x: 0.2491, - y: 60.9442, - }, - { - l: '91.0', - x: 0.2683, - y: 61.5589, - }, - { - l: '91.0', - x: 0.2875, - y: 62.1606, - }, - { - l: '91.0', - x: 0.3066, - y: 62.7461, - }, - { - l: '91.0', - x: 0.3258, - y: 63.3118, - }, - { - l: '91.0', - x: 0.345, - y: 63.8305, - }, - { - l: '91.0', - x: 0.3641, - y: 64.3216, - }, - { - l: '91.0', - x: 0.3833, - y: 64.7976, - }, - { - l: '91.0', - x: 0.4025, - y: 65.2644, - }, - { - l: '91.0', - x: 0.4216, - y: 65.7305, - }, - { - l: '91.0', - x: 0.4408, - y: 66.2238, - }, - { - l: '91.0', - x: 0.46, - y: 66.714, - }, - { - l: '91.0', - x: 0.4791, - y: 67.1975, - }, - { - l: '91.0', - x: 0.4983, - y: 67.6712, - }, - { - l: '91.0', - x: 0.5175, - y: 68.1273, - }, - { - l: '91.0', - x: 0.5366, - y: 68.5679, - }, - { - l: '91.0', - x: 0.5558, - y: 68.9917, - }, - { - l: '91.0', - x: 0.5749, - y: 69.3969, - }, - { - l: '91.0', - x: 0.5941, - y: 69.7662, - }, - { - l: '91.0', - x: 0.6133, - y: 70.1118, - }, - { - l: '91.0', - x: 0.6324, - y: 70.4439, - }, - { - l: '91.0', - x: 0.6516, - y: 70.7674, - }, - { - l: '91.0', - x: 0.6708, - y: 71.0879, - }, - { - l: '91.0', - x: 0.6899, - y: 71.4284, - }, - { - l: '91.0', - x: 0.7091, - y: 71.7667, - }, - { - l: '91.0', - x: 0.7283, - y: 72.1007, - }, - { - l: '91.0', - x: 0.7474, - y: 72.4288, - }, - { - l: '91.0', - x: 0.7666, - y: 72.7473, - }, - { - l: '91.0', - x: 0.7858, - y: 73.0564, - }, - { - l: '91.0', - x: 0.8049, - y: 73.3554, - }, - { - l: '91.0', - x: 0.8241, - y: 73.6431, - }, - { - l: '91.0', - x: 0.8433, - y: 73.9081, - }, - { - l: '91.0', - x: 0.8624, - y: 74.1574, - }, - { - l: '91.0', - x: 0.8816, - y: 74.3989, - }, - { - l: '91.0', - x: 0.9008, - y: 74.6362, - }, - { - l: '91.0', - x: 0.9199, - y: 74.8726, - }, - { - l: '91.0', - x: 0.9391, - y: 75.1262, - }, - { - l: '91.0', - x: 0.9582, - y: 75.3802, - }, - { - l: '91.0', - x: 0.9774, - y: 75.6332, - }, - { - l: '91.0', - x: 0.9966, - y: 75.8836, - }, - { - l: '91.0', - x: 1.0157, - y: 76.1294, - }, - { - l: '91.0', - x: 1.0349, - y: 76.3699, - }, - { - l: '91.0', - x: 1.0541, - y: 76.6044, - }, - { - l: '91.0', - x: 1.0732, - y: 76.8318, - }, - { - l: '91.0', - x: 1.0924, - y: 77.0432, - }, - { - l: '91.0', - x: 1.1116, - y: 77.243, - }, - { - l: '91.0', - x: 1.1307, - y: 77.4381, - }, - { - l: '91.0', - x: 1.1499, - y: 77.6312, - }, - { - l: '91.0', - x: 1.1691, - y: 77.825, - }, - { - l: '91.0', - x: 1.1882, - y: 78.0336, - }, - { - l: '91.0', - x: 1.2074, - y: 78.2444, - }, - { - l: '91.0', - x: 1.2266, - y: 78.4558, - }, - { - l: '91.0', - x: 1.2457, - y: 78.6664, - }, - { - l: '91.0', - x: 1.2649, - y: 78.8747, - }, - { - l: '91.0', - x: 1.2841, - y: 79.0799, - }, - { - l: '91.0', - x: 1.3032, - y: 79.281, - }, - { - l: '91.0', - x: 1.3224, - y: 79.4769, - }, - { - l: '91.0', - x: 1.3415, - y: 79.6603, - }, - { - l: '91.0', - x: 1.3607, - y: 79.8337, - }, - { - l: '91.0', - x: 1.3799, - y: 80.0036, - }, - { - l: '91.0', - x: 1.399, - y: 80.1723, - }, - { - l: '91.0', - x: 1.4182, - y: 80.342, - }, - { - l: '91.0', - x: 1.4374, - y: 80.5242, - }, - { - l: '91.0', - x: 1.4565, - y: 80.7093, - }, - { - l: '91.0', - x: 1.4757, - y: 80.8952, - }, - { - l: '91.0', - x: 1.4949, - y: 81.0808, - }, - { - l: '91.0', - x: 1.514, - y: 81.2648, - }, - { - l: '91.0', - x: 1.5332, - y: 81.4462, - }, - { - l: '91.0', - x: 1.5524, - y: 81.6244, - }, - { - l: '91.0', - x: 1.5715, - y: 81.7983, - }, - { - l: '91.0', - x: 1.5907, - y: 81.9617, - }, - { - l: '91.0', - x: 1.6099, - y: 82.116, - }, - { - l: '91.0', - x: 1.629, - y: 82.2672, - }, - { - l: '91.0', - x: 1.6482, - y: 82.4176, - }, - { - l: '91.0', - x: 1.6674, - y: 82.569, - }, - { - l: '91.0', - x: 1.6865, - y: 82.7313, - }, - { - l: '91.0', - x: 1.7057, - y: 82.8969, - }, - { - l: '91.0', - x: 1.7248, - y: 83.0635, - }, - { - l: '91.0', - x: 1.744, - y: 83.2301, - }, - { - l: '91.0', - x: 1.7632, - y: 83.3955, - }, - { - l: '91.0', - x: 1.7823, - y: 83.5589, - }, - { - l: '91.0', - x: 1.8015, - y: 83.7196, - }, - { - l: '91.0', - x: 1.8207, - y: 83.8767, - }, - { - l: '91.0', - x: 1.8398, - y: 84.0249, - }, - { - l: '91.0', - x: 1.859, - y: 84.1646, - }, - { - l: '91.0', - x: 1.8782, - y: 84.3017, - }, - { - l: '91.0', - x: 1.8973, - y: 84.4382, - }, - { - l: '91.0', - x: 1.9165, - y: 84.5757, - }, - { - l: '91.0', - x: 1.9357, - y: 84.7231, - }, - { - l: '91.0', - x: 1.9548, - y: 84.8742, - }, - { - l: '91.0', - x: 1.974, - y: 85.0264, - }, - { - l: '91.0', - x: 1.9932, - y: 85.1791, - }, - { - l: '91.0', - x: 2.0123, - y: 85.331, - }, - { - l: '91.0', - x: 2.0957, - y: 85.9582, - }, - { - l: '91.0', - x: 2.179, - y: 86.5198, - }, - { - l: '91.0', - x: 2.2623, - y: 87.1383, - }, - { - l: '91.0', - x: 2.3457, - y: 87.7295, - }, - { - l: '91.0', - x: 2.429, - y: 88.2619, - }, - { - l: '91.0', - x: 2.5123, - y: 88.8515, - }, - { - l: '91.0', - x: 2.5957, - y: 89.4184, - }, - { - l: '91.0', - x: 2.679, - y: 89.9309, - }, - { - l: '91.0', - x: 2.7623, - y: 90.4996, - }, - { - l: '91.0', - x: 2.8457, - y: 91.0468, - }, - { - l: '91.0', - x: 2.929, - y: 91.5422, - }, - { - l: '91.0', - x: 3.0123, - y: 92.0932, - }, - { - l: '91.0', - x: 3.0957, - y: 92.6258, - }, - { - l: '91.0', - x: 3.179, - y: 93.1105, - }, - { - l: '91.0', - x: 3.2623, - y: 93.6526, - }, - { - l: '91.0', - x: 3.3457, - y: 94.1789, - }, - { - l: '91.0', - x: 3.429, - y: 94.6598, - }, - { - l: '91.0', - x: 3.5123, - y: 95.1994, - }, - { - l: '91.0', - x: 3.5957, - y: 95.7248, - }, - { - l: '91.0', - x: 3.679, - y: 96.2062, - }, - { - l: '91.0', - x: 3.7623, - y: 96.7478, - }, - { - l: '91.0', - x: 3.8457, - y: 97.2771, - }, - { - l: '91.0', - x: 3.929, - y: 97.7642, - }, - { - l: '91.0', - x: 4.0123, - y: 98.3137, - }, - { - l: '91.0', - x: 4.0957, - y: 98.8514, - }, - { - l: '91.0', - x: 4.179, - y: 99.3458, - }, - { - l: '91.0', - x: 4.2623, - y: 99.9029, - }, - { - l: '91.0', - x: 4.3457, - y: 100.4471, - }, - { - l: '91.0', - x: 4.429, - y: 100.9466, - }, - { - l: '91.0', - x: 4.5123, - y: 101.5097, - }, - { - l: '91.0', - x: 4.5957, - y: 102.061, - }, - { - l: '91.0', - x: 4.679, - y: 102.5689, - }, - { - l: '91.0', - x: 4.7623, - y: 103.1428, - }, - { - l: '91.0', - x: 4.8457, - y: 103.7052, - }, - { - l: '91.0', - x: 4.929, - y: 104.2227, - }, - { - l: '91.0', - x: 5.0123, - y: 104.8059, - }, - { - l: '91.0', - x: 5.0957, - y: 105.3758, - }, - { - l: '91.0', - x: 5.179, - y: 105.8986, - }, - { - l: '91.0', - x: 5.2623, - y: 106.4865, - }, - { - l: '91.0', - x: 5.3457, - y: 107.0587, - }, - { - l: '91.0', - x: 5.429, - y: 107.5819, - }, - { - l: '91.0', - x: 5.5123, - y: 108.1681, - }, - { - l: '91.0', - x: 5.5957, - y: 108.7374, - }, - { - l: '91.0', - x: 5.679, - y: 109.2567, - }, - { - l: '91.0', - x: 5.7623, - y: 109.8375, - }, - { - l: '91.0', - x: 5.8457, - y: 110.4005, - }, - { - l: '91.0', - x: 5.929, - y: 110.9138, - }, - { - l: '91.0', - x: 6.0123, - y: 111.4876, - }, - { - l: '91.0', - x: 6.0957, - y: 112.0438, - }, - { - l: '91.0', - x: 6.179, - y: 112.5506, - }, - { - l: '91.0', - x: 6.2623, - y: 113.1165, - }, - { - l: '91.0', - x: 6.3457, - y: 113.6647, - }, - { - l: '91.0', - x: 6.429, - y: 114.1634, - }, - { - l: '91.0', - x: 6.5123, - y: 114.7201, - }, - { - l: '91.0', - x: 6.5957, - y: 115.2589, - }, - { - l: '91.0', - x: 6.679, - y: 115.7488, - }, - { - l: '91.0', - x: 6.7623, - y: 116.295, - }, - { - l: '91.0', - x: 6.8457, - y: 116.8227, - }, - { - l: '91.0', - x: 6.929, - y: 117.3014, - }, - { - l: '91.0', - x: 7.0123, - y: 117.8339, - }, - { - l: '91.0', - x: 7.0957, - y: 118.3472, - }, - { - l: '91.0', - x: 7.179, - y: 118.8121, - }, - { - l: '91.0', - x: 7.2623, - y: 119.3286, - }, - { - l: '91.0', - x: 7.3457, - y: 119.8263, - }, - { - l: '91.0', - x: 7.429, - y: 120.277, - }, - { - l: '91.0', - x: 7.5123, - y: 120.7779, - }, - { - l: '91.0', - x: 7.5957, - y: 121.261, - }, - { - l: '91.0', - x: 7.679, - y: 121.6992, - }, - { - l: '91.0', - x: 7.7623, - y: 122.1872, - }, - { - l: '91.0', - x: 7.8457, - y: 122.6588, - }, - { - l: '91.0', - x: 7.929, - y: 123.0872, - }, - { - l: '91.0', - x: 8.0123, - y: 123.5652, - }, - { - l: '91.0', - x: 8.0957, - y: 124.028, - }, - { - l: '91.0', - x: 8.179, - y: 124.4494, - }, - { - l: '91.0', - x: 8.2623, - y: 124.9204, - }, - { - l: '91.0', - x: 8.3457, - y: 125.3769, - }, - { - l: '91.0', - x: 8.429, - y: 125.7929, - }, - { - l: '91.0', - x: 8.5123, - y: 126.2583, - }, - { - l: '91.0', - x: 8.5957, - y: 126.7106, - }, - { - l: '91.0', - x: 8.679, - y: 127.1243, - }, - { - l: '91.0', - x: 8.7623, - y: 127.5891, - }, - { - l: '91.0', - x: 8.8457, - y: 128.0428, - }, - { - l: '91.0', - x: 8.929, - y: 128.4594, - }, - { - l: '91.0', - x: 9.0123, - y: 128.9293, - }, - { - l: '91.0', - x: 9.0957, - y: 129.3889, - }, - { - l: '91.0', - x: 9.179, - y: 129.8114, - }, - { - l: '91.0', - x: 9.2623, - y: 130.2879, - }, - { - l: '91.0', - x: 9.3457, - y: 130.7538, - }, - { - l: '91.0', - x: 9.429, - y: 131.1818, - }, - { - l: '91.0', - x: 9.5123, - y: 131.6639, - }, - { - l: '91.0', - x: 9.5957, - y: 132.1346, - }, - { - l: '91.0', - x: 9.679, - y: 132.5667, - }, - { - l: '91.0', - x: 9.7623, - y: 133.0533, - }, - { - l: '91.0', - x: 9.8457, - y: 133.5289, - }, - { - l: '91.0', - x: 9.929, - y: 133.9659, - }, - { - l: '91.0', - x: 10.0123, - y: 134.4595, - }, - { - l: '91.0', - x: 10.0957, - y: 134.9432, - }, - { - l: '91.0', - x: 10.179, - y: 135.3891, - }, - { - l: '91.0', - x: 10.2623, - y: 135.8932, - }, - { - l: '91.0', - x: 10.3457, - y: 136.3877, - }, - { - l: '91.0', - x: 10.429, - y: 136.8436, - }, - { - l: '91.0', - x: 10.5123, - y: 137.3588, - }, - { - l: '91.0', - x: 10.5957, - y: 137.8641, - }, - { - l: '91.0', - x: 10.679, - y: 138.3297, - }, - { - l: '91.0', - x: 10.7623, - y: 138.8556, - }, - { - l: '91.0', - x: 10.8457, - y: 139.3713, - }, - { - l: '91.0', - x: 10.929, - y: 139.8463, - }, - { - l: '91.0', - x: 11.0123, - y: 140.3827, - }, - { - l: '91.0', - x: 11.0957, - y: 140.9081, - }, - { - l: '91.0', - x: 11.179, - y: 141.3919, - }, - { - l: '91.0', - x: 11.2623, - y: 141.9382, - }, - { - l: '91.0', - x: 11.3457, - y: 142.4733, - }, - { - l: '91.0', - x: 11.429, - y: 142.9657, - }, - { - l: '91.0', - x: 11.5123, - y: 143.5209, - }, - { - l: '91.0', - x: 11.5957, - y: 144.0634, - }, - { - l: '91.0', - x: 11.679, - y: 144.5613, - }, - { - l: '91.0', - x: 11.7623, - y: 145.121, - }, - { - l: '91.0', - x: 11.8457, - y: 145.667, - }, - { - l: '91.0', - x: 11.929, - y: 146.167, - }, - { - l: '91.0', - x: 12.0123, - y: 146.7285, - }, - { - l: '91.0', - x: 12.0957, - y: 147.2747, - }, - { - l: '91.0', - x: 12.179, - y: 147.7736, - }, - { - l: '91.0', - x: 12.2623, - y: 148.3318, - }, - { - l: '91.0', - x: 12.3457, - y: 148.8727, - }, - { - l: '91.0', - x: 12.429, - y: 149.3647, - }, - { - l: '91.0', - x: 12.5123, - y: 149.9129, - }, - { - l: '91.0', - x: 12.5957, - y: 150.4417, - }, - { - l: '91.0', - x: 12.679, - y: 150.9203, - }, - { - l: '91.0', - x: 12.7623, - y: 151.4507, - }, - { - l: '91.0', - x: 12.8457, - y: 151.9603, - }, - { - l: '91.0', - x: 12.929, - y: 152.4186, - }, - { - l: '91.0', - x: 13.0123, - y: 152.9245, - }, - { - l: '91.0', - x: 13.0957, - y: 153.4081, - }, - { - l: '91.0', - x: 13.179, - y: 153.8422, - }, - { - l: '91.0', - x: 13.2623, - y: 154.3203, - }, - { - l: '91.0', - x: 13.3457, - y: 154.7765, - }, - { - l: '91.0', - x: 13.429, - y: 155.1847, - }, - { - l: '91.0', - x: 13.5123, - y: 155.6337, - }, - { - l: '91.0', - x: 13.5957, - y: 156.061, - }, - { - l: '91.0', - x: 13.679, - y: 156.4416, - }, - { - l: '91.0', - x: 13.7623, - y: 156.8586, - }, - { - l: '91.0', - x: 13.8457, - y: 157.2526, - }, - { - l: '91.0', - x: 13.929, - y: 157.6039, - }, - { - l: '91.0', - x: 14.0123, - y: 157.9859, - }, - { - l: '91.0', - x: 14.0957, - y: 158.346, - }, - { - l: '91.0', - x: 14.179, - y: 158.6648, - }, - { - l: '91.0', - x: 14.2623, - y: 159.0113, - }, - { - l: '91.0', - x: 14.3457, - y: 159.3373, - }, - { - l: '91.0', - x: 14.429, - y: 159.6254, - }, - { - l: '91.0', - x: 14.5123, - y: 159.9382, - }, - { - l: '91.0', - x: 14.5957, - y: 160.2325, - }, - { - l: '91.0', - x: 14.679, - y: 160.492, - }, - { - l: '91.0', - x: 14.7623, - y: 160.7734, - }, - { - l: '91.0', - x: 14.8457, - y: 161.0378, - }, - { - l: '91.0', - x: 14.929, - y: 161.2704, - }, - { - l: '91.0', - x: 15.0123, - y: 161.5221, - }, - { - l: '91.0', - x: 15.0957, - y: 161.7607, - }, - { - l: '91.0', - x: 15.179, - y: 161.9701, - }, - { - l: '91.0', - x: 15.2623, - y: 162.1972, - }, - { - l: '91.0', - x: 15.3457, - y: 162.4106, - }, - { - l: '91.0', - x: 15.429, - y: 162.5999, - }, - { - l: '91.0', - x: 15.5123, - y: 162.8048, - }, - { - l: '91.0', - x: 15.5957, - y: 162.9983, - }, - { - l: '91.0', - x: 15.679, - y: 163.1691, - }, - { - l: '91.0', - x: 15.7623, - y: 163.3541, - }, - { - l: '91.0', - x: 15.8457, - y: 163.53, - }, - { - l: '91.0', - x: 15.929, - y: 163.6845, - }, - { - l: '91.0', - x: 16.0123, - y: 163.8523, - }, - { - l: '91.0', - x: 16.0957, - y: 164.0102, - }, - { - l: '91.0', - x: 16.179, - y: 164.1498, - }, - { - l: '91.0', - x: 16.2623, - y: 164.3022, - }, - { - l: '91.0', - x: 16.3457, - y: 164.4458, - }, - { - l: '91.0', - x: 16.429, - y: 164.5736, - }, - { - l: '91.0', - x: 16.5123, - y: 164.7123, - }, - { - l: '91.0', - x: 16.5957, - y: 164.8435, - }, - { - l: '91.0', - x: 16.679, - y: 164.9602, - }, - { - l: '91.0', - x: 16.7623, - y: 165.0874, - }, - { - l: '91.0', - x: 16.8457, - y: 165.2079, - }, - { - l: '91.0', - x: 16.929, - y: 165.315, - }, - { - l: '91.0', - x: 17.0123, - y: 165.4319, - }, - { - l: '91.0', - x: 17.0957, - y: 165.5418, - }, - { - l: '91.0', - x: 17.179, - y: 165.6402, - }, - { - l: '91.0', - x: 17.2623, - y: 165.7486, - }, - { - l: '91.0', - x: 17.3457, - y: 165.8499, - }, - { - l: '91.0', - x: 17.429, - y: 165.9414, - }, - { - l: '91.0', - x: 17.5123, - y: 166.0412, - }, - { - l: '91.0', - x: 17.5957, - y: 166.1351, - }, - { - l: '91.0', - x: 17.679, - y: 166.2183, - }, - { - l: '91.0', - x: 17.7623, - y: 166.3111, - }, - { - l: '91.0', - x: 17.8457, - y: 166.3978, - }, - { - l: '91.0', - x: 17.929, - y: 166.4749, - }, - { - l: '91.0', - x: 18.0123, - y: 166.5589, - }, - { - l: '91.0', - x: 18.0957, - y: 166.6382, - }, - { - l: '91.0', - x: 18.179, - y: 166.7085, - }, - { - l: '91.0', - x: 18.2623, - y: 166.7859, - }, - { - l: '91.0', - x: 18.3457, - y: 166.8572, - }, - { - l: '91.0', - x: 18.429, - y: 166.9207, - }, - { - l: '91.0', - x: 18.5123, - y: 166.9921, - }, - { - l: '91.0', - x: 18.5957, - y: 167.061, - }, - { - l: '91.0', - x: 18.679, - y: 167.1197, - }, - { - l: '91.0', - x: 18.7623, - y: 167.1843, - }, - { - l: '91.0', - x: 18.8457, - y: 167.2448, - }, - { - l: '91.0', - x: 18.929, - y: 167.2987, - }, - { - l: '91.0', - x: 19.0123, - y: 167.3551, - }, - { - l: '91.0', - x: 19.0957, - y: 167.4104, - }, - { - l: '91.0', - x: 19.179, - y: 167.4598, - }, - { - l: '91.0', - x: 19.2623, - y: 167.5075, - }, - { - l: '91.0', - x: 19.3457, - y: 167.5539, - }, - { - l: '91.0', - x: 19.429, - y: 167.5964, - }, - { - l: '91.0', - x: 19.5123, - y: 167.6441, - }, - { - l: '91.0', - x: 19.5957, - y: 167.6905, - }, - { - l: '91.0', - x: 19.679, - y: 167.7312, - }, - { - l: '91.0', - x: 19.7623, - y: 167.7717, - }, - { - l: '91.0', - x: 19.8457, - y: 167.8103, - }, - { - l: '91.0', - x: 19.929, - y: 167.8427, - }, + { l: 91.0, x: 0, y: 52.8497 }, + { l: 91.0, x: 0.08, y: 55.63 }, + { l: 91.0, x: 0.17, y: 58.3669 }, + { l: 91.0, x: 0.25, y: 60.9929 }, + { l: 91.0, x: 0.33, y: 63.4542 }, + { l: 91.0, x: 0.42, y: 65.7106 }, + { l: 91.0, x: 0.5, y: 67.7355 }, + { l: 91.0, x: 0.58, y: 69.5234 }, + { l: 91.0, x: 0.67, y: 71.0976 }, + { l: 91.0, x: 0.75, y: 72.4959 }, + { l: 91.0, x: 0.83, y: 73.7533 }, + { l: 91.0, x: 0.92, y: 74.8978 }, + { l: 91.0, x: 1, y: 75.9524 }, + { l: 91.0, x: 1.08, y: 76.9348 }, + { l: 91.0, x: 1.17, y: 77.8594 }, + { l: 91.0, x: 1.25, y: 78.7383 }, + { l: 91.0, x: 1.33, y: 79.5784 }, + { l: 91.0, x: 1.42, y: 80.3834 }, + { l: 91.0, x: 1.5, y: 81.156 }, + { l: 91.0, x: 1.58, y: 81.8994 }, + { l: 91.0, x: 1.67, y: 82.6161 }, + { l: 91.0, x: 1.75, y: 83.3083 }, + { l: 91.0, x: 1.83, y: 83.9781 }, + { l: 91.0, x: 1.92, y: 84.6278 }, + { l: 91.0, x: 2, y: 85.2603 }, + { l: 91.0, x: 2.08, y: 85.8777 }, + { l: 91.0, x: 2.17, y: 86.4818 }, + { l: 91.0, x: 2.25, y: 87.0741 }, + { l: 91.0, x: 2.33, y: 87.6555 }, + { l: 91.0, x: 2.42, y: 88.2277 }, + { l: 91.0, x: 2.5, y: 88.7918 }, + { l: 91.0, x: 2.58, y: 89.3489 }, + { l: 91.0, x: 2.67, y: 89.8994 }, + { l: 91.0, x: 2.75, y: 90.4435 }, + { l: 91.0, x: 2.83, y: 90.9813 }, + { l: 91.0, x: 2.92, y: 91.5133 }, + { l: 91.0, x: 3, y: 92.0402 }, + { l: 91.0, x: 3.08, y: 92.5632 }, + { l: 91.0, x: 3.17, y: 93.0833 }, + { l: 91.0, x: 3.25, y: 93.6012 }, + { l: 91.0, x: 3.33, y: 94.1178 }, + { l: 91.0, x: 3.42, y: 94.6335 }, + { l: 91.0, x: 3.5, y: 95.1488 }, + { l: 91.0, x: 3.58, y: 95.6643 }, + { l: 91.0, x: 3.67, y: 96.1803 }, + { l: 91.0, x: 3.75, y: 96.6974 }, + { l: 91.0, x: 3.83, y: 97.2164 }, + { l: 91.0, x: 3.92, y: 97.7382 }, + { l: 91.0, x: 4, y: 98.2627 }, + { l: 91.0, x: 4.08, y: 98.7899 }, + { l: 91.0, x: 4.17, y: 99.3196 }, + { l: 91.0, x: 4.25, y: 99.8515 }, + { l: 91.0, x: 4.33, y: 100.3851 }, + { l: 91.0, x: 4.42, y: 100.9204 }, + { l: 91.0, x: 4.5, y: 101.4579 }, + { l: 91.0, x: 4.58, y: 101.9983 }, + { l: 91.0, x: 4.67, y: 102.5423 }, + { l: 91.0, x: 4.75, y: 103.09 }, + { l: 91.0, x: 4.83, y: 103.6413 }, + { l: 91.0, x: 4.92, y: 104.1957 }, + { l: 91.0, x: 5, y: 104.7526 }, + { l: 91.0, x: 5.08, y: 105.3114 }, + { l: 91.0, x: 5.17, y: 105.8718 }, + { l: 91.0, x: 5.25, y: 106.4333 }, + { l: 91.0, x: 5.33, y: 106.9947 }, + { l: 91.0, x: 5.42, y: 107.5559 }, + { l: 91.0, x: 5.5, y: 108.1159 }, + { l: 91.0, x: 5.58, y: 108.6747 }, + { l: 91.0, x: 5.67, y: 109.2319 }, + { l: 91.0, x: 5.75, y: 109.787 }, + { l: 91.0, x: 5.83, y: 110.3397 }, + { l: 91.0, x: 5.92, y: 110.8904 }, + { l: 91.0, x: 6, y: 111.4388 }, + { l: 91.0, x: 6.08, y: 111.9849 }, + { l: 91.0, x: 6.17, y: 112.5287 }, + { l: 91.0, x: 6.25, y: 113.0697 }, + { l: 91.0, x: 6.33, y: 113.608 }, + { l: 91.0, x: 6.42, y: 114.1432 }, + { l: 91.0, x: 6.5, y: 114.6754 }, + { l: 91.0, x: 6.58, y: 115.2045 }, + { l: 91.0, x: 6.67, y: 115.7304 }, + { l: 91.0, x: 6.75, y: 116.2526 }, + { l: 91.0, x: 6.83, y: 116.771 }, + { l: 91.0, x: 6.92, y: 117.285 }, + { l: 91.0, x: 7, y: 117.7943 }, + { l: 91.0, x: 7.08, y: 118.2987 }, + { l: 91.0, x: 7.17, y: 118.7981 }, + { l: 91.0, x: 7.25, y: 119.2921 }, + { l: 91.0, x: 7.33, y: 119.7812 }, + { l: 91.0, x: 7.42, y: 120.2652 }, + { l: 91.0, x: 7.5, y: 120.7443 }, + { l: 91.0, x: 7.58, y: 121.2189 }, + { l: 91.0, x: 7.67, y: 121.6894 }, + { l: 91.0, x: 7.75, y: 122.156 }, + { l: 91.0, x: 7.83, y: 122.6193 }, + { l: 91.0, x: 7.92, y: 123.0791 }, + { l: 91.0, x: 8, y: 123.5361 }, + { l: 91.0, x: 8.08, y: 123.9905 }, + { l: 91.0, x: 8.17, y: 124.4427 }, + { l: 91.0, x: 8.25, y: 124.8928 }, + { l: 91.0, x: 8.33, y: 125.341 }, + { l: 91.0, x: 8.42, y: 125.7874 }, + { l: 91.0, x: 8.5, y: 126.2321 }, + { l: 91.0, x: 8.58, y: 126.6759 }, + { l: 91.0, x: 8.67, y: 127.1195 }, + { l: 91.0, x: 8.75, y: 127.5634 }, + { l: 91.0, x: 8.83, y: 128.0083 }, + { l: 91.0, x: 8.92, y: 128.4548 }, + { l: 91.0, x: 9, y: 128.9033 }, + { l: 91.0, x: 9.08, y: 129.3539 }, + { l: 91.0, x: 9.17, y: 129.8066 }, + { l: 91.0, x: 9.25, y: 130.2614 }, + { l: 91.0, x: 9.33, y: 130.7183 }, + { l: 91.0, x: 9.42, y: 131.1769 }, + { l: 91.0, x: 9.5, y: 131.6372 }, + { l: 91.0, x: 9.58, y: 132.0988 }, + { l: 91.0, x: 9.67, y: 132.5619 }, + { l: 91.0, x: 9.75, y: 133.0264 }, + { l: 91.0, x: 9.83, y: 133.4928 }, + { l: 91.0, x: 9.92, y: 133.9609 }, + { l: 91.0, x: 10, y: 134.4319 }, + { l: 91.0, x: 10.08, y: 134.9061 }, + { l: 91.0, x: 10.17, y: 135.3835 }, + { l: 91.0, x: 10.25, y: 135.8646 }, + { l: 91.0, x: 10.33, y: 136.3491 }, + { l: 91.0, x: 10.42, y: 136.8374 }, + { l: 91.0, x: 10.5, y: 137.329 }, + { l: 91.0, x: 10.58, y: 137.8241 }, + { l: 91.0, x: 10.67, y: 138.3228 }, + { l: 91.0, x: 10.75, y: 138.8247 }, + { l: 91.0, x: 10.83, y: 139.3301 }, + { l: 91.0, x: 10.92, y: 139.8388 }, + { l: 91.0, x: 11, y: 140.3507 }, + { l: 91.0, x: 11.08, y: 140.8656 }, + { l: 91.0, x: 11.17, y: 141.3838 }, + { l: 91.0, x: 11.25, y: 141.9051 }, + { l: 91.0, x: 11.33, y: 142.4296 }, + { l: 91.0, x: 11.42, y: 142.9571 }, + { l: 91.0, x: 11.5, y: 143.487 }, + { l: 91.0, x: 11.58, y: 144.019 }, + { l: 91.0, x: 11.67, y: 144.5525 }, + { l: 91.0, x: 11.75, y: 145.0869 }, + { l: 91.0, x: 11.83, y: 145.6223 }, + { l: 91.0, x: 11.92, y: 146.1583 }, + { l: 91.0, x: 12, y: 146.6946 }, + { l: 91.0, x: 12.08, y: 147.2305 }, + { l: 91.0, x: 12.17, y: 147.7654 }, + { l: 91.0, x: 12.25, y: 148.2988 }, + { l: 91.0, x: 12.33, y: 148.8298 }, + { l: 91.0, x: 12.42, y: 149.3577 }, + { l: 91.0, x: 12.5, y: 149.8819 }, + { l: 91.0, x: 12.58, y: 150.4013 }, + { l: 91.0, x: 12.67, y: 150.9154 }, + { l: 91.0, x: 12.75, y: 151.4226 }, + { l: 91.0, x: 12.83, y: 151.9236 }, + { l: 91.0, x: 12.92, y: 152.4162 }, + { l: 91.0, x: 13, y: 152.9005 }, + { l: 91.0, x: 13.08, y: 153.3762 }, + { l: 91.0, x: 13.17, y: 153.8428 }, + { l: 91.0, x: 13.25, y: 154.3006 }, + { l: 91.0, x: 13.33, y: 154.7495 }, + { l: 91.0, x: 13.42, y: 155.1885 }, + { l: 91.0, x: 13.5, y: 155.6184 }, + { l: 91.0, x: 13.58, y: 156.0392 }, + { l: 91.0, x: 13.67, y: 156.4488 }, + { l: 91.0, x: 13.75, y: 156.8485 }, + { l: 91.0, x: 13.83, y: 157.2364 }, + { l: 91.0, x: 13.92, y: 157.6147 }, + { l: 91.0, x: 14, y: 157.981 }, + { l: 91.0, x: 14.08, y: 158.3359 }, + { l: 91.0, x: 14.17, y: 158.6793 }, + { l: 91.0, x: 14.25, y: 159.0117 }, + { l: 91.0, x: 14.33, y: 159.3331 }, + { l: 91.0, x: 14.42, y: 159.6435 }, + { l: 91.0, x: 14.5, y: 159.9436 }, + { l: 91.0, x: 14.58, y: 160.2337 }, + { l: 91.0, x: 14.67, y: 160.5134 }, + { l: 91.0, x: 14.75, y: 160.7834 }, + { l: 91.0, x: 14.83, y: 161.0441 }, + { l: 91.0, x: 14.92, y: 161.2951 }, + { l: 91.0, x: 15, y: 161.5362 }, + { l: 91.0, x: 15.08, y: 161.7715 }, + { l: 91.0, x: 15.17, y: 161.9973 }, + { l: 91.0, x: 15.25, y: 162.2152 }, + { l: 91.0, x: 15.33, y: 162.4254 }, + { l: 91.0, x: 15.42, y: 162.6295 }, + { l: 91.0, x: 15.5, y: 162.8259 }, + { l: 91.0, x: 15.58, y: 163.0166 }, + { l: 91.0, x: 15.67, y: 163.2008 }, + { l: 91.0, x: 15.75, y: 163.378 }, + { l: 91.0, x: 15.83, y: 163.5514 }, + { l: 91.0, x: 15.92, y: 163.718 }, + { l: 91.0, x: 16, y: 163.8789 }, + { l: 91.0, x: 16.08, y: 164.0345 }, + { l: 91.0, x: 16.17, y: 164.1849 }, + { l: 91.0, x: 16.25, y: 164.331 }, + { l: 91.0, x: 16.33, y: 164.4725 }, + { l: 91.0, x: 16.42, y: 164.6101 }, + { l: 91.0, x: 16.5, y: 164.743 }, + { l: 91.0, x: 16.58, y: 164.8723 }, + { l: 91.0, x: 16.67, y: 164.998 }, + { l: 91.0, x: 16.75, y: 165.1199 }, + { l: 91.0, x: 16.83, y: 165.2386 }, + { l: 91.0, x: 16.92, y: 165.3538 }, + { l: 91.0, x: 17, y: 165.4659 }, + { l: 91.0, x: 17.08, y: 165.5742 }, + { l: 91.0, x: 17.17, y: 165.6799 }, + { l: 91.0, x: 17.25, y: 165.784 }, + { l: 91.0, x: 17.33, y: 165.8836 }, + { l: 91.0, x: 17.42, y: 165.982 }, + { l: 91.0, x: 17.5, y: 166.0777 }, + { l: 91.0, x: 17.58, y: 166.1703 }, + { l: 91.0, x: 17.67, y: 166.2597 }, + { l: 91.0, x: 17.75, y: 166.3486 }, + { l: 91.0, x: 17.83, y: 166.4341 }, + { l: 91.0, x: 17.92, y: 166.5171 }, + { l: 91.0, x: 18, y: 166.5977 }, + { l: 91.0, x: 18.08, y: 166.6759 }, + { l: 91.0, x: 18.17, y: 166.7514 }, + { l: 91.0, x: 18.25, y: 166.8259 }, + { l: 91.0, x: 18.33, y: 166.8963 }, + { l: 91.0, x: 18.42, y: 166.9644 }, + { l: 91.0, x: 18.5, y: 167.0325 }, + { l: 91.0, x: 18.58, y: 167.1006 }, + { l: 91.0, x: 18.67, y: 167.164 }, + { l: 91.0, x: 18.75, y: 167.2259 }, + { l: 91.0, x: 18.83, y: 167.2854 }, + { l: 91.0, x: 18.92, y: 167.3438 }, + { l: 91.0, x: 19, y: 167.3978 }, + { l: 91.0, x: 19.08, y: 167.4517 }, + { l: 91.0, x: 19.17, y: 167.5057 }, + { l: 91.0, x: 19.25, y: 167.5515 }, + { l: 91.0, x: 19.33, y: 167.597 }, + { l: 91.0, x: 19.42, y: 167.6425 }, + { l: 91.0, x: 19.5, y: 167.688 }, + { l: 91.0, x: 19.58, y: 167.7336 }, + { l: 91.0, x: 19.67, y: 167.7779 }, + { l: 91.0, x: 19.75, y: 167.8167 }, + { l: 91.0, x: 19.83, y: 167.855 }, + { l: 91.0, x: 19.92, y: 167.89 }, + { l: 91.0, x: 20, y: 167.9234 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 0.0, - y: 54.4953, - }, - { - l: '98.0', - x: 0.0192, - y: 55.1786, - }, - { - l: '98.0', - x: 0.0383, - y: 55.8616, - }, - { - l: '98.0', - x: 0.0575, - y: 56.5442, - }, - { - l: '98.0', - x: 0.0767, - y: 57.2266, - }, - { - l: '98.0', - x: 0.0958, - y: 57.8509, - }, - { - l: '98.0', - x: 0.115, - y: 58.45, - }, - { - l: '98.0', - x: 0.1342, - y: 59.0411, - }, - { - l: '98.0', - x: 0.1533, - y: 59.6312, - }, - { - l: '98.0', - x: 0.1725, - y: 60.232, - }, - { - l: '98.0', - x: 0.1916, - y: 60.8744, - }, - { - l: '98.0', - x: 0.2108, - y: 61.5212, - }, - { - l: '98.0', - x: 0.23, - y: 62.1678, - }, - { - l: '98.0', - x: 0.2491, - y: 62.8095, - }, - { - l: '98.0', - x: 0.2683, - y: 63.4388, - }, - { - l: '98.0', - x: 0.2875, - y: 64.0547, - }, - { - l: '98.0', - x: 0.3066, - y: 64.6538, - }, - { - l: '98.0', - x: 0.3258, - y: 65.2326, - }, - { - l: '98.0', - x: 0.345, - y: 65.7633, - }, - { - l: '98.0', - x: 0.3641, - y: 66.2656, - }, - { - l: '98.0', - x: 0.3833, - y: 66.7524, - }, - { - l: '98.0', - x: 0.4025, - y: 67.2297, - }, - { - l: '98.0', - x: 0.4216, - y: 67.7062, - }, - { - l: '98.0', - x: 0.4408, - y: 68.2105, - }, - { - l: '98.0', - x: 0.46, - y: 68.7114, - }, - { - l: '98.0', - x: 0.4791, - y: 69.2055, - }, - { - l: '98.0', - x: 0.4983, - y: 69.6893, - }, - { - l: '98.0', - x: 0.5175, - y: 70.1552, - }, - { - l: '98.0', - x: 0.5366, - y: 70.6051, - }, - { - l: '98.0', - x: 0.5558, - y: 71.0377, - }, - { - l: '98.0', - x: 0.5749, - y: 71.4513, - }, - { - l: '98.0', - x: 0.5941, - y: 71.8283, - }, - { - l: '98.0', - x: 0.6133, - y: 72.1809, - }, - { - l: '98.0', - x: 0.6324, - y: 72.5198, - }, - { - l: '98.0', - x: 0.6516, - y: 72.8497, - }, - { - l: '98.0', - x: 0.6708, - y: 73.1767, - }, - { - l: '98.0', - x: 0.6899, - y: 73.524, - }, - { - l: '98.0', - x: 0.7091, - y: 73.8688, - }, - { - l: '98.0', - x: 0.7283, - y: 74.2095, - }, - { - l: '98.0', - x: 0.7474, - y: 74.5439, - }, - { - l: '98.0', - x: 0.7666, - y: 74.8686, - }, - { - l: '98.0', - x: 0.7858, - y: 75.1838, - }, - { - l: '98.0', - x: 0.8049, - y: 75.4885, - }, - { - l: '98.0', - x: 0.8241, - y: 75.7817, - }, - { - l: '98.0', - x: 0.8433, - y: 76.0518, - }, - { - l: '98.0', - x: 0.8624, - y: 76.3058, - }, - { - l: '98.0', - x: 0.8816, - y: 76.552, - }, - { - l: '98.0', - x: 0.9008, - y: 76.7938, - }, - { - l: '98.0', - x: 0.9199, - y: 77.0347, - }, - { - l: '98.0', - x: 0.9391, - y: 77.2932, - }, - { - l: '98.0', - x: 0.9582, - y: 77.5521, - }, - { - l: '98.0', - x: 0.9774, - y: 77.8099, - }, - { - l: '98.0', - x: 0.9966, - y: 78.0652, - }, - { - l: '98.0', - x: 1.0157, - y: 78.3157, - }, - { - l: '98.0', - x: 1.0349, - y: 78.5609, - }, - { - l: '98.0', - x: 1.0541, - y: 78.8, - }, - { - l: '98.0', - x: 1.0732, - y: 79.0318, - }, - { - l: '98.0', - x: 1.0924, - y: 79.2474, - }, - { - l: '98.0', - x: 1.1116, - y: 79.4511, - }, - { - l: '98.0', - x: 1.1307, - y: 79.6501, - }, - { - l: '98.0', - x: 1.1499, - y: 79.8471, - }, - { - l: '98.0', - x: 1.1691, - y: 80.0448, - }, - { - l: '98.0', - x: 1.1882, - y: 80.2576, - }, - { - l: '98.0', - x: 1.2074, - y: 80.4728, - }, - { - l: '98.0', - x: 1.2266, - y: 80.6885, - }, - { - l: '98.0', - x: 1.2457, - y: 80.9035, - }, - { - l: '98.0', - x: 1.2649, - y: 81.1161, - }, - { - l: '98.0', - x: 1.2841, - y: 81.3256, - }, - { - l: '98.0', - x: 1.3032, - y: 81.5309, - }, - { - l: '98.0', - x: 1.3224, - y: 81.7311, - }, - { - l: '98.0', - x: 1.3415, - y: 81.9184, - }, - { - l: '98.0', - x: 1.3607, - y: 82.0955, - }, - { - l: '98.0', - x: 1.3799, - y: 82.2692, - }, - { - l: '98.0', - x: 1.399, - y: 82.4415, - }, - { - l: '98.0', - x: 1.4182, - y: 82.6149, - }, - { - l: '98.0', - x: 1.4374, - y: 82.8012, - }, - { - l: '98.0', - x: 1.4565, - y: 82.9904, - }, - { - l: '98.0', - x: 1.4757, - y: 83.1805, - }, - { - l: '98.0', - x: 1.4949, - y: 83.3704, - }, - { - l: '98.0', - x: 1.514, - y: 83.5585, - }, - { - l: '98.0', - x: 1.5332, - y: 83.7441, - }, - { - l: '98.0', - x: 1.5524, - y: 83.9264, - }, - { - l: '98.0', - x: 1.5715, - y: 84.1044, - }, - { - l: '98.0', - x: 1.5907, - y: 84.2716, - }, - { - l: '98.0', - x: 1.6099, - y: 84.4295, - }, - { - l: '98.0', - x: 1.629, - y: 84.5844, - }, - { - l: '98.0', - x: 1.6482, - y: 84.7383, - }, - { - l: '98.0', - x: 1.6674, - y: 84.8933, - }, - { - l: '98.0', - x: 1.6865, - y: 85.0595, - }, - { - l: '98.0', - x: 1.7057, - y: 85.2292, - }, - { - l: '98.0', - x: 1.7248, - y: 85.3998, - }, - { - l: '98.0', - x: 1.744, - y: 85.5705, - }, - { - l: '98.0', - x: 1.7632, - y: 85.74, - }, - { - l: '98.0', - x: 1.7823, - y: 85.9075, - }, - { - l: '98.0', - x: 1.8015, - y: 86.0722, - }, - { - l: '98.0', - x: 1.8207, - y: 86.2332, - }, - { - l: '98.0', - x: 1.8398, - y: 86.3852, - }, - { - l: '98.0', - x: 1.859, - y: 86.5284, - }, - { - l: '98.0', - x: 1.8782, - y: 86.669, - }, - { - l: '98.0', - x: 1.8973, - y: 86.8089, - }, - { - l: '98.0', - x: 1.9165, - y: 86.9501, - }, - { - l: '98.0', - x: 1.9357, - y: 87.1012, - }, - { - l: '98.0', - x: 1.9548, - y: 87.2562, - }, - { - l: '98.0', - x: 1.974, - y: 87.4124, - }, - { - l: '98.0', - x: 1.9932, - y: 87.5691, - }, - { - l: '98.0', - x: 2.0123, - y: 87.725, - }, - { - l: '98.0', - x: 2.0957, - y: 88.3689, - }, - { - l: '98.0', - x: 2.179, - y: 88.9458, - }, - { - l: '98.0', - x: 2.2623, - y: 89.5814, - }, - { - l: '98.0', - x: 2.3457, - y: 90.1891, - }, - { - l: '98.0', - x: 2.429, - y: 90.7367, - }, - { - l: '98.0', - x: 2.5123, - y: 91.3434, - }, - { - l: '98.0', - x: 2.5957, - y: 91.9269, - }, - { - l: '98.0', - x: 2.679, - y: 92.4546, - }, - { - l: '98.0', - x: 2.7623, - y: 93.0405, - }, - { - l: '98.0', - x: 2.8457, - y: 93.6044, - }, - { - l: '98.0', - x: 2.929, - y: 94.1151, - }, - { - l: '98.0', - x: 3.0123, - y: 94.6833, - }, - { - l: '98.0', - x: 3.0957, - y: 95.2327, - }, - { - l: '98.0', - x: 3.179, - y: 95.7328, - }, - { - l: '98.0', - x: 3.2623, - y: 96.2923, - }, - { - l: '98.0', - x: 3.3457, - y: 96.8358, - }, - { - l: '98.0', - x: 3.429, - y: 97.3326, - }, - { - l: '98.0', - x: 3.5123, - y: 97.89, - }, - { - l: '98.0', - x: 3.5957, - y: 98.4331, - }, - { - l: '98.0', - x: 3.679, - y: 98.9307, - }, - { - l: '98.0', - x: 3.7623, - y: 99.4907, - }, - { - l: '98.0', - x: 3.8457, - y: 100.0383, - }, - { - l: '98.0', - x: 3.929, - y: 100.5423, - }, - { - l: '98.0', - x: 4.0123, - y: 101.1109, - }, - { - l: '98.0', - x: 4.0957, - y: 101.6676, - }, - { - l: '98.0', - x: 4.179, - y: 102.1795, - }, - { - l: '98.0', - x: 4.2623, - y: 102.7565, - }, - { - l: '98.0', - x: 4.3457, - y: 103.3201, - }, - { - l: '98.0', - x: 4.429, - y: 103.8378, - }, - { - l: '98.0', - x: 4.5123, - y: 104.4213, - }, - { - l: '98.0', - x: 4.5957, - y: 104.9928, - }, - { - l: '98.0', - x: 4.679, - y: 105.5194, - }, - { - l: '98.0', - x: 4.7623, - y: 106.1145, - }, - { - l: '98.0', - x: 4.8457, - y: 106.6978, - }, - { - l: '98.0', - x: 4.929, - y: 107.2347, - }, - { - l: '98.0', - x: 5.0123, - y: 107.8398, - }, - { - l: '98.0', - x: 5.0957, - y: 108.4312, - }, - { - l: '98.0', - x: 5.179, - y: 108.9739, - }, - { - l: '98.0', - x: 5.2623, - y: 109.5841, - }, - { - l: '98.0', - x: 5.3457, - y: 110.1783, - }, - { - l: '98.0', - x: 5.429, - y: 110.7216, - }, - { - l: '98.0', - x: 5.5123, - y: 111.3304, - }, - { - l: '98.0', - x: 5.5957, - y: 111.9217, - }, - { - l: '98.0', - x: 5.679, - y: 112.4612, - }, - { - l: '98.0', - x: 5.7623, - y: 113.0647, - }, - { - l: '98.0', - x: 5.8457, - y: 113.6497, - }, - { - l: '98.0', - x: 5.929, - y: 114.1831, - }, - { - l: '98.0', - x: 6.0123, - y: 114.7795, - }, - { - l: '98.0', - x: 6.0957, - y: 115.3576, - }, - { - l: '98.0', - x: 6.179, - y: 115.8843, - }, - { - l: '98.0', - x: 6.2623, - y: 116.4726, - }, - { - l: '98.0', - x: 6.3457, - y: 117.0425, - }, - { - l: '98.0', - x: 6.429, - y: 117.5608, - }, - { - l: '98.0', - x: 6.5123, - y: 118.1395, - }, - { - l: '98.0', - x: 6.5957, - y: 118.6995, - }, - { - l: '98.0', - x: 6.679, - y: 119.2088, - }, - { - l: '98.0', - x: 6.7623, - y: 119.7765, - }, - { - l: '98.0', - x: 6.8457, - y: 120.3249, - }, - { - l: '98.0', - x: 6.929, - y: 120.8224, - }, - { - l: '98.0', - x: 7.0123, - y: 121.3758, - }, - { - l: '98.0', - x: 7.0957, - y: 121.9092, - }, - { - l: '98.0', - x: 7.179, - y: 122.3923, - }, - { - l: '98.0', - x: 7.2623, - y: 122.9289, - }, - { - l: '98.0', - x: 7.3457, - y: 123.446, - }, - { - l: '98.0', - x: 7.429, - y: 123.9141, - }, - { - l: '98.0', - x: 7.5123, - y: 124.4345, - }, - { - l: '98.0', - x: 7.5957, - y: 124.9362, - }, - { - l: '98.0', - x: 7.679, - y: 125.3913, - }, - { - l: '98.0', - x: 7.7623, - y: 125.8981, - }, - { - l: '98.0', - x: 7.8457, - y: 126.3878, - }, - { - l: '98.0', - x: 7.929, - y: 126.8326, - }, - { - l: '98.0', - x: 8.0123, - y: 127.3288, - }, - { - l: '98.0', - x: 8.0957, - y: 127.8092, - }, - { - l: '98.0', - x: 8.179, - y: 128.2466, - }, - { - l: '98.0', - x: 8.2623, - y: 128.7353, - }, - { - l: '98.0', - x: 8.3457, - y: 129.2089, - }, - { - l: '98.0', - x: 8.429, - y: 129.6405, - }, - { - l: '98.0', - x: 8.5123, - y: 130.1232, - }, - { - l: '98.0', - x: 8.5957, - y: 130.5922, - }, - { - l: '98.0', - x: 8.679, - y: 131.0211, - }, - { - l: '98.0', - x: 8.7623, - y: 131.5029, - }, - { - l: '98.0', - x: 8.8457, - y: 131.9731, - }, - { - l: '98.0', - x: 8.929, - y: 132.4047, - }, - { - l: '98.0', - x: 9.0123, - y: 132.8915, - }, - { - l: '98.0', - x: 9.0957, - y: 133.3674, - }, - { - l: '98.0', - x: 9.179, - y: 133.8049, - }, - { - l: '98.0', - x: 9.2623, - y: 134.298, - }, - { - l: '98.0', - x: 9.3457, - y: 134.7802, - }, - { - l: '98.0', - x: 9.429, - y: 135.223, - }, - { - l: '98.0', - x: 9.5123, - y: 135.7215, - }, - { - l: '98.0', - x: 9.5957, - y: 136.2082, - }, - { - l: '98.0', - x: 9.679, - y: 136.6547, - }, - { - l: '98.0', - x: 9.7623, - y: 137.1574, - }, - { - l: '98.0', - x: 9.8457, - y: 137.6486, - }, - { - l: '98.0', - x: 9.929, - y: 138.0998, - }, - { - l: '98.0', - x: 10.0123, - y: 138.6092, - }, - { - l: '98.0', - x: 10.0957, - y: 139.1082, - }, - { - l: '98.0', - x: 10.179, - y: 139.568, - }, - { - l: '98.0', - x: 10.2623, - y: 140.0877, - }, - { - l: '98.0', - x: 10.3457, - y: 140.5972, - }, - { - l: '98.0', - x: 10.429, - y: 141.0667, - }, - { - l: '98.0', - x: 10.5123, - y: 141.5972, - }, - { - l: '98.0', - x: 10.5957, - y: 142.117, - }, - { - l: '98.0', - x: 10.679, - y: 142.5959, - }, - { - l: '98.0', - x: 10.7623, - y: 143.1365, - }, - { - l: '98.0', - x: 10.8457, - y: 143.6664, - }, - { - l: '98.0', - x: 10.929, - y: 144.1541, - }, - { - l: '98.0', - x: 11.0123, - y: 144.7046, - }, - { - l: '98.0', - x: 11.0957, - y: 145.2436, - }, - { - l: '98.0', - x: 11.179, - y: 145.7395, - }, - { - l: '98.0', - x: 11.2623, - y: 146.2993, - }, - { - l: '98.0', - x: 11.3457, - y: 146.8472, - }, - { - l: '98.0', - x: 11.429, - y: 147.3512, - }, - { - l: '98.0', - x: 11.5123, - y: 147.919, - }, - { - l: '98.0', - x: 11.5957, - y: 148.4735, - }, - { - l: '98.0', - x: 11.679, - y: 148.982, - }, - { - l: '98.0', - x: 11.7623, - y: 149.5534, - }, - { - l: '98.0', - x: 11.8457, - y: 150.1103, - }, - { - l: '98.0', - x: 11.929, - y: 150.62, - }, - { - l: '98.0', - x: 12.0123, - y: 151.192, - }, - { - l: '98.0', - x: 12.0957, - y: 151.7481, - }, - { - l: '98.0', - x: 12.179, - y: 152.2556, - }, - { - l: '98.0', - x: 12.2623, - y: 152.8231, - }, - { - l: '98.0', - x: 12.3457, - y: 153.3726, - }, - { - l: '98.0', - x: 12.429, - y: 153.872, - }, - { - l: '98.0', - x: 12.5123, - y: 154.4282, - }, - { - l: '98.0', - x: 12.5957, - y: 154.9643, - }, - { - l: '98.0', - x: 12.679, - y: 155.4491, - }, - { - l: '98.0', - x: 12.7623, - y: 155.9859, - }, - { - l: '98.0', - x: 12.8457, - y: 156.5015, - }, - { - l: '98.0', - x: 12.929, - y: 156.9648, - }, - { - l: '98.0', - x: 13.0123, - y: 157.4758, - }, - { - l: '98.0', - x: 13.0957, - y: 157.9641, - }, - { - l: '98.0', - x: 13.179, - y: 158.4019, - }, - { - l: '98.0', - x: 13.2623, - y: 158.884, - }, - { - l: '98.0', - x: 13.3457, - y: 159.3436, - }, - { - l: '98.0', - x: 13.429, - y: 159.7546, - }, - { - l: '98.0', - x: 13.5123, - y: 160.2064, - }, - { - l: '98.0', - x: 13.5957, - y: 160.6362, - }, - { - l: '98.0', - x: 13.679, - y: 161.0188, - }, - { - l: '98.0', - x: 13.7623, - y: 161.4376, - }, - { - l: '98.0', - x: 13.8457, - y: 161.8332, - }, - { - l: '98.0', - x: 13.929, - y: 162.1857, - }, - { - l: '98.0', - x: 14.0123, - y: 162.5689, - }, - { - l: '98.0', - x: 14.0957, - y: 162.9299, - }, - { - l: '98.0', - x: 14.179, - y: 163.2492, - }, - { - l: '98.0', - x: 14.2623, - y: 163.5963, - }, - { - l: '98.0', - x: 14.3457, - y: 163.9227, - }, - { - l: '98.0', - x: 14.429, - y: 164.211, - }, - { - l: '98.0', - x: 14.5123, - y: 164.5239, - }, - { - l: '98.0', - x: 14.5957, - y: 164.8181, - }, - { - l: '98.0', - x: 14.679, - y: 165.0775, - }, - { - l: '98.0', - x: 14.7623, - y: 165.3588, - }, - { - l: '98.0', - x: 14.8457, - y: 165.6229, - }, - { - l: '98.0', - x: 14.929, - y: 165.8552, - }, - { - l: '98.0', - x: 15.0123, - y: 166.1066, - }, - { - l: '98.0', - x: 15.0957, - y: 166.3447, - }, - { - l: '98.0', - x: 15.179, - y: 166.5538, - }, - { - l: '98.0', - x: 15.2623, - y: 166.7803, - }, - { - l: '98.0', - x: 15.3457, - y: 166.9932, - }, - { - l: '98.0', - x: 15.429, - y: 167.182, - }, - { - l: '98.0', - x: 15.5123, - y: 167.3864, - }, - { - l: '98.0', - x: 15.5957, - y: 167.5793, - }, - { - l: '98.0', - x: 15.679, - y: 167.7496, - }, - { - l: '98.0', - x: 15.7623, - y: 167.9341, - }, - { - l: '98.0', - x: 15.8457, - y: 168.1093, - }, - { - l: '98.0', - x: 15.929, - y: 168.2633, - }, - { - l: '98.0', - x: 16.0123, - y: 168.4306, - }, - { - l: '98.0', - x: 16.0957, - y: 168.5879, - }, - { - l: '98.0', - x: 16.179, - y: 168.727, - }, - { - l: '98.0', - x: 16.2623, - y: 168.8788, - }, - { - l: '98.0', - x: 16.3457, - y: 169.0219, - }, - { - l: '98.0', - x: 16.429, - y: 169.1491, - }, - { - l: '98.0', - x: 16.5123, - y: 169.2873, - }, - { - l: '98.0', - x: 16.5957, - y: 169.418, - }, - { - l: '98.0', - x: 16.679, - y: 169.5342, - }, - { - l: '98.0', - x: 16.7623, - y: 169.6609, - }, - { - l: '98.0', - x: 16.8457, - y: 169.7809, - }, - { - l: '98.0', - x: 16.929, - y: 169.8875, - }, - { - l: '98.0', - x: 17.0123, - y: 170.0039, - }, - { - l: '98.0', - x: 17.0957, - y: 170.1134, - }, - { - l: '98.0', - x: 17.179, - y: 170.2114, - }, - { - l: '98.0', - x: 17.2623, - y: 170.3193, - }, - { - l: '98.0', - x: 17.3457, - y: 170.4201, - }, - { - l: '98.0', - x: 17.429, - y: 170.5112, - }, - { - l: '98.0', - x: 17.5123, - y: 170.6105, - }, - { - l: '98.0', - x: 17.5957, - y: 170.704, - }, - { - l: '98.0', - x: 17.679, - y: 170.7868, - }, - { - l: '98.0', - x: 17.7623, - y: 170.8791, - }, - { - l: '98.0', - x: 17.8457, - y: 170.9655, - }, - { - l: '98.0', - x: 17.929, - y: 171.0422, - }, - { - l: '98.0', - x: 18.0123, - y: 171.1258, - }, - { - l: '98.0', - x: 18.0957, - y: 171.2048, - }, - { - l: '98.0', - x: 18.179, - y: 171.2747, - }, - { - l: '98.0', - x: 18.2623, - y: 171.3517, - }, - { - l: '98.0', - x: 18.3457, - y: 171.4227, - }, - { - l: '98.0', - x: 18.429, - y: 171.4858, - }, - { - l: '98.0', - x: 18.5123, - y: 171.5569, - }, - { - l: '98.0', - x: 18.5957, - y: 171.6254, - }, - { - l: '98.0', - x: 18.679, - y: 171.6839, - }, - { - l: '98.0', - x: 18.7623, - y: 171.7481, - }, - { - l: '98.0', - x: 18.8457, - y: 171.8083, - }, - { - l: '98.0', - x: 18.929, - y: 171.862, - }, - { - l: '98.0', - x: 19.0123, - y: 171.9181, - }, - { - l: '98.0', - x: 19.0957, - y: 171.9731, - }, - { - l: '98.0', - x: 19.179, - y: 172.0222, - }, - { - l: '98.0', - x: 19.2623, - y: 172.0697, - }, - { - l: '98.0', - x: 19.3457, - y: 172.1158, - }, - { - l: '98.0', - x: 19.429, - y: 172.1581, - }, - { - l: '98.0', - x: 19.5123, - y: 172.2055, - }, - { - l: '98.0', - x: 19.5957, - y: 172.2517, - }, - { - l: '98.0', - x: 19.679, - y: 172.2922, - }, - { - l: '98.0', - x: 19.7623, - y: 172.3324, - }, - { - l: '98.0', - x: 19.8457, - y: 172.3708, - }, - { - l: '98.0', - x: 19.929, - y: 172.4031, - }, + { l: 98.0, x: 0, y: 54.6294 }, + { l: 98.0, x: 0.08, y: 57.4852 }, + { l: 98.0, x: 0.17, y: 60.2945 }, + { l: 98.0, x: 0.25, y: 62.9883 }, + { l: 98.0, x: 0.33, y: 65.5112 }, + { l: 98.0, x: 0.42, y: 67.8223 }, + { l: 98.0, x: 0.5, y: 69.8945 }, + { l: 98.0, x: 0.58, y: 71.7226 }, + { l: 98.0, x: 0.67, y: 73.3309 }, + { l: 98.0, x: 0.75, y: 74.7586 }, + { l: 98.0, x: 0.83, y: 76.042 }, + { l: 98.0, x: 0.92, y: 77.2099 }, + { l: 98.0, x: 1, y: 78.2862 }, + { l: 98.0, x: 1.08, y: 79.289 }, + { l: 98.0, x: 1.17, y: 80.2334 }, + { l: 98.0, x: 1.25, y: 81.1315 }, + { l: 98.0, x: 1.33, y: 81.9907 }, + { l: 98.0, x: 1.42, y: 82.8144 }, + { l: 98.0, x: 1.5, y: 83.6055 }, + { l: 98.0, x: 1.58, y: 84.3673 }, + { l: 98.0, x: 1.67, y: 85.1022 }, + { l: 98.0, x: 1.75, y: 85.8124 }, + { l: 98.0, x: 1.83, y: 86.5 }, + { l: 98.0, x: 1.92, y: 87.1674 }, + { l: 98.0, x: 2, y: 87.8175 }, + { l: 98.0, x: 2.08, y: 88.4525 }, + { l: 98.0, x: 2.17, y: 89.0741 }, + { l: 98.0, x: 2.25, y: 89.6838 }, + { l: 98.0, x: 2.33, y: 90.2827 }, + { l: 98.0, x: 2.42, y: 90.8722 }, + { l: 98.0, x: 2.5, y: 91.4538 }, + { l: 98.0, x: 2.58, y: 92.0284 }, + { l: 98.0, x: 2.67, y: 92.5963 }, + { l: 98.0, x: 2.75, y: 93.1579 }, + { l: 98.0, x: 2.83, y: 93.7132 }, + { l: 98.0, x: 2.92, y: 94.2627 }, + { l: 98.0, x: 3, y: 94.8071 }, + { l: 98.0, x: 3.08, y: 95.3477 }, + { l: 98.0, x: 3.17, y: 95.8855 }, + { l: 98.0, x: 3.25, y: 96.4212 }, + { l: 98.0, x: 3.33, y: 96.9558 }, + { l: 98.0, x: 3.42, y: 97.4896 }, + { l: 98.0, x: 3.5, y: 98.0232 }, + { l: 98.0, x: 3.58, y: 98.5571 }, + { l: 98.0, x: 3.67, y: 99.0918 }, + { l: 98.0, x: 3.75, y: 99.6276 }, + { l: 98.0, x: 3.83, y: 100.1657 }, + { l: 98.0, x: 3.92, y: 100.7068 }, + { l: 98.0, x: 4, y: 101.2508 }, + { l: 98.0, x: 4.08, y: 101.7978 }, + { l: 98.0, x: 4.17, y: 102.3475 }, + { l: 98.0, x: 4.25, y: 102.8997 }, + { l: 98.0, x: 4.33, y: 103.4538 }, + { l: 98.0, x: 4.42, y: 104.0098 }, + { l: 98.0, x: 4.5, y: 104.5682 }, + { l: 98.0, x: 4.58, y: 105.1297 }, + { l: 98.0, x: 4.67, y: 105.695 }, + { l: 98.0, x: 4.75, y: 106.2644 }, + { l: 98.0, x: 4.83, y: 106.8376 }, + { l: 98.0, x: 4.92, y: 107.4142 }, + { l: 98.0, x: 5, y: 107.9934 }, + { l: 98.0, x: 5.08, y: 108.5747 }, + { l: 98.0, x: 5.17, y: 109.1578 }, + { l: 98.0, x: 5.25, y: 109.7421 }, + { l: 98.0, x: 5.33, y: 110.3266 }, + { l: 98.0, x: 5.42, y: 110.9108 }, + { l: 98.0, x: 5.5, y: 111.4939 }, + { l: 98.0, x: 5.58, y: 112.0759 }, + { l: 98.0, x: 5.67, y: 112.6561 }, + { l: 98.0, x: 5.75, y: 113.2344 }, + { l: 98.0, x: 5.83, y: 113.8102 }, + { l: 98.0, x: 5.92, y: 114.384 }, + { l: 98.0, x: 6, y: 114.9554 }, + { l: 98.0, x: 6.08, y: 115.5245 }, + { l: 98.0, x: 6.17, y: 116.0912 }, + { l: 98.0, x: 6.25, y: 116.655 }, + { l: 98.0, x: 6.33, y: 117.216 }, + { l: 98.0, x: 6.42, y: 117.7738 }, + { l: 98.0, x: 6.5, y: 118.3284 }, + { l: 98.0, x: 6.58, y: 118.8798 }, + { l: 98.0, x: 6.67, y: 119.4279 }, + { l: 98.0, x: 6.75, y: 119.9721 }, + { l: 98.0, x: 6.83, y: 120.5123 }, + { l: 98.0, x: 6.92, y: 121.0478 }, + { l: 98.0, x: 7, y: 121.5785 }, + { l: 98.0, x: 7.08, y: 122.104 }, + { l: 98.0, x: 7.17, y: 122.6242 }, + { l: 98.0, x: 7.25, y: 123.1389 }, + { l: 98.0, x: 7.33, y: 123.6483 }, + { l: 98.0, x: 7.42, y: 124.1524 }, + { l: 98.0, x: 7.5, y: 124.6514 }, + { l: 98.0, x: 7.58, y: 125.1456 }, + { l: 98.0, x: 7.67, y: 125.6355 }, + { l: 98.0, x: 7.75, y: 126.1213 }, + { l: 98.0, x: 7.83, y: 126.6036 }, + { l: 98.0, x: 7.92, y: 127.0822 }, + { l: 98.0, x: 8, y: 127.5578 }, + { l: 98.0, x: 8.08, y: 128.0307 }, + { l: 98.0, x: 8.17, y: 128.5012 }, + { l: 98.0, x: 8.25, y: 128.9695 }, + { l: 98.0, x: 8.33, y: 129.4357 }, + { l: 98.0, x: 8.42, y: 129.8998 }, + { l: 98.0, x: 8.5, y: 130.3623 }, + { l: 98.0, x: 8.58, y: 130.8236 }, + { l: 98.0, x: 8.67, y: 131.2847 }, + { l: 98.0, x: 8.75, y: 131.7459 }, + { l: 98.0, x: 8.83, y: 132.2081 }, + { l: 98.0, x: 8.92, y: 132.6718 }, + { l: 98.0, x: 9, y: 133.1376 }, + { l: 98.0, x: 9.08, y: 133.6053 }, + { l: 98.0, x: 9.17, y: 134.0751 }, + { l: 98.0, x: 9.25, y: 134.547 }, + { l: 98.0, x: 9.33, y: 135.0209 }, + { l: 98.0, x: 9.42, y: 135.4964 }, + { l: 98.0, x: 9.5, y: 135.9735 }, + { l: 98.0, x: 9.58, y: 136.4519 }, + { l: 98.0, x: 9.67, y: 136.9315 }, + { l: 98.0, x: 9.75, y: 137.4125 }, + { l: 98.0, x: 9.83, y: 137.8953 }, + { l: 98.0, x: 9.92, y: 138.3797 }, + { l: 98.0, x: 10, y: 138.8669 }, + { l: 98.0, x: 10.08, y: 139.3571 }, + { l: 98.0, x: 10.17, y: 139.8505 }, + { l: 98.0, x: 10.25, y: 140.3475 }, + { l: 98.0, x: 10.33, y: 140.8478 }, + { l: 98.0, x: 10.42, y: 141.3517 }, + { l: 98.0, x: 10.5, y: 141.8589 }, + { l: 98.0, x: 10.58, y: 142.3693 }, + { l: 98.0, x: 10.67, y: 142.8832 }, + { l: 98.0, x: 10.75, y: 143.4001 }, + { l: 98.0, x: 10.83, y: 143.9204 }, + { l: 98.0, x: 10.92, y: 144.4438 }, + { l: 98.0, x: 11, y: 144.9701 }, + { l: 98.0, x: 11.08, y: 145.4993 }, + { l: 98.0, x: 11.17, y: 146.0314 }, + { l: 98.0, x: 11.25, y: 146.5665 }, + { l: 98.0, x: 11.33, y: 147.1045 }, + { l: 98.0, x: 11.42, y: 147.6452 }, + { l: 98.0, x: 11.5, y: 148.1881 }, + { l: 98.0, x: 11.58, y: 148.7326 }, + { l: 98.0, x: 11.67, y: 149.2784 }, + { l: 98.0, x: 11.75, y: 149.8248 }, + { l: 98.0, x: 11.83, y: 150.3718 }, + { l: 98.0, x: 11.92, y: 150.9189 }, + { l: 98.0, x: 12, y: 151.466 }, + { l: 98.0, x: 12.08, y: 152.0123 }, + { l: 98.0, x: 12.17, y: 152.5572 }, + { l: 98.0, x: 12.25, y: 153.1001 }, + { l: 98.0, x: 12.33, y: 153.6402 }, + { l: 98.0, x: 12.42, y: 154.1767 }, + { l: 98.0, x: 12.5, y: 154.709 }, + { l: 98.0, x: 12.58, y: 155.2362 }, + { l: 98.0, x: 12.67, y: 155.7575 }, + { l: 98.0, x: 12.75, y: 156.2714 }, + { l: 98.0, x: 12.83, y: 156.7787 }, + { l: 98.0, x: 12.92, y: 157.2771 }, + { l: 98.0, x: 13, y: 157.7666 }, + { l: 98.0, x: 13.08, y: 158.2472 }, + { l: 98.0, x: 13.17, y: 158.7184 }, + { l: 98.0, x: 13.25, y: 159.1801 }, + { l: 98.0, x: 13.33, y: 159.6327 }, + { l: 98.0, x: 13.42, y: 160.075 }, + { l: 98.0, x: 13.5, y: 160.5079 }, + { l: 98.0, x: 13.58, y: 160.9313 }, + { l: 98.0, x: 13.67, y: 161.3431 }, + { l: 98.0, x: 13.75, y: 161.7448 }, + { l: 98.0, x: 13.83, y: 162.1343 }, + { l: 98.0, x: 13.92, y: 162.5141 }, + { l: 98.0, x: 14, y: 162.8816 }, + { l: 98.0, x: 14.08, y: 163.2375 }, + { l: 98.0, x: 14.17, y: 163.5817 }, + { l: 98.0, x: 14.25, y: 163.9146 }, + { l: 98.0, x: 14.33, y: 164.2364 }, + { l: 98.0, x: 14.42, y: 164.5471 }, + { l: 98.0, x: 14.5, y: 164.8472 }, + { l: 98.0, x: 14.58, y: 165.1374 }, + { l: 98.0, x: 14.67, y: 165.417 }, + { l: 98.0, x: 14.75, y: 165.6868 }, + { l: 98.0, x: 14.83, y: 165.9472 }, + { l: 98.0, x: 14.92, y: 166.1979 }, + { l: 98.0, x: 15, y: 166.4387 }, + { l: 98.0, x: 15.08, y: 166.6735 }, + { l: 98.0, x: 15.17, y: 166.8989 }, + { l: 98.0, x: 15.25, y: 167.1162 }, + { l: 98.0, x: 15.33, y: 167.3259 }, + { l: 98.0, x: 15.42, y: 167.5294 }, + { l: 98.0, x: 15.5, y: 167.7253 }, + { l: 98.0, x: 15.58, y: 167.9154 }, + { l: 98.0, x: 15.67, y: 168.099 }, + { l: 98.0, x: 15.75, y: 168.2756 }, + { l: 98.0, x: 15.83, y: 168.4484 }, + { l: 98.0, x: 15.92, y: 168.6144 }, + { l: 98.0, x: 16, y: 168.7748 }, + { l: 98.0, x: 16.08, y: 168.9298 }, + { l: 98.0, x: 16.17, y: 169.0796 }, + { l: 98.0, x: 16.25, y: 169.2251 }, + { l: 98.0, x: 16.33, y: 169.366 }, + { l: 98.0, x: 16.42, y: 169.503 }, + { l: 98.0, x: 16.5, y: 169.6354 }, + { l: 98.0, x: 16.58, y: 169.7641 }, + { l: 98.0, x: 16.67, y: 169.8892 }, + { l: 98.0, x: 16.75, y: 170.0106 }, + { l: 98.0, x: 16.83, y: 170.1288 }, + { l: 98.0, x: 16.92, y: 170.2435 }, + { l: 98.0, x: 17, y: 170.3551 }, + { l: 98.0, x: 17.08, y: 170.4629 }, + { l: 98.0, x: 17.17, y: 170.5681 }, + { l: 98.0, x: 17.25, y: 170.6717 }, + { l: 98.0, x: 17.33, y: 170.7708 }, + { l: 98.0, x: 17.42, y: 170.8688 }, + { l: 98.0, x: 17.5, y: 170.9639 }, + { l: 98.0, x: 17.58, y: 171.0561 }, + { l: 98.0, x: 17.67, y: 171.1451 }, + { l: 98.0, x: 17.75, y: 171.2336 }, + { l: 98.0, x: 17.83, y: 171.3186 }, + { l: 98.0, x: 17.92, y: 171.4012 }, + { l: 98.0, x: 18, y: 171.4813 }, + { l: 98.0, x: 18.08, y: 171.5592 }, + { l: 98.0, x: 18.17, y: 171.6343 }, + { l: 98.0, x: 18.25, y: 171.7083 }, + { l: 98.0, x: 18.33, y: 171.7784 }, + { l: 98.0, x: 18.42, y: 171.8461 }, + { l: 98.0, x: 18.5, y: 171.9139 }, + { l: 98.0, x: 18.58, y: 171.9817 }, + { l: 98.0, x: 18.67, y: 172.0447 }, + { l: 98.0, x: 18.75, y: 172.1063 }, + { l: 98.0, x: 18.83, y: 172.1655 }, + { l: 98.0, x: 18.92, y: 172.2236 }, + { l: 98.0, x: 19, y: 172.2772 }, + { l: 98.0, x: 19.08, y: 172.3309 }, + { l: 98.0, x: 19.17, y: 172.3845 }, + { l: 98.0, x: 19.25, y: 172.4301 }, + { l: 98.0, x: 19.33, y: 172.4753 }, + { l: 98.0, x: 19.42, y: 172.5206 }, + { l: 98.0, x: 19.5, y: 172.5659 }, + { l: 98.0, x: 19.58, y: 172.6111 }, + { l: 98.0, x: 19.67, y: 172.6552 }, + { l: 98.0, x: 19.75, y: 172.6938 }, + { l: 98.0, x: 19.83, y: 172.7318 }, + { l: 98.0, x: 19.92, y: 172.7667 }, + { l: 98.0, x: 20, y: 172.7999 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 0.0, - y: 56.1597, - }, - { - l: '99.6', - x: 0.0192, - y: 56.86, - }, - { - l: '99.6', - x: 0.0383, - y: 57.5599, - }, - { - l: '99.6', - x: 0.0575, - y: 58.2594, - }, - { - l: '99.6', - x: 0.0767, - y: 58.9585, - }, - { - l: '99.6', - x: 0.0958, - y: 59.5982, - }, - { - l: '99.6', - x: 0.115, - y: 60.2118, - }, - { - l: '99.6', - x: 0.1342, - y: 60.8172, - }, - { - l: '99.6', - x: 0.1533, - y: 61.4215, - }, - { - l: '99.6', - x: 0.1725, - y: 62.0367, - }, - { - l: '99.6', - x: 0.1916, - y: 62.6943, - }, - { - l: '99.6', - x: 0.2108, - y: 63.3564, - }, - { - l: '99.6', - x: 0.23, - y: 64.0182, - }, - { - l: '99.6', - x: 0.2491, - y: 64.6748, - }, - { - l: '99.6', - x: 0.2683, - y: 65.3186, - }, - { - l: '99.6', - x: 0.2875, - y: 65.9487, - }, - { - l: '99.6', - x: 0.3066, - y: 66.5615, - }, - { - l: '99.6', - x: 0.3258, - y: 67.1534, - }, - { - l: '99.6', - x: 0.345, - y: 67.6961, - }, - { - l: '99.6', - x: 0.3641, - y: 68.2096, - }, - { - l: '99.6', - x: 0.3833, - y: 68.7072, - }, - { - l: '99.6', - x: 0.4025, - y: 69.195, - }, - { - l: '99.6', - x: 0.4216, - y: 69.6819, - }, - { - l: '99.6', - x: 0.4408, - y: 70.1971, - }, - { - l: '99.6', - x: 0.46, - y: 70.7088, - }, - { - l: '99.6', - x: 0.4791, - y: 71.2134, - }, - { - l: '99.6', - x: 0.4983, - y: 71.7074, - }, - { - l: '99.6', - x: 0.5175, - y: 72.1831, - }, - { - l: '99.6', - x: 0.5366, - y: 72.6423, - }, - { - l: '99.6', - x: 0.5558, - y: 73.0838, - }, - { - l: '99.6', - x: 0.5749, - y: 73.5058, - }, - { - l: '99.6', - x: 0.5941, - y: 73.8904, - }, - { - l: '99.6', - x: 0.6133, - y: 74.25, - }, - { - l: '99.6', - x: 0.6324, - y: 74.5956, - }, - { - l: '99.6', - x: 0.6516, - y: 74.9321, - }, - { - l: '99.6', - x: 0.6708, - y: 75.2654, - }, - { - l: '99.6', - x: 0.6899, - y: 75.6195, - }, - { - l: '99.6', - x: 0.7091, - y: 75.971, - }, - { - l: '99.6', - x: 0.7283, - y: 76.3182, - }, - { - l: '99.6', - x: 0.7474, - y: 76.6591, - }, - { - l: '99.6', - x: 0.7666, - y: 76.99, - }, - { - l: '99.6', - x: 0.7858, - y: 77.3111, - }, - { - l: '99.6', - x: 0.8049, - y: 77.6216, - }, - { - l: '99.6', - x: 0.8241, - y: 77.9203, - }, - { - l: '99.6', - x: 0.8433, - y: 78.1954, - }, - { - l: '99.6', - x: 0.8624, - y: 78.4543, - }, - { - l: '99.6', - x: 0.8816, - y: 78.7051, - }, - { - l: '99.6', - x: 0.9008, - y: 78.9514, - }, - { - l: '99.6', - x: 0.9199, - y: 79.1969, - }, - { - l: '99.6', - x: 0.9391, - y: 79.4602, - }, - { - l: '99.6', - x: 0.9582, - y: 79.724, - }, - { - l: '99.6', - x: 0.9774, - y: 79.9867, - }, - { - l: '99.6', - x: 0.9966, - y: 80.2468, - }, - { - l: '99.6', - x: 1.0157, - y: 80.502, - }, - { - l: '99.6', - x: 1.0349, - y: 80.7519, - }, - { - l: '99.6', - x: 1.0541, - y: 80.9955, - }, - { - l: '99.6', - x: 1.0732, - y: 81.2318, - }, - { - l: '99.6', - x: 1.0924, - y: 81.4516, - }, - { - l: '99.6', - x: 1.1116, - y: 81.6593, - }, - { - l: '99.6', - x: 1.1307, - y: 81.8621, - }, - { - l: '99.6', - x: 1.1499, - y: 82.063, - }, - { - l: '99.6', - x: 1.1691, - y: 82.2646, - }, - { - l: '99.6', - x: 1.1882, - y: 82.4817, - }, - { - l: '99.6', - x: 1.2074, - y: 82.7012, - }, - { - l: '99.6', - x: 1.2266, - y: 82.9212, - }, - { - l: '99.6', - x: 1.2457, - y: 83.1406, - }, - { - l: '99.6', - x: 1.2649, - y: 83.3575, - }, - { - l: '99.6', - x: 1.2841, - y: 83.5713, - }, - { - l: '99.6', - x: 1.3032, - y: 83.7809, - }, - { - l: '99.6', - x: 1.3224, - y: 83.9852, - }, - { - l: '99.6', - x: 1.3415, - y: 84.1765, - }, - { - l: '99.6', - x: 1.3607, - y: 84.3574, - }, - { - l: '99.6', - x: 1.3799, - y: 84.5347, - }, - { - l: '99.6', - x: 1.399, - y: 84.7107, - }, - { - l: '99.6', - x: 1.4182, - y: 84.8879, - }, - { - l: '99.6', - x: 1.4374, - y: 85.0782, - }, - { - l: '99.6', - x: 1.4565, - y: 85.2716, - }, - { - l: '99.6', - x: 1.4757, - y: 85.4659, - }, - { - l: '99.6', - x: 1.4949, - y: 85.6599, - }, - { - l: '99.6', - x: 1.514, - y: 85.8522, - }, - { - l: '99.6', - x: 1.5332, - y: 86.042, - }, - { - l: '99.6', - x: 1.5524, - y: 86.2284, - }, - { - l: '99.6', - x: 1.5715, - y: 86.4104, - }, - { - l: '99.6', - x: 1.5907, - y: 86.5815, - }, - { - l: '99.6', - x: 1.6099, - y: 86.743, - }, - { - l: '99.6', - x: 1.629, - y: 86.9015, - }, - { - l: '99.6', - x: 1.6482, - y: 87.059, - }, - { - l: '99.6', - x: 1.6674, - y: 87.2176, - }, - { - l: '99.6', - x: 1.6865, - y: 87.3878, - }, - { - l: '99.6', - x: 1.7057, - y: 87.5614, - }, - { - l: '99.6', - x: 1.7248, - y: 87.7362, - }, - { - l: '99.6', - x: 1.744, - y: 87.911, - }, - { - l: '99.6', - x: 1.7632, - y: 88.0845, - }, - { - l: '99.6', - x: 1.7823, - y: 88.256, - }, - { - l: '99.6', - x: 1.8015, - y: 88.4247, - }, - { - l: '99.6', - x: 1.8207, - y: 88.5897, - }, - { - l: '99.6', - x: 1.8398, - y: 88.7454, - }, - { - l: '99.6', - x: 1.859, - y: 88.8922, - }, - { - l: '99.6', - x: 1.8782, - y: 89.0363, - }, - { - l: '99.6', - x: 1.8973, - y: 89.1797, - }, - { - l: '99.6', - x: 1.9165, - y: 89.3244, - }, - { - l: '99.6', - x: 1.9357, - y: 89.4793, - }, - { - l: '99.6', - x: 1.9548, - y: 89.6382, - }, - { - l: '99.6', - x: 1.974, - y: 89.7985, - }, - { - l: '99.6', - x: 1.9932, - y: 89.9591, - }, - { - l: '99.6', - x: 2.0123, - y: 90.119, - }, - { - l: '99.6', - x: 2.0957, - y: 90.7796, - }, - { - l: '99.6', - x: 2.179, - y: 91.3718, - }, - { - l: '99.6', - x: 2.2623, - y: 92.0245, - }, - { - l: '99.6', - x: 2.3457, - y: 92.6488, - }, - { - l: '99.6', - x: 2.429, - y: 93.2116, - }, - { - l: '99.6', - x: 2.5123, - y: 93.8354, - }, - { - l: '99.6', - x: 2.5957, - y: 94.4355, - }, - { - l: '99.6', - x: 2.679, - y: 94.9784, - }, - { - l: '99.6', - x: 2.7623, - y: 95.5814, - }, - { - l: '99.6', - x: 2.8457, - y: 96.1621, - }, - { - l: '99.6', - x: 2.929, - y: 96.6879, - }, - { - l: '99.6', - x: 3.0123, - y: 97.2734, - }, - { - l: '99.6', - x: 3.0957, - y: 97.8396, - }, - { - l: '99.6', - x: 3.179, - y: 98.3551, - }, - { - l: '99.6', - x: 3.2623, - y: 98.9321, - }, - { - l: '99.6', - x: 3.3457, - y: 99.4927, - }, - { - l: '99.6', - x: 3.429, - y: 100.0053, - }, - { - l: '99.6', - x: 3.5123, - y: 100.5807, - }, - { - l: '99.6', - x: 3.5957, - y: 101.1413, - }, - { - l: '99.6', - x: 3.679, - y: 101.6553, - }, - { - l: '99.6', - x: 3.7623, - y: 102.2337, - }, - { - l: '99.6', - x: 3.8457, - y: 102.7995, - }, - { - l: '99.6', - x: 3.929, - y: 103.3203, - }, - { - l: '99.6', - x: 4.0123, - y: 103.9082, - }, - { - l: '99.6', - x: 4.0957, - y: 104.4837, - }, - { - l: '99.6', - x: 4.179, - y: 105.0131, - }, - { - l: '99.6', - x: 4.2623, - y: 105.61, - }, - { - l: '99.6', - x: 4.3457, - y: 106.1932, - }, - { - l: '99.6', - x: 4.429, - y: 106.7289, - }, - { - l: '99.6', - x: 4.5123, - y: 107.3329, - }, - { - l: '99.6', - x: 4.5957, - y: 107.9246, - }, - { - l: '99.6', - x: 4.679, - y: 108.4698, - }, - { - l: '99.6', - x: 4.7623, - y: 109.0862, - }, - { - l: '99.6', - x: 4.8457, - y: 109.6905, - }, - { - l: '99.6', - x: 4.929, - y: 110.2467, - }, - { - l: '99.6', - x: 5.0123, - y: 110.8737, - }, - { - l: '99.6', - x: 5.0957, - y: 111.4866, - }, - { - l: '99.6', - x: 5.179, - y: 112.0492, - }, - { - l: '99.6', - x: 5.2623, - y: 112.6818, - }, - { - l: '99.6', - x: 5.3457, - y: 113.2979, - }, - { - l: '99.6', - x: 5.429, - y: 113.8613, - }, - { - l: '99.6', - x: 5.5123, - y: 114.4927, - }, - { - l: '99.6', - x: 5.5957, - y: 115.1061, - }, - { - l: '99.6', - x: 5.679, - y: 115.6658, - }, - { - l: '99.6', - x: 5.7623, - y: 116.2919, - }, - { - l: '99.6', - x: 5.8457, - y: 116.899, - }, - { - l: '99.6', - x: 5.929, - y: 117.4525, - }, - { - l: '99.6', - x: 6.0123, - y: 118.0714, - }, - { - l: '99.6', - x: 6.0957, - y: 118.6714, - }, - { - l: '99.6', - x: 6.179, - y: 119.2181, - }, - { - l: '99.6', - x: 6.2623, - y: 119.8287, - }, - { - l: '99.6', - x: 6.3457, - y: 120.4202, - }, - { - l: '99.6', - x: 6.429, - y: 120.9582, - }, - { - l: '99.6', - x: 6.5123, - y: 121.5589, - }, - { - l: '99.6', - x: 6.5957, - y: 122.1402, - }, - { - l: '99.6', - x: 6.679, - y: 122.6687, - }, - { - l: '99.6', - x: 6.7623, - y: 123.258, - }, - { - l: '99.6', - x: 6.8457, - y: 123.8272, - }, - { - l: '99.6', - x: 6.929, - y: 124.3434, - }, - { - l: '99.6', - x: 7.0123, - y: 124.9177, - }, - { - l: '99.6', - x: 7.0957, - y: 125.4712, - }, - { - l: '99.6', - x: 7.179, - y: 125.9724, - }, - { - l: '99.6', - x: 7.2623, - y: 126.5292, - }, - { - l: '99.6', - x: 7.3457, - y: 127.0657, - }, - { - l: '99.6', - x: 7.429, - y: 127.5513, - }, - { - l: '99.6', - x: 7.5123, - y: 128.0911, - }, - { - l: '99.6', - x: 7.5957, - y: 128.6115, - }, - { - l: '99.6', - x: 7.679, - y: 129.0835, - }, - { - l: '99.6', - x: 7.7623, - y: 129.609, - }, - { - l: '99.6', - x: 7.8457, - y: 130.1168, - }, - { - l: '99.6', - x: 7.929, - y: 130.578, - }, - { - l: '99.6', - x: 8.0123, - y: 131.0924, - }, - { - l: '99.6', - x: 8.0957, - y: 131.5904, - }, - { - l: '99.6', - x: 8.179, - y: 132.0437, - }, - { - l: '99.6', - x: 8.2623, - y: 132.5502, - }, - { - l: '99.6', - x: 8.3457, - y: 133.041, - }, - { - l: '99.6', - x: 8.429, - y: 133.488, - }, - { - l: '99.6', - x: 8.5123, - y: 133.9881, - }, - { - l: '99.6', - x: 8.5957, - y: 134.4738, - }, - { - l: '99.6', - x: 8.679, - y: 134.9179, - }, - { - l: '99.6', - x: 8.7623, - y: 135.4167, - }, - { - l: '99.6', - x: 8.8457, - y: 135.9033, - }, - { - l: '99.6', - x: 8.929, - y: 136.35, - }, - { - l: '99.6', - x: 9.0123, - y: 136.8536, - }, - { - l: '99.6', - x: 9.0957, - y: 137.3459, - }, - { - l: '99.6', - x: 9.179, - y: 137.7983, - }, - { - l: '99.6', - x: 9.2623, - y: 138.3082, - }, - { - l: '99.6', - x: 9.3457, - y: 138.8066, - }, - { - l: '99.6', - x: 9.429, - y: 139.2641, - }, - { - l: '99.6', - x: 9.5123, - y: 139.7791, - }, - { - l: '99.6', - x: 9.5957, - y: 140.2817, - }, - { - l: '99.6', - x: 9.679, - y: 140.7427, - }, - { - l: '99.6', - x: 9.7623, - y: 141.2615, - }, - { - l: '99.6', - x: 9.8457, - y: 141.7683, - }, - { - l: '99.6', - x: 9.929, - y: 142.2337, - }, - { - l: '99.6', - x: 10.0123, - y: 142.7589, - }, - { - l: '99.6', - x: 10.0957, - y: 143.2733, - }, - { - l: '99.6', - x: 10.179, - y: 143.7469, - }, - { - l: '99.6', - x: 10.2623, - y: 144.2822, - }, - { - l: '99.6', - x: 10.3457, - y: 144.8067, - }, - { - l: '99.6', - x: 10.429, - y: 145.2898, - }, - { - l: '99.6', - x: 10.5123, - y: 145.8355, - }, - { - l: '99.6', - x: 10.5957, - y: 146.3699, - }, - { - l: '99.6', - x: 10.679, - y: 146.8621, - }, - { - l: '99.6', - x: 10.7623, - y: 147.4174, - }, - { - l: '99.6', - x: 10.8457, - y: 147.9614, - }, - { - l: '99.6', - x: 10.929, - y: 148.4619, - }, - { - l: '99.6', - x: 11.0123, - y: 149.0266, - }, - { - l: '99.6', - x: 11.0957, - y: 149.579, - }, - { - l: '99.6', - x: 11.179, - y: 150.0872, - }, - { - l: '99.6', - x: 11.2623, - y: 150.6604, - }, - { - l: '99.6', - x: 11.3457, - y: 151.2212, - }, - { - l: '99.6', - x: 11.429, - y: 151.7366, - }, - { - l: '99.6', - x: 11.5123, - y: 152.317, - }, - { - l: '99.6', - x: 11.5957, - y: 152.8835, - }, - { - l: '99.6', - x: 11.679, - y: 153.4027, - }, - { - l: '99.6', - x: 11.7623, - y: 153.9857, - }, - { - l: '99.6', - x: 11.8457, - y: 154.5536, - }, - { - l: '99.6', - x: 11.929, - y: 155.073, - }, - { - l: '99.6', - x: 12.0123, - y: 155.6556, - }, - { - l: '99.6', - x: 12.0957, - y: 156.2215, - }, - { - l: '99.6', - x: 12.179, - y: 156.7376, - }, - { - l: '99.6', - x: 12.2623, - y: 157.3144, - }, - { - l: '99.6', - x: 12.3457, - y: 157.8724, - }, - { - l: '99.6', - x: 12.429, - y: 158.3793, - }, - { - l: '99.6', - x: 12.5123, - y: 158.9434, - }, - { - l: '99.6', - x: 12.5957, - y: 159.4868, - }, - { - l: '99.6', - x: 12.679, - y: 159.9778, - }, - { - l: '99.6', - x: 12.7623, - y: 160.5212, - }, - { - l: '99.6', - x: 12.8457, - y: 161.0427, - }, - { - l: '99.6', - x: 12.929, - y: 161.5109, - }, - { - l: '99.6', - x: 13.0123, - y: 162.0272, - }, - { - l: '99.6', - x: 13.0957, - y: 162.52, - }, - { - l: '99.6', - x: 13.179, - y: 162.9617, - }, - { - l: '99.6', - x: 13.2623, - y: 163.4476, - }, - { - l: '99.6', - x: 13.3457, - y: 163.9107, - }, - { - l: '99.6', - x: 13.429, - y: 164.3245, - }, - { - l: '99.6', - x: 13.5123, - y: 164.7792, - }, - { - l: '99.6', - x: 13.5957, - y: 165.2114, - }, - { - l: '99.6', - x: 13.679, - y: 165.5959, - }, - { - l: '99.6', - x: 13.7623, - y: 166.0167, - }, - { - l: '99.6', - x: 13.8457, - y: 166.4138, - }, - { - l: '99.6', - x: 13.929, - y: 166.7675, - }, - { - l: '99.6', - x: 14.0123, - y: 167.1518, - }, - { - l: '99.6', - x: 14.0957, - y: 167.5137, - }, - { - l: '99.6', - x: 14.179, - y: 167.8337, - }, - { - l: '99.6', - x: 14.2623, - y: 168.1813, - }, - { - l: '99.6', - x: 14.3457, - y: 168.508, - }, - { - l: '99.6', - x: 14.429, - y: 168.7965, - }, - { - l: '99.6', - x: 14.5123, - y: 169.1096, - }, - { - l: '99.6', - x: 14.5957, - y: 169.4038, - }, - { - l: '99.6', - x: 14.679, - y: 169.6631, - }, - { - l: '99.6', - x: 14.7623, - y: 169.9441, - }, - { - l: '99.6', - x: 14.8457, - y: 170.208, - }, - { - l: '99.6', - x: 14.929, - y: 170.44, - }, - { - l: '99.6', - x: 15.0123, - y: 170.691, - }, - { - l: '99.6', - x: 15.0957, - y: 170.9288, - }, - { - l: '99.6', - x: 15.179, - y: 171.1374, - }, - { - l: '99.6', - x: 15.2623, - y: 171.3634, - }, - { - l: '99.6', - x: 15.3457, - y: 171.5758, - }, - { - l: '99.6', - x: 15.429, - y: 171.7641, - }, - { - l: '99.6', - x: 15.5123, - y: 171.9679, - }, - { - l: '99.6', - x: 15.5957, - y: 172.1603, - }, - { - l: '99.6', - x: 15.679, - y: 172.3301, - }, - { - l: '99.6', - x: 15.7623, - y: 172.514, - }, - { - l: '99.6', - x: 15.8457, - y: 172.6887, - }, - { - l: '99.6', - x: 15.929, - y: 172.8422, - }, - { - l: '99.6', - x: 16.0123, - y: 173.0088, - }, - { - l: '99.6', - x: 16.0957, - y: 173.1655, - }, - { - l: '99.6', - x: 16.179, - y: 173.3042, - }, - { - l: '99.6', - x: 16.2623, - y: 173.4554, - }, - { - l: '99.6', - x: 16.3457, - y: 173.5979, - }, - { - l: '99.6', - x: 16.429, - y: 173.7247, - }, - { - l: '99.6', - x: 16.5123, - y: 173.8623, - }, - { - l: '99.6', - x: 16.5957, - y: 173.9925, - }, - { - l: '99.6', - x: 16.679, - y: 174.1082, - }, - { - l: '99.6', - x: 16.7623, - y: 174.2344, - }, - { - l: '99.6', - x: 16.8457, - y: 174.3539, - }, - { - l: '99.6', - x: 16.929, - y: 174.46, - }, - { - l: '99.6', - x: 17.0123, - y: 174.5759, - }, - { - l: '99.6', - x: 17.0957, - y: 174.6849, - }, - { - l: '99.6', - x: 17.179, - y: 174.7825, - }, - { - l: '99.6', - x: 17.2623, - y: 174.8899, - }, - { - l: '99.6', - x: 17.3457, - y: 174.9903, - }, - { - l: '99.6', - x: 17.429, - y: 175.081, - }, - { - l: '99.6', - x: 17.5123, - y: 175.1798, - }, - { - l: '99.6', - x: 17.5957, - y: 175.2729, - }, - { - l: '99.6', - x: 17.679, - y: 175.3553, - }, - { - l: '99.6', - x: 17.7623, - y: 175.4472, - }, - { - l: '99.6', - x: 17.8457, - y: 175.5332, - }, - { - l: '99.6', - x: 17.929, - y: 175.6095, - }, - { - l: '99.6', - x: 18.0123, - y: 175.6927, - }, - { - l: '99.6', - x: 18.0957, - y: 175.7713, - }, - { - l: '99.6', - x: 18.179, - y: 175.8408, - }, - { - l: '99.6', - x: 18.2623, - y: 175.9175, - }, - { - l: '99.6', - x: 18.3457, - y: 175.9881, - }, - { - l: '99.6', - x: 18.429, - y: 176.051, - }, - { - l: '99.6', - x: 18.5123, - y: 176.1217, - }, - { - l: '99.6', - x: 18.5957, - y: 176.1898, - }, - { - l: '99.6', - x: 18.679, - y: 176.248, - }, - { - l: '99.6', - x: 18.7623, - y: 176.3119, - }, - { - l: '99.6', - x: 18.8457, - y: 176.3718, - }, - { - l: '99.6', - x: 18.929, - y: 176.4252, - }, - { - l: '99.6', - x: 19.0123, - y: 176.481, - }, - { - l: '99.6', - x: 19.0957, - y: 176.5357, - }, - { - l: '99.6', - x: 19.179, - y: 176.5846, - }, - { - l: '99.6', - x: 19.2623, - y: 176.6318, - }, - { - l: '99.6', - x: 19.3457, - y: 176.6778, - }, - { - l: '99.6', - x: 19.429, - y: 176.7198, - }, - { - l: '99.6', - x: 19.5123, - y: 176.767, - }, - { - l: '99.6', - x: 19.5957, - y: 176.8129, - }, - { - l: '99.6', - x: 19.679, - y: 176.8532, - }, - { - l: '99.6', - x: 19.7623, - y: 176.8932, - }, - { - l: '99.6', - x: 19.8457, - y: 176.9314, - }, - { - l: '99.6', - x: 19.929, - y: 176.9634, - }, + { l: 99.6, x: 0, y: 56.1233 }, + { l: 99.6, x: 0.08, y: 59.0424 }, + { l: 99.6, x: 0.17, y: 61.9126 }, + { l: 99.6, x: 0.25, y: 64.6632 }, + { l: 99.6, x: 0.33, y: 67.2378 }, + { l: 99.6, x: 0.42, y: 69.5949 }, + { l: 99.6, x: 0.5, y: 71.7068 }, + { l: 99.6, x: 0.58, y: 73.5686 }, + { l: 99.6, x: 0.67, y: 75.2055 }, + { l: 99.6, x: 0.75, y: 76.6579 }, + { l: 99.6, x: 0.83, y: 77.9631 }, + { l: 99.6, x: 0.92, y: 79.1507 }, + { l: 99.6, x: 1, y: 80.2452 }, + { l: 99.6, x: 1.08, y: 81.2652 }, + { l: 99.6, x: 1.17, y: 82.2261 }, + { l: 99.6, x: 1.25, y: 83.1404 }, + { l: 99.6, x: 1.33, y: 84.0155 }, + { l: 99.6, x: 1.42, y: 84.855 }, + { l: 99.6, x: 1.5, y: 85.6616 }, + { l: 99.6, x: 1.58, y: 86.4388 }, + { l: 99.6, x: 1.67, y: 87.1889 }, + { l: 99.6, x: 1.75, y: 87.9143 }, + { l: 99.6, x: 1.83, y: 88.6169 }, + { l: 99.6, x: 1.92, y: 89.2992 }, + { l: 99.6, x: 2, y: 89.9641 }, + { l: 99.6, x: 2.08, y: 90.6138 }, + { l: 99.6, x: 2.17, y: 91.2501 }, + { l: 99.6, x: 2.25, y: 91.8744 }, + { l: 99.6, x: 2.33, y: 92.4879 }, + { l: 99.6, x: 2.42, y: 93.0921 }, + { l: 99.6, x: 2.5, y: 93.6883 }, + { l: 99.6, x: 2.58, y: 94.2775 }, + { l: 99.6, x: 2.67, y: 94.8601 }, + { l: 99.6, x: 2.75, y: 95.4363 }, + { l: 99.6, x: 2.83, y: 96.0063 }, + { l: 99.6, x: 2.92, y: 96.5705 }, + { l: 99.6, x: 3, y: 97.1296 }, + { l: 99.6, x: 3.08, y: 97.6851 }, + { l: 99.6, x: 3.17, y: 98.2376 }, + { l: 99.6, x: 3.25, y: 98.7883 }, + { l: 99.6, x: 3.33, y: 99.3379 }, + { l: 99.6, x: 3.42, y: 99.887 }, + { l: 99.6, x: 3.5, y: 100.4359 }, + { l: 99.6, x: 3.58, y: 100.9853 }, + { l: 99.6, x: 3.67, y: 101.5356 }, + { l: 99.6, x: 3.75, y: 102.0873 }, + { l: 99.6, x: 3.83, y: 102.6413 }, + { l: 99.6, x: 3.92, y: 103.1986 }, + { l: 99.6, x: 4, y: 103.759 }, + { l: 99.6, x: 4.08, y: 104.3226 }, + { l: 99.6, x: 4.17, y: 104.8892 }, + { l: 99.6, x: 4.25, y: 105.4583 }, + { l: 99.6, x: 4.33, y: 106.0296 }, + { l: 99.6, x: 4.42, y: 106.6029 }, + { l: 99.6, x: 4.5, y: 107.1788 }, + { l: 99.6, x: 4.58, y: 107.7581 }, + { l: 99.6, x: 4.67, y: 108.3414 }, + { l: 99.6, x: 4.75, y: 108.9289 }, + { l: 99.6, x: 4.83, y: 109.5205 }, + { l: 99.6, x: 4.92, y: 110.1157 }, + { l: 99.6, x: 5, y: 110.7136 }, + { l: 99.6, x: 5.08, y: 111.3139 }, + { l: 99.6, x: 5.17, y: 111.9161 }, + { l: 99.6, x: 5.25, y: 112.5196 }, + { l: 99.6, x: 5.33, y: 113.1233 }, + { l: 99.6, x: 5.42, y: 113.7269 }, + { l: 99.6, x: 5.5, y: 114.3294 }, + { l: 99.6, x: 5.58, y: 114.9307 }, + { l: 99.6, x: 5.67, y: 115.5304 }, + { l: 99.6, x: 5.75, y: 116.1281 }, + { l: 99.6, x: 5.83, y: 116.7233 }, + { l: 99.6, x: 5.92, y: 117.3164 }, + { l: 99.6, x: 6, y: 117.9072 }, + { l: 99.6, x: 6.08, y: 118.4956 }, + { l: 99.6, x: 6.17, y: 119.0815 }, + { l: 99.6, x: 6.25, y: 119.6644 }, + { l: 99.6, x: 6.33, y: 120.2445 }, + { l: 99.6, x: 6.42, y: 120.8212 }, + { l: 99.6, x: 6.5, y: 121.3948 }, + { l: 99.6, x: 6.58, y: 121.9649 }, + { l: 99.6, x: 6.67, y: 122.5315 }, + { l: 99.6, x: 6.75, y: 123.0942 }, + { l: 99.6, x: 6.83, y: 123.6527 }, + { l: 99.6, x: 6.92, y: 124.2064 }, + { l: 99.6, x: 7, y: 124.755 }, + { l: 99.6, x: 7.08, y: 125.2982 }, + { l: 99.6, x: 7.17, y: 125.8359 }, + { l: 99.6, x: 7.25, y: 126.3678 }, + { l: 99.6, x: 7.33, y: 126.8943 }, + { l: 99.6, x: 7.42, y: 127.4153 }, + { l: 99.6, x: 7.5, y: 127.931 }, + { l: 99.6, x: 7.58, y: 128.4417 }, + { l: 99.6, x: 7.67, y: 128.9478 }, + { l: 99.6, x: 7.75, y: 129.4497 }, + { l: 99.6, x: 7.83, y: 129.9479 }, + { l: 99.6, x: 7.92, y: 130.4424 }, + { l: 99.6, x: 8, y: 130.9336 }, + { l: 99.6, x: 8.08, y: 131.422 }, + { l: 99.6, x: 8.17, y: 131.9078 }, + { l: 99.6, x: 8.25, y: 132.3913 }, + { l: 99.6, x: 8.33, y: 132.8726 }, + { l: 99.6, x: 8.42, y: 133.3518 }, + { l: 99.6, x: 8.5, y: 133.829 }, + { l: 99.6, x: 8.58, y: 134.3051 }, + { l: 99.6, x: 8.67, y: 134.7808 }, + { l: 99.6, x: 8.75, y: 135.2566 }, + { l: 99.6, x: 8.83, y: 135.7334 }, + { l: 99.6, x: 8.92, y: 136.2115 }, + { l: 99.6, x: 9, y: 136.6917 }, + { l: 99.6, x: 9.08, y: 137.1739 }, + { l: 99.6, x: 9.17, y: 137.6581 }, + { l: 99.6, x: 9.25, y: 138.1443 }, + { l: 99.6, x: 9.33, y: 138.6324 }, + { l: 99.6, x: 9.42, y: 139.1222 }, + { l: 99.6, x: 9.5, y: 139.6134 }, + { l: 99.6, x: 9.58, y: 140.1058 }, + { l: 99.6, x: 9.67, y: 140.5994 }, + { l: 99.6, x: 9.75, y: 141.0942 }, + { l: 99.6, x: 9.83, y: 141.5907 }, + { l: 99.6, x: 9.92, y: 142.0888 }, + { l: 99.6, x: 10, y: 142.5896 }, + { l: 99.6, x: 10.08, y: 143.0932 }, + { l: 99.6, x: 10.17, y: 143.6001 }, + { l: 99.6, x: 10.25, y: 144.1103 }, + { l: 99.6, x: 10.33, y: 144.6239 }, + { l: 99.6, x: 10.42, y: 145.1409 }, + { l: 99.6, x: 10.5, y: 145.6611 }, + { l: 99.6, x: 10.58, y: 146.1845 }, + { l: 99.6, x: 10.67, y: 146.7112 }, + { l: 99.6, x: 10.75, y: 147.2407 }, + { l: 99.6, x: 10.83, y: 147.7735 }, + { l: 99.6, x: 10.92, y: 148.3091 }, + { l: 99.6, x: 11, y: 148.8476 }, + { l: 99.6, x: 11.08, y: 149.3887 }, + { l: 99.6, x: 11.17, y: 149.9326 }, + { l: 99.6, x: 11.25, y: 150.4793 }, + { l: 99.6, x: 11.33, y: 151.0286 }, + { l: 99.6, x: 11.42, y: 151.5804 }, + { l: 99.6, x: 11.5, y: 152.1341 }, + { l: 99.6, x: 11.58, y: 152.6893 }, + { l: 99.6, x: 11.67, y: 153.2454 }, + { l: 99.6, x: 11.75, y: 153.8017 }, + { l: 99.6, x: 11.83, y: 154.3585 }, + { l: 99.6, x: 11.92, y: 154.915 }, + { l: 99.6, x: 12, y: 155.4711 }, + { l: 99.6, x: 12.08, y: 156.0261 }, + { l: 99.6, x: 12.17, y: 156.5794 }, + { l: 99.6, x: 12.25, y: 157.1303 }, + { l: 99.6, x: 12.33, y: 157.6779 }, + { l: 99.6, x: 12.42, y: 158.2217 }, + { l: 99.6, x: 12.5, y: 158.7609 }, + { l: 99.6, x: 12.58, y: 159.2945 }, + { l: 99.6, x: 12.67, y: 159.8218 }, + { l: 99.6, x: 12.75, y: 160.3414 }, + { l: 99.6, x: 12.83, y: 160.854 }, + { l: 99.6, x: 12.92, y: 161.3572 }, + { l: 99.6, x: 13, y: 161.8513 }, + { l: 99.6, x: 13.08, y: 162.336 }, + { l: 99.6, x: 13.17, y: 162.8108 }, + { l: 99.6, x: 13.25, y: 163.276 }, + { l: 99.6, x: 13.33, y: 163.7316 }, + { l: 99.6, x: 13.42, y: 164.1767 }, + { l: 99.6, x: 13.5, y: 164.612 }, + { l: 99.6, x: 13.58, y: 165.0376 }, + { l: 99.6, x: 13.67, y: 165.4513 }, + { l: 99.6, x: 13.75, y: 165.8547 }, + { l: 99.6, x: 13.83, y: 166.2457 }, + { l: 99.6, x: 13.92, y: 166.6266 }, + { l: 99.6, x: 14, y: 166.9951 }, + { l: 99.6, x: 14.08, y: 167.3518 }, + { l: 99.6, x: 14.17, y: 167.6966 }, + { l: 99.6, x: 14.25, y: 168.03 }, + { l: 99.6, x: 14.33, y: 168.3521 }, + { l: 99.6, x: 14.42, y: 168.6631 }, + { l: 99.6, x: 14.5, y: 168.9633 }, + { l: 99.6, x: 14.58, y: 169.2535 }, + { l: 99.6, x: 14.67, y: 169.533 }, + { l: 99.6, x: 14.75, y: 169.8026 }, + { l: 99.6, x: 14.83, y: 170.0629 }, + { l: 99.6, x: 14.92, y: 170.3132 }, + { l: 99.6, x: 15, y: 170.5537 }, + { l: 99.6, x: 15.08, y: 170.7882 }, + { l: 99.6, x: 15.17, y: 171.0132 }, + { l: 99.6, x: 15.25, y: 171.2301 }, + { l: 99.6, x: 15.33, y: 171.4393 }, + { l: 99.6, x: 15.42, y: 171.6424 }, + { l: 99.6, x: 15.5, y: 171.8378 }, + { l: 99.6, x: 15.58, y: 172.0274 }, + { l: 99.6, x: 15.67, y: 172.2105 }, + { l: 99.6, x: 15.75, y: 172.3866 }, + { l: 99.6, x: 15.83, y: 172.5589 }, + { l: 99.6, x: 15.92, y: 172.7244 }, + { l: 99.6, x: 16, y: 172.8843 }, + { l: 99.6, x: 16.08, y: 173.0388 }, + { l: 99.6, x: 16.17, y: 173.1881 }, + { l: 99.6, x: 16.25, y: 173.3332 }, + { l: 99.6, x: 16.33, y: 173.4735 }, + { l: 99.6, x: 16.42, y: 173.6101 }, + { l: 99.6, x: 16.5, y: 173.742 }, + { l: 99.6, x: 16.58, y: 173.8703 }, + { l: 99.6, x: 16.67, y: 173.9949 }, + { l: 99.6, x: 16.75, y: 174.1158 }, + { l: 99.6, x: 16.83, y: 174.2336 }, + { l: 99.6, x: 16.92, y: 174.3478 }, + { l: 99.6, x: 17, y: 174.459 }, + { l: 99.6, x: 17.08, y: 174.5664 }, + { l: 99.6, x: 17.17, y: 174.6712 }, + { l: 99.6, x: 17.25, y: 174.7744 }, + { l: 99.6, x: 17.33, y: 174.8731 }, + { l: 99.6, x: 17.42, y: 174.9707 }, + { l: 99.6, x: 17.5, y: 175.0654 }, + { l: 99.6, x: 17.58, y: 175.1572 }, + { l: 99.6, x: 17.67, y: 175.2458 }, + { l: 99.6, x: 17.75, y: 175.3339 }, + { l: 99.6, x: 17.83, y: 175.4187 }, + { l: 99.6, x: 17.92, y: 175.5009 }, + { l: 99.6, x: 18, y: 175.5807 }, + { l: 99.6, x: 18.08, y: 175.6582 }, + { l: 99.6, x: 18.17, y: 175.7329 }, + { l: 99.6, x: 18.25, y: 175.8067 }, + { l: 99.6, x: 18.33, y: 175.8764 }, + { l: 99.6, x: 18.42, y: 175.9438 }, + { l: 99.6, x: 18.5, y: 176.0113 }, + { l: 99.6, x: 18.58, y: 176.0787 }, + { l: 99.6, x: 18.67, y: 176.1415 }, + { l: 99.6, x: 18.75, y: 176.2028 }, + { l: 99.6, x: 18.83, y: 176.2617 }, + { l: 99.6, x: 18.92, y: 176.3196 }, + { l: 99.6, x: 19, y: 176.373 }, + { l: 99.6, x: 19.08, y: 176.4263 }, + { l: 99.6, x: 19.17, y: 176.4797 }, + { l: 99.6, x: 19.25, y: 176.5251 }, + { l: 99.6, x: 19.33, y: 176.5701 }, + { l: 99.6, x: 19.42, y: 176.6152 }, + { l: 99.6, x: 19.5, y: 176.6602 }, + { l: 99.6, x: 19.58, y: 176.7053 }, + { l: 99.6, x: 19.67, y: 176.7492 }, + { l: 99.6, x: 19.75, y: 176.7875 }, + { l: 99.6, x: 19.83, y: 176.8254 }, + { l: 99.6, x: 19.92, y: 176.8601 }, + { l: 99.6, x: 20, y: 176.8932 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, - female: null, }, }, ], diff --git a/src/chartdata/uk_who_height_female_centile_data.ts b/src/chartdata/uk_who_height_female_centile_data.ts index c15e8ab..75c0bf3 100644 --- a/src/chartdata/uk_who_height_female_centile_data.ts +++ b/src/chartdata/uk_who_height_female_centile_data.ts @@ -4,15700 +4,2679 @@ export const ukwhoHeightFemaleCentileData: ReferenceGroup = { centile_data: [ { uk90_preterm: { - male: null, female: { height: [ { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: -0.2875, - y: 27.1357, - }, - { - l: '0.4', - x: -0.2683, - y: 28.2546, - }, - { - l: '0.4', - x: -0.2491, - y: 29.3979, - }, - { - l: '0.4', - x: -0.23, - y: 30.5862, - }, - { - l: '0.4', - x: -0.2108, - y: 31.841, - }, - { - l: '0.4', - x: -0.1916, - y: 33.1643, - }, - { - l: '0.4', - x: -0.1725, - y: 34.531, - }, - { - l: '0.4', - x: -0.1533, - y: 35.9174, - }, - { - l: '0.4', - x: -0.1342, - y: 37.3007, - }, - { - l: '0.4', - x: -0.115, - y: 38.657, - }, - { - l: '0.4', - x: -0.0958, - y: 39.9618, - }, - { - l: '0.4', - x: -0.0767, - y: 41.1926, - }, - { - l: '0.4', - x: -0.0575, - y: 42.3308, - }, - { - l: '0.4', - x: -0.0383, - y: 43.3618, - }, - { - l: '0.4', - x: -0.0192, - y: 44.2875, - }, - { - l: '0.4', - x: -0.0, - y: 45.0865, - }, - { - l: '0.4', - x: 0.0192, - y: 45.7532, - }, - { - l: '0.4', - x: 0.0383, - y: 46.3303, - }, - { - l: '0.4', - x: 0.0383, - y: 46.3303, - }, + { l: 0.4, x: -0.2683, y: 28.2947 }, + { l: 0.4, x: -0.2491, y: 29.4373 }, + { l: 0.4, x: -0.23, y: 30.6249 }, + { l: 0.4, x: -0.2108, y: 31.8789 }, + { l: 0.4, x: -0.1916, y: 33.2013 }, + { l: 0.4, x: -0.1725, y: 34.5671 }, + { l: 0.4, x: -0.1533, y: 35.9525 }, + { l: 0.4, x: -0.1342, y: 37.3348 }, + { l: 0.4, x: -0.115, y: 38.69 }, + { l: 0.4, x: -0.0958, y: 39.9936 }, + { l: 0.4, x: -0.0767, y: 41.2233 }, + { l: 0.4, x: -0.0575, y: 42.3604 }, + { l: 0.4, x: -0.0383, y: 43.3903 }, + { l: 0.4, x: -0.0192, y: 44.3151 }, + { l: 0.4, x: 0, y: 45.1134 }, + { l: 0.4, x: 0.0192, y: 45.7799 }, + { l: 0.4, x: 0.0383, y: 46.3569 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: -0.2875, - y: 29.0006, - }, - { - l: '2.0', - x: -0.2683, - y: 30.0904, - }, - { - l: '2.0', - x: -0.2491, - y: 31.2007, - }, - { - l: '2.0', - x: -0.23, - y: 32.3542, - }, - { - l: '2.0', - x: -0.2108, - y: 33.5732, - }, - { - l: '2.0', - x: -0.1916, - y: 34.8585, - }, - { - l: '2.0', - x: -0.1725, - y: 36.1836, - }, - { - l: '2.0', - x: -0.1533, - y: 37.5249, - }, - { - l: '2.0', - x: -0.1342, - y: 38.86, - }, - { - l: '2.0', - x: -0.115, - y: 40.1661, - }, - { - l: '2.0', - x: -0.0958, - y: 41.419, - }, - { - l: '2.0', - x: -0.0767, - y: 42.5972, - }, - { - l: '2.0', - x: -0.0575, - y: 43.683, - }, - { - l: '2.0', - x: -0.0383, - y: 44.6658, - }, - { - l: '2.0', - x: -0.0192, - y: 45.5506, - }, - { - l: '2.0', - x: -0.0, - y: 46.3192, - }, - { - l: '2.0', - x: 0.0192, - y: 46.9712, - }, - { - l: '2.0', - x: 0.0383, - y: 47.5493, - }, - { - l: '2.0', - x: 0.0383, - y: 47.5493, - }, + { l: 2.0, x: -0.2683, y: 29.9425 }, + { l: 2.0, x: -0.2491, y: 31.0555 }, + { l: 2.0, x: -0.23, y: 32.2118 }, + { l: 2.0, x: -0.2108, y: 33.4337 }, + { l: 2.0, x: -0.1916, y: 34.722 }, + { l: 2.0, x: -0.1725, y: 36.0505 }, + { l: 2.0, x: -0.1533, y: 37.3954 }, + { l: 2.0, x: -0.1342, y: 38.7344 }, + { l: 2.0, x: -0.115, y: 40.0445 }, + { l: 2.0, x: -0.0958, y: 41.3016 }, + { l: 2.0, x: -0.0767, y: 42.484 }, + { l: 2.0, x: -0.0575, y: 43.5741 }, + { l: 2.0, x: -0.0383, y: 44.5608 }, + { l: 2.0, x: -0.0192, y: 45.4488 }, + { l: 2.0, x: 0, y: 46.2199 }, + { l: 2.0, x: 0.0192, y: 46.8731 }, + { l: 2.0, x: 0.0383, y: 47.4511 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: -0.2875, - y: 30.8656, - }, - { - l: '9.0', - x: -0.2683, - y: 31.9261, - }, - { - l: '9.0', - x: -0.2491, - y: 33.0035, - }, - { - l: '9.0', - x: -0.23, - y: 34.1223, - }, - { - l: '9.0', - x: -0.2108, - y: 35.3055, - }, - { - l: '9.0', - x: -0.1916, - y: 36.5527, - }, - { - l: '9.0', - x: -0.1725, - y: 37.8363, - }, - { - l: '9.0', - x: -0.1533, - y: 39.1323, - }, - { - l: '9.0', - x: -0.1342, - y: 40.4194, - }, - { - l: '9.0', - x: -0.115, - y: 41.6751, - }, - { - l: '9.0', - x: -0.0958, - y: 42.8763, - }, - { - l: '9.0', - x: -0.0767, - y: 44.0017, - }, - { - l: '9.0', - x: -0.0575, - y: 45.0353, - }, - { - l: '9.0', - x: -0.0383, - y: 45.9698, - }, - { - l: '9.0', - x: -0.0192, - y: 46.8136, - }, - { - l: '9.0', - x: -0.0, - y: 47.5518, - }, - { - l: '9.0', - x: 0.0192, - y: 48.1892, - }, - { - l: '9.0', - x: 0.0383, - y: 48.7684, - }, - { - l: '9.0', - x: 0.0383, - y: 48.7684, - }, + { l: 9.0, x: -0.2683, y: 31.9056 }, + { l: 9.0, x: -0.2491, y: 32.9833 }, + { l: 9.0, x: -0.23, y: 34.1025 }, + { l: 9.0, x: -0.2108, y: 35.286 }, + { l: 9.0, x: -0.1916, y: 36.5338 }, + { l: 9.0, x: -0.1725, y: 37.8178 }, + { l: 9.0, x: -0.1533, y: 39.1143 }, + { l: 9.0, x: -0.1342, y: 40.4019 }, + { l: 9.0, x: -0.115, y: 41.6582 }, + { l: 9.0, x: -0.0958, y: 42.86 }, + { l: 9.0, x: -0.0767, y: 43.9859 }, + { l: 9.0, x: -0.0575, y: 45.0201 }, + { l: 9.0, x: -0.0383, y: 45.9552 }, + { l: 9.0, x: -0.0192, y: 46.7994 }, + { l: 9.0, x: 0, y: 47.538 }, + { l: 9.0, x: 0.0192, y: 48.1756 }, + { l: 9.0, x: 0.0383, y: 48.7547 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: -0.2875, - y: 32.7305, - }, - { - l: '25.0', - x: -0.2683, - y: 33.7619, - }, - { - l: '25.0', - x: -0.2491, - y: 34.8063, - }, - { - l: '25.0', - x: -0.23, - y: 35.8903, - }, - { - l: '25.0', - x: -0.2108, - y: 37.0377, - }, - { - l: '25.0', - x: -0.1916, - y: 38.247, - }, - { - l: '25.0', - x: -0.1725, - y: 39.4889, - }, - { - l: '25.0', - x: -0.1533, - y: 40.7398, - }, - { - l: '25.0', - x: -0.1342, - y: 41.9787, - }, - { - l: '25.0', - x: -0.115, - y: 43.1841, - }, - { - l: '25.0', - x: -0.0958, - y: 44.3335, - }, - { - l: '25.0', - x: -0.0767, - y: 45.4062, - }, - { - l: '25.0', - x: -0.0575, - y: 46.3875, - }, - { - l: '25.0', - x: -0.0383, - y: 47.2737, - }, - { - l: '25.0', - x: -0.0192, - y: 48.0766, - }, - { - l: '25.0', - x: -0.0, - y: 48.7845, - }, - { - l: '25.0', - x: 0.0192, - y: 49.4072, - }, - { - l: '25.0', - x: 0.0383, - y: 49.9874, - }, - { - l: '25.0', - x: 0.0383, - y: 49.9874, - }, + { l: 25.0, x: -0.2683, y: 33.7404 }, + { l: 25.0, x: -0.2491, y: 34.7851 }, + { l: 25.0, x: -0.23, y: 35.8695 }, + { l: 25.0, x: -0.2108, y: 37.0173 }, + { l: 25.0, x: -0.1916, y: 38.227 }, + { l: 25.0, x: -0.1725, y: 39.4695 }, + { l: 25.0, x: -0.1533, y: 40.7209 }, + { l: 25.0, x: -0.1342, y: 41.9604 }, + { l: 25.0, x: -0.115, y: 43.1664 }, + { l: 25.0, x: -0.0958, y: 44.3164 }, + { l: 25.0, x: -0.0767, y: 45.3897 }, + { l: 25.0, x: -0.0575, y: 46.3716 }, + { l: 25.0, x: -0.0383, y: 47.2584 }, + { l: 25.0, x: -0.0192, y: 48.0618 }, + { l: 25.0, x: 0, y: 48.77 }, + { l: 25.0, x: 0.0192, y: 49.3929 }, + { l: 25.0, x: 0.0383, y: 49.9731 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: -0.2875, - y: 34.5954, - }, - { - l: '50.0', - x: -0.2683, - y: 35.5977, - }, - { - l: '50.0', - x: -0.2491, - y: 36.6091, - }, - { - l: '50.0', - x: -0.23, - y: 37.6583, - }, - { - l: '50.0', - x: -0.2108, - y: 38.7699, - }, - { - l: '50.0', - x: -0.1916, - y: 39.9412, - }, - { - l: '50.0', - x: -0.1725, - y: 41.1415, - }, - { - l: '50.0', - x: -0.1533, - y: 42.3472, - }, - { - l: '50.0', - x: -0.1342, - y: 43.538, - }, - { - l: '50.0', - x: -0.115, - y: 44.6931, - }, - { - l: '50.0', - x: -0.0958, - y: 45.7908, - }, - { - l: '50.0', - x: -0.0767, - y: 46.8107, - }, - { - l: '50.0', - x: -0.0575, - y: 47.7397, - }, - { - l: '50.0', - x: -0.0383, - y: 48.5777, - }, - { - l: '50.0', - x: -0.0192, - y: 49.3396, - }, - { - l: '50.0', - x: -0.0, - y: 50.0172, - }, - { - l: '50.0', - x: 0.0192, - y: 50.6252, - }, - { - l: '50.0', - x: 0.0383, - y: 51.2065, - }, - { - l: '50.0', - x: 0.0383, - y: 51.2065, - }, + { l: 50.0, x: -0.2683, y: 35.5977 }, + { l: 50.0, x: -0.2491, y: 36.609 }, + { l: 50.0, x: -0.23, y: 37.6583 }, + { l: 50.0, x: -0.2108, y: 38.7699 }, + { l: 50.0, x: -0.1916, y: 39.9412 }, + { l: 50.0, x: -0.1725, y: 41.1415 }, + { l: 50.0, x: -0.1533, y: 42.3472 }, + { l: 50.0, x: -0.1342, y: 43.538 }, + { l: 50.0, x: -0.115, y: 44.6931 }, + { l: 50.0, x: -0.0958, y: 45.7908 }, + { l: 50.0, x: -0.0767, y: 46.8107 }, + { l: 50.0, x: -0.0575, y: 47.7397 }, + { l: 50.0, x: -0.0383, y: 48.5777 }, + { l: 50.0, x: -0.0192, y: 49.3396 }, + { l: 50.0, x: 0, y: 50.0172 }, + { l: 50.0, x: 0.0192, y: 50.6252 }, + { l: 50.0, x: 0.0383, y: 51.2065 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: -0.2875, - y: 36.4604, - }, - { - l: '75.0', - x: -0.2683, - y: 37.4335, - }, - { - l: '75.0', - x: -0.2491, - y: 38.4118, - }, - { - l: '75.0', - x: -0.23, - y: 39.4263, - }, - { - l: '75.0', - x: -0.2108, - y: 40.5021, - }, - { - l: '75.0', - x: -0.1916, - y: 41.6354, - }, - { - l: '75.0', - x: -0.1725, - y: 42.7942, - }, - { - l: '75.0', - x: -0.1533, - y: 43.9547, - }, - { - l: '75.0', - x: -0.1342, - y: 45.0973, - }, - { - l: '75.0', - x: -0.115, - y: 46.2022, - }, - { - l: '75.0', - x: -0.0958, - y: 47.248, - }, - { - l: '75.0', - x: -0.0767, - y: 48.2152, - }, - { - l: '75.0', - x: -0.0575, - y: 49.0919, - }, - { - l: '75.0', - x: -0.0383, - y: 49.8817, - }, - { - l: '75.0', - x: -0.0192, - y: 50.6026, - }, - { - l: '75.0', - x: -0.0, - y: 51.2499, - }, - { - l: '75.0', - x: 0.0192, - y: 51.8432, - }, - { - l: '75.0', - x: 0.0383, - y: 52.4255, - }, - { - l: '75.0', - x: 0.0383, - y: 52.4255, - }, + { l: 75.0, x: -0.2683, y: 37.4551 }, + { l: 75.0, x: -0.2491, y: 38.433 }, + { l: 75.0, x: -0.23, y: 39.4471 }, + { l: 75.0, x: -0.2108, y: 40.5224 }, + { l: 75.0, x: -0.1916, y: 41.6553 }, + { l: 75.0, x: -0.1725, y: 42.8136 }, + { l: 75.0, x: -0.1533, y: 43.9736 }, + { l: 75.0, x: -0.1342, y: 45.1156 }, + { l: 75.0, x: -0.115, y: 46.2199 }, + { l: 75.0, x: -0.0958, y: 47.2652 }, + { l: 75.0, x: -0.0767, y: 48.2317 }, + { l: 75.0, x: -0.0575, y: 49.1078 }, + { l: 75.0, x: -0.0383, y: 49.897 }, + { l: 75.0, x: -0.0192, y: 50.6175 }, + { l: 75.0, x: 0, y: 51.2643 }, + { l: 75.0, x: 0.0192, y: 51.8575 }, + { l: 75.0, x: 0.0383, y: 52.4399 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: -0.2875, - y: 38.3253, - }, - { - l: '91.0', - x: -0.2683, - y: 39.2693, - }, - { - l: '91.0', - x: -0.2491, - y: 40.2146, - }, - { - l: '91.0', - x: -0.23, - y: 41.1944, - }, - { - l: '91.0', - x: -0.2108, - y: 42.2343, - }, - { - l: '91.0', - x: -0.1916, - y: 43.3296, - }, - { - l: '91.0', - x: -0.1725, - y: 44.4468, - }, - { - l: '91.0', - x: -0.1533, - y: 45.5622, - }, - { - l: '91.0', - x: -0.1342, - y: 46.6566, - }, - { - l: '91.0', - x: -0.115, - y: 47.7112, - }, - { - l: '91.0', - x: -0.0958, - y: 48.7053, - }, - { - l: '91.0', - x: -0.0767, - y: 49.6197, - }, - { - l: '91.0', - x: -0.0575, - y: 50.4442, - }, - { - l: '91.0', - x: -0.0383, - y: 51.1857, - }, - { - l: '91.0', - x: -0.0192, - y: 51.8657, - }, - { - l: '91.0', - x: -0.0, - y: 52.4825, - }, - { - l: '91.0', - x: 0.0192, - y: 53.0612, - }, - { - l: '91.0', - x: 0.0383, - y: 53.6446, - }, - { - l: '91.0', - x: 0.0383, - y: 53.6446, - }, + { l: 91.0, x: -0.2683, y: 39.2898 }, + { l: 91.0, x: -0.2491, y: 40.2348 }, + { l: 91.0, x: -0.23, y: 41.2142 }, + { l: 91.0, x: -0.2108, y: 42.2537 }, + { l: 91.0, x: -0.1916, y: 43.3486 }, + { l: 91.0, x: -0.1725, y: 44.4653 }, + { l: 91.0, x: -0.1533, y: 45.5802 }, + { l: 91.0, x: -0.1342, y: 46.6741 }, + { l: 91.0, x: -0.115, y: 47.7281 }, + { l: 91.0, x: -0.0958, y: 48.7216 }, + { l: 91.0, x: -0.0767, y: 49.6355 }, + { l: 91.0, x: -0.0575, y: 50.4593 }, + { l: 91.0, x: -0.0383, y: 51.2003 }, + { l: 91.0, x: -0.0192, y: 51.8798 }, + { l: 91.0, x: 0, y: 52.4963 }, + { l: 91.0, x: 0.0192, y: 53.0749 }, + { l: 91.0, x: 0.0383, y: 53.6582 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: -0.2875, - y: 40.1902, - }, - { - l: '98.0', - x: -0.2683, - y: 41.1051, - }, - { - l: '98.0', - x: -0.2491, - y: 42.0174, - }, - { - l: '98.0', - x: -0.23, - y: 42.9624, - }, - { - l: '98.0', - x: -0.2108, - y: 43.9665, - }, - { - l: '98.0', - x: -0.1916, - y: 45.0238, - }, - { - l: '98.0', - x: -0.1725, - y: 46.0995, - }, - { - l: '98.0', - x: -0.1533, - y: 47.1696, - }, - { - l: '98.0', - x: -0.1342, - y: 48.216, - }, - { - l: '98.0', - x: -0.115, - y: 49.2202, - }, - { - l: '98.0', - x: -0.0958, - y: 50.1626, - }, - { - l: '98.0', - x: -0.0767, - y: 51.0243, - }, - { - l: '98.0', - x: -0.0575, - y: 51.7964, - }, - { - l: '98.0', - x: -0.0383, - y: 52.4896, - }, - { - l: '98.0', - x: -0.0192, - y: 53.1287, - }, - { - l: '98.0', - x: -0.0, - y: 53.7152, - }, - { - l: '98.0', - x: 0.0192, - y: 54.2792, - }, - { - l: '98.0', - x: 0.0383, - y: 54.8636, - }, - { - l: '98.0', - x: 0.0383, - y: 54.8636, - }, + { l: 98.0, x: -0.2683, y: 41.2529 }, + { l: 98.0, x: -0.2491, y: 42.1626 }, + { l: 98.0, x: -0.23, y: 43.1048 }, + { l: 98.0, x: -0.2108, y: 44.106 }, + { l: 98.0, x: -0.1916, y: 45.1603 }, + { l: 98.0, x: -0.1725, y: 46.2326 }, + { l: 98.0, x: -0.1533, y: 47.2991 }, + { l: 98.0, x: -0.1342, y: 48.3416 }, + { l: 98.0, x: -0.115, y: 49.3418 }, + { l: 98.0, x: -0.0958, y: 50.2799 }, + { l: 98.0, x: -0.0767, y: 51.1374 }, + { l: 98.0, x: -0.0575, y: 51.9053 }, + { l: 98.0, x: -0.0383, y: 52.5947 }, + { l: 98.0, x: -0.0192, y: 53.2304 }, + { l: 98.0, x: 0, y: 53.8145 }, + { l: 98.0, x: 0.0192, y: 54.3773 }, + { l: 98.0, x: 0.0383, y: 54.9618 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: -0.2875, - y: 42.0552, - }, - { - l: '99.6', - x: -0.2683, - y: 42.9408, - }, - { - l: '99.6', - x: -0.2491, - y: 43.8202, - }, - { - l: '99.6', - x: -0.23, - y: 44.7304, - }, - { - l: '99.6', - x: -0.2108, - y: 45.6987, - }, - { - l: '99.6', - x: -0.1916, - y: 46.718, - }, - { - l: '99.6', - x: -0.1725, - y: 47.7521, - }, - { - l: '99.6', - x: -0.1533, - y: 48.7771, - }, - { - l: '99.6', - x: -0.1342, - y: 49.7753, - }, - { - l: '99.6', - x: -0.115, - y: 50.7293, - }, - { - l: '99.6', - x: -0.0958, - y: 51.6198, - }, - { - l: '99.6', - x: -0.0767, - y: 52.4288, - }, - { - l: '99.6', - x: -0.0575, - y: 53.1486, - }, - { - l: '99.6', - x: -0.0383, - y: 53.7936, - }, - { - l: '99.6', - x: -0.0192, - y: 54.3917, - }, - { - l: '99.6', - x: -0.0, - y: 54.9479, - }, - { - l: '99.6', - x: 0.0192, - y: 55.4972, - }, - { - l: '99.6', - x: 0.0383, - y: 56.0827, - }, - { - l: '99.6', - x: 0.0383, - y: 56.0827, - }, + { l: 99.6, x: -0.2683, y: 42.9007 }, + { l: 99.6, x: -0.2491, y: 43.7808 }, + { l: 99.6, x: -0.23, y: 44.6918 }, + { l: 99.6, x: -0.2108, y: 45.6609 }, + { l: 99.6, x: -0.1916, y: 46.681 }, + { l: 99.6, x: -0.1725, y: 47.716 }, + { l: 99.6, x: -0.1533, y: 48.742 }, + { l: 99.6, x: -0.1342, y: 49.7412 }, + { l: 99.6, x: -0.115, y: 50.6963 }, + { l: 99.6, x: -0.0958, y: 51.588 }, + { l: 99.6, x: -0.0767, y: 52.3981 }, + { l: 99.6, x: -0.0575, y: 53.1191 }, + { l: 99.6, x: -0.0383, y: 53.7651 }, + { l: 99.6, x: -0.0192, y: 54.3641 }, + { l: 99.6, x: 0, y: 54.9209 }, + { l: 99.6, x: 0.0192, y: 55.4706 }, + { l: 99.6, x: 0.0383, y: 56.0561 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, }, }, { uk_who_infant: { - male: null, female: { height: [ { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 0.0383, - y: 46.4377, - }, - { - l: '0.4', - x: 0.0575, - y: 47.3359, - }, - { - l: '0.4', - x: 0.0767, - y: 48.1894, - }, - { - l: '0.4', - x: 0.0958, - y: 48.9988, - }, - { - l: '0.4', - x: 0.115, - y: 49.7648, - }, - { - l: '0.4', - x: 0.1342, - y: 50.4903, - }, - { - l: '0.4', - x: 0.1533, - y: 51.1785, - }, - { - l: '0.4', - x: 0.1725, - y: 51.8326, - }, - { - l: '0.4', - x: 0.1916, - y: 52.4552, - }, - { - l: '0.4', - x: 0.2108, - y: 53.0515, - }, - { - l: '0.4', - x: 0.23, - y: 53.6202, - }, - { - l: '0.4', - x: 0.2491, - y: 54.1662, - }, - { - l: '0.4', - x: 0.2683, - y: 54.6799, - }, - { - l: '0.4', - x: 0.2875, - y: 55.1804, - }, - { - l: '0.4', - x: 0.3066, - y: 55.6668, - }, - { - l: '0.4', - x: 0.3258, - y: 56.1376, - }, - { - l: '0.4', - x: 0.345, - y: 56.5867, - }, - { - l: '0.4', - x: 0.3641, - y: 57.0161, - }, - { - l: '0.4', - x: 0.3833, - y: 57.4299, - }, - { - l: '0.4', - x: 0.4025, - y: 57.8295, - }, - { - l: '0.4', - x: 0.4216, - y: 58.2162, - }, - { - l: '0.4', - x: 0.4408, - y: 58.5916, - }, - { - l: '0.4', - x: 0.46, - y: 58.9561, - }, - { - l: '0.4', - x: 0.4791, - y: 59.3109, - }, - { - l: '0.4', - x: 0.4983, - y: 59.6568, - }, - { - l: '0.4', - x: 0.5175, - y: 59.9963, - }, - { - l: '0.4', - x: 0.5366, - y: 60.3287, - }, - { - l: '0.4', - x: 0.5558, - y: 60.6547, - }, - { - l: '0.4', - x: 0.5749, - y: 60.9747, - }, - { - l: '0.4', - x: 0.5941, - y: 61.29, - }, - { - l: '0.4', - x: 0.6133, - y: 61.6008, - }, - { - l: '0.4', - x: 0.6324, - y: 61.9069, - }, - { - l: '0.4', - x: 0.6516, - y: 62.2088, - }, - { - l: '0.4', - x: 0.6708, - y: 62.5067, - }, - { - l: '0.4', - x: 0.6899, - y: 62.8012, - }, - { - l: '0.4', - x: 0.7091, - y: 63.0921, - }, - { - l: '0.4', - x: 0.7283, - y: 63.3795, - }, - { - l: '0.4', - x: 0.7474, - y: 63.6637, - }, - { - l: '0.4', - x: 0.7666, - y: 63.945, - }, - { - l: '0.4', - x: 0.7858, - y: 64.2234, - }, - { - l: '0.4', - x: 0.8049, - y: 64.4988, - }, - { - l: '0.4', - x: 0.8241, - y: 64.7713, - }, - { - l: '0.4', - x: 0.8433, - y: 65.041, - }, - { - l: '0.4', - x: 0.8624, - y: 65.3079, - }, - { - l: '0.4', - x: 0.8816, - y: 65.5721, - }, - { - l: '0.4', - x: 0.9008, - y: 65.8337, - }, - { - l: '0.4', - x: 0.9199, - y: 66.0927, - }, - { - l: '0.4', - x: 0.9391, - y: 66.3491, - }, - { - l: '0.4', - x: 0.9582, - y: 66.6032, - }, - { - l: '0.4', - x: 0.9774, - y: 66.8548, - }, - { - l: '0.4', - x: 0.9966, - y: 67.1041, - }, - { - l: '0.4', - x: 1.0157, - y: 67.3512, - }, - { - l: '0.4', - x: 1.0349, - y: 67.596, - }, - { - l: '0.4', - x: 1.0541, - y: 67.8388, - }, - { - l: '0.4', - x: 1.0732, - y: 68.0794, - }, - { - l: '0.4', - x: 1.0924, - y: 68.318, - }, - { - l: '0.4', - x: 1.1116, - y: 68.5548, - }, - { - l: '0.4', - x: 1.1307, - y: 68.7895, - }, - { - l: '0.4', - x: 1.1499, - y: 69.0222, - }, - { - l: '0.4', - x: 1.1691, - y: 69.2529, - }, - { - l: '0.4', - x: 1.1882, - y: 69.4815, - }, - { - l: '0.4', - x: 1.2074, - y: 69.7081, - }, - { - l: '0.4', - x: 1.2266, - y: 69.9329, - }, - { - l: '0.4', - x: 1.2457, - y: 70.1558, - }, - { - l: '0.4', - x: 1.2649, - y: 70.3771, - }, - { - l: '0.4', - x: 1.2841, - y: 70.5966, - }, - { - l: '0.4', - x: 1.3032, - y: 70.8145, - }, - { - l: '0.4', - x: 1.3224, - y: 71.0308, - }, - { - l: '0.4', - x: 1.3415, - y: 71.2456, - }, - { - l: '0.4', - x: 1.3607, - y: 71.4591, - }, - { - l: '0.4', - x: 1.3799, - y: 71.671, - }, - { - l: '0.4', - x: 1.399, - y: 71.8814, - }, - { - l: '0.4', - x: 1.4182, - y: 72.0903, - }, - { - l: '0.4', - x: 1.4374, - y: 72.2974, - }, - { - l: '0.4', - x: 1.4565, - y: 72.5031, - }, - { - l: '0.4', - x: 1.4757, - y: 72.7073, - }, - { - l: '0.4', - x: 1.4949, - y: 72.9101, - }, - { - l: '0.4', - x: 1.514, - y: 73.1117, - }, - { - l: '0.4', - x: 1.5332, - y: 73.3121, - }, - { - l: '0.4', - x: 1.5524, - y: 73.511, - }, - { - l: '0.4', - x: 1.5715, - y: 73.7086, - }, - { - l: '0.4', - x: 1.5907, - y: 73.9048, - }, - { - l: '0.4', - x: 1.6099, - y: 74.0995, - }, - { - l: '0.4', - x: 1.629, - y: 74.2929, - }, - { - l: '0.4', - x: 1.6482, - y: 74.4851, - }, - { - l: '0.4', - x: 1.6674, - y: 74.676, - }, - { - l: '0.4', - x: 1.6865, - y: 74.8658, - }, - { - l: '0.4', - x: 1.7057, - y: 75.0544, - }, - { - l: '0.4', - x: 1.7248, - y: 75.2419, - }, - { - l: '0.4', - x: 1.744, - y: 75.4282, - }, - { - l: '0.4', - x: 1.7632, - y: 75.6137, - }, - { - l: '0.4', - x: 1.7823, - y: 75.7982, - }, - { - l: '0.4', - x: 1.8015, - y: 75.9816, - }, - { - l: '0.4', - x: 1.8207, - y: 76.1638, - }, - { - l: '0.4', - x: 1.8398, - y: 76.3446, - }, - { - l: '0.4', - x: 1.859, - y: 76.5241, - }, - { - l: '0.4', - x: 1.8782, - y: 76.7024, - }, - { - l: '0.4', - x: 1.8973, - y: 76.8795, - }, - { - l: '0.4', - x: 1.9165, - y: 77.0556, - }, - { - l: '0.4', - x: 1.9357, - y: 77.229, - }, - { - l: '0.4', - x: 1.9548, - y: 77.4023, - }, - { - l: '0.4', - x: 1.974, - y: 77.5756, - }, - { - l: '0.4', - x: 1.9932, - y: 77.7488, - }, - { - l: '0.4', - x: 2.0, - y: 77.8106, - }, + { l: 0.4, x: 0.0383, y: 46.3569 }, + { l: 0.4, x: 0.0575, y: 47.3639 }, + { l: 0.4, x: 0.0767, y: 48.2178 }, + { l: 0.4, x: 0.0833, y: 48.5044 }, + { l: 0.4, x: 0.0958, y: 49.0274 }, + { l: 0.4, x: 0.115, y: 49.7938 }, + { l: 0.4, x: 0.1342, y: 50.5196 }, + { l: 0.4, x: 0.1533, y: 51.208 }, + { l: 0.4, x: 0.1667, y: 51.6672 }, + { l: 0.4, x: 0.1725, y: 51.8623 }, + { l: 0.4, x: 0.1916, y: 52.4852 }, + { l: 0.4, x: 0.2108, y: 53.0817 }, + { l: 0.4, x: 0.23, y: 53.6507 }, + { l: 0.4, x: 0.2491, y: 54.1969 }, + { l: 0.4, x: 0.25, y: 54.2201 }, + { l: 0.4, x: 0.3333, y: 56.3496 }, + { l: 0.4, x: 0.4167, y: 58.1494 }, + { l: 0.4, x: 0.5, y: 59.7204 }, + { l: 0.4, x: 0.5833, y: 61.1467 }, + { l: 0.4, x: 0.6667, y: 62.4776 }, + { l: 0.4, x: 0.75, y: 63.7367 }, + { l: 0.4, x: 0.8333, y: 64.9376 }, + { l: 0.4, x: 0.9167, y: 66.0856 }, + { l: 0.4, x: 1, y: 67.1859 }, + { l: 0.4, x: 1.0833, y: 68.2436 }, + { l: 0.4, x: 1.1667, y: 69.2633 }, + { l: 0.4, x: 1.25, y: 70.2453 }, + { l: 0.4, x: 1.3333, y: 71.1944 }, + { l: 0.4, x: 1.4167, y: 72.1151 }, + { l: 0.4, x: 1.5, y: 73.0065 }, + { l: 0.4, x: 1.5833, y: 73.8728 }, + { l: 0.4, x: 1.6667, y: 74.7131 }, + { l: 0.4, x: 1.75, y: 75.5309 }, + { l: 0.4, x: 1.8333, y: 76.3289 }, + { l: 0.4, x: 1.9167, y: 77.1034 }, + { l: 0.4, x: 2, y: 77.8576 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 0.0383, - y: 47.7063, - }, - { - l: '2.0', - x: 0.0575, - y: 48.6193, - }, - { - l: '2.0', - x: 0.0767, - y: 49.4873, - }, - { - l: '2.0', - x: 0.0958, - y: 50.3104, - }, - { - l: '2.0', - x: 0.115, - y: 51.0897, - }, - { - l: '2.0', - x: 0.1342, - y: 51.8279, - }, - { - l: '2.0', - x: 0.1533, - y: 52.5281, - }, - { - l: '2.0', - x: 0.1725, - y: 53.1935, - }, - { - l: '2.0', - x: 0.1916, - y: 53.8273, - }, - { - l: '2.0', - x: 0.2108, - y: 54.434, - }, - { - l: '2.0', - x: 0.23, - y: 55.0132, - }, - { - l: '2.0', - x: 0.2491, - y: 55.569, - }, - { - l: '2.0', - x: 0.2683, - y: 56.0949, - }, - { - l: '2.0', - x: 0.2875, - y: 56.6054, - }, - { - l: '2.0', - x: 0.3066, - y: 57.0999, - }, - { - l: '2.0', - x: 0.3258, - y: 57.5779, - }, - { - l: '2.0', - x: 0.345, - y: 58.0349, - }, - { - l: '2.0', - x: 0.3641, - y: 58.4725, - }, - { - l: '2.0', - x: 0.3833, - y: 58.8944, - }, - { - l: '2.0', - x: 0.4025, - y: 59.3019, - }, - { - l: '2.0', - x: 0.4216, - y: 59.6964, - }, - { - l: '2.0', - x: 0.4408, - y: 60.0794, - }, - { - l: '2.0', - x: 0.46, - y: 60.4515, - }, - { - l: '2.0', - x: 0.4791, - y: 60.8137, - }, - { - l: '2.0', - x: 0.4983, - y: 61.1671, - }, - { - l: '2.0', - x: 0.5175, - y: 61.514, - }, - { - l: '2.0', - x: 0.5366, - y: 61.854, - }, - { - l: '2.0', - x: 0.5558, - y: 62.1874, - }, - { - l: '2.0', - x: 0.5749, - y: 62.515, - }, - { - l: '2.0', - x: 0.5941, - y: 62.8378, - }, - { - l: '2.0', - x: 0.6133, - y: 63.1561, - }, - { - l: '2.0', - x: 0.6324, - y: 63.4699, - }, - { - l: '2.0', - x: 0.6516, - y: 63.7794, - }, - { - l: '2.0', - x: 0.6708, - y: 64.085, - }, - { - l: '2.0', - x: 0.6899, - y: 64.3872, - }, - { - l: '2.0', - x: 0.7091, - y: 64.6859, - }, - { - l: '2.0', - x: 0.7283, - y: 64.9811, - }, - { - l: '2.0', - x: 0.7474, - y: 65.2731, - }, - { - l: '2.0', - x: 0.7666, - y: 65.5623, - }, - { - l: '2.0', - x: 0.7858, - y: 65.8486, - }, - { - l: '2.0', - x: 0.8049, - y: 66.132, - }, - { - l: '2.0', - x: 0.8241, - y: 66.4125, - }, - { - l: '2.0', - x: 0.8433, - y: 66.6902, - }, - { - l: '2.0', - x: 0.8624, - y: 66.9652, - }, - { - l: '2.0', - x: 0.8816, - y: 67.2376, - }, - { - l: '2.0', - x: 0.9008, - y: 67.5074, - }, - { - l: '2.0', - x: 0.9199, - y: 67.7746, - }, - { - l: '2.0', - x: 0.9391, - y: 68.0393, - }, - { - l: '2.0', - x: 0.9582, - y: 68.3017, - }, - { - l: '2.0', - x: 0.9774, - y: 68.5616, - }, - { - l: '2.0', - x: 0.9966, - y: 68.8193, - }, - { - l: '2.0', - x: 1.0157, - y: 69.0747, - }, - { - l: '2.0', - x: 1.0349, - y: 69.3279, - }, - { - l: '2.0', - x: 1.0541, - y: 69.579, - }, - { - l: '2.0', - x: 1.0732, - y: 69.828, - }, - { - l: '2.0', - x: 1.0924, - y: 70.0751, - }, - { - l: '2.0', - x: 1.1116, - y: 70.3201, - }, - { - l: '2.0', - x: 1.1307, - y: 70.5632, - }, - { - l: '2.0', - x: 1.1499, - y: 70.8043, - }, - { - l: '2.0', - x: 1.1691, - y: 71.0434, - }, - { - l: '2.0', - x: 1.1882, - y: 71.2803, - }, - { - l: '2.0', - x: 1.2074, - y: 71.5154, - }, - { - l: '2.0', - x: 1.2266, - y: 71.7487, - }, - { - l: '2.0', - x: 1.2457, - y: 71.9801, - }, - { - l: '2.0', - x: 1.2649, - y: 72.2098, - }, - { - l: '2.0', - x: 1.2841, - y: 72.4378, - }, - { - l: '2.0', - x: 1.3032, - y: 72.6642, - }, - { - l: '2.0', - x: 1.3224, - y: 72.8889, - }, - { - l: '2.0', - x: 1.3415, - y: 73.1122, - }, - { - l: '2.0', - x: 1.3607, - y: 73.334, - }, - { - l: '2.0', - x: 1.3799, - y: 73.5543, - }, - { - l: '2.0', - x: 1.399, - y: 73.7731, - }, - { - l: '2.0', - x: 1.4182, - y: 73.9903, - }, - { - l: '2.0', - x: 1.4374, - y: 74.2059, - }, - { - l: '2.0', - x: 1.4565, - y: 74.42, - }, - { - l: '2.0', - x: 1.4757, - y: 74.6326, - }, - { - l: '2.0', - x: 1.4949, - y: 74.8438, - }, - { - l: '2.0', - x: 1.514, - y: 75.0538, - }, - { - l: '2.0', - x: 1.5332, - y: 75.2624, - }, - { - l: '2.0', - x: 1.5524, - y: 75.4697, - }, - { - l: '2.0', - x: 1.5715, - y: 75.6756, - }, - { - l: '2.0', - x: 1.5907, - y: 75.8801, - }, - { - l: '2.0', - x: 1.6099, - y: 76.0833, - }, - { - l: '2.0', - x: 1.629, - y: 76.2851, - }, - { - l: '2.0', - x: 1.6482, - y: 76.4856, - }, - { - l: '2.0', - x: 1.6674, - y: 76.6849, - }, - { - l: '2.0', - x: 1.6865, - y: 76.883, - }, - { - l: '2.0', - x: 1.7057, - y: 77.08, - }, - { - l: '2.0', - x: 1.7248, - y: 77.2758, - }, - { - l: '2.0', - x: 1.744, - y: 77.4704, - }, - { - l: '2.0', - x: 1.7632, - y: 77.6641, - }, - { - l: '2.0', - x: 1.7823, - y: 77.8568, - }, - { - l: '2.0', - x: 1.8015, - y: 78.0482, - }, - { - l: '2.0', - x: 1.8207, - y: 78.2385, - }, - { - l: '2.0', - x: 1.8398, - y: 78.4276, - }, - { - l: '2.0', - x: 1.859, - y: 78.6152, - }, - { - l: '2.0', - x: 1.8782, - y: 78.8017, - }, - { - l: '2.0', - x: 1.8973, - y: 78.987, - }, - { - l: '2.0', - x: 1.9165, - y: 79.1713, - }, - { - l: '2.0', - x: 1.9357, - y: 79.3528, - }, - { - l: '2.0', - x: 1.9548, - y: 79.5342, - }, - { - l: '2.0', - x: 1.974, - y: 79.7157, - }, - { - l: '2.0', - x: 1.9932, - y: 79.897, - }, - { - l: '2.0', - x: 2.0, - y: 79.9618, - }, + { l: 2.0, x: 0.0383, y: 47.4511 }, + { l: 2.0, x: 0.0575, y: 48.5159 }, + { l: 2.0, x: 0.0767, y: 49.3828 }, + { l: 2.0, x: 0.0833, y: 49.6738 }, + { l: 2.0, x: 0.0958, y: 50.2048 }, + { l: 2.0, x: 0.115, y: 50.9829 }, + { l: 2.0, x: 0.1342, y: 51.7202 }, + { l: 2.0, x: 0.1533, y: 52.4194 }, + { l: 2.0, x: 0.1667, y: 52.8856 }, + { l: 2.0, x: 0.1725, y: 53.0838 }, + { l: 2.0, x: 0.1916, y: 53.7168 }, + { l: 2.0, x: 0.2108, y: 54.3227 }, + { l: 2.0, x: 0.23, y: 54.901 }, + { l: 2.0, x: 0.2491, y: 55.456 }, + { l: 2.0, x: 0.25, y: 55.4797 }, + { l: 2.0, x: 0.3333, y: 57.6448 }, + { l: 2.0, x: 0.4167, y: 59.4763 }, + { l: 2.0, x: 0.5, y: 61.0766 }, + { l: 2.0, x: 0.5833, y: 62.5323 }, + { l: 2.0, x: 0.6667, y: 63.8928 }, + { l: 2.0, x: 0.75, y: 65.1823 }, + { l: 2.0, x: 0.8333, y: 66.4142 }, + { l: 2.0, x: 0.9167, y: 67.5941 }, + { l: 2.0, x: 1, y: 68.7268 }, + { l: 2.0, x: 1.0833, y: 69.8172 }, + { l: 2.0, x: 1.1667, y: 70.8695 }, + { l: 2.0, x: 1.25, y: 71.8844 }, + { l: 2.0, x: 1.3333, y: 72.8666 }, + { l: 2.0, x: 1.4167, y: 73.8199 }, + { l: 2.0, x: 1.5, y: 74.7442 }, + { l: 2.0, x: 1.5833, y: 75.6429 }, + { l: 2.0, x: 1.6667, y: 76.516 }, + { l: 2.0, x: 1.75, y: 77.3663 }, + { l: 2.0, x: 1.8333, y: 78.1961 }, + { l: 2.0, x: 1.9167, y: 79.0025 }, + { l: 2.0, x: 2, y: 79.7885 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 0.0383, - y: 48.9749, - }, - { - l: '9.0', - x: 0.0575, - y: 49.9027, - }, - { - l: '9.0', - x: 0.0767, - y: 50.7852, - }, - { - l: '9.0', - x: 0.0958, - y: 51.6221, - }, - { - l: '9.0', - x: 0.115, - y: 52.4145, - }, - { - l: '9.0', - x: 0.1342, - y: 53.1655, - }, - { - l: '9.0', - x: 0.1533, - y: 53.8776, - }, - { - l: '9.0', - x: 0.1725, - y: 54.5543, - }, - { - l: '9.0', - x: 0.1916, - y: 55.1994, - }, - { - l: '9.0', - x: 0.2108, - y: 55.8165, - }, - { - l: '9.0', - x: 0.23, - y: 56.4062, - }, - { - l: '9.0', - x: 0.2491, - y: 56.9718, - }, - { - l: '9.0', - x: 0.2683, - y: 57.5098, - }, - { - l: '9.0', - x: 0.2875, - y: 58.0303, - }, - { - l: '9.0', - x: 0.3066, - y: 58.5331, - }, - { - l: '9.0', - x: 0.3258, - y: 59.0182, - }, - { - l: '9.0', - x: 0.345, - y: 59.483, - }, - { - l: '9.0', - x: 0.3641, - y: 59.9289, - }, - { - l: '9.0', - x: 0.3833, - y: 60.3589, - }, - { - l: '9.0', - x: 0.4025, - y: 60.7744, - }, - { - l: '9.0', - x: 0.4216, - y: 61.1767, - }, - { - l: '9.0', - x: 0.4408, - y: 61.5673, - }, - { - l: '9.0', - x: 0.46, - y: 61.9469, - }, - { - l: '9.0', - x: 0.4791, - y: 62.3166, - }, - { - l: '9.0', - x: 0.4983, - y: 62.6774, - }, - { - l: '9.0', - x: 0.5175, - y: 63.0318, - }, - { - l: '9.0', - x: 0.5366, - y: 63.3792, - }, - { - l: '9.0', - x: 0.5558, - y: 63.7202, - }, - { - l: '9.0', - x: 0.5749, - y: 64.0553, - }, - { - l: '9.0', - x: 0.5941, - y: 64.3856, - }, - { - l: '9.0', - x: 0.6133, - y: 64.7115, - }, - { - l: '9.0', - x: 0.6324, - y: 65.0329, - }, - { - l: '9.0', - x: 0.6516, - y: 65.3501, - }, - { - l: '9.0', - x: 0.6708, - y: 65.6634, - }, - { - l: '9.0', - x: 0.6899, - y: 65.9733, - }, - { - l: '9.0', - x: 0.7091, - y: 66.2797, - }, - { - l: '9.0', - x: 0.7283, - y: 66.5827, - }, - { - l: '9.0', - x: 0.7474, - y: 66.8826, - }, - { - l: '9.0', - x: 0.7666, - y: 67.1797, - }, - { - l: '9.0', - x: 0.7858, - y: 67.4738, - }, - { - l: '9.0', - x: 0.8049, - y: 67.7651, - }, - { - l: '9.0', - x: 0.8241, - y: 68.0536, - }, - { - l: '9.0', - x: 0.8433, - y: 68.3394, - }, - { - l: '9.0', - x: 0.8624, - y: 68.6225, - }, - { - l: '9.0', - x: 0.8816, - y: 68.9031, - }, - { - l: '9.0', - x: 0.9008, - y: 69.181, - }, - { - l: '9.0', - x: 0.9199, - y: 69.4565, - }, - { - l: '9.0', - x: 0.9391, - y: 69.7295, - }, - { - l: '9.0', - x: 0.9582, - y: 70.0001, - }, - { - l: '9.0', - x: 0.9774, - y: 70.2684, - }, - { - l: '9.0', - x: 0.9966, - y: 70.5344, - }, - { - l: '9.0', - x: 1.0157, - y: 70.7982, - }, - { - l: '9.0', - x: 1.0349, - y: 71.0598, - }, - { - l: '9.0', - x: 1.0541, - y: 71.3193, - }, - { - l: '9.0', - x: 1.0732, - y: 71.5767, - }, - { - l: '9.0', - x: 1.0924, - y: 71.8321, - }, - { - l: '9.0', - x: 1.1116, - y: 72.0855, - }, - { - l: '9.0', - x: 1.1307, - y: 72.3369, - }, - { - l: '9.0', - x: 1.1499, - y: 72.5863, - }, - { - l: '9.0', - x: 1.1691, - y: 72.8338, - }, - { - l: '9.0', - x: 1.1882, - y: 73.0792, - }, - { - l: '9.0', - x: 1.2074, - y: 73.3227, - }, - { - l: '9.0', - x: 1.2266, - y: 73.5644, - }, - { - l: '9.0', - x: 1.2457, - y: 73.8043, - }, - { - l: '9.0', - x: 1.2649, - y: 74.0425, - }, - { - l: '9.0', - x: 1.2841, - y: 74.279, - }, - { - l: '9.0', - x: 1.3032, - y: 74.5138, - }, - { - l: '9.0', - x: 1.3224, - y: 74.747, - }, - { - l: '9.0', - x: 1.3415, - y: 74.9787, - }, - { - l: '9.0', - x: 1.3607, - y: 75.2089, - }, - { - l: '9.0', - x: 1.3799, - y: 75.4376, - }, - { - l: '9.0', - x: 1.399, - y: 75.6648, - }, - { - l: '9.0', - x: 1.4182, - y: 75.8904, - }, - { - l: '9.0', - x: 1.4374, - y: 76.1143, - }, - { - l: '9.0', - x: 1.4565, - y: 76.3368, - }, - { - l: '9.0', - x: 1.4757, - y: 76.5579, - }, - { - l: '9.0', - x: 1.4949, - y: 76.7775, - }, - { - l: '9.0', - x: 1.514, - y: 76.9958, - }, - { - l: '9.0', - x: 1.5332, - y: 77.2128, - }, - { - l: '9.0', - x: 1.5524, - y: 77.4284, - }, - { - l: '9.0', - x: 1.5715, - y: 77.6426, - }, - { - l: '9.0', - x: 1.5907, - y: 77.8555, - }, - { - l: '9.0', - x: 1.6099, - y: 78.067, - }, - { - l: '9.0', - x: 1.629, - y: 78.2772, - }, - { - l: '9.0', - x: 1.6482, - y: 78.4861, - }, - { - l: '9.0', - x: 1.6674, - y: 78.6938, - }, - { - l: '9.0', - x: 1.6865, - y: 78.9003, - }, - { - l: '9.0', - x: 1.7057, - y: 79.1056, - }, - { - l: '9.0', - x: 1.7248, - y: 79.3097, - }, - { - l: '9.0', - x: 1.744, - y: 79.5126, - }, - { - l: '9.0', - x: 1.7632, - y: 79.7145, - }, - { - l: '9.0', - x: 1.7823, - y: 79.9153, - }, - { - l: '9.0', - x: 1.8015, - y: 80.1149, - }, - { - l: '9.0', - x: 1.8207, - y: 80.3133, - }, - { - l: '9.0', - x: 1.8398, - y: 80.5105, - }, - { - l: '9.0', - x: 1.859, - y: 80.7063, - }, - { - l: '9.0', - x: 1.8782, - y: 80.901, - }, - { - l: '9.0', - x: 1.8973, - y: 81.0945, - }, - { - l: '9.0', - x: 1.9165, - y: 81.2869, - }, - { - l: '9.0', - x: 1.9357, - y: 81.4766, - }, - { - l: '9.0', - x: 1.9548, - y: 81.6662, - }, - { - l: '9.0', - x: 1.974, - y: 81.8557, - }, - { - l: '9.0', - x: 1.9932, - y: 82.0453, - }, - { - l: '9.0', - x: 2.0, - y: 82.113, - }, + { l: 9.0, x: 0.0383, y: 48.7547 }, + { l: 9.0, x: 0.0575, y: 49.8883 }, + { l: 9.0, x: 0.0767, y: 50.7706 }, + { l: 9.0, x: 0.0833, y: 51.067 }, + { l: 9.0, x: 0.0958, y: 51.6074 }, + { l: 9.0, x: 0.115, y: 52.3997 }, + { l: 9.0, x: 0.1342, y: 53.1505 }, + { l: 9.0, x: 0.1533, y: 53.8625 }, + { l: 9.0, x: 0.1667, y: 54.3372 }, + { l: 9.0, x: 0.1725, y: 54.5391 }, + { l: 9.0, x: 0.1916, y: 55.184 }, + { l: 9.0, x: 0.2108, y: 55.8011 }, + { l: 9.0, x: 0.23, y: 56.3906 }, + { l: 9.0, x: 0.2491, y: 56.956 }, + { l: 9.0, x: 0.25, y: 56.9804 }, + { l: 9.0, x: 0.3333, y: 59.1878 }, + { l: 9.0, x: 0.4167, y: 61.0571 }, + { l: 9.0, x: 0.5, y: 62.6923 }, + { l: 9.0, x: 0.5833, y: 64.1829 }, + { l: 9.0, x: 0.6667, y: 65.5788 }, + { l: 9.0, x: 0.75, y: 66.9045 }, + { l: 9.0, x: 0.8333, y: 68.1733 }, + { l: 9.0, x: 0.9167, y: 69.3911 }, + { l: 9.0, x: 1, y: 70.5625 }, + { l: 9.0, x: 1.0833, y: 71.6918 }, + { l: 9.0, x: 1.1667, y: 72.7829 }, + { l: 9.0, x: 1.25, y: 73.8372 }, + { l: 9.0, x: 1.3333, y: 74.8587 }, + { l: 9.0, x: 1.4167, y: 75.851 }, + { l: 9.0, x: 1.5, y: 76.8144 }, + { l: 9.0, x: 1.5833, y: 77.7518 }, + { l: 9.0, x: 1.6667, y: 78.6639 }, + { l: 9.0, x: 1.75, y: 79.5529 }, + { l: 9.0, x: 1.8333, y: 80.4204 }, + { l: 9.0, x: 1.9167, y: 81.265 }, + { l: 9.0, x: 2, y: 82.0889 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 0.0383, - y: 50.2434, - }, - { - l: '25.0', - x: 0.0575, - y: 51.1861, - }, - { - l: '25.0', - x: 0.0767, - y: 52.083, - }, - { - l: '25.0', - x: 0.0958, - y: 52.9337, - }, - { - l: '25.0', - x: 0.115, - y: 53.7394, - }, - { - l: '25.0', - x: 0.1342, - y: 54.503, - }, - { - l: '25.0', - x: 0.1533, - y: 55.2272, - }, - { - l: '25.0', - x: 0.1725, - y: 55.9152, - }, - { - l: '25.0', - x: 0.1916, - y: 56.5715, - }, - { - l: '25.0', - x: 0.2108, - y: 57.1991, - }, - { - l: '25.0', - x: 0.23, - y: 57.7992, - }, - { - l: '25.0', - x: 0.2491, - y: 58.3745, - }, - { - l: '25.0', - x: 0.2683, - y: 58.9248, - }, - { - l: '25.0', - x: 0.2875, - y: 59.4552, - }, - { - l: '25.0', - x: 0.3066, - y: 59.9663, - }, - { - l: '25.0', - x: 0.3258, - y: 60.4586, - }, - { - l: '25.0', - x: 0.345, - y: 60.9311, - }, - { - l: '25.0', - x: 0.3641, - y: 61.3853, - }, - { - l: '25.0', - x: 0.3833, - y: 61.8234, - }, - { - l: '25.0', - x: 0.4025, - y: 62.2469, - }, - { - l: '25.0', - x: 0.4216, - y: 62.6569, - }, - { - l: '25.0', - x: 0.4408, - y: 63.0552, - }, - { - l: '25.0', - x: 0.46, - y: 63.4423, - }, - { - l: '25.0', - x: 0.4791, - y: 63.8194, - }, - { - l: '25.0', - x: 0.4983, - y: 64.1877, - }, - { - l: '25.0', - x: 0.5175, - y: 64.5496, - }, - { - l: '25.0', - x: 0.5366, - y: 64.9045, - }, - { - l: '25.0', - x: 0.5558, - y: 65.2529, - }, - { - l: '25.0', - x: 0.5749, - y: 65.5955, - }, - { - l: '25.0', - x: 0.5941, - y: 65.9334, - }, - { - l: '25.0', - x: 0.6133, - y: 66.2669, - }, - { - l: '25.0', - x: 0.6324, - y: 66.5959, - }, - { - l: '25.0', - x: 0.6516, - y: 66.9207, - }, - { - l: '25.0', - x: 0.6708, - y: 67.2417, - }, - { - l: '25.0', - x: 0.6899, - y: 67.5593, - }, - { - l: '25.0', - x: 0.7091, - y: 67.8735, - }, - { - l: '25.0', - x: 0.7283, - y: 68.1843, - }, - { - l: '25.0', - x: 0.7474, - y: 68.492, - }, - { - l: '25.0', - x: 0.7666, - y: 68.797, - }, - { - l: '25.0', - x: 0.7858, - y: 69.099, - }, - { - l: '25.0', - x: 0.8049, - y: 69.3983, - }, - { - l: '25.0', - x: 0.8241, - y: 69.6948, - }, - { - l: '25.0', - x: 0.8433, - y: 69.9886, - }, - { - l: '25.0', - x: 0.8624, - y: 70.2799, - }, - { - l: '25.0', - x: 0.8816, - y: 70.5686, - }, - { - l: '25.0', - x: 0.9008, - y: 70.8547, - }, - { - l: '25.0', - x: 0.9199, - y: 71.1384, - }, - { - l: '25.0', - x: 0.9391, - y: 71.4197, - }, - { - l: '25.0', - x: 0.9582, - y: 71.6986, - }, - { - l: '25.0', - x: 0.9774, - y: 71.9752, - }, - { - l: '25.0', - x: 0.9966, - y: 72.2496, - }, - { - l: '25.0', - x: 1.0157, - y: 72.5217, - }, - { - l: '25.0', - x: 1.0349, - y: 72.7917, - }, - { - l: '25.0', - x: 1.0541, - y: 73.0596, - }, - { - l: '25.0', - x: 1.0732, - y: 73.3254, - }, - { - l: '25.0', - x: 1.0924, - y: 73.5891, - }, - { - l: '25.0', - x: 1.1116, - y: 73.8508, - }, - { - l: '25.0', - x: 1.1307, - y: 74.1106, - }, - { - l: '25.0', - x: 1.1499, - y: 74.3684, - }, - { - l: '25.0', - x: 1.1691, - y: 74.6242, - }, - { - l: '25.0', - x: 1.1882, - y: 74.8781, - }, - { - l: '25.0', - x: 1.2074, - y: 75.13, - }, - { - l: '25.0', - x: 1.2266, - y: 75.3802, - }, - { - l: '25.0', - x: 1.2457, - y: 75.6286, - }, - { - l: '25.0', - x: 1.2649, - y: 75.8752, - }, - { - l: '25.0', - x: 1.2841, - y: 76.1202, - }, - { - l: '25.0', - x: 1.3032, - y: 76.3635, - }, - { - l: '25.0', - x: 1.3224, - y: 76.6052, - }, - { - l: '25.0', - x: 1.3415, - y: 76.8453, - }, - { - l: '25.0', - x: 1.3607, - y: 77.0839, - }, - { - l: '25.0', - x: 1.3799, - y: 77.3209, - }, - { - l: '25.0', - x: 1.399, - y: 77.5564, - }, - { - l: '25.0', - x: 1.4182, - y: 77.7904, - }, - { - l: '25.0', - x: 1.4374, - y: 78.0228, - }, - { - l: '25.0', - x: 1.4565, - y: 78.2537, - }, - { - l: '25.0', - x: 1.4757, - y: 78.4831, - }, - { - l: '25.0', - x: 1.4949, - y: 78.7111, - }, - { - l: '25.0', - x: 1.514, - y: 78.9378, - }, - { - l: '25.0', - x: 1.5332, - y: 79.1631, - }, - { - l: '25.0', - x: 1.5524, - y: 79.387, - }, - { - l: '25.0', - x: 1.5715, - y: 79.6096, - }, - { - l: '25.0', - x: 1.5907, - y: 79.8308, - }, - { - l: '25.0', - x: 1.6099, - y: 80.0507, - }, - { - l: '25.0', - x: 1.629, - y: 80.2693, - }, - { - l: '25.0', - x: 1.6482, - y: 80.4866, - }, - { - l: '25.0', - x: 1.6674, - y: 80.7027, - }, - { - l: '25.0', - x: 1.6865, - y: 80.9176, - }, - { - l: '25.0', - x: 1.7057, - y: 81.1312, - }, - { - l: '25.0', - x: 1.7248, - y: 81.3436, - }, - { - l: '25.0', - x: 1.744, - y: 81.5549, - }, - { - l: '25.0', - x: 1.7632, - y: 81.7649, - }, - { - l: '25.0', - x: 1.7823, - y: 81.9738, - }, - { - l: '25.0', - x: 1.8015, - y: 82.1815, - }, - { - l: '25.0', - x: 1.8207, - y: 82.3881, - }, - { - l: '25.0', - x: 1.8398, - y: 82.5934, - }, - { - l: '25.0', - x: 1.859, - y: 82.7974, - }, - { - l: '25.0', - x: 1.8782, - y: 83.0003, - }, - { - l: '25.0', - x: 1.8973, - y: 83.202, - }, - { - l: '25.0', - x: 1.9165, - y: 83.4026, - }, - { - l: '25.0', - x: 1.9357, - y: 83.6004, - }, - { - l: '25.0', - x: 1.9548, - y: 83.7981, - }, - { - l: '25.0', - x: 1.974, - y: 83.9958, - }, - { - l: '25.0', - x: 1.9932, - y: 84.1935, - }, - { - l: '25.0', - x: 2.0, - y: 84.2641, - }, + { l: 25.0, x: 0.0383, y: 49.9731 }, + { l: 25.0, x: 0.0575, y: 51.171 }, + { l: 25.0, x: 0.0767, y: 52.0678 }, + { l: 25.0, x: 0.0833, y: 52.3691 }, + { l: 25.0, x: 0.0958, y: 52.9183 }, + { l: 25.0, x: 0.115, y: 53.7238 }, + { l: 25.0, x: 0.1342, y: 54.4873 }, + { l: 25.0, x: 0.1533, y: 55.2113 }, + { l: 25.0, x: 0.1667, y: 55.6939 }, + { l: 25.0, x: 0.1725, y: 55.8992 }, + { l: 25.0, x: 0.1916, y: 56.5554 }, + { l: 25.0, x: 0.2108, y: 57.1828 }, + { l: 25.0, x: 0.23, y: 57.7828 }, + { l: 25.0, x: 0.2491, y: 58.358 }, + { l: 25.0, x: 0.25, y: 58.383 }, + { l: 25.0, x: 0.3333, y: 60.63 }, + { l: 25.0, x: 0.4167, y: 62.5345 }, + { l: 25.0, x: 0.5, y: 64.2024 }, + { l: 25.0, x: 0.5833, y: 65.7256 }, + { l: 25.0, x: 0.6667, y: 67.1546 }, + { l: 25.0, x: 0.75, y: 68.5141 }, + { l: 25.0, x: 0.8333, y: 69.8174 }, + { l: 25.0, x: 0.9167, y: 71.0707 }, + { l: 25.0, x: 1, y: 72.2782 }, + { l: 25.0, x: 1.0833, y: 73.4439 }, + { l: 25.0, x: 1.1667, y: 74.5713 }, + { l: 25.0, x: 1.25, y: 75.6623 }, + { l: 25.0, x: 1.3333, y: 76.7207 }, + { l: 25.0, x: 1.4167, y: 77.7493 }, + { l: 25.0, x: 1.5, y: 78.7492 }, + { l: 25.0, x: 1.5833, y: 79.7229 }, + { l: 25.0, x: 1.6667, y: 80.6714 }, + { l: 25.0, x: 1.75, y: 81.5966 }, + { l: 25.0, x: 1.8333, y: 82.4994 }, + { l: 25.0, x: 1.9167, y: 83.3796 }, + { l: 25.0, x: 2, y: 84.2389 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 0.0383, - y: 51.512, - }, - { - l: '50.0', - x: 0.0575, - y: 52.4695, - }, - { - l: '50.0', - x: 0.0767, - y: 53.3809, - }, - { - l: '50.0', - x: 0.0958, - y: 54.2454, - }, - { - l: '50.0', - x: 0.115, - y: 55.0642, - }, - { - l: '50.0', - x: 0.1342, - y: 55.8406, - }, - { - l: '50.0', - x: 0.1533, - y: 56.5767, - }, - { - l: '50.0', - x: 0.1725, - y: 57.2761, - }, - { - l: '50.0', - x: 0.1916, - y: 57.9436, - }, - { - l: '50.0', - x: 0.2108, - y: 58.5816, - }, - { - l: '50.0', - x: 0.23, - y: 59.1922, - }, - { - l: '50.0', - x: 0.2491, - y: 59.7773, - }, - { - l: '50.0', - x: 0.2683, - y: 60.3398, - }, - { - l: '50.0', - x: 0.2875, - y: 60.8802, - }, - { - l: '50.0', - x: 0.3066, - y: 61.3995, - }, - { - l: '50.0', - x: 0.3258, - y: 61.8989, - }, - { - l: '50.0', - x: 0.345, - y: 62.3792, - }, - { - l: '50.0', - x: 0.3641, - y: 62.8417, - }, - { - l: '50.0', - x: 0.3833, - y: 63.288, - }, - { - l: '50.0', - x: 0.4025, - y: 63.7193, - }, - { - l: '50.0', - x: 0.4216, - y: 64.1372, - }, - { - l: '50.0', - x: 0.4408, - y: 64.543, - }, - { - l: '50.0', - x: 0.46, - y: 64.9377, - }, - { - l: '50.0', - x: 0.4791, - y: 65.3223, - }, - { - l: '50.0', - x: 0.4983, - y: 65.698, - }, - { - l: '50.0', - x: 0.5175, - y: 66.0673, - }, - { - l: '50.0', - x: 0.5366, - y: 66.4297, - }, - { - l: '50.0', - x: 0.5558, - y: 66.7857, - }, - { - l: '50.0', - x: 0.5749, - y: 67.1358, - }, - { - l: '50.0', - x: 0.5941, - y: 67.4812, - }, - { - l: '50.0', - x: 0.6133, - y: 67.8223, - }, - { - l: '50.0', - x: 0.6324, - y: 68.1589, - }, - { - l: '50.0', - x: 0.6516, - y: 68.4913, - }, - { - l: '50.0', - x: 0.6708, - y: 68.82, - }, - { - l: '50.0', - x: 0.6899, - y: 69.1454, - }, - { - l: '50.0', - x: 0.7091, - y: 69.4673, - }, - { - l: '50.0', - x: 0.7283, - y: 69.7859, - }, - { - l: '50.0', - x: 0.7474, - y: 70.1015, - }, - { - l: '50.0', - x: 0.7666, - y: 70.4143, - }, - { - l: '50.0', - x: 0.7858, - y: 70.7243, - }, - { - l: '50.0', - x: 0.8049, - y: 71.0315, - }, - { - l: '50.0', - x: 0.8241, - y: 71.3359, - }, - { - l: '50.0', - x: 0.8433, - y: 71.6378, - }, - { - l: '50.0', - x: 0.8624, - y: 71.9372, - }, - { - l: '50.0', - x: 0.8816, - y: 72.2341, - }, - { - l: '50.0', - x: 0.9008, - y: 72.5284, - }, - { - l: '50.0', - x: 0.9199, - y: 72.8204, - }, - { - l: '50.0', - x: 0.9391, - y: 73.1099, - }, - { - l: '50.0', - x: 0.9582, - y: 73.3971, - }, - { - l: '50.0', - x: 0.9774, - y: 73.6821, - }, - { - l: '50.0', - x: 0.9966, - y: 73.9648, - }, - { - l: '50.0', - x: 1.0157, - y: 74.2453, - }, - { - l: '50.0', - x: 1.0349, - y: 74.5236, - }, - { - l: '50.0', - x: 1.0541, - y: 74.7999, - }, - { - l: '50.0', - x: 1.0732, - y: 75.074, - }, - { - l: '50.0', - x: 1.0924, - y: 75.3461, - }, - { - l: '50.0', - x: 1.1116, - y: 75.6162, - }, - { - l: '50.0', - x: 1.1307, - y: 75.8843, - }, - { - l: '50.0', - x: 1.1499, - y: 76.1504, - }, - { - l: '50.0', - x: 1.1691, - y: 76.4146, - }, - { - l: '50.0', - x: 1.1882, - y: 76.6769, - }, - { - l: '50.0', - x: 1.2074, - y: 76.9373, - }, - { - l: '50.0', - x: 1.2266, - y: 77.196, - }, - { - l: '50.0', - x: 1.2457, - y: 77.4528, - }, - { - l: '50.0', - x: 1.2649, - y: 77.7079, - }, - { - l: '50.0', - x: 1.2841, - y: 77.9614, - }, - { - l: '50.0', - x: 1.3032, - y: 78.2132, - }, - { - l: '50.0', - x: 1.3224, - y: 78.4633, - }, - { - l: '50.0', - x: 1.3415, - y: 78.7118, - }, - { - l: '50.0', - x: 1.3607, - y: 78.9588, - }, - { - l: '50.0', - x: 1.3799, - y: 79.2042, - }, - { - l: '50.0', - x: 1.399, - y: 79.4481, - }, - { - l: '50.0', - x: 1.4182, - y: 79.6904, - }, - { - l: '50.0', - x: 1.4374, - y: 79.9312, - }, - { - l: '50.0', - x: 1.4565, - y: 80.1705, - }, - { - l: '50.0', - x: 1.4757, - y: 80.4084, - }, - { - l: '50.0', - x: 1.4949, - y: 80.6448, - }, - { - l: '50.0', - x: 1.514, - y: 80.8798, - }, - { - l: '50.0', - x: 1.5332, - y: 81.1135, - }, - { - l: '50.0', - x: 1.5524, - y: 81.3457, - }, - { - l: '50.0', - x: 1.5715, - y: 81.5766, - }, - { - l: '50.0', - x: 1.5907, - y: 81.8062, - }, - { - l: '50.0', - x: 1.6099, - y: 82.0345, - }, - { - l: '50.0', - x: 1.629, - y: 82.2615, - }, - { - l: '50.0', - x: 1.6482, - y: 82.4872, - }, - { - l: '50.0', - x: 1.6674, - y: 82.7116, - }, - { - l: '50.0', - x: 1.6865, - y: 82.9348, - }, - { - l: '50.0', - x: 1.7057, - y: 83.1568, - }, - { - l: '50.0', - x: 1.7248, - y: 83.3775, - }, - { - l: '50.0', - x: 1.744, - y: 83.5971, - }, - { - l: '50.0', - x: 1.7632, - y: 83.8153, - }, - { - l: '50.0', - x: 1.7823, - y: 84.0324, - }, - { - l: '50.0', - x: 1.8015, - y: 84.2482, - }, - { - l: '50.0', - x: 1.8207, - y: 84.4628, - }, - { - l: '50.0', - x: 1.8398, - y: 84.6763, - }, - { - l: '50.0', - x: 1.859, - y: 84.8885, - }, - { - l: '50.0', - x: 1.8782, - y: 85.0996, - }, - { - l: '50.0', - x: 1.8973, - y: 85.3095, - }, - { - l: '50.0', - x: 1.9165, - y: 85.5183, - }, - { - l: '50.0', - x: 1.9357, - y: 85.7242, - }, - { - l: '50.0', - x: 1.9548, - y: 85.9301, - }, - { - l: '50.0', - x: 1.974, - y: 86.1359, - }, - { - l: '50.0', - x: 1.9932, - y: 86.3418, - }, - { - l: '50.0', - x: 2.0, - y: 86.4153, - }, + { l: 50.0, x: 0.0383, y: 51.2065 }, + { l: 50.0, x: 0.0575, y: 52.4695 }, + { l: 50.0, x: 0.0767, y: 53.3809 }, + { l: 50.0, x: 0.0833, y: 53.6872 }, + { l: 50.0, x: 0.0958, y: 54.2454 }, + { l: 50.0, x: 0.115, y: 55.0642 }, + { l: 50.0, x: 0.1342, y: 55.8406 }, + { l: 50.0, x: 0.1533, y: 56.5767 }, + { l: 50.0, x: 0.1667, y: 57.0673 }, + { l: 50.0, x: 0.1725, y: 57.2761 }, + { l: 50.0, x: 0.1916, y: 57.9436 }, + { l: 50.0, x: 0.2108, y: 58.5816 }, + { l: 50.0, x: 0.23, y: 59.1922 }, + { l: 50.0, x: 0.2491, y: 59.7773 }, + { l: 50.0, x: 0.25, y: 59.8029 }, + { l: 50.0, x: 0.3333, y: 62.0899 }, + { l: 50.0, x: 0.4167, y: 64.0301 }, + { l: 50.0, x: 0.5, y: 65.7311 }, + { l: 50.0, x: 0.5833, y: 67.2873 }, + { l: 50.0, x: 0.6667, y: 68.7498 }, + { l: 50.0, x: 0.75, y: 70.1435 }, + { l: 50.0, x: 0.8333, y: 71.4818 }, + { l: 50.0, x: 0.9167, y: 72.771 }, + { l: 50.0, x: 1, y: 74.015 }, + { l: 50.0, x: 1.0833, y: 75.2176 }, + { l: 50.0, x: 1.1667, y: 76.3817 }, + { l: 50.0, x: 1.25, y: 77.5099 }, + { l: 50.0, x: 1.3333, y: 78.6055 }, + { l: 50.0, x: 1.4167, y: 79.671 }, + { l: 50.0, x: 1.5, y: 80.7079 }, + { l: 50.0, x: 1.5833, y: 81.7182 }, + { l: 50.0, x: 1.6667, y: 82.7036 }, + { l: 50.0, x: 1.75, y: 83.6654 }, + { l: 50.0, x: 1.8333, y: 84.604 }, + { l: 50.0, x: 1.9167, y: 85.5202 }, + { l: 50.0, x: 2, y: 86.4153 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 0.0383, - y: 52.7806, - }, - { - l: '75.0', - x: 0.0575, - y: 53.7529, - }, - { - l: '75.0', - x: 0.0767, - y: 54.6788, - }, - { - l: '75.0', - x: 0.0958, - y: 55.5571, - }, - { - l: '75.0', - x: 0.115, - y: 56.389, - }, - { - l: '75.0', - x: 0.1342, - y: 57.1782, - }, - { - l: '75.0', - x: 0.1533, - y: 57.9262, - }, - { - l: '75.0', - x: 0.1725, - y: 58.637, - }, - { - l: '75.0', - x: 0.1916, - y: 59.3157, - }, - { - l: '75.0', - x: 0.2108, - y: 59.9641, - }, - { - l: '75.0', - x: 0.23, - y: 60.5852, - }, - { - l: '75.0', - x: 0.2491, - y: 61.1801, - }, - { - l: '75.0', - x: 0.2683, - y: 61.7548, - }, - { - l: '75.0', - x: 0.2875, - y: 62.3051, - }, - { - l: '75.0', - x: 0.3066, - y: 62.8327, - }, - { - l: '75.0', - x: 0.3258, - y: 63.3392, - }, - { - l: '75.0', - x: 0.345, - y: 63.8273, - }, - { - l: '75.0', - x: 0.3641, - y: 64.2981, - }, - { - l: '75.0', - x: 0.3833, - y: 64.7525, - }, - { - l: '75.0', - x: 0.4025, - y: 65.1918, - }, - { - l: '75.0', - x: 0.4216, - y: 65.6174, - }, - { - l: '75.0', - x: 0.4408, - y: 66.0309, - }, - { - l: '75.0', - x: 0.46, - y: 66.4331, - }, - { - l: '75.0', - x: 0.4791, - y: 66.8251, - }, - { - l: '75.0', - x: 0.4983, - y: 67.2082, - }, - { - l: '75.0', - x: 0.5175, - y: 67.5851, - }, - { - l: '75.0', - x: 0.5366, - y: 67.955, - }, - { - l: '75.0', - x: 0.5558, - y: 68.3185, - }, - { - l: '75.0', - x: 0.5749, - y: 68.6761, - }, - { - l: '75.0', - x: 0.5941, - y: 69.0291, - }, - { - l: '75.0', - x: 0.6133, - y: 69.3777, - }, - { - l: '75.0', - x: 0.6324, - y: 69.7219, - }, - { - l: '75.0', - x: 0.6516, - y: 70.062, - }, - { - l: '75.0', - x: 0.6708, - y: 70.3983, - }, - { - l: '75.0', - x: 0.6899, - y: 70.7314, - }, - { - l: '75.0', - x: 0.7091, - y: 71.0611, - }, - { - l: '75.0', - x: 0.7283, - y: 71.3875, - }, - { - l: '75.0', - x: 0.7474, - y: 71.7109, - }, - { - l: '75.0', - x: 0.7666, - y: 72.0316, - }, - { - l: '75.0', - x: 0.7858, - y: 72.3495, - }, - { - l: '75.0', - x: 0.8049, - y: 72.6646, - }, - { - l: '75.0', - x: 0.8241, - y: 72.9771, - }, - { - l: '75.0', - x: 0.8433, - y: 73.2871, - }, - { - l: '75.0', - x: 0.8624, - y: 73.5945, - }, - { - l: '75.0', - x: 0.8816, - y: 73.8995, - }, - { - l: '75.0', - x: 0.9008, - y: 74.2021, - }, - { - l: '75.0', - x: 0.9199, - y: 74.5023, - }, - { - l: '75.0', - x: 0.9391, - y: 74.8001, - }, - { - l: '75.0', - x: 0.9582, - y: 75.0956, - }, - { - l: '75.0', - x: 0.9774, - y: 75.3889, - }, - { - l: '75.0', - x: 0.9966, - y: 75.6799, - }, - { - l: '75.0', - x: 1.0157, - y: 75.9688, - }, - { - l: '75.0', - x: 1.0349, - y: 76.2555, - }, - { - l: '75.0', - x: 1.0541, - y: 76.5401, - }, - { - l: '75.0', - x: 1.0732, - y: 76.8227, - }, - { - l: '75.0', - x: 1.0924, - y: 77.1031, - }, - { - l: '75.0', - x: 1.1116, - y: 77.3815, - }, - { - l: '75.0', - x: 1.1307, - y: 77.658, - }, - { - l: '75.0', - x: 1.1499, - y: 77.9325, - }, - { - l: '75.0', - x: 1.1691, - y: 78.205, - }, - { - l: '75.0', - x: 1.1882, - y: 78.4758, - }, - { - l: '75.0', - x: 1.2074, - y: 78.7446, - }, - { - l: '75.0', - x: 1.2266, - y: 79.0117, - }, - { - l: '75.0', - x: 1.2457, - y: 79.277, - }, - { - l: '75.0', - x: 1.2649, - y: 79.5407, - }, - { - l: '75.0', - x: 1.2841, - y: 79.8026, - }, - { - l: '75.0', - x: 1.3032, - y: 80.0628, - }, - { - l: '75.0', - x: 1.3224, - y: 80.3214, - }, - { - l: '75.0', - x: 1.3415, - y: 80.5784, - }, - { - l: '75.0', - x: 1.3607, - y: 80.8337, - }, - { - l: '75.0', - x: 1.3799, - y: 81.0875, - }, - { - l: '75.0', - x: 1.399, - y: 81.3397, - }, - { - l: '75.0', - x: 1.4182, - y: 81.5904, - }, - { - l: '75.0', - x: 1.4374, - y: 81.8397, - }, - { - l: '75.0', - x: 1.4565, - y: 82.0874, - }, - { - l: '75.0', - x: 1.4757, - y: 82.3337, - }, - { - l: '75.0', - x: 1.4949, - y: 82.5785, - }, - { - l: '75.0', - x: 1.514, - y: 82.8218, - }, - { - l: '75.0', - x: 1.5332, - y: 83.0638, - }, - { - l: '75.0', - x: 1.5524, - y: 83.3044, - }, - { - l: '75.0', - x: 1.5715, - y: 83.5436, - }, - { - l: '75.0', - x: 1.5907, - y: 83.7815, - }, - { - l: '75.0', - x: 1.6099, - y: 84.0182, - }, - { - l: '75.0', - x: 1.629, - y: 84.2536, - }, - { - l: '75.0', - x: 1.6482, - y: 84.4877, - }, - { - l: '75.0', - x: 1.6674, - y: 84.7205, - }, - { - l: '75.0', - x: 1.6865, - y: 84.9521, - }, - { - l: '75.0', - x: 1.7057, - y: 85.1824, - }, - { - l: '75.0', - x: 1.7248, - y: 85.4115, - }, - { - l: '75.0', - x: 1.744, - y: 85.6393, - }, - { - l: '75.0', - x: 1.7632, - y: 85.8657, - }, - { - l: '75.0', - x: 1.7823, - y: 86.0909, - }, - { - l: '75.0', - x: 1.8015, - y: 86.3149, - }, - { - l: '75.0', - x: 1.8207, - y: 86.5376, - }, - { - l: '75.0', - x: 1.8398, - y: 86.7592, - }, - { - l: '75.0', - x: 1.859, - y: 86.9796, - }, - { - l: '75.0', - x: 1.8782, - y: 87.1989, - }, - { - l: '75.0', - x: 1.8973, - y: 87.417, - }, - { - l: '75.0', - x: 1.9165, - y: 87.634, - }, - { - l: '75.0', - x: 1.9357, - y: 87.848, - }, - { - l: '75.0', - x: 1.9548, - y: 88.062, - }, - { - l: '75.0', - x: 1.974, - y: 88.276, - }, - { - l: '75.0', - x: 1.9932, - y: 88.49, - }, - { - l: '75.0', - x: 2.0, - y: 88.5665, - }, + { l: 75.0, x: 0.0383, y: 52.4399 }, + { l: 75.0, x: 0.0575, y: 53.768 }, + { l: 75.0, x: 0.0767, y: 54.694 }, + { l: 75.0, x: 0.0833, y: 55.0053 }, + { l: 75.0, x: 0.0958, y: 55.5725 }, + { l: 75.0, x: 0.115, y: 56.4046 }, + { l: 75.0, x: 0.1342, y: 57.1939 }, + { l: 75.0, x: 0.1533, y: 57.9421 }, + { l: 75.0, x: 0.1667, y: 58.4407 }, + { l: 75.0, x: 0.1725, y: 58.653 }, + { l: 75.0, x: 0.1916, y: 59.3318 }, + { l: 75.0, x: 0.2108, y: 59.9804 }, + { l: 75.0, x: 0.23, y: 60.6016 }, + { l: 75.0, x: 0.2491, y: 61.1966 }, + { l: 75.0, x: 0.25, y: 61.2228 }, + { l: 75.0, x: 0.3333, y: 63.5498 }, + { l: 75.0, x: 0.4167, y: 65.5257 }, + { l: 75.0, x: 0.5, y: 67.2598 }, + { l: 75.0, x: 0.5833, y: 68.849 }, + { l: 75.0, x: 0.6667, y: 70.345 }, + { l: 75.0, x: 0.75, y: 71.7729 }, + { l: 75.0, x: 0.8333, y: 73.1462 }, + { l: 75.0, x: 0.9167, y: 74.4713 }, + { l: 75.0, x: 1, y: 75.7518 }, + { l: 75.0, x: 1.0833, y: 76.9913 }, + { l: 75.0, x: 1.1667, y: 78.1921 }, + { l: 75.0, x: 1.25, y: 79.3575 }, + { l: 75.0, x: 1.3333, y: 80.4903 }, + { l: 75.0, x: 1.4167, y: 81.5927 }, + { l: 75.0, x: 1.5, y: 82.6666 }, + { l: 75.0, x: 1.5833, y: 83.7135 }, + { l: 75.0, x: 1.6667, y: 84.7358 }, + { l: 75.0, x: 1.75, y: 85.7342 }, + { l: 75.0, x: 1.8333, y: 86.7086 }, + { l: 75.0, x: 1.9167, y: 87.6608 }, + { l: 75.0, x: 2, y: 88.5917 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 0.0383, - y: 54.0491, - }, - { - l: '91.0', - x: 0.0575, - y: 55.0363, - }, - { - l: '91.0', - x: 0.0767, - y: 55.9766, - }, - { - l: '91.0', - x: 0.0958, - y: 56.8687, - }, - { - l: '91.0', - x: 0.115, - y: 57.7139, - }, - { - l: '91.0', - x: 0.1342, - y: 58.5157, - }, - { - l: '91.0', - x: 0.1533, - y: 59.2758, - }, - { - l: '91.0', - x: 0.1725, - y: 59.9979, - }, - { - l: '91.0', - x: 0.1916, - y: 60.6878, - }, - { - l: '91.0', - x: 0.2108, - y: 61.3467, - }, - { - l: '91.0', - x: 0.23, - y: 61.9782, - }, - { - l: '91.0', - x: 0.2491, - y: 62.5828, - }, - { - l: '91.0', - x: 0.2683, - y: 63.1698, - }, - { - l: '91.0', - x: 0.2875, - y: 63.73, - }, - { - l: '91.0', - x: 0.3066, - y: 64.2659, - }, - { - l: '91.0', - x: 0.3258, - y: 64.7796, - }, - { - l: '91.0', - x: 0.345, - y: 65.2754, - }, - { - l: '91.0', - x: 0.3641, - y: 65.7545, - }, - { - l: '91.0', - x: 0.3833, - y: 66.217, - }, - { - l: '91.0', - x: 0.4025, - y: 66.6642, - }, - { - l: '91.0', - x: 0.4216, - y: 67.0976, - }, - { - l: '91.0', - x: 0.4408, - y: 67.5187, - }, - { - l: '91.0', - x: 0.46, - y: 67.9284, - }, - { - l: '91.0', - x: 0.4791, - y: 68.328, - }, - { - l: '91.0', - x: 0.4983, - y: 68.7185, - }, - { - l: '91.0', - x: 0.5175, - y: 69.1028, - }, - { - l: '91.0', - x: 0.5366, - y: 69.4803, - }, - { - l: '91.0', - x: 0.5558, - y: 69.8512, - }, - { - l: '91.0', - x: 0.5749, - y: 70.2164, - }, - { - l: '91.0', - x: 0.5941, - y: 70.5769, - }, - { - l: '91.0', - x: 0.6133, - y: 70.9331, - }, - { - l: '91.0', - x: 0.6324, - y: 71.2849, - }, - { - l: '91.0', - x: 0.6516, - y: 71.6326, - }, - { - l: '91.0', - x: 0.6708, - y: 71.9766, - }, - { - l: '91.0', - x: 0.6899, - y: 72.3174, - }, - { - l: '91.0', - x: 0.7091, - y: 72.6549, - }, - { - l: '91.0', - x: 0.7283, - y: 72.9891, - }, - { - l: '91.0', - x: 0.7474, - y: 73.3204, - }, - { - l: '91.0', - x: 0.7666, - y: 73.6489, - }, - { - l: '91.0', - x: 0.7858, - y: 73.9747, - }, - { - l: '91.0', - x: 0.8049, - y: 74.2978, - }, - { - l: '91.0', - x: 0.8241, - y: 74.6183, - }, - { - l: '91.0', - x: 0.8433, - y: 74.9363, - }, - { - l: '91.0', - x: 0.8624, - y: 75.2519, - }, - { - l: '91.0', - x: 0.8816, - y: 75.565, - }, - { - l: '91.0', - x: 0.9008, - y: 75.8758, - }, - { - l: '91.0', - x: 0.9199, - y: 76.1842, - }, - { - l: '91.0', - x: 0.9391, - y: 76.4903, - }, - { - l: '91.0', - x: 0.9582, - y: 76.7941, - }, - { - l: '91.0', - x: 0.9774, - y: 77.0957, - }, - { - l: '91.0', - x: 0.9966, - y: 77.3951, - }, - { - l: '91.0', - x: 1.0157, - y: 77.6923, - }, - { - l: '91.0', - x: 1.0349, - y: 77.9874, - }, - { - l: '91.0', - x: 1.0541, - y: 78.2804, - }, - { - l: '91.0', - x: 1.0732, - y: 78.5713, - }, - { - l: '91.0', - x: 1.0924, - y: 78.8601, - }, - { - l: '91.0', - x: 1.1116, - y: 79.1469, - }, - { - l: '91.0', - x: 1.1307, - y: 79.4317, - }, - { - l: '91.0', - x: 1.1499, - y: 79.7145, - }, - { - l: '91.0', - x: 1.1691, - y: 79.9955, - }, - { - l: '91.0', - x: 1.1882, - y: 80.2746, - }, - { - l: '91.0', - x: 1.2074, - y: 80.5519, - }, - { - l: '91.0', - x: 1.2266, - y: 80.8275, - }, - { - l: '91.0', - x: 1.2457, - y: 81.1013, - }, - { - l: '91.0', - x: 1.2649, - y: 81.3734, - }, - { - l: '91.0', - x: 1.2841, - y: 81.6438, - }, - { - l: '91.0', - x: 1.3032, - y: 81.9125, - }, - { - l: '91.0', - x: 1.3224, - y: 82.1795, - }, - { - l: '91.0', - x: 1.3415, - y: 82.4449, - }, - { - l: '91.0', - x: 1.3607, - y: 82.7087, - }, - { - l: '91.0', - x: 1.3799, - y: 82.9708, - }, - { - l: '91.0', - x: 1.399, - y: 83.2314, - }, - { - l: '91.0', - x: 1.4182, - y: 83.4905, - }, - { - l: '91.0', - x: 1.4374, - y: 83.7481, - }, - { - l: '91.0', - x: 1.4565, - y: 84.0043, - }, - { - l: '91.0', - x: 1.4757, - y: 84.2589, - }, - { - l: '91.0', - x: 1.4949, - y: 84.5121, - }, - { - l: '91.0', - x: 1.514, - y: 84.7639, - }, - { - l: '91.0', - x: 1.5332, - y: 85.0142, - }, - { - l: '91.0', - x: 1.5524, - y: 85.2631, - }, - { - l: '91.0', - x: 1.5715, - y: 85.5106, - }, - { - l: '91.0', - x: 1.5907, - y: 85.7569, - }, - { - l: '91.0', - x: 1.6099, - y: 86.0019, - }, - { - l: '91.0', - x: 1.629, - y: 86.2457, - }, - { - l: '91.0', - x: 1.6482, - y: 86.4882, - }, - { - l: '91.0', - x: 1.6674, - y: 86.7294, - }, - { - l: '91.0', - x: 1.6865, - y: 86.9693, - }, - { - l: '91.0', - x: 1.7057, - y: 87.208, - }, - { - l: '91.0', - x: 1.7248, - y: 87.4454, - }, - { - l: '91.0', - x: 1.744, - y: 87.6815, - }, - { - l: '91.0', - x: 1.7632, - y: 87.9161, - }, - { - l: '91.0', - x: 1.7823, - y: 88.1495, - }, - { - l: '91.0', - x: 1.8015, - y: 88.3815, - }, - { - l: '91.0', - x: 1.8207, - y: 88.6124, - }, - { - l: '91.0', - x: 1.8398, - y: 88.8421, - }, - { - l: '91.0', - x: 1.859, - y: 89.0707, - }, - { - l: '91.0', - x: 1.8782, - y: 89.2982, - }, - { - l: '91.0', - x: 1.8973, - y: 89.5245, - }, - { - l: '91.0', - x: 1.9165, - y: 89.7497, - }, - { - l: '91.0', - x: 1.9357, - y: 89.9718, - }, - { - l: '91.0', - x: 1.9548, - y: 90.194, - }, - { - l: '91.0', - x: 1.974, - y: 90.4161, - }, - { - l: '91.0', - x: 1.9932, - y: 90.6383, - }, - { - l: '91.0', - x: 2.0, - y: 90.7176, - }, + { l: 91.0, x: 0.0383, y: 53.6582 }, + { l: 91.0, x: 0.0575, y: 55.0507 }, + { l: 91.0, x: 0.0767, y: 55.9912 }, + { l: 91.0, x: 0.0833, y: 56.3074 }, + { l: 91.0, x: 0.0958, y: 56.8834 }, + { l: 91.0, x: 0.115, y: 57.7287 }, + { l: 91.0, x: 0.1342, y: 58.5307 }, + { l: 91.0, x: 0.1533, y: 59.2909 }, + { l: 91.0, x: 0.1667, y: 59.7974 }, + { l: 91.0, x: 0.1725, y: 60.0131 }, + { l: 91.0, x: 0.1916, y: 60.7032 }, + { l: 91.0, x: 0.2108, y: 61.3621 }, + { l: 91.0, x: 0.23, y: 61.9938 }, + { l: 91.0, x: 0.2491, y: 62.5986 }, + { l: 91.0, x: 0.25, y: 62.6254 }, + { l: 91.0, x: 0.3333, y: 64.992 }, + { l: 91.0, x: 0.4167, y: 67.0031 }, + { l: 91.0, x: 0.5, y: 68.7699 }, + { l: 91.0, x: 0.5833, y: 70.3917 }, + { l: 91.0, x: 0.6667, y: 71.9208 }, + { l: 91.0, x: 0.75, y: 73.3825 }, + { l: 91.0, x: 0.8333, y: 74.7903 }, + { l: 91.0, x: 0.9167, y: 76.1509 }, + { l: 91.0, x: 1, y: 77.4675 }, + { l: 91.0, x: 1.0833, y: 78.7434 }, + { l: 91.0, x: 1.1667, y: 79.9805 }, + { l: 91.0, x: 1.25, y: 81.1826 }, + { l: 91.0, x: 1.3333, y: 82.3523 }, + { l: 91.0, x: 1.4167, y: 83.491 }, + { l: 91.0, x: 1.5, y: 84.6014 }, + { l: 91.0, x: 1.5833, y: 85.6846 }, + { l: 91.0, x: 1.6667, y: 86.7433 }, + { l: 91.0, x: 1.75, y: 87.7779 }, + { l: 91.0, x: 1.8333, y: 88.7876 }, + { l: 91.0, x: 1.9167, y: 89.7754 }, + { l: 91.0, x: 2, y: 90.7417 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 0.0383, - y: 55.3177, - }, - { - l: '98.0', - x: 0.0575, - y: 56.3197, - }, - { - l: '98.0', - x: 0.0767, - y: 57.2745, - }, - { - l: '98.0', - x: 0.0958, - y: 58.1804, - }, - { - l: '98.0', - x: 0.115, - y: 59.0387, - }, - { - l: '98.0', - x: 0.1342, - y: 59.8533, - }, - { - l: '98.0', - x: 0.1533, - y: 60.6253, - }, - { - l: '98.0', - x: 0.1725, - y: 61.3587, - }, - { - l: '98.0', - x: 0.1916, - y: 62.0599, - }, - { - l: '98.0', - x: 0.2108, - y: 62.7292, - }, - { - l: '98.0', - x: 0.23, - y: 63.3712, - }, - { - l: '98.0', - x: 0.2491, - y: 63.9856, - }, - { - l: '98.0', - x: 0.2683, - y: 64.5848, - }, - { - l: '98.0', - x: 0.2875, - y: 65.155, - }, - { - l: '98.0', - x: 0.3066, - y: 65.699, - }, - { - l: '98.0', - x: 0.3258, - y: 66.2199, - }, - { - l: '98.0', - x: 0.345, - y: 66.7235, - }, - { - l: '98.0', - x: 0.3641, - y: 67.2109, - }, - { - l: '98.0', - x: 0.3833, - y: 67.6815, - }, - { - l: '98.0', - x: 0.4025, - y: 68.1367, - }, - { - l: '98.0', - x: 0.4216, - y: 68.5779, - }, - { - l: '98.0', - x: 0.4408, - y: 69.0066, - }, - { - l: '98.0', - x: 0.46, - y: 69.4238, - }, - { - l: '98.0', - x: 0.4791, - y: 69.8308, - }, - { - l: '98.0', - x: 0.4983, - y: 70.2288, - }, - { - l: '98.0', - x: 0.5175, - y: 70.6206, - }, - { - l: '98.0', - x: 0.5366, - y: 71.0055, - }, - { - l: '98.0', - x: 0.5558, - y: 71.384, - }, - { - l: '98.0', - x: 0.5749, - y: 71.7566, - }, - { - l: '98.0', - x: 0.5941, - y: 72.1247, - }, - { - l: '98.0', - x: 0.6133, - y: 72.4885, - }, - { - l: '98.0', - x: 0.6324, - y: 72.8479, - }, - { - l: '98.0', - x: 0.6516, - y: 73.2033, - }, - { - l: '98.0', - x: 0.6708, - y: 73.5549, - }, - { - l: '98.0', - x: 0.6899, - y: 73.9035, - }, - { - l: '98.0', - x: 0.7091, - y: 74.2487, - }, - { - l: '98.0', - x: 0.7283, - y: 74.5907, - }, - { - l: '98.0', - x: 0.7474, - y: 74.9298, - }, - { - l: '98.0', - x: 0.7666, - y: 75.2662, - }, - { - l: '98.0', - x: 0.7858, - y: 75.5999, - }, - { - l: '98.0', - x: 0.8049, - y: 75.931, - }, - { - l: '98.0', - x: 0.8241, - y: 76.2594, - }, - { - l: '98.0', - x: 0.8433, - y: 76.5855, - }, - { - l: '98.0', - x: 0.8624, - y: 76.9092, - }, - { - l: '98.0', - x: 0.8816, - y: 77.2305, - }, - { - l: '98.0', - x: 0.9008, - y: 77.5495, - }, - { - l: '98.0', - x: 0.9199, - y: 77.8661, - }, - { - l: '98.0', - x: 0.9391, - y: 78.1805, - }, - { - l: '98.0', - x: 0.9582, - y: 78.4926, - }, - { - l: '98.0', - x: 0.9774, - y: 78.8025, - }, - { - l: '98.0', - x: 0.9966, - y: 79.1102, - }, - { - l: '98.0', - x: 1.0157, - y: 79.4158, - }, - { - l: '98.0', - x: 1.0349, - y: 79.7193, - }, - { - l: '98.0', - x: 1.0541, - y: 80.0207, - }, - { - l: '98.0', - x: 1.0732, - y: 80.32, - }, - { - l: '98.0', - x: 1.0924, - y: 80.6172, - }, - { - l: '98.0', - x: 1.1116, - y: 80.9123, - }, - { - l: '98.0', - x: 1.1307, - y: 81.2054, - }, - { - l: '98.0', - x: 1.1499, - y: 81.4966, - }, - { - l: '98.0', - x: 1.1691, - y: 81.7859, - }, - { - l: '98.0', - x: 1.1882, - y: 82.0735, - }, - { - l: '98.0', - x: 1.2074, - y: 82.3592, - }, - { - l: '98.0', - x: 1.2266, - y: 82.6433, - }, - { - l: '98.0', - x: 1.2457, - y: 82.9255, - }, - { - l: '98.0', - x: 1.2649, - y: 83.2061, - }, - { - l: '98.0', - x: 1.2841, - y: 83.485, - }, - { - l: '98.0', - x: 1.3032, - y: 83.7622, - }, - { - l: '98.0', - x: 1.3224, - y: 84.0377, - }, - { - l: '98.0', - x: 1.3415, - y: 84.3115, - }, - { - l: '98.0', - x: 1.3607, - y: 84.5836, - }, - { - l: '98.0', - x: 1.3799, - y: 84.8541, - }, - { - l: '98.0', - x: 1.399, - y: 85.1231, - }, - { - l: '98.0', - x: 1.4182, - y: 85.3905, - }, - { - l: '98.0', - x: 1.4374, - y: 85.6566, - }, - { - l: '98.0', - x: 1.4565, - y: 85.9211, - }, - { - l: '98.0', - x: 1.4757, - y: 86.1842, - }, - { - l: '98.0', - x: 1.4949, - y: 86.4458, - }, - { - l: '98.0', - x: 1.514, - y: 86.7059, - }, - { - l: '98.0', - x: 1.5332, - y: 86.9645, - }, - { - l: '98.0', - x: 1.5524, - y: 87.2217, - }, - { - l: '98.0', - x: 1.5715, - y: 87.4776, - }, - { - l: '98.0', - x: 1.5907, - y: 87.7322, - }, - { - l: '98.0', - x: 1.6099, - y: 87.9857, - }, - { - l: '98.0', - x: 1.629, - y: 88.2378, - }, - { - l: '98.0', - x: 1.6482, - y: 88.4887, - }, - { - l: '98.0', - x: 1.6674, - y: 88.7383, - }, - { - l: '98.0', - x: 1.6865, - y: 88.9866, - }, - { - l: '98.0', - x: 1.7057, - y: 89.2336, - }, - { - l: '98.0', - x: 1.7248, - y: 89.4793, - }, - { - l: '98.0', - x: 1.744, - y: 89.7237, - }, - { - l: '98.0', - x: 1.7632, - y: 89.9665, - }, - { - l: '98.0', - x: 1.7823, - y: 90.208, - }, - { - l: '98.0', - x: 1.8015, - y: 90.4482, - }, - { - l: '98.0', - x: 1.8207, - y: 90.6871, - }, - { - l: '98.0', - x: 1.8398, - y: 90.925, - }, - { - l: '98.0', - x: 1.859, - y: 91.1618, - }, - { - l: '98.0', - x: 1.8782, - y: 91.3975, - }, - { - l: '98.0', - x: 1.8973, - y: 91.632, - }, - { - l: '98.0', - x: 1.9165, - y: 91.8654, - }, - { - l: '98.0', - x: 1.9357, - y: 92.0957, - }, - { - l: '98.0', - x: 1.9548, - y: 92.3259, - }, - { - l: '98.0', - x: 1.974, - y: 92.5562, - }, - { - l: '98.0', - x: 1.9932, - y: 92.7865, - }, - { - l: '98.0', - x: 2.0, - y: 92.8688, - }, + { l: 98.0, x: 0.0383, y: 54.9618 }, + { l: 98.0, x: 0.0575, y: 56.4231 }, + { l: 98.0, x: 0.0767, y: 57.379 }, + { l: 98.0, x: 0.0833, y: 57.7006 }, + { l: 98.0, x: 0.0958, y: 58.286 }, + { l: 98.0, x: 0.115, y: 59.1455 }, + { l: 98.0, x: 0.1342, y: 59.961 }, + { l: 98.0, x: 0.1533, y: 60.734 }, + { l: 98.0, x: 0.1667, y: 61.249 }, + { l: 98.0, x: 0.1725, y: 61.4684 }, + { l: 98.0, x: 0.1916, y: 62.1704 }, + { l: 98.0, x: 0.2108, y: 62.8405 }, + { l: 98.0, x: 0.23, y: 63.4834 }, + { l: 98.0, x: 0.2491, y: 64.0986 }, + { l: 98.0, x: 0.25, y: 64.1261 }, + { l: 98.0, x: 0.3333, y: 66.535 }, + { l: 98.0, x: 0.4167, y: 68.5839 }, + { l: 98.0, x: 0.5, y: 70.3856 }, + { l: 98.0, x: 0.5833, y: 72.0423 }, + { l: 98.0, x: 0.6667, y: 73.6068 }, + { l: 98.0, x: 0.75, y: 75.1047 }, + { l: 98.0, x: 0.8333, y: 76.5494 }, + { l: 98.0, x: 0.9167, y: 77.9479 }, + { l: 98.0, x: 1, y: 79.3032 }, + { l: 98.0, x: 1.0833, y: 80.618 }, + { l: 98.0, x: 1.1667, y: 81.8939 }, + { l: 98.0, x: 1.25, y: 83.1354 }, + { l: 98.0, x: 1.3333, y: 84.3444 }, + { l: 98.0, x: 1.4167, y: 85.5221 }, + { l: 98.0, x: 1.5, y: 86.6716 }, + { l: 98.0, x: 1.5833, y: 87.7935 }, + { l: 98.0, x: 1.6667, y: 88.8912 }, + { l: 98.0, x: 1.75, y: 89.9645 }, + { l: 98.0, x: 1.8333, y: 91.0119 }, + { l: 98.0, x: 1.9167, y: 92.0379 }, + { l: 98.0, x: 2, y: 93.0421 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 0.0383, - y: 56.5863, - }, - { - l: '99.6', - x: 0.0575, - y: 57.6031, - }, - { - l: '99.6', - x: 0.0767, - y: 58.5724, - }, - { - l: '99.6', - x: 0.0958, - y: 59.492, - }, - { - l: '99.6', - x: 0.115, - y: 60.3636, - }, - { - l: '99.6', - x: 0.1342, - y: 61.1909, - }, - { - l: '99.6', - x: 0.1533, - y: 61.9749, - }, - { - l: '99.6', - x: 0.1725, - y: 62.7196, - }, - { - l: '99.6', - x: 0.1916, - y: 63.432, - }, - { - l: '99.6', - x: 0.2108, - y: 64.1117, - }, - { - l: '99.6', - x: 0.23, - y: 64.7642, - }, - { - l: '99.6', - x: 0.2491, - y: 65.3884, - }, - { - l: '99.6', - x: 0.2683, - y: 65.9997, - }, - { - l: '99.6', - x: 0.2875, - y: 66.5799, - }, - { - l: '99.6', - x: 0.3066, - y: 67.1322, - }, - { - l: '99.6', - x: 0.3258, - y: 67.6602, - }, - { - l: '99.6', - x: 0.345, - y: 68.1716, - }, - { - l: '99.6', - x: 0.3641, - y: 68.6673, - }, - { - l: '99.6', - x: 0.3833, - y: 69.146, - }, - { - l: '99.6', - x: 0.4025, - y: 69.6091, - }, - { - l: '99.6', - x: 0.4216, - y: 70.0581, - }, - { - l: '99.6', - x: 0.4408, - y: 70.4945, - }, - { - l: '99.6', - x: 0.46, - y: 70.9192, - }, - { - l: '99.6', - x: 0.4791, - y: 71.3337, - }, - { - l: '99.6', - x: 0.4983, - y: 71.7391, - }, - { - l: '99.6', - x: 0.5175, - y: 72.1384, - }, - { - l: '99.6', - x: 0.5366, - y: 72.5308, - }, - { - l: '99.6', - x: 0.5558, - y: 72.9167, - }, - { - l: '99.6', - x: 0.5749, - y: 73.2969, - }, - { - l: '99.6', - x: 0.5941, - y: 73.6725, - }, - { - l: '99.6', - x: 0.6133, - y: 74.0439, - }, - { - l: '99.6', - x: 0.6324, - y: 74.4109, - }, - { - l: '99.6', - x: 0.6516, - y: 74.7739, - }, - { - l: '99.6', - x: 0.6708, - y: 75.1332, - }, - { - l: '99.6', - x: 0.6899, - y: 75.4895, - }, - { - l: '99.6', - x: 0.7091, - y: 75.8425, - }, - { - l: '99.6', - x: 0.7283, - y: 76.1923, - }, - { - l: '99.6', - x: 0.7474, - y: 76.5392, - }, - { - l: '99.6', - x: 0.7666, - y: 76.8835, - }, - { - l: '99.6', - x: 0.7858, - y: 77.2251, - }, - { - l: '99.6', - x: 0.8049, - y: 77.5641, - }, - { - l: '99.6', - x: 0.8241, - y: 77.9006, - }, - { - l: '99.6', - x: 0.8433, - y: 78.2347, - }, - { - l: '99.6', - x: 0.8624, - y: 78.5665, - }, - { - l: '99.6', - x: 0.8816, - y: 78.896, - }, - { - l: '99.6', - x: 0.9008, - y: 79.2232, - }, - { - l: '99.6', - x: 0.9199, - y: 79.5481, - }, - { - l: '99.6', - x: 0.9391, - y: 79.8707, - }, - { - l: '99.6', - x: 0.9582, - y: 80.1911, - }, - { - l: '99.6', - x: 0.9774, - y: 80.5093, - }, - { - l: '99.6', - x: 0.9966, - y: 80.8254, - }, - { - l: '99.6', - x: 1.0157, - y: 81.1394, - }, - { - l: '99.6', - x: 1.0349, - y: 81.4512, - }, - { - l: '99.6', - x: 1.0541, - y: 81.761, - }, - { - l: '99.6', - x: 1.0732, - y: 82.0686, - }, - { - l: '99.6', - x: 1.0924, - y: 82.3742, - }, - { - l: '99.6', - x: 1.1116, - y: 82.6776, - }, - { - l: '99.6', - x: 1.1307, - y: 82.9791, - }, - { - l: '99.6', - x: 1.1499, - y: 83.2786, - }, - { - l: '99.6', - x: 1.1691, - y: 83.5763, - }, - { - l: '99.6', - x: 1.1882, - y: 83.8723, - }, - { - l: '99.6', - x: 1.2074, - y: 84.1665, - }, - { - l: '99.6', - x: 1.2266, - y: 84.459, - }, - { - l: '99.6', - x: 1.2457, - y: 84.7498, - }, - { - l: '99.6', - x: 1.2649, - y: 85.0388, - }, - { - l: '99.6', - x: 1.2841, - y: 85.3262, - }, - { - l: '99.6', - x: 1.3032, - y: 85.6118, - }, - { - l: '99.6', - x: 1.3224, - y: 85.8958, - }, - { - l: '99.6', - x: 1.3415, - y: 86.178, - }, - { - l: '99.6', - x: 1.3607, - y: 86.4585, - }, - { - l: '99.6', - x: 1.3799, - y: 86.7374, - }, - { - l: '99.6', - x: 1.399, - y: 87.0147, - }, - { - l: '99.6', - x: 1.4182, - y: 87.2905, - }, - { - l: '99.6', - x: 1.4374, - y: 87.565, - }, - { - l: '99.6', - x: 1.4565, - y: 87.838, - }, - { - l: '99.6', - x: 1.4757, - y: 88.1095, - }, - { - l: '99.6', - x: 1.4949, - y: 88.3795, - }, - { - l: '99.6', - x: 1.514, - y: 88.6479, - }, - { - l: '99.6', - x: 1.5332, - y: 88.9149, - }, - { - l: '99.6', - x: 1.5524, - y: 89.1804, - }, - { - l: '99.6', - x: 1.5715, - y: 89.4446, - }, - { - l: '99.6', - x: 1.5907, - y: 89.7076, - }, - { - l: '99.6', - x: 1.6099, - y: 89.9694, - }, - { - l: '99.6', - x: 1.629, - y: 90.23, - }, - { - l: '99.6', - x: 1.6482, - y: 90.4892, - }, - { - l: '99.6', - x: 1.6674, - y: 90.7472, - }, - { - l: '99.6', - x: 1.6865, - y: 91.0039, - }, - { - l: '99.6', - x: 1.7057, - y: 91.2592, - }, - { - l: '99.6', - x: 1.7248, - y: 91.5132, - }, - { - l: '99.6', - x: 1.744, - y: 91.7659, - }, - { - l: '99.6', - x: 1.7632, - y: 92.0169, - }, - { - l: '99.6', - x: 1.7823, - y: 92.2665, - }, - { - l: '99.6', - x: 1.8015, - y: 92.5148, - }, - { - l: '99.6', - x: 1.8207, - y: 92.7619, - }, - { - l: '99.6', - x: 1.8398, - y: 93.0079, - }, - { - l: '99.6', - x: 1.859, - y: 93.2529, - }, - { - l: '99.6', - x: 1.8782, - y: 93.4968, - }, - { - l: '99.6', - x: 1.8973, - y: 93.7395, - }, - { - l: '99.6', - x: 1.9165, - y: 93.9811, - }, - { - l: '99.6', - x: 1.9357, - y: 94.2195, - }, - { - l: '99.6', - x: 1.9548, - y: 94.4578, - }, - { - l: '99.6', - x: 1.974, - y: 94.6963, - }, - { - l: '99.6', - x: 1.9932, - y: 94.9348, - }, - { - l: '99.6', - x: 2.0, - y: 95.02, - }, + { l: 99.6, x: 0.0383, y: 56.0561 }, + { l: 99.6, x: 0.0575, y: 57.5751 }, + { l: 99.6, x: 0.0767, y: 58.544 }, + { l: 99.6, x: 0.0833, y: 58.87 }, + { l: 99.6, x: 0.0958, y: 59.4634 }, + { l: 99.6, x: 0.115, y: 60.3346 }, + { l: 99.6, x: 0.1342, y: 61.1616 }, + { l: 99.6, x: 0.1533, y: 61.9454 }, + { l: 99.6, x: 0.1667, y: 62.4674 }, + { l: 99.6, x: 0.1725, y: 62.6899 }, + { l: 99.6, x: 0.1916, y: 63.402 }, + { l: 99.6, x: 0.2108, y: 64.0815 }, + { l: 99.6, x: 0.23, y: 64.7337 }, + { l: 99.6, x: 0.2491, y: 65.3577 }, + { l: 99.6, x: 0.25, y: 65.3857 }, + { l: 99.6, x: 0.3333, y: 67.8302 }, + { l: 99.6, x: 0.4167, y: 69.9108 }, + { l: 99.6, x: 0.5, y: 71.7418 }, + { l: 99.6, x: 0.5833, y: 73.4279 }, + { l: 99.6, x: 0.6667, y: 75.022 }, + { l: 99.6, x: 0.75, y: 76.5503 }, + { l: 99.6, x: 0.8333, y: 78.026 }, + { l: 99.6, x: 0.9167, y: 79.4564 }, + { l: 99.6, x: 1, y: 80.8441 }, + { l: 99.6, x: 1.0833, y: 82.1916 }, + { l: 99.6, x: 1.1667, y: 83.5001 }, + { l: 99.6, x: 1.25, y: 84.7745 }, + { l: 99.6, x: 1.3333, y: 86.0166 }, + { l: 99.6, x: 1.4167, y: 87.2269 }, + { l: 99.6, x: 1.5, y: 88.4093 }, + { l: 99.6, x: 1.5833, y: 89.5636 }, + { l: 99.6, x: 1.6667, y: 90.6941 }, + { l: 99.6, x: 1.75, y: 91.7999 }, + { l: 99.6, x: 1.8333, y: 92.8791 }, + { l: 99.6, x: 1.9167, y: 93.937 }, + { l: 99.6, x: 2, y: 94.973 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, }, }, { uk_who_child: { - male: null, female: { height: [ { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 2.0, - y: 77.1118, - }, - { - l: '0.4', - x: 2.0192, - y: 77.2812, - }, - { - l: '0.4', - x: 2.1025, - y: 78.015, - }, - { - l: '0.4', - x: 2.1858, - y: 78.7288, - }, - { - l: '0.4', - x: 2.2692, - y: 79.4252, - }, - { - l: '0.4', - x: 2.3525, - y: 80.1052, - }, - { - l: '0.4', - x: 2.4358, - y: 80.7674, - }, - { - l: '0.4', - x: 2.5192, - y: 81.4133, - }, - { - l: '0.4', - x: 2.6025, - y: 82.0451, - }, - { - l: '0.4', - x: 2.6858, - y: 82.6628, - }, - { - l: '0.4', - x: 2.7692, - y: 83.2692, - }, - { - l: '0.4', - x: 2.8525, - y: 83.8642, - }, - { - l: '0.4', - x: 2.9358, - y: 84.451, - }, - { - l: '0.4', - x: 3.0192, - y: 85.0292, - }, - { - l: '0.4', - x: 3.1025, - y: 85.5962, - }, - { - l: '0.4', - x: 3.1858, - y: 86.1572, - }, - { - l: '0.4', - x: 3.2692, - y: 86.7115, - }, - { - l: '0.4', - x: 3.3525, - y: 87.2572, - }, - { - l: '0.4', - x: 3.4358, - y: 87.7945, - }, - { - l: '0.4', - x: 3.5192, - y: 88.3241, - }, - { - l: '0.4', - x: 3.6025, - y: 88.8477, - }, - { - l: '0.4', - x: 3.6858, - y: 89.3632, - }, - { - l: '0.4', - x: 3.7692, - y: 89.8715, - }, - { - l: '0.4', - x: 3.8525, - y: 90.3738, - }, - { - l: '0.4', - x: 3.9358, - y: 90.8668, - }, - { - l: '0.4', - x: 4.0, - y: 91.2445, - }, + { l: 0.4, x: 2, y: 77.1588 }, + { l: 0.4, x: 2.0833, y: 77.896 }, + { l: 0.4, x: 2.1667, y: 78.6148 }, + { l: 0.4, x: 2.25, y: 79.3156 }, + { l: 0.4, x: 2.3333, y: 80.0004 }, + { l: 0.4, x: 2.4167, y: 80.6674 }, + { l: 0.4, x: 2.5, y: 81.3174 }, + { l: 0.4, x: 2.5833, y: 81.9533 }, + { l: 0.4, x: 2.6667, y: 82.5745 }, + { l: 0.4, x: 2.75, y: 83.1845 }, + { l: 0.4, x: 2.8333, y: 83.7823 }, + { l: 0.4, x: 2.9167, y: 84.3715 }, + { l: 0.4, x: 3, y: 84.9529 }, + { l: 0.4, x: 3.0833, y: 85.5225 }, + { l: 0.4, x: 3.1667, y: 86.0854 }, + { l: 0.4, x: 3.25, y: 86.6422 }, + { l: 0.4, x: 3.3333, y: 87.1904 }, + { l: 0.4, x: 3.4167, y: 87.7304 }, + { l: 0.4, x: 3.5, y: 88.2619 }, + { l: 0.4, x: 3.5833, y: 88.7879 }, + { l: 0.4, x: 3.6667, y: 89.3058 }, + { l: 0.4, x: 3.75, y: 89.8159 }, + { l: 0.4, x: 3.8333, y: 90.321 }, + { l: 0.4, x: 3.9167, y: 90.8161 }, + { l: 0.4, x: 4, y: 91.3072 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 2.0, - y: 79.2627, - }, - { - l: '2.0', - x: 2.0192, - y: 79.4401, - }, - { - l: '2.0', - x: 2.1025, - y: 80.2085, - }, - { - l: '2.0', - x: 2.1858, - y: 80.9567, - }, - { - l: '2.0', - x: 2.2692, - y: 81.687, - }, - { - l: '2.0', - x: 2.3525, - y: 82.4003, - }, - { - l: '2.0', - x: 2.4358, - y: 83.0956, - }, - { - l: '2.0', - x: 2.5192, - y: 83.7742, - }, - { - l: '2.0', - x: 2.6025, - y: 84.4379, - }, - { - l: '2.0', - x: 2.6858, - y: 85.0872, - }, - { - l: '2.0', - x: 2.7692, - y: 85.7246, - }, - { - l: '2.0', - x: 2.8525, - y: 86.3502, - }, - { - l: '2.0', - x: 2.9358, - y: 86.967, - }, - { - l: '2.0', - x: 3.0192, - y: 87.5745, - }, - { - l: '2.0', - x: 3.1025, - y: 88.1714, - }, - { - l: '2.0', - x: 3.1858, - y: 88.7613, - }, - { - l: '2.0', - x: 3.2692, - y: 89.3439, - }, - { - l: '2.0', - x: 3.3525, - y: 89.9179, - }, - { - l: '2.0', - x: 3.4358, - y: 90.4835, - }, - { - l: '2.0', - x: 3.5192, - y: 91.041, - }, - { - l: '2.0', - x: 3.6025, - y: 91.5919, - }, - { - l: '2.0', - x: 3.6858, - y: 92.1345, - }, - { - l: '2.0', - x: 3.7692, - y: 92.6698, - }, - { - l: '2.0', - x: 3.8525, - y: 93.1986, - }, - { - l: '2.0', - x: 3.9358, - y: 93.7183, - }, - { - l: '2.0', - x: 4.0, - y: 94.1162, - }, + { l: 2.0, x: 2, y: 79.0894 }, + { l: 2.0, x: 2.0833, y: 79.8577 }, + { l: 2.0, x: 2.1667, y: 80.6075 }, + { l: 2.0, x: 2.25, y: 81.3389 }, + { l: 2.0, x: 2.3333, y: 82.0536 }, + { l: 2.0, x: 2.4167, y: 82.7504 }, + { l: 2.0, x: 2.5, y: 83.4298 }, + { l: 2.0, x: 2.5833, y: 84.0945 }, + { l: 2.0, x: 2.6667, y: 84.7442 }, + { l: 2.0, x: 2.75, y: 85.382 }, + { l: 2.0, x: 2.8333, y: 86.0075 }, + { l: 2.0, x: 2.9167, y: 86.6237 }, + { l: 2.0, x: 3, y: 87.2315 }, + { l: 2.0, x: 3.0833, y: 87.8279 }, + { l: 2.0, x: 3.1667, y: 88.4169 }, + { l: 2.0, x: 3.25, y: 88.9992 }, + { l: 2.0, x: 3.3333, y: 89.5728 }, + { l: 2.0, x: 3.4167, y: 90.1382 }, + { l: 2.0, x: 3.5, y: 90.6949 }, + { l: 2.0, x: 3.5833, y: 91.2454 }, + { l: 2.0, x: 3.6667, y: 91.7878 }, + { l: 2.0, x: 3.75, y: 92.3222 }, + { l: 2.0, x: 3.8333, y: 92.8509 }, + { l: 2.0, x: 3.9167, y: 93.3703 }, + { l: 2.0, x: 4, y: 93.8848 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 2.0, - y: 81.4135, - }, - { - l: '9.0', - x: 2.0192, - y: 81.5989, - }, - { - l: '9.0', - x: 2.1025, - y: 82.402, - }, - { - l: '9.0', - x: 2.1858, - y: 83.1846, - }, - { - l: '9.0', - x: 2.2692, - y: 83.9489, - }, - { - l: '9.0', - x: 2.3525, - y: 84.6954, - }, - { - l: '9.0', - x: 2.4358, - y: 85.4238, - }, - { - l: '9.0', - x: 2.5192, - y: 86.135, - }, - { - l: '9.0', - x: 2.6025, - y: 86.8307, - }, - { - l: '9.0', - x: 2.6858, - y: 87.5116, - }, - { - l: '9.0', - x: 2.7692, - y: 88.18, - }, - { - l: '9.0', - x: 2.8525, - y: 88.8363, - }, - { - l: '9.0', - x: 2.9358, - y: 89.4829, - }, - { - l: '9.0', - x: 3.0192, - y: 90.1199, - }, - { - l: '9.0', - x: 3.1025, - y: 90.7465, - }, - { - l: '9.0', - x: 3.1858, - y: 91.3653, - }, - { - l: '9.0', - x: 3.2692, - y: 91.9764, - }, - { - l: '9.0', - x: 3.3525, - y: 92.5786, - }, - { - l: '9.0', - x: 3.4358, - y: 93.1724, - }, - { - l: '9.0', - x: 3.5192, - y: 93.7578, - }, - { - l: '9.0', - x: 3.6025, - y: 94.336, - }, - { - l: '9.0', - x: 3.6858, - y: 94.9059, - }, - { - l: '9.0', - x: 3.7692, - y: 95.4682, - }, - { - l: '9.0', - x: 3.8525, - y: 96.0233, - }, - { - l: '9.0', - x: 3.9358, - y: 96.5698, - }, - { - l: '9.0', - x: 4.0, - y: 96.9878, - }, + { l: 9.0, x: 2, y: 81.3894 }, + { l: 9.0, x: 2.0833, y: 82.1948 }, + { l: 9.0, x: 2.1667, y: 82.9814 }, + { l: 9.0, x: 2.25, y: 83.7494 }, + { l: 9.0, x: 2.3333, y: 84.4998 }, + { l: 9.0, x: 2.4167, y: 85.2319 }, + { l: 9.0, x: 2.5, y: 85.9465 }, + { l: 9.0, x: 2.5833, y: 86.6454 }, + { l: 9.0, x: 2.6667, y: 87.3291 }, + { l: 9.0, x: 2.75, y: 88.0 }, + { l: 9.0, x: 2.8333, y: 88.6585 }, + { l: 9.0, x: 2.9167, y: 89.3069 }, + { l: 9.0, x: 3, y: 89.9461 }, + { l: 9.0, x: 3.0833, y: 90.5744 }, + { l: 9.0, x: 3.1667, y: 91.1946 }, + { l: 9.0, x: 3.25, y: 91.8072 }, + { l: 9.0, x: 3.3333, y: 92.4111 }, + { l: 9.0, x: 3.4167, y: 93.0066 }, + { l: 9.0, x: 3.5, y: 93.5934 }, + { l: 9.0, x: 3.5833, y: 94.1731 }, + { l: 9.0, x: 3.6667, y: 94.7446 }, + { l: 9.0, x: 3.75, y: 95.3081 }, + { l: 9.0, x: 3.8333, y: 95.865 }, + { l: 9.0, x: 3.9167, y: 96.4131 }, + { l: 9.0, x: 4, y: 96.9557 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 2.0, - y: 83.5644, - }, - { - l: '25.0', - x: 2.0192, - y: 83.7577, - }, - { - l: '25.0', - x: 2.1025, - y: 84.5954, - }, - { - l: '25.0', - x: 2.1858, - y: 85.4125, - }, - { - l: '25.0', - x: 2.2692, - y: 86.2108, - }, - { - l: '25.0', - x: 2.3525, - y: 86.9906, - }, - { - l: '25.0', - x: 2.4358, - y: 87.752, - }, - { - l: '25.0', - x: 2.5192, - y: 88.4959, - }, - { - l: '25.0', - x: 2.6025, - y: 89.2235, - }, - { - l: '25.0', - x: 2.6858, - y: 89.936, - }, - { - l: '25.0', - x: 2.7692, - y: 90.6353, - }, - { - l: '25.0', - x: 2.8525, - y: 91.3224, - }, - { - l: '25.0', - x: 2.9358, - y: 91.9988, - }, - { - l: '25.0', - x: 3.0192, - y: 92.6653, - }, - { - l: '25.0', - x: 3.1025, - y: 93.3217, - }, - { - l: '25.0', - x: 3.1858, - y: 93.9694, - }, - { - l: '25.0', - x: 3.2692, - y: 94.6088, - }, - { - l: '25.0', - x: 3.3525, - y: 95.2394, - }, - { - l: '25.0', - x: 3.4358, - y: 95.8613, - }, - { - l: '25.0', - x: 3.5192, - y: 96.4747, - }, - { - l: '25.0', - x: 3.6025, - y: 97.0801, - }, - { - l: '25.0', - x: 3.6858, - y: 97.6773, - }, - { - l: '25.0', - x: 3.7692, - y: 98.2665, - }, - { - l: '25.0', - x: 3.8525, - y: 98.8481, - }, - { - l: '25.0', - x: 3.9358, - y: 99.4214, - }, - { - l: '25.0', - x: 4.0, - y: 99.8595, - }, + { l: 25.0, x: 2, y: 83.5391 }, + { l: 25.0, x: 2.0833, y: 84.3792 }, + { l: 25.0, x: 2.1667, y: 85.2001 }, + { l: 25.0, x: 2.25, y: 86.0024 }, + { l: 25.0, x: 2.3333, y: 86.786 }, + { l: 25.0, x: 2.4167, y: 87.5512 }, + { l: 25.0, x: 2.5, y: 88.2986 }, + { l: 25.0, x: 2.5833, y: 89.0295 }, + { l: 25.0, x: 2.6667, y: 89.745 }, + { l: 25.0, x: 2.75, y: 90.4469 }, + { l: 25.0, x: 2.8333, y: 91.1362 }, + { l: 25.0, x: 2.9167, y: 91.8146 }, + { l: 25.0, x: 3, y: 92.4832 }, + { l: 25.0, x: 3.0833, y: 93.1413 }, + { l: 25.0, x: 3.1667, y: 93.7907 }, + { l: 25.0, x: 3.25, y: 94.4317 }, + { l: 25.0, x: 3.3333, y: 95.0639 }, + { l: 25.0, x: 3.4167, y: 95.6876 }, + { l: 25.0, x: 3.5, y: 96.3024 }, + { l: 25.0, x: 3.5833, y: 96.9095 }, + { l: 25.0, x: 3.6667, y: 97.5082 }, + { l: 25.0, x: 3.75, y: 98.0988 }, + { l: 25.0, x: 3.8333, y: 98.682 }, + { l: 25.0, x: 3.9167, y: 99.2571 }, + { l: 25.0, x: 4, y: 99.8258 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 2.0, - y: 85.7153, - }, - { - l: '50.0', - x: 2.0192, - y: 85.9166, - }, - { - l: '50.0', - x: 2.1025, - y: 86.7889, - }, - { - l: '50.0', - x: 2.1858, - y: 87.6403, - }, - { - l: '50.0', - x: 2.2692, - y: 88.4727, - }, - { - l: '50.0', - x: 2.3525, - y: 89.2857, - }, - { - l: '50.0', - x: 2.4358, - y: 90.0802, - }, - { - l: '50.0', - x: 2.5192, - y: 90.8567, - }, - { - l: '50.0', - x: 2.6025, - y: 91.6163, - }, - { - l: '50.0', - x: 2.6858, - y: 92.3605, - }, - { - l: '50.0', - x: 2.7692, - y: 93.0907, - }, - { - l: '50.0', - x: 2.8525, - y: 93.8084, - }, - { - l: '50.0', - x: 2.9358, - y: 94.5148, - }, - { - l: '50.0', - x: 3.0192, - y: 95.2107, - }, - { - l: '50.0', - x: 3.1025, - y: 95.8968, - }, - { - l: '50.0', - x: 3.1858, - y: 96.5735, - }, - { - l: '50.0', - x: 3.2692, - y: 97.2413, - }, - { - l: '50.0', - x: 3.3525, - y: 97.9001, - }, - { - l: '50.0', - x: 3.4358, - y: 98.5502, - }, - { - l: '50.0', - x: 3.5192, - y: 99.1915, - }, - { - l: '50.0', - x: 3.6025, - y: 99.8243, - }, - { - l: '50.0', - x: 3.6858, - y: 100.4487, - }, - { - l: '50.0', - x: 3.7692, - y: 101.0648, - }, - { - l: '50.0', - x: 3.8525, - y: 101.6729, - }, - { - l: '50.0', - x: 3.9358, - y: 102.2729, - }, - { - l: '50.0', - x: 4.0, - y: 102.7312, - }, + { l: 50.0, x: 2, y: 85.7153 }, + { l: 50.0, x: 2.0833, y: 86.5904 }, + { l: 50.0, x: 2.1667, y: 87.4462 }, + { l: 50.0, x: 2.25, y: 88.283 }, + { l: 50.0, x: 2.3333, y: 89.1004 }, + { l: 50.0, x: 2.4167, y: 89.8991 }, + { l: 50.0, x: 2.5, y: 90.6797 }, + { l: 50.0, x: 2.5833, y: 91.443 }, + { l: 50.0, x: 2.6667, y: 92.1906 }, + { l: 50.0, x: 2.75, y: 92.9239 }, + { l: 50.0, x: 2.8333, y: 93.6444 }, + { l: 50.0, x: 2.9167, y: 94.3533 }, + { l: 50.0, x: 3, y: 95.0515 }, + { l: 50.0, x: 3.0833, y: 95.7399 }, + { l: 50.0, x: 3.1667, y: 96.4187 }, + { l: 50.0, x: 3.25, y: 97.0885 }, + { l: 50.0, x: 3.3333, y: 97.7493 }, + { l: 50.0, x: 3.4167, y: 98.4015 }, + { l: 50.0, x: 3.5, y: 99.0448 }, + { l: 50.0, x: 3.5833, y: 99.6795 }, + { l: 50.0, x: 3.6667, y: 100.3058 }, + { l: 50.0, x: 3.75, y: 100.9238 }, + { l: 50.0, x: 3.8333, y: 101.5337 }, + { l: 50.0, x: 3.9167, y: 102.136 }, + { l: 50.0, x: 4, y: 102.7312 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 2.0, - y: 87.8662, - }, - { - l: '75.0', - x: 2.0192, - y: 88.0754, - }, - { - l: '75.0', - x: 2.1025, - y: 88.9824, - }, - { - l: '75.0', - x: 2.1858, - y: 89.8682, - }, - { - l: '75.0', - x: 2.2692, - y: 90.7346, - }, - { - l: '75.0', - x: 2.3525, - y: 91.5809, - }, - { - l: '75.0', - x: 2.4358, - y: 92.4084, - }, - { - l: '75.0', - x: 2.5192, - y: 93.2176, - }, - { - l: '75.0', - x: 2.6025, - y: 94.0091, - }, - { - l: '75.0', - x: 2.6858, - y: 94.7849, - }, - { - l: '75.0', - x: 2.7692, - y: 95.5461, - }, - { - l: '75.0', - x: 2.8525, - y: 96.2945, - }, - { - l: '75.0', - x: 2.9358, - y: 97.0307, - }, - { - l: '75.0', - x: 3.0192, - y: 97.7561, - }, - { - l: '75.0', - x: 3.1025, - y: 98.472, - }, - { - l: '75.0', - x: 3.1858, - y: 99.1776, - }, - { - l: '75.0', - x: 3.2692, - y: 99.8737, - }, - { - l: '75.0', - x: 3.3525, - y: 100.5608, - }, - { - l: '75.0', - x: 3.4358, - y: 101.2391, - }, - { - l: '75.0', - x: 3.5192, - y: 101.9084, - }, - { - l: '75.0', - x: 3.6025, - y: 102.5684, - }, - { - l: '75.0', - x: 3.6858, - y: 103.22, - }, - { - l: '75.0', - x: 3.7692, - y: 103.8631, - }, - { - l: '75.0', - x: 3.8525, - y: 104.4976, - }, - { - l: '75.0', - x: 3.9358, - y: 105.1244, - }, - { - l: '75.0', - x: 4.0, - y: 105.6029, - }, + { l: 75.0, x: 2, y: 87.8915 }, + { l: 75.0, x: 2.0833, y: 88.8016 }, + { l: 75.0, x: 2.1667, y: 89.6923 }, + { l: 75.0, x: 2.25, y: 90.5636 }, + { l: 75.0, x: 2.3333, y: 91.4148 }, + { l: 75.0, x: 2.4167, y: 92.247 }, + { l: 75.0, x: 2.5, y: 93.0608 }, + { l: 75.0, x: 2.5833, y: 93.8565 }, + { l: 75.0, x: 2.6667, y: 94.6362 }, + { l: 75.0, x: 2.75, y: 95.4009 }, + { l: 75.0, x: 2.8333, y: 96.1526 }, + { l: 75.0, x: 2.9167, y: 96.892 }, + { l: 75.0, x: 3, y: 97.6198 }, + { l: 75.0, x: 3.0833, y: 98.3385 }, + { l: 75.0, x: 3.1667, y: 99.0467 }, + { l: 75.0, x: 3.25, y: 99.7453 }, + { l: 75.0, x: 3.3333, y: 100.4347 }, + { l: 75.0, x: 3.4167, y: 101.1154 }, + { l: 75.0, x: 3.5, y: 101.7872 }, + { l: 75.0, x: 3.5833, y: 102.4495 }, + { l: 75.0, x: 3.6667, y: 103.1034 }, + { l: 75.0, x: 3.75, y: 103.7488 }, + { l: 75.0, x: 3.8333, y: 104.3854 }, + { l: 75.0, x: 3.9167, y: 105.0149 }, + { l: 75.0, x: 4, y: 105.6366 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 2.0, - y: 90.0171, - }, - { - l: '91.0', - x: 2.0192, - y: 90.2342, - }, - { - l: '91.0', - x: 2.1025, - y: 91.1759, - }, - { - l: '91.0', - x: 2.1858, - y: 92.0961, - }, - { - l: '91.0', - x: 2.2692, - y: 92.9964, - }, - { - l: '91.0', - x: 2.3525, - y: 93.876, - }, - { - l: '91.0', - x: 2.4358, - y: 94.7366, - }, - { - l: '91.0', - x: 2.5192, - y: 95.5784, - }, - { - l: '91.0', - x: 2.6025, - y: 96.4019, - }, - { - l: '91.0', - x: 2.6858, - y: 97.2093, - }, - { - l: '91.0', - x: 2.7692, - y: 98.0014, - }, - { - l: '91.0', - x: 2.8525, - y: 98.7806, - }, - { - l: '91.0', - x: 2.9358, - y: 99.5467, - }, - { - l: '91.0', - x: 3.0192, - y: 100.3014, - }, - { - l: '91.0', - x: 3.1025, - y: 101.0471, - }, - { - l: '91.0', - x: 3.1858, - y: 101.7817, - }, - { - l: '91.0', - x: 3.2692, - y: 102.5061, - }, - { - l: '91.0', - x: 3.3525, - y: 103.2215, - }, - { - l: '91.0', - x: 3.4358, - y: 103.9281, - }, - { - l: '91.0', - x: 3.5192, - y: 104.6252, - }, - { - l: '91.0', - x: 3.6025, - y: 105.3125, - }, - { - l: '91.0', - x: 3.6858, - y: 105.9914, - }, - { - l: '91.0', - x: 3.7692, - y: 106.6614, - }, - { - l: '91.0', - x: 3.8525, - y: 107.3224, - }, - { - l: '91.0', - x: 3.9358, - y: 107.9759, - }, - { - l: '91.0', - x: 4.0, - y: 108.4746, - }, + { l: 91.0, x: 2, y: 90.0412 }, + { l: 91.0, x: 2.0833, y: 90.986 }, + { l: 91.0, x: 2.1667, y: 91.911 }, + { l: 91.0, x: 2.25, y: 92.8166 }, + { l: 91.0, x: 2.3333, y: 93.701 }, + { l: 91.0, x: 2.4167, y: 94.5663 }, + { l: 91.0, x: 2.5, y: 95.4129 }, + { l: 91.0, x: 2.5833, y: 96.2406 }, + { l: 91.0, x: 2.6667, y: 97.0521 }, + { l: 91.0, x: 2.75, y: 97.8478 }, + { l: 91.0, x: 2.8333, y: 98.6303 }, + { l: 91.0, x: 2.9167, y: 99.3997 }, + { l: 91.0, x: 3, y: 100.1569 }, + { l: 91.0, x: 3.0833, y: 100.9054 }, + { l: 91.0, x: 3.1667, y: 101.6428 }, + { l: 91.0, x: 3.25, y: 102.3698 }, + { l: 91.0, x: 3.3333, y: 103.0875 }, + { l: 91.0, x: 3.4167, y: 103.7964 }, + { l: 91.0, x: 3.5, y: 104.4962 }, + { l: 91.0, x: 3.5833, y: 105.1859 }, + { l: 91.0, x: 3.6667, y: 105.867 }, + { l: 91.0, x: 3.75, y: 106.5395 }, + { l: 91.0, x: 3.8333, y: 107.2024 }, + { l: 91.0, x: 3.9167, y: 107.8589 }, + { l: 91.0, x: 4, y: 108.5067 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 2.0, - y: 92.1679, - }, - { - l: '98.0', - x: 2.0192, - y: 92.393, - }, - { - l: '98.0', - x: 2.1025, - y: 93.3694, - }, - { - l: '98.0', - x: 2.1858, - y: 94.324, - }, - { - l: '98.0', - x: 2.2692, - y: 95.2583, - }, - { - l: '98.0', - x: 2.3525, - y: 96.1711, - }, - { - l: '98.0', - x: 2.4358, - y: 97.0648, - }, - { - l: '98.0', - x: 2.5192, - y: 97.9393, - }, - { - l: '98.0', - x: 2.6025, - y: 98.7947, - }, - { - l: '98.0', - x: 2.6858, - y: 99.6337, - }, - { - l: '98.0', - x: 2.7692, - y: 100.4568, - }, - { - l: '98.0', - x: 2.8525, - y: 101.2666, - }, - { - l: '98.0', - x: 2.9358, - y: 102.0626, - }, - { - l: '98.0', - x: 3.0192, - y: 102.8468, - }, - { - l: '98.0', - x: 3.1025, - y: 103.6223, - }, - { - l: '98.0', - x: 3.1858, - y: 104.3858, - }, - { - l: '98.0', - x: 3.2692, - y: 105.1386, - }, - { - l: '98.0', - x: 3.3525, - y: 105.8822, - }, - { - l: '98.0', - x: 3.4358, - y: 106.617, - }, - { - l: '98.0', - x: 3.5192, - y: 107.3421, - }, - { - l: '98.0', - x: 3.6025, - y: 108.0567, - }, - { - l: '98.0', - x: 3.6858, - y: 108.7628, - }, - { - l: '98.0', - x: 3.7692, - y: 109.4597, - }, - { - l: '98.0', - x: 3.8525, - y: 110.1472, - }, - { - l: '98.0', - x: 3.9358, - y: 110.8274, - }, - { - l: '98.0', - x: 4.0, - y: 111.3462, - }, + { l: 98.0, x: 2, y: 92.3412 }, + { l: 98.0, x: 2.0833, y: 93.3231 }, + { l: 98.0, x: 2.1667, y: 94.2849 }, + { l: 98.0, x: 2.25, y: 95.2271 }, + { l: 98.0, x: 2.3333, y: 96.1472 }, + { l: 98.0, x: 2.4167, y: 97.0478 }, + { l: 98.0, x: 2.5, y: 97.9296 }, + { l: 98.0, x: 2.5833, y: 98.7915 }, + { l: 98.0, x: 2.6667, y: 99.637 }, + { l: 98.0, x: 2.75, y: 100.4658 }, + { l: 98.0, x: 2.8333, y: 101.2813 }, + { l: 98.0, x: 2.9167, y: 102.0829 }, + { l: 98.0, x: 3, y: 102.8715 }, + { l: 98.0, x: 3.0833, y: 103.6519 }, + { l: 98.0, x: 3.1667, y: 104.4205 }, + { l: 98.0, x: 3.25, y: 105.1778 }, + { l: 98.0, x: 3.3333, y: 105.9258 }, + { l: 98.0, x: 3.4167, y: 106.6648 }, + { l: 98.0, x: 3.5, y: 107.3947 }, + { l: 98.0, x: 3.5833, y: 108.1136 }, + { l: 98.0, x: 3.6667, y: 108.8238 }, + { l: 98.0, x: 3.75, y: 109.5254 }, + { l: 98.0, x: 3.8333, y: 110.2165 }, + { l: 98.0, x: 3.9167, y: 110.9017 }, + { l: 98.0, x: 4, y: 111.5776 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 2.0, - y: 94.3188, - }, - { - l: '99.6', - x: 2.0192, - y: 94.5519, - }, - { - l: '99.6', - x: 2.1025, - y: 95.5628, - }, - { - l: '99.6', - x: 2.1858, - y: 96.5518, - }, - { - l: '99.6', - x: 2.2692, - y: 97.5202, - }, - { - l: '99.6', - x: 2.3525, - y: 98.4663, - }, - { - l: '99.6', - x: 2.4358, - y: 99.393, - }, - { - l: '99.6', - x: 2.5192, - y: 100.3001, - }, - { - l: '99.6', - x: 2.6025, - y: 101.1875, - }, - { - l: '99.6', - x: 2.6858, - y: 102.0581, - }, - { - l: '99.6', - x: 2.7692, - y: 102.9121, - }, - { - l: '99.6', - x: 2.8525, - y: 103.7527, - }, - { - l: '99.6', - x: 2.9358, - y: 104.5785, - }, - { - l: '99.6', - x: 3.0192, - y: 105.3922, - }, - { - l: '99.6', - x: 3.1025, - y: 106.1974, - }, - { - l: '99.6', - x: 3.1858, - y: 106.9899, - }, - { - l: '99.6', - x: 3.2692, - y: 107.771, - }, - { - l: '99.6', - x: 3.3525, - y: 108.5429, - }, - { - l: '99.6', - x: 3.4358, - y: 109.3059, - }, - { - l: '99.6', - x: 3.5192, - y: 110.059, - }, - { - l: '99.6', - x: 3.6025, - y: 110.8008, - }, - { - l: '99.6', - x: 3.6858, - y: 111.5341, - }, - { - l: '99.6', - x: 3.7692, - y: 112.258, - }, - { - l: '99.6', - x: 3.8525, - y: 112.9719, - }, - { - l: '99.6', - x: 3.9358, - y: 113.679, - }, - { - l: '99.6', - x: 4.0, - y: 114.2179, - }, + { l: 99.6, x: 2, y: 94.2718 }, + { l: 99.6, x: 2.0833, y: 95.2848 }, + { l: 99.6, x: 2.1667, y: 96.2776 }, + { l: 99.6, x: 2.25, y: 97.2504 }, + { l: 99.6, x: 2.3333, y: 98.2004 }, + { l: 99.6, x: 2.4167, y: 99.1308 }, + { l: 99.6, x: 2.5, y: 100.042 }, + { l: 99.6, x: 2.5833, y: 100.9327 }, + { l: 99.6, x: 2.6667, y: 101.8067 }, + { l: 99.6, x: 2.75, y: 102.6633 }, + { l: 99.6, x: 2.8333, y: 103.5065 }, + { l: 99.6, x: 2.9167, y: 104.3351 }, + { l: 99.6, x: 3, y: 105.1501 }, + { l: 99.6, x: 3.0833, y: 105.9573 }, + { l: 99.6, x: 3.1667, y: 106.752 }, + { l: 99.6, x: 3.25, y: 107.5348 }, + { l: 99.6, x: 3.3333, y: 108.3082 }, + { l: 99.6, x: 3.4167, y: 109.0726 }, + { l: 99.6, x: 3.5, y: 109.8277 }, + { l: 99.6, x: 3.5833, y: 110.5711 }, + { l: 99.6, x: 3.6667, y: 111.3058 }, + { l: 99.6, x: 3.75, y: 112.0317 }, + { l: 99.6, x: 3.8333, y: 112.7464 }, + { l: 99.6, x: 3.9167, y: 113.4559 }, + { l: 99.6, x: 4, y: 114.1552 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, }, }, { uk90_child: { - male: null, female: { height: [ { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 4.0, - y: 90.7984, - }, - { - l: '0.4', - x: 4.0833, - y: 91.2844, - }, - { - l: '0.4', - x: 4.1667, - y: 91.7762, - }, - { - l: '0.4', - x: 4.25, - y: 92.2792, - }, - { - l: '0.4', - x: 4.3333, - y: 92.7819, - }, - { - l: '0.4', - x: 4.4167, - y: 93.3021, - }, - { - l: '0.4', - x: 4.5, - y: 93.819, - }, - { - l: '0.4', - x: 4.5833, - y: 94.3384, - }, - { - l: '0.4', - x: 4.6667, - y: 94.8662, - }, - { - l: '0.4', - x: 4.75, - y: 95.3848, - }, - { - l: '0.4', - x: 4.8333, - y: 95.9058, - }, - { - l: '0.4', - x: 4.9167, - y: 96.4265, - }, - { - l: '0.4', - x: 5.0, - y: 96.9289, - }, - { - l: '0.4', - x: 5.0833, - y: 97.4251, - }, - { - l: '0.4', - x: 5.1667, - y: 97.912, - }, - { - l: '0.4', - x: 5.25, - y: 98.3898, - }, - { - l: '0.4', - x: 5.3333, - y: 98.8613, - }, - { - l: '0.4', - x: 5.4167, - y: 99.3266, - }, - { - l: '0.4', - x: 5.5, - y: 99.7739, - }, - { - l: '0.4', - x: 5.5833, - y: 100.221, - }, - { - l: '0.4', - x: 5.6667, - y: 100.6619, - }, - { - l: '0.4', - x: 5.75, - y: 101.1027, - }, - { - l: '0.4', - x: 5.8333, - y: 101.5345, - }, - { - l: '0.4', - x: 5.9167, - y: 101.9602, - }, - { - l: '0.4', - x: 6.0, - y: 102.3946, - }, - { - l: '0.4', - x: 6.0833, - y: 102.82, - }, - { - l: '0.4', - x: 6.1667, - y: 103.2483, - }, - { - l: '0.4', - x: 6.25, - y: 103.6676, - }, - { - l: '0.4', - x: 6.3333, - y: 104.0868, - }, - { - l: '0.4', - x: 6.4167, - y: 104.5147, - }, - { - l: '0.4', - x: 6.5, - y: 104.9337, - }, - { - l: '0.4', - x: 6.5833, - y: 105.3556, - }, - { - l: '0.4', - x: 6.6667, - y: 105.7743, - }, - { - l: '0.4', - x: 6.75, - y: 106.1961, - }, - { - l: '0.4', - x: 6.8333, - y: 106.6177, - }, - { - l: '0.4', - x: 6.9167, - y: 107.057, - }, - { - l: '0.4', - x: 7.0, - y: 107.4905, - }, - { - l: '0.4', - x: 7.0833, - y: 107.9207, - }, - { - l: '0.4', - x: 7.1667, - y: 108.3629, - }, - { - l: '0.4', - x: 7.25, - y: 108.805, - }, - { - l: '0.4', - x: 7.3333, - y: 109.2592, - }, - { - l: '0.4', - x: 7.4167, - y: 109.7012, - }, - { - l: '0.4', - x: 7.5, - y: 110.1464, - }, - { - l: '0.4', - x: 7.5833, - y: 110.5883, - }, - { - l: '0.4', - x: 7.6667, - y: 111.0212, - }, - { - l: '0.4', - x: 7.75, - y: 111.4628, - }, - { - l: '0.4', - x: 7.8333, - y: 111.8956, - }, - { - l: '0.4', - x: 7.9167, - y: 112.3282, - }, - { - l: '0.4', - x: 8.0, - y: 112.7451, - }, - { - l: '0.4', - x: 8.0833, - y: 113.1565, - }, - { - l: '0.4', - x: 8.1667, - y: 113.5609, - }, - { - l: '0.4', - x: 8.25, - y: 113.9474, - }, - { - l: '0.4', - x: 8.3333, - y: 114.3393, - }, - { - l: '0.4', - x: 8.4167, - y: 114.722, - }, - { - l: '0.4', - x: 8.5, - y: 115.0923, - }, - { - l: '0.4', - x: 8.5833, - y: 115.459, - }, - { - l: '0.4', - x: 8.6667, - y: 115.8165, - }, - { - l: '0.4', - x: 8.75, - y: 116.1792, - }, - { - l: '0.4', - x: 8.8333, - y: 116.5293, - }, - { - l: '0.4', - x: 8.9167, - y: 116.8845, - }, - { - l: '0.4', - x: 9.0, - y: 117.2393, - }, - { - l: '0.4', - x: 9.0833, - y: 117.5903, - }, - { - l: '0.4', - x: 9.1667, - y: 117.9463, - }, - { - l: '0.4', - x: 9.25, - y: 118.3019, - }, - { - l: '0.4', - x: 9.3333, - y: 118.6536, - }, - { - l: '0.4', - x: 9.4167, - y: 119.0101, - }, - { - l: '0.4', - x: 9.5, - y: 119.3662, - }, - { - l: '0.4', - x: 9.5833, - y: 119.7183, - }, - { - l: '0.4', - x: 9.6667, - y: 120.0699, - }, - { - l: '0.4', - x: 9.75, - y: 120.4212, - }, - { - l: '0.4', - x: 9.8333, - y: 120.7771, - }, - { - l: '0.4', - x: 9.9167, - y: 121.1238, - }, - { - l: '0.4', - x: 10.0, - y: 121.4751, - }, - { - l: '0.4', - x: 10.0833, - y: 121.8172, - }, - { - l: '0.4', - x: 10.1667, - y: 122.1712, - }, - { - l: '0.4', - x: 10.25, - y: 122.5211, - }, - { - l: '0.4', - x: 10.3333, - y: 122.8655, - }, - { - l: '0.4', - x: 10.4167, - y: 123.2181, - }, - { - l: '0.4', - x: 10.5, - y: 123.5654, - }, - { - l: '0.4', - x: 10.5833, - y: 123.9209, - }, - { - l: '0.4', - x: 10.6667, - y: 124.2749, - }, - { - l: '0.4', - x: 10.75, - y: 124.6372, - }, - { - l: '0.4', - x: 10.8333, - y: 124.998, - }, - { - l: '0.4', - x: 10.9167, - y: 125.3624, - }, - { - l: '0.4', - x: 11.0, - y: 125.7303, - }, - { - l: '0.4', - x: 11.0833, - y: 126.1095, - }, - { - l: '0.4', - x: 11.1667, - y: 126.4923, - }, - { - l: '0.4', - x: 11.25, - y: 126.8828, - }, - { - l: '0.4', - x: 11.3333, - y: 127.2809, - }, - { - l: '0.4', - x: 11.4167, - y: 127.6867, - }, - { - l: '0.4', - x: 11.5, - y: 128.0916, - }, - { - l: '0.4', - x: 11.5833, - y: 128.5131, - }, - { - l: '0.4', - x: 11.6667, - y: 128.9466, - }, - { - l: '0.4', - x: 11.75, - y: 129.3841, - }, - { - l: '0.4', - x: 11.8333, - y: 129.8425, - }, - { - l: '0.4', - x: 11.9167, - y: 130.2916, - }, - { - l: '0.4', - x: 12.0, - y: 130.7704, - }, - { - l: '0.4', - x: 12.0833, - y: 131.2537, - }, - { - l: '0.4', - x: 12.1667, - y: 131.7366, - }, - { - l: '0.4', - x: 12.25, - y: 132.2281, - }, - { - l: '0.4', - x: 12.3333, - y: 132.7328, - }, - { - l: '0.4', - x: 12.4167, - y: 133.2375, - }, - { - l: '0.4', - x: 12.5, - y: 133.7508, - }, - { - l: '0.4', - x: 12.5833, - y: 134.2602, - }, - { - l: '0.4', - x: 12.6667, - y: 134.7742, - }, - { - l: '0.4', - x: 12.75, - y: 135.2754, - }, - { - l: '0.4', - x: 12.8333, - y: 135.7902, - }, - { - l: '0.4', - x: 12.9167, - y: 136.301, - }, - { - l: '0.4', - x: 13.0, - y: 136.8038, - }, - { - l: '0.4', - x: 13.0833, - y: 137.3025, - }, - { - l: '0.4', - x: 13.1667, - y: 137.7931, - }, - { - l: '0.4', - x: 13.25, - y: 138.2844, - }, - { - l: '0.4', - x: 13.3333, - y: 138.7587, - }, - { - l: '0.4', - x: 13.4167, - y: 139.2159, - }, - { - l: '0.4', - x: 13.5, - y: 139.6737, - }, - { - l: '0.4', - x: 13.5833, - y: 140.1144, - }, - { - l: '0.4', - x: 13.6667, - y: 140.5515, - }, - { - l: '0.4', - x: 13.75, - y: 140.9802, - }, - { - l: '0.4', - x: 13.8333, - y: 141.3875, - }, - { - l: '0.4', - x: 13.9167, - y: 141.7774, - }, - { - l: '0.4', - x: 14.0, - y: 142.1593, - }, - { - l: '0.4', - x: 14.0833, - y: 142.5238, - }, - { - l: '0.4', - x: 14.1667, - y: 142.8798, - }, - { - l: '0.4', - x: 14.25, - y: 143.2187, - }, - { - l: '0.4', - x: 14.3333, - y: 143.5447, - }, - { - l: '0.4', - x: 14.4167, - y: 143.8489, - }, - { - l: '0.4', - x: 14.5, - y: 144.1401, - }, - { - l: '0.4', - x: 14.5833, - y: 144.4094, - }, - { - l: '0.4', - x: 14.6667, - y: 144.6788, - }, - { - l: '0.4', - x: 14.75, - y: 144.9267, - }, - { - l: '0.4', - x: 14.8333, - y: 145.1567, - }, - { - l: '0.4', - x: 14.9167, - y: 145.3604, - }, - { - l: '0.4', - x: 15.0, - y: 145.5641, - }, - { - l: '0.4', - x: 15.0833, - y: 145.7504, - }, - { - l: '0.4', - x: 15.1667, - y: 145.9144, - }, - { - l: '0.4', - x: 15.25, - y: 146.0742, - }, - { - l: '0.4', - x: 15.3333, - y: 146.2118, - }, - { - l: '0.4', - x: 15.4167, - y: 146.3451, - }, - { - l: '0.4', - x: 15.5, - y: 146.4695, - }, - { - l: '0.4', - x: 15.5833, - y: 146.5672, - }, - { - l: '0.4', - x: 15.6667, - y: 146.6739, - }, - { - l: '0.4', - x: 15.75, - y: 146.7583, - }, - { - l: '0.4', - x: 15.8333, - y: 146.8384, - }, - { - l: '0.4', - x: 15.9167, - y: 146.9186, - }, - { - l: '0.4', - x: 16.0, - y: 146.9763, - }, - { - l: '0.4', - x: 16.0833, - y: 147.0388, - }, - { - l: '0.4', - x: 16.1667, - y: 147.0876, - }, - { - l: '0.4', - x: 16.25, - y: 147.1367, - }, - { - l: '0.4', - x: 16.3333, - y: 147.1811, - }, - { - l: '0.4', - x: 16.4167, - y: 147.2212, - }, - { - l: '0.4', - x: 16.5, - y: 147.248, - }, - { - l: '0.4', - x: 16.5833, - y: 147.2881, - }, - { - l: '0.4', - x: 16.6667, - y: 147.3014, - }, - { - l: '0.4', - x: 16.75, - y: 147.3282, - }, - { - l: '0.4', - x: 16.8333, - y: 147.3415, - }, - { - l: '0.4', - x: 16.9167, - y: 147.3549, - }, - { - l: '0.4', - x: 17.0, - y: 147.3683, - }, - { - l: '0.4', - x: 17.0833, - y: 147.3727, - }, - { - l: '0.4', - x: 17.1667, - y: 147.3817, - }, - { - l: '0.4', - x: 17.25, - y: 147.3817, - }, - { - l: '0.4', - x: 17.3333, - y: 147.3817, - }, - { - l: '0.4', - x: 17.4167, - y: 147.386, - }, - { - l: '0.4', - x: 17.5, - y: 147.395, - }, - { - l: '0.4', - x: 17.5833, - y: 147.3994, - }, - { - l: '0.4', - x: 17.6667, - y: 147.4084, - }, - { - l: '0.4', - x: 17.75, - y: 147.4218, - }, - { - l: '0.4', - x: 17.8333, - y: 147.4352, - }, - { - l: '0.4', - x: 17.9167, - y: 147.4485, - }, - { - l: '0.4', - x: 18.0, - y: 147.4529, - }, - { - l: '0.4', - x: 18.0833, - y: 147.4619, - }, - { - l: '0.4', - x: 18.1667, - y: 147.4753, - }, - { - l: '0.4', - x: 18.25, - y: 147.4887, - }, - { - l: '0.4', - x: 18.3333, - y: 147.4887, - }, - { - l: '0.4', - x: 18.4167, - y: 147.5021, - }, - { - l: '0.4', - x: 18.5, - y: 147.5021, - }, - { - l: '0.4', - x: 18.5833, - y: 147.5154, - }, - { - l: '0.4', - x: 18.6667, - y: 147.5154, - }, - { - l: '0.4', - x: 18.75, - y: 147.5154, - }, - { - l: '0.4', - x: 18.8333, - y: 147.5244, - }, - { - l: '0.4', - x: 18.9167, - y: 147.5244, - }, - { - l: '0.4', - x: 19.0, - y: 147.5244, - }, - { - l: '0.4', - x: 19.0833, - y: 147.5244, - }, - { - l: '0.4', - x: 19.1667, - y: 147.5244, - }, - { - l: '0.4', - x: 19.25, - y: 147.5244, - }, - { - l: '0.4', - x: 19.3333, - y: 147.5244, - }, - { - l: '0.4', - x: 19.4167, - y: 147.5244, - }, - { - l: '0.4', - x: 19.5, - y: 147.5288, - }, - { - l: '0.4', - x: 19.5833, - y: 147.5288, - }, - { - l: '0.4', - x: 19.6667, - y: 147.5288, - }, - { - l: '0.4', - x: 19.75, - y: 147.5288, - }, - { - l: '0.4', - x: 19.8333, - y: 147.5378, - }, - { - l: '0.4', - x: 19.9167, - y: 147.5378, - }, - { - l: '0.4', - x: 20.0, - y: 147.5378, - }, - { - l: '0.4', - x: 20.0, - y: 147.5378, - }, + { l: 0.4, x: 4, y: 90.8571 }, + { l: 0.4, x: 4.083, y: 91.3416 }, + { l: 0.4, x: 4.167, y: 91.8379 }, + { l: 0.4, x: 4.25, y: 92.3395 }, + { l: 0.4, x: 4.333, y: 92.8407 }, + { l: 0.4, x: 4.417, y: 93.3655 }, + { l: 0.4, x: 4.5, y: 93.8809 }, + { l: 0.4, x: 4.583, y: 94.3987 }, + { l: 0.4, x: 4.667, y: 94.9313 }, + { l: 0.4, x: 4.75, y: 95.4483 }, + { l: 0.4, x: 4.833, y: 95.9678 }, + { l: 0.4, x: 4.917, y: 96.4931 }, + { l: 0.4, x: 5, y: 96.9941 }, + { l: 0.4, x: 5.083, y: 97.4888 }, + { l: 0.4, x: 5.167, y: 97.9802 }, + { l: 0.4, x: 5.25, y: 98.4565 }, + { l: 0.4, x: 5.333, y: 98.9266 }, + { l: 0.4, x: 5.417, y: 99.396 }, + { l: 0.4, x: 5.5, y: 99.842 }, + { l: 0.4, x: 5.583, y: 100.2877 }, + { l: 0.4, x: 5.667, y: 100.7327 }, + { l: 0.4, x: 5.75, y: 101.1721 }, + { l: 0.4, x: 5.833, y: 101.6026 }, + { l: 0.4, x: 5.917, y: 102.0321 }, + { l: 0.4, x: 6, y: 102.4652 }, + { l: 0.4, x: 6.083, y: 102.8893 }, + { l: 0.4, x: 6.167, y: 103.3215 }, + { l: 0.4, x: 6.25, y: 103.7395 }, + { l: 0.4, x: 6.333, y: 104.1574 }, + { l: 0.4, x: 6.417, y: 104.5891 }, + { l: 0.4, x: 6.5, y: 105.0067 }, + { l: 0.4, x: 6.583, y: 105.4273 }, + { l: 0.4, x: 6.667, y: 105.8498 }, + { l: 0.4, x: 6.75, y: 106.2702 }, + { l: 0.4, x: 6.833, y: 106.6905 }, + { l: 0.4, x: 6.917, y: 107.1336 }, + { l: 0.4, x: 7, y: 107.5658 }, + { l: 0.4, x: 7.083, y: 107.9946 }, + { l: 0.4, x: 7.167, y: 108.4407 }, + { l: 0.4, x: 7.25, y: 108.8814 }, + { l: 0.4, x: 7.333, y: 109.3342 }, + { l: 0.4, x: 7.417, y: 109.7801 }, + { l: 0.4, x: 7.5, y: 110.2239 }, + { l: 0.4, x: 7.583, y: 110.6644 }, + { l: 0.4, x: 7.667, y: 111.1011 }, + { l: 0.4, x: 7.75, y: 111.5414 }, + { l: 0.4, x: 7.833, y: 111.9728 }, + { l: 0.4, x: 7.917, y: 112.4092 }, + { l: 0.4, x: 8, y: 112.8249 }, + { l: 0.4, x: 8.083, y: 113.235 }, + { l: 0.4, x: 8.167, y: 113.643 }, + { l: 0.4, x: 8.25, y: 114.0284 }, + { l: 0.4, x: 8.333, y: 114.419 }, + { l: 0.4, x: 8.417, y: 114.8053 }, + { l: 0.4, x: 8.5, y: 115.1745 }, + { l: 0.4, x: 8.583, y: 115.5402 }, + { l: 0.4, x: 8.667, y: 115.9011 }, + { l: 0.4, x: 8.75, y: 116.2628 }, + { l: 0.4, x: 8.833, y: 116.612 }, + { l: 0.4, x: 8.917, y: 116.9705 }, + { l: 0.4, x: 9, y: 117.3244 }, + { l: 0.4, x: 9.083, y: 117.6746 }, + { l: 0.4, x: 9.167, y: 118.0339 }, + { l: 0.4, x: 9.25, y: 118.3887 }, + { l: 0.4, x: 9.333, y: 118.7395 }, + { l: 0.4, x: 9.417, y: 119.0995 }, + { l: 0.4, x: 9.5, y: 119.4548 }, + { l: 0.4, x: 9.583, y: 119.8061 }, + { l: 0.4, x: 9.667, y: 120.1613 }, + { l: 0.4, x: 9.75, y: 120.5117 }, + { l: 0.4, x: 9.833, y: 120.8669 }, + { l: 0.4, x: 9.917, y: 121.2171 }, + { l: 0.4, x: 10, y: 121.5677 }, + { l: 0.4, x: 10.083, y: 121.9091 }, + { l: 0.4, x: 10.167, y: 122.2666 }, + { l: 0.4, x: 10.25, y: 122.6158 }, + { l: 0.4, x: 10.333, y: 122.9595 }, + { l: 0.4, x: 10.417, y: 123.3156 }, + { l: 0.4, x: 10.5, y: 123.6621 }, + { l: 0.4, x: 10.583, y: 124.0169 }, + { l: 0.4, x: 10.667, y: 124.3744 }, + { l: 0.4, x: 10.75, y: 124.7359 }, + { l: 0.4, x: 10.833, y: 125.0959 }, + { l: 0.4, x: 10.917, y: 125.4638 }, + { l: 0.4, x: 11, y: 125.8307 }, + { l: 0.4, x: 11.083, y: 126.2089 }, + { l: 0.4, x: 11.167, y: 126.5953 }, + { l: 0.4, x: 11.25, y: 126.9846 }, + { l: 0.4, x: 11.333, y: 127.3815 }, + { l: 0.4, x: 11.417, y: 127.7909 }, + { l: 0.4, x: 11.5, y: 128.1945 }, + { l: 0.4, x: 11.583, y: 128.6146 }, + { l: 0.4, x: 11.667, y: 129.0517 }, + { l: 0.4, x: 11.75, y: 129.4877 }, + { l: 0.4, x: 11.833, y: 129.9443 }, + { l: 0.4, x: 11.917, y: 130.3972 }, + { l: 0.4, x: 12, y: 130.8742 }, + { l: 0.4, x: 12.083, y: 131.3554 }, + { l: 0.4, x: 12.167, y: 131.8422 }, + { l: 0.4, x: 12.25, y: 132.3316 }, + { l: 0.4, x: 12.333, y: 132.8342 }, + { l: 0.4, x: 12.417, y: 133.3427 }, + { l: 0.4, x: 12.5, y: 133.8538 }, + { l: 0.4, x: 12.583, y: 134.3608 }, + { l: 0.4, x: 12.667, y: 134.8786 }, + { l: 0.4, x: 12.75, y: 135.3775 }, + { l: 0.4, x: 12.833, y: 135.8899 }, + { l: 0.4, x: 12.917, y: 136.4044 }, + { l: 0.4, x: 13, y: 136.9047 }, + { l: 0.4, x: 13.083, y: 137.401 }, + { l: 0.4, x: 13.167, y: 137.8951 }, + { l: 0.4, x: 13.25, y: 138.384 }, + { l: 0.4, x: 13.333, y: 138.8559 }, + { l: 0.4, x: 13.417, y: 139.3164 }, + { l: 0.4, x: 13.5, y: 139.7719 }, + { l: 0.4, x: 13.583, y: 140.2104 }, + { l: 0.4, x: 13.667, y: 140.6504 }, + { l: 0.4, x: 13.75, y: 141.0769 }, + { l: 0.4, x: 13.833, y: 141.4821 }, + { l: 0.4, x: 13.917, y: 141.8747 }, + { l: 0.4, x: 14, y: 142.2546 }, + { l: 0.4, x: 14.083, y: 142.6172 }, + { l: 0.4, x: 14.167, y: 142.9756 }, + { l: 0.4, x: 14.25, y: 143.3127 }, + { l: 0.4, x: 14.333, y: 143.637 }, + { l: 0.4, x: 14.417, y: 143.9432 }, + { l: 0.4, x: 14.5, y: 144.2329 }, + { l: 0.4, x: 14.583, y: 144.5007 }, + { l: 0.4, x: 14.667, y: 144.7719 }, + { l: 0.4, x: 14.75, y: 145.0183 }, + { l: 0.4, x: 14.833, y: 145.2472 }, + { l: 0.4, x: 14.917, y: 145.4522 }, + { l: 0.4, x: 15, y: 145.6549 }, + { l: 0.4, x: 15.083, y: 145.8402 }, + { l: 0.4, x: 15.167, y: 146.0054 }, + { l: 0.4, x: 15.25, y: 146.1643 }, + { l: 0.4, x: 15.333, y: 146.3011 }, + { l: 0.4, x: 15.417, y: 146.4353 }, + { l: 0.4, x: 15.5, y: 146.5589 }, + { l: 0.4, x: 15.583, y: 146.6561 }, + { l: 0.4, x: 15.667, y: 146.7635 }, + { l: 0.4, x: 15.75, y: 146.8474 }, + { l: 0.4, x: 15.833, y: 146.9271 }, + { l: 0.4, x: 15.917, y: 147.0077 }, + { l: 0.4, x: 16, y: 147.0651 }, + { l: 0.4, x: 16.083, y: 147.1272 }, + { l: 0.4, x: 16.167, y: 147.1763 }, + { l: 0.4, x: 16.25, y: 147.2252 }, + { l: 0.4, x: 16.333, y: 147.2694 }, + { l: 0.4, x: 16.417, y: 147.3097 }, + { l: 0.4, x: 16.5, y: 147.3363 }, + { l: 0.4, x: 16.583, y: 147.3762 }, + { l: 0.4, x: 16.667, y: 147.3898 }, + { l: 0.4, x: 16.75, y: 147.4164 }, + { l: 0.4, x: 16.833, y: 147.4297 }, + { l: 0.4, x: 16.917, y: 147.4432 }, + { l: 0.4, x: 17, y: 147.4565 }, + { l: 0.4, x: 17.083, y: 147.4608 }, + { l: 0.4, x: 17.167, y: 147.4698 }, + { l: 0.4, x: 17.25, y: 147.4698 }, + { l: 0.4, x: 17.333, y: 147.4698 }, + { l: 0.4, x: 17.417, y: 147.4742 }, + { l: 0.4, x: 17.5, y: 147.4832 }, + { l: 0.4, x: 17.583, y: 147.4875 }, + { l: 0.4, x: 17.667, y: 147.4966 }, + { l: 0.4, x: 17.75, y: 147.5099 }, + { l: 0.4, x: 17.833, y: 147.5232 }, + { l: 0.4, x: 17.917, y: 147.5366 }, + { l: 0.4, x: 18, y: 147.5409 }, + { l: 0.4, x: 18.083, y: 147.5499 }, + { l: 0.4, x: 18.167, y: 147.5634 }, + { l: 0.4, x: 18.25, y: 147.5767 }, + { l: 0.4, x: 18.333, y: 147.5767 }, + { l: 0.4, x: 18.417, y: 147.59 }, + { l: 0.4, x: 18.5, y: 147.59 }, + { l: 0.4, x: 18.583, y: 147.6034 }, + { l: 0.4, x: 18.667, y: 147.6034 }, + { l: 0.4, x: 18.75, y: 147.6034 }, + { l: 0.4, x: 18.833, y: 147.6124 }, + { l: 0.4, x: 18.917, y: 147.6124 }, + { l: 0.4, x: 19, y: 147.6124 }, + { l: 0.4, x: 19.083, y: 147.6124 }, + { l: 0.4, x: 19.167, y: 147.6124 }, + { l: 0.4, x: 19.25, y: 147.6124 }, + { l: 0.4, x: 19.333, y: 147.6124 }, + { l: 0.4, x: 19.417, y: 147.6124 }, + { l: 0.4, x: 19.5, y: 147.6168 }, + { l: 0.4, x: 19.583, y: 147.6168 }, + { l: 0.4, x: 19.667, y: 147.6168 }, + { l: 0.4, x: 19.75, y: 147.6168 }, + { l: 0.4, x: 19.833, y: 147.6258 }, + { l: 0.4, x: 19.917, y: 147.6258 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 4.0, - y: 93.4838, - }, - { - l: '2.0', - x: 4.0833, - y: 93.9933, - }, - { - l: '2.0', - x: 4.1667, - y: 94.5096, - }, - { - l: '2.0', - x: 4.25, - y: 95.0369, - }, - { - l: '2.0', - x: 4.3333, - y: 95.5639, - }, - { - l: '2.0', - x: 4.4167, - y: 96.1091, - }, - { - l: '2.0', - x: 4.5, - y: 96.6518, - }, - { - l: '2.0', - x: 4.5833, - y: 97.1963, - }, - { - l: '2.0', - x: 4.6667, - y: 97.7497, - }, - { - l: '2.0', - x: 4.75, - y: 98.2936, - }, - { - l: '2.0', - x: 4.8333, - y: 98.8394, - }, - { - l: '2.0', - x: 4.9167, - y: 99.3848, - }, - { - l: '2.0', - x: 5.0, - y: 99.9117, - }, - { - l: '2.0', - x: 5.0833, - y: 100.4313, - }, - { - l: '2.0', - x: 5.1667, - y: 100.9415, - }, - { - l: '2.0', - x: 5.25, - y: 101.4423, - }, - { - l: '2.0', - x: 5.3333, - y: 101.9359, - }, - { - l: '2.0', - x: 5.4167, - y: 102.4224, - }, - { - l: '2.0', - x: 5.5, - y: 102.8904, - }, - { - l: '2.0', - x: 5.5833, - y: 103.3582, - }, - { - l: '2.0', - x: 5.6667, - y: 103.819, - }, - { - l: '2.0', - x: 5.75, - y: 104.2796, - }, - { - l: '2.0', - x: 5.8333, - y: 104.7308, - }, - { - l: '2.0', - x: 5.9167, - y: 105.1751, - }, - { - l: '2.0', - x: 6.0, - y: 105.6284, - }, - { - l: '2.0', - x: 6.0833, - y: 106.0725, - }, - { - l: '2.0', - x: 6.1667, - y: 106.5187, - }, - { - l: '2.0', - x: 6.25, - y: 106.9557, - }, - { - l: '2.0', - x: 6.3333, - y: 107.3926, - }, - { - l: '2.0', - x: 6.4167, - y: 107.8386, - }, - { - l: '2.0', - x: 6.5, - y: 108.2753, - }, - { - l: '2.0', - x: 6.5833, - y: 108.7142, - }, - { - l: '2.0', - x: 6.6667, - y: 109.1507, - }, - { - l: '2.0', - x: 6.75, - y: 109.5895, - }, - { - l: '2.0', - x: 6.8333, - y: 110.0283, - }, - { - l: '2.0', - x: 6.9167, - y: 110.4852, - }, - { - l: '2.0', - x: 7.0, - y: 110.9354, - }, - { - l: '2.0', - x: 7.0833, - y: 111.383, - }, - { - l: '2.0', - x: 7.1667, - y: 111.8422, - }, - { - l: '2.0', - x: 7.25, - y: 112.3013, - }, - { - l: '2.0', - x: 7.3333, - y: 112.7719, - }, - { - l: '2.0', - x: 7.4167, - y: 113.2309, - }, - { - l: '2.0', - x: 7.5, - y: 113.6923, - }, - { - l: '2.0', - x: 7.5833, - y: 114.1512, - }, - { - l: '2.0', - x: 7.6667, - y: 114.6009, - }, - { - l: '2.0', - x: 7.75, - y: 115.0596, - }, - { - l: '2.0', - x: 7.8333, - y: 115.5092, - }, - { - l: '2.0', - x: 7.9167, - y: 115.9587, - }, - { - l: '2.0', - x: 8.0, - y: 116.3939, - }, - { - l: '2.0', - x: 8.0833, - y: 116.8224, - }, - { - l: '2.0', - x: 8.1667, - y: 117.2457, - }, - { - l: '2.0', - x: 8.25, - y: 117.6506, - }, - { - l: '2.0', - x: 8.3333, - y: 118.0619, - }, - { - l: '2.0', - x: 8.4167, - y: 118.464, - }, - { - l: '2.0', - x: 8.5, - y: 118.8543, - }, - { - l: '2.0', - x: 8.5833, - y: 119.2417, - }, - { - l: '2.0', - x: 8.6667, - y: 119.6199, - }, - { - l: '2.0', - x: 8.75, - y: 120.0044, - }, - { - l: '2.0', - x: 8.8333, - y: 120.377, - }, - { - l: '2.0', - x: 8.9167, - y: 120.7559, - }, - { - l: '2.0', - x: 9.0, - y: 121.1345, - }, - { - l: '2.0', - x: 9.0833, - y: 121.5103, - }, - { - l: '2.0', - x: 9.1667, - y: 121.8922, - }, - { - l: '2.0', - x: 9.25, - y: 122.2739, - }, - { - l: '2.0', - x: 9.3333, - y: 122.6527, - }, - { - l: '2.0', - x: 9.4167, - y: 123.0376, - }, - { - l: '2.0', - x: 9.5, - y: 123.4222, - }, - { - l: '2.0', - x: 9.5833, - y: 123.8037, - }, - { - l: '2.0', - x: 9.6667, - y: 124.185, - }, - { - l: '2.0', - x: 9.75, - y: 124.5659, - }, - { - l: '2.0', - x: 9.8333, - y: 124.9528, - }, - { - l: '2.0', - x: 9.9167, - y: 125.3303, - }, - { - l: '2.0', - x: 10.0, - y: 125.7138, - }, - { - l: '2.0', - x: 10.0833, - y: 126.0879, - }, - { - l: '2.0', - x: 10.1667, - y: 126.4734, - }, - { - l: '2.0', - x: 10.25, - y: 126.8558, - }, - { - l: '2.0', - x: 10.3333, - y: 127.2316, - }, - { - l: '2.0', - x: 10.4167, - y: 127.6161, - }, - { - l: '2.0', - x: 10.5, - y: 127.994, - }, - { - l: '2.0', - x: 10.5833, - y: 128.3807, - }, - { - l: '2.0', - x: 10.6667, - y: 128.7637, - }, - { - l: '2.0', - x: 10.75, - y: 129.1554, - }, - { - l: '2.0', - x: 10.8333, - y: 129.5435, - }, - { - l: '2.0', - x: 10.9167, - y: 129.9343, - }, - { - l: '2.0', - x: 11.0, - y: 130.3277, - }, - { - l: '2.0', - x: 11.0833, - y: 130.7296, - }, - { - l: '2.0', - x: 11.1667, - y: 131.1342, - }, - { - l: '2.0', - x: 11.25, - y: 131.5446, - }, - { - l: '2.0', - x: 11.3333, - y: 131.9606, - }, - { - l: '2.0', - x: 11.4167, - y: 132.3825, - }, - { - l: '2.0', - x: 11.5, - y: 132.8012, - }, - { - l: '2.0', - x: 11.5833, - y: 133.2349, - }, - { - l: '2.0', - x: 11.6667, - y: 133.6774, - }, - { - l: '2.0', - x: 11.75, - y: 134.1231, - }, - { - l: '2.0', - x: 11.8333, - y: 134.5869, - }, - { - l: '2.0', - x: 11.9167, - y: 135.0387, - }, - { - l: '2.0', - x: 12.0, - y: 135.5178, - }, - { - l: '2.0', - x: 12.0833, - y: 136.0003, - }, - { - l: '2.0', - x: 12.1667, - y: 136.48, - }, - { - l: '2.0', - x: 12.25, - y: 136.9661, - }, - { - l: '2.0', - x: 12.3333, - y: 137.4646, - }, - { - l: '2.0', - x: 12.4167, - y: 137.9606, - }, - { - l: '2.0', - x: 12.5, - y: 138.4631, - }, - { - l: '2.0', - x: 12.5833, - y: 138.9601, - }, - { - l: '2.0', - x: 12.6667, - y: 139.4606, - }, - { - l: '2.0', - x: 12.75, - y: 139.9466, - }, - { - l: '2.0', - x: 12.8333, - y: 140.4452, - }, - { - l: '2.0', - x: 12.9167, - y: 140.9383, - }, - { - l: '2.0', - x: 13.0, - y: 141.4228, - }, - { - l: '2.0', - x: 13.0833, - y: 141.9019, - }, - { - l: '2.0', - x: 13.1667, - y: 142.3723, - }, - { - l: '2.0', - x: 13.25, - y: 142.8433, - }, - { - l: '2.0', - x: 13.3333, - y: 143.2965, - }, - { - l: '2.0', - x: 13.4167, - y: 143.7319, - }, - { - l: '2.0', - x: 13.5, - y: 144.1678, - }, - { - l: '2.0', - x: 13.5833, - y: 144.5858, - }, - { - l: '2.0', - x: 13.6667, - y: 145.0011, - }, - { - l: '2.0', - x: 13.75, - y: 145.4076, - }, - { - l: '2.0', - x: 13.8333, - y: 145.7931, - }, - { - l: '2.0', - x: 13.9167, - y: 146.1606, - }, - { - l: '2.0', - x: 14.0, - y: 146.522, - }, - { - l: '2.0', - x: 14.0833, - y: 146.8654, - }, - { - l: '2.0', - x: 14.1667, - y: 147.1999, - }, - { - l: '2.0', - x: 14.25, - y: 147.519, - }, - { - l: '2.0', - x: 14.3333, - y: 147.826, - }, - { - l: '2.0', - x: 14.4167, - y: 148.1117, - }, - { - l: '2.0', - x: 14.5, - y: 148.3851, - }, - { - l: '2.0', - x: 14.5833, - y: 148.637, - }, - { - l: '2.0', - x: 14.6667, - y: 148.8891, - }, - { - l: '2.0', - x: 14.75, - y: 149.1225, - }, - { - l: '2.0', - x: 14.8333, - y: 149.3375, - }, - { - l: '2.0', - x: 14.9167, - y: 149.5278, - }, - { - l: '2.0', - x: 15.0, - y: 149.7181, - }, - { - l: '2.0', - x: 15.0833, - y: 149.8928, - }, - { - l: '2.0', - x: 15.1667, - y: 150.0458, - }, - { - l: '2.0', - x: 15.25, - y: 150.1957, - }, - { - l: '2.0', - x: 15.3333, - y: 150.3239, - }, - { - l: '2.0', - x: 15.4167, - y: 150.4488, - }, - { - l: '2.0', - x: 15.5, - y: 150.5646, - }, - { - l: '2.0', - x: 15.5833, - y: 150.6554, - }, - { - l: '2.0', - x: 15.6667, - y: 150.7554, - }, - { - l: '2.0', - x: 15.75, - y: 150.8338, - }, - { - l: '2.0', - x: 15.8333, - y: 150.9088, - }, - { - l: '2.0', - x: 15.9167, - y: 150.9839, - }, - { - l: '2.0', - x: 16.0, - y: 151.0373, - }, - { - l: '2.0', - x: 16.0833, - y: 151.0966, - }, - { - l: '2.0', - x: 16.1667, - y: 151.1407, - }, - { - l: '2.0', - x: 16.25, - y: 151.1875, - }, - { - l: '2.0', - x: 16.3333, - y: 151.2283, - }, - { - l: '2.0', - x: 16.4167, - y: 151.2659, - }, - { - l: '2.0', - x: 16.5, - y: 151.291, - }, - { - l: '2.0', - x: 16.5833, - y: 151.3285, - }, - { - l: '2.0', - x: 16.6667, - y: 151.3411, - }, - { - l: '2.0', - x: 16.75, - y: 151.3661, - }, - { - l: '2.0', - x: 16.8333, - y: 151.3787, - }, - { - l: '2.0', - x: 16.9167, - y: 151.3912, - }, - { - l: '2.0', - x: 17.0, - y: 151.4037, - }, - { - l: '2.0', - x: 17.0833, - y: 151.407, - }, - { - l: '2.0', - x: 17.1667, - y: 151.4162, - }, - { - l: '2.0', - x: 17.25, - y: 151.4162, - }, - { - l: '2.0', - x: 17.3333, - y: 151.4162, - }, - { - l: '2.0', - x: 17.4167, - y: 151.4195, - }, - { - l: '2.0', - x: 17.5, - y: 151.4288, - }, - { - l: '2.0', - x: 17.5833, - y: 151.4321, - }, - { - l: '2.0', - x: 17.6667, - y: 151.4413, - }, - { - l: '2.0', - x: 17.75, - y: 151.4538, - }, - { - l: '2.0', - x: 17.8333, - y: 151.4664, - }, - { - l: '2.0', - x: 17.9167, - y: 151.4789, - }, - { - l: '2.0', - x: 18.0, - y: 151.4822, - }, - { - l: '2.0', - x: 18.0833, - y: 151.4914, - }, - { - l: '2.0', - x: 18.1667, - y: 151.504, - }, - { - l: '2.0', - x: 18.25, - y: 151.5165, - }, - { - l: '2.0', - x: 18.3333, - y: 151.5165, - }, - { - l: '2.0', - x: 18.4167, - y: 151.529, - }, - { - l: '2.0', - x: 18.5, - y: 151.529, - }, - { - l: '2.0', - x: 18.5833, - y: 151.5416, - }, - { - l: '2.0', - x: 18.6667, - y: 151.5416, - }, - { - l: '2.0', - x: 18.75, - y: 151.5416, - }, - { - l: '2.0', - x: 18.8333, - y: 151.5508, - }, - { - l: '2.0', - x: 18.9167, - y: 151.5508, - }, - { - l: '2.0', - x: 19.0, - y: 151.5508, - }, - { - l: '2.0', - x: 19.0833, - y: 151.5508, - }, - { - l: '2.0', - x: 19.1667, - y: 151.5508, - }, - { - l: '2.0', - x: 19.25, - y: 151.5508, - }, - { - l: '2.0', - x: 19.3333, - y: 151.5508, - }, - { - l: '2.0', - x: 19.4167, - y: 151.5508, - }, - { - l: '2.0', - x: 19.5, - y: 151.5541, - }, - { - l: '2.0', - x: 19.5833, - y: 151.5541, - }, - { - l: '2.0', - x: 19.6667, - y: 151.5541, - }, - { - l: '2.0', - x: 19.75, - y: 151.5541, - }, - { - l: '2.0', - x: 19.8333, - y: 151.5634, - }, - { - l: '2.0', - x: 19.9167, - y: 151.5634, - }, - { - l: '2.0', - x: 20.0, - y: 151.5634, - }, - { - l: '2.0', - x: 20.0, - y: 151.5634, - }, + { l: 2.0, x: 4, y: 93.2675 }, + { l: 2.0, x: 4.083, y: 93.7731 }, + { l: 2.0, x: 4.167, y: 94.2915 }, + { l: 2.0, x: 4.25, y: 94.8148 }, + { l: 2.0, x: 4.333, y: 95.3377 }, + { l: 2.0, x: 4.417, y: 95.8851 }, + { l: 2.0, x: 4.5, y: 96.4236 }, + { l: 2.0, x: 4.583, y: 96.9639 }, + { l: 2.0, x: 4.667, y: 97.5196 }, + { l: 2.0, x: 4.75, y: 98.0593 }, + { l: 2.0, x: 4.833, y: 98.6009 }, + { l: 2.0, x: 4.917, y: 99.1487 }, + { l: 2.0, x: 5, y: 99.6714 }, + { l: 2.0, x: 5.083, y: 100.1871 }, + { l: 2.0, x: 5.167, y: 100.6995 }, + { l: 2.0, x: 5.25, y: 101.1964 }, + { l: 2.0, x: 5.333, y: 101.6863 }, + { l: 2.0, x: 5.417, y: 102.1749 }, + { l: 2.0, x: 5.5, y: 102.6394 }, + { l: 2.0, x: 5.583, y: 103.1037 }, + { l: 2.0, x: 5.667, y: 103.5665 }, + { l: 2.0, x: 5.75, y: 104.0237 }, + { l: 2.0, x: 5.833, y: 104.4716 }, + { l: 2.0, x: 5.917, y: 104.918 }, + { l: 2.0, x: 6, y: 105.368 }, + { l: 2.0, x: 6.083, y: 105.8087 }, + { l: 2.0, x: 6.167, y: 106.257 }, + { l: 2.0, x: 6.25, y: 106.6909 }, + { l: 2.0, x: 6.333, y: 107.1246 }, + { l: 2.0, x: 6.417, y: 107.5726 }, + { l: 2.0, x: 6.5, y: 108.0061 }, + { l: 2.0, x: 6.583, y: 108.4419 }, + { l: 2.0, x: 6.667, y: 108.8805 }, + { l: 2.0, x: 6.75, y: 109.3162 }, + { l: 2.0, x: 6.833, y: 109.7518 }, + { l: 2.0, x: 6.917, y: 110.2109 }, + { l: 2.0, x: 7, y: 110.6579 }, + { l: 2.0, x: 7.083, y: 111.1023 }, + { l: 2.0, x: 7.167, y: 111.5637 }, + { l: 2.0, x: 7.25, y: 112.0197 }, + { l: 2.0, x: 7.333, y: 112.4871 }, + { l: 2.0, x: 7.417, y: 112.9484 }, + { l: 2.0, x: 7.5, y: 113.4067 }, + { l: 2.0, x: 7.583, y: 113.8624 }, + { l: 2.0, x: 7.667, y: 114.3143 }, + { l: 2.0, x: 7.75, y: 114.7699 }, + { l: 2.0, x: 7.833, y: 115.2163 }, + { l: 2.0, x: 7.917, y: 115.668 }, + { l: 2.0, x: 8, y: 116.0999 }, + { l: 2.0, x: 8.083, y: 116.5254 }, + { l: 2.0, x: 8.167, y: 116.9505 }, + { l: 2.0, x: 8.25, y: 117.3523 }, + { l: 2.0, x: 8.333, y: 117.7604 }, + { l: 2.0, x: 8.417, y: 118.1642 }, + { l: 2.0, x: 8.5, y: 118.5512 }, + { l: 2.0, x: 8.583, y: 118.9355 }, + { l: 2.0, x: 8.667, y: 119.3151 }, + { l: 2.0, x: 8.75, y: 119.6963 }, + { l: 2.0, x: 8.833, y: 120.0656 }, + { l: 2.0, x: 8.917, y: 120.4455 }, + { l: 2.0, x: 9, y: 120.8207 }, + { l: 2.0, x: 9.083, y: 121.193 }, + { l: 2.0, x: 9.167, y: 121.5759 }, + { l: 2.0, x: 9.25, y: 121.954 }, + { l: 2.0, x: 9.333, y: 122.329 }, + { l: 2.0, x: 9.417, y: 122.7147 }, + { l: 2.0, x: 9.5, y: 123.0954 }, + { l: 2.0, x: 9.583, y: 123.4731 }, + { l: 2.0, x: 9.667, y: 123.855 }, + { l: 2.0, x: 9.75, y: 124.232 }, + { l: 2.0, x: 9.833, y: 124.6149 }, + { l: 2.0, x: 9.917, y: 124.993 }, + { l: 2.0, x: 10, y: 125.3724 }, + { l: 2.0, x: 10.083, y: 125.7424 }, + { l: 2.0, x: 10.167, y: 126.1284 }, + { l: 2.0, x: 10.25, y: 126.5067 }, + { l: 2.0, x: 10.333, y: 126.8784 }, + { l: 2.0, x: 10.417, y: 127.2634 }, + { l: 2.0, x: 10.5, y: 127.6373 }, + { l: 2.0, x: 10.583, y: 128.0199 }, + { l: 2.0, x: 10.667, y: 128.4036 }, + { l: 2.0, x: 10.75, y: 128.7915 }, + { l: 2.0, x: 10.833, y: 129.1759 }, + { l: 2.0, x: 10.917, y: 129.5676 }, + { l: 2.0, x: 11, y: 129.9574 }, + { l: 2.0, x: 11.083, y: 130.3558 }, + { l: 2.0, x: 11.167, y: 130.762 }, + { l: 2.0, x: 11.25, y: 131.1691 }, + { l: 2.0, x: 11.333, y: 131.582 }, + { l: 2.0, x: 11.417, y: 132.0059 }, + { l: 2.0, x: 11.5, y: 132.4219 }, + { l: 2.0, x: 11.583, y: 132.8528 }, + { l: 2.0, x: 11.667, y: 133.2981 }, + { l: 2.0, x: 11.75, y: 133.7414 }, + { l: 2.0, x: 11.833, y: 134.2028 }, + { l: 2.0, x: 11.917, y: 134.6582 }, + { l: 2.0, x: 12, y: 135.1354 }, + { l: 2.0, x: 12.083, y: 135.616 }, + { l: 2.0, x: 12.167, y: 136.0998 }, + { l: 2.0, x: 12.25, y: 136.5844 }, + { l: 2.0, x: 12.333, y: 137.0815 }, + { l: 2.0, x: 12.417, y: 137.5822 }, + { l: 2.0, x: 12.5, y: 138.0836 }, + { l: 2.0, x: 12.583, y: 138.5795 }, + { l: 2.0, x: 12.667, y: 139.0851 }, + { l: 2.0, x: 12.75, y: 139.5703 }, + { l: 2.0, x: 12.833, y: 140.0682 }, + { l: 2.0, x: 12.917, y: 140.5667 }, + { l: 2.0, x: 13, y: 141.0507 }, + { l: 2.0, x: 13.083, y: 141.5295 }, + { l: 2.0, x: 13.167, y: 142.0054 }, + { l: 2.0, x: 13.25, y: 142.4761 }, + { l: 2.0, x: 13.333, y: 142.9292 }, + { l: 2.0, x: 13.417, y: 143.3699 }, + { l: 2.0, x: 13.5, y: 143.8058 }, + { l: 2.0, x: 13.583, y: 144.224 }, + { l: 2.0, x: 13.667, y: 144.6443 }, + { l: 2.0, x: 13.75, y: 145.051 }, + { l: 2.0, x: 13.833, y: 145.4367 }, + { l: 2.0, x: 13.917, y: 145.809 }, + { l: 2.0, x: 14, y: 146.1706 }, + { l: 2.0, x: 14.083, y: 146.5143 }, + { l: 2.0, x: 14.167, y: 146.8532 }, + { l: 2.0, x: 14.25, y: 147.1726 }, + { l: 2.0, x: 14.333, y: 147.48 }, + { l: 2.0, x: 14.417, y: 147.7694 }, + { l: 2.0, x: 14.5, y: 148.0431 }, + { l: 2.0, x: 14.583, y: 148.2955 }, + { l: 2.0, x: 14.667, y: 148.551 }, + { l: 2.0, x: 14.75, y: 148.7845 }, + { l: 2.0, x: 14.833, y: 149.0 }, + { l: 2.0, x: 14.917, y: 149.1929 }, + { l: 2.0, x: 15, y: 149.3835 }, + { l: 2.0, x: 15.083, y: 149.5584 }, + { l: 2.0, x: 15.167, y: 149.7137 }, + { l: 2.0, x: 15.25, y: 149.8637 }, + { l: 2.0, x: 15.333, y: 149.9921 }, + { l: 2.0, x: 15.417, y: 150.1188 }, + { l: 2.0, x: 15.5, y: 150.2347 }, + { l: 2.0, x: 15.583, y: 150.3257 }, + { l: 2.0, x: 15.667, y: 150.427 }, + { l: 2.0, x: 15.75, y: 150.5055 }, + { l: 2.0, x: 15.833, y: 150.5807 }, + { l: 2.0, x: 15.917, y: 150.6567 }, + { l: 2.0, x: 16, y: 150.7102 }, + { l: 2.0, x: 16.083, y: 150.7695 }, + { l: 2.0, x: 16.167, y: 150.8144 }, + { l: 2.0, x: 16.25, y: 150.8612 }, + { l: 2.0, x: 16.333, y: 150.9022 }, + { l: 2.0, x: 16.417, y: 150.9402 }, + { l: 2.0, x: 16.5, y: 150.9653 }, + { l: 2.0, x: 16.583, y: 151.003 }, + { l: 2.0, x: 16.667, y: 151.0158 }, + { l: 2.0, x: 16.75, y: 151.0409 }, + { l: 2.0, x: 16.833, y: 151.0534 }, + { l: 2.0, x: 16.917, y: 151.0661 }, + { l: 2.0, x: 17, y: 151.0787 }, + { l: 2.0, x: 17.083, y: 151.082 }, + { l: 2.0, x: 17.167, y: 151.0913 }, + { l: 2.0, x: 17.25, y: 151.0913 }, + { l: 2.0, x: 17.333, y: 151.0913 }, + { l: 2.0, x: 17.417, y: 151.0947 }, + { l: 2.0, x: 17.5, y: 151.1039 }, + { l: 2.0, x: 17.583, y: 151.1072 }, + { l: 2.0, x: 17.667, y: 151.1165 }, + { l: 2.0, x: 17.75, y: 151.1291 }, + { l: 2.0, x: 17.833, y: 151.1416 }, + { l: 2.0, x: 17.917, y: 151.1543 }, + { l: 2.0, x: 18, y: 151.1576 }, + { l: 2.0, x: 18.083, y: 151.1668 }, + { l: 2.0, x: 18.167, y: 151.1795 }, + { l: 2.0, x: 18.25, y: 151.1921 }, + { l: 2.0, x: 18.333, y: 151.1921 }, + { l: 2.0, x: 18.417, y: 151.2047 }, + { l: 2.0, x: 18.5, y: 151.2047 }, + { l: 2.0, x: 18.583, y: 151.2172 }, + { l: 2.0, x: 18.667, y: 151.2173 }, + { l: 2.0, x: 18.75, y: 151.2173 }, + { l: 2.0, x: 18.833, y: 151.2265 }, + { l: 2.0, x: 18.917, y: 151.2265 }, + { l: 2.0, x: 19, y: 151.2265 }, + { l: 2.0, x: 19.083, y: 151.2265 }, + { l: 2.0, x: 19.167, y: 151.2265 }, + { l: 2.0, x: 19.25, y: 151.2265 }, + { l: 2.0, x: 19.333, y: 151.2265 }, + { l: 2.0, x: 19.417, y: 151.2265 }, + { l: 2.0, x: 19.5, y: 151.2299 }, + { l: 2.0, x: 19.583, y: 151.2299 }, + { l: 2.0, x: 19.667, y: 151.2299 }, + { l: 2.0, x: 19.75, y: 151.2299 }, + { l: 2.0, x: 19.833, y: 151.2391 }, + { l: 2.0, x: 19.917, y: 151.2391 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 4.0, - y: 96.1692, - }, - { - l: '9.0', - x: 4.0833, - y: 96.7022, - }, - { - l: '9.0', - x: 4.1667, - y: 97.2431, - }, - { - l: '9.0', - x: 4.25, - y: 97.7946, - }, - { - l: '9.0', - x: 4.3333, - y: 98.346, - }, - { - l: '9.0', - x: 4.4167, - y: 98.916, - }, - { - l: '9.0', - x: 4.5, - y: 99.4845, - }, - { - l: '9.0', - x: 4.5833, - y: 100.0542, - }, - { - l: '9.0', - x: 4.6667, - y: 100.6331, - }, - { - l: '9.0', - x: 4.75, - y: 101.2024, - }, - { - l: '9.0', - x: 4.8333, - y: 101.7729, - }, - { - l: '9.0', - x: 4.9167, - y: 102.3432, - }, - { - l: '9.0', - x: 5.0, - y: 102.8945, - }, - { - l: '9.0', - x: 5.0833, - y: 103.4375, - }, - { - l: '9.0', - x: 5.1667, - y: 103.971, - }, - { - l: '9.0', - x: 5.25, - y: 104.4949, - }, - { - l: '9.0', - x: 5.3333, - y: 105.0106, - }, - { - l: '9.0', - x: 5.4167, - y: 105.5183, - }, - { - l: '9.0', - x: 5.5, - y: 106.0069, - }, - { - l: '9.0', - x: 5.5833, - y: 106.4955, - }, - { - l: '9.0', - x: 5.6667, - y: 106.976, - }, - { - l: '9.0', - x: 5.75, - y: 107.4564, - }, - { - l: '9.0', - x: 5.8333, - y: 107.9272, - }, - { - l: '9.0', - x: 5.9167, - y: 108.3901, - }, - { - l: '9.0', - x: 6.0, - y: 108.8623, - }, - { - l: '9.0', - x: 6.0833, - y: 109.325, - }, - { - l: '9.0', - x: 6.1667, - y: 109.7892, - }, - { - l: '9.0', - x: 6.25, - y: 110.2438, - }, - { - l: '9.0', - x: 6.3333, - y: 110.6984, - }, - { - l: '9.0', - x: 6.4167, - y: 111.1624, - }, - { - l: '9.0', - x: 6.5, - y: 111.6168, - }, - { - l: '9.0', - x: 6.5833, - y: 112.0728, - }, - { - l: '9.0', - x: 6.6667, - y: 112.5272, - }, - { - l: '9.0', - x: 6.75, - y: 112.983, - }, - { - l: '9.0', - x: 6.8333, - y: 113.4389, - }, - { - l: '9.0', - x: 6.9167, - y: 113.9135, - }, - { - l: '9.0', - x: 7.0, - y: 114.3802, - }, - { - l: '9.0', - x: 7.0833, - y: 114.8453, - }, - { - l: '9.0', - x: 7.1667, - y: 115.3215, - }, - { - l: '9.0', - x: 7.25, - y: 115.7975, - }, - { - l: '9.0', - x: 7.3333, - y: 116.2846, - }, - { - l: '9.0', - x: 7.4167, - y: 116.7606, - }, - { - l: '9.0', - x: 7.5, - y: 117.2382, - }, - { - l: '9.0', - x: 7.5833, - y: 117.7141, - }, - { - l: '9.0', - x: 7.6667, - y: 118.1806, - }, - { - l: '9.0', - x: 7.75, - y: 118.6564, - }, - { - l: '9.0', - x: 7.8333, - y: 119.1228, - }, - { - l: '9.0', - x: 7.9167, - y: 119.5891, - }, - { - l: '9.0', - x: 8.0, - y: 120.0426, - }, - { - l: '9.0', - x: 8.0833, - y: 120.4882, - }, - { - l: '9.0', - x: 8.1667, - y: 120.9304, - }, - { - l: '9.0', - x: 8.25, - y: 121.3537, - }, - { - l: '9.0', - x: 8.3333, - y: 121.7846, - }, - { - l: '9.0', - x: 8.4167, - y: 122.206, - }, - { - l: '9.0', - x: 8.5, - y: 122.6162, - }, - { - l: '9.0', - x: 8.5833, - y: 123.0245, - }, - { - l: '9.0', - x: 8.6667, - y: 123.4233, - }, - { - l: '9.0', - x: 8.75, - y: 123.8296, - }, - { - l: '9.0', - x: 8.8333, - y: 124.2247, - }, - { - l: '9.0', - x: 8.9167, - y: 124.6272, - }, - { - l: '9.0', - x: 9.0, - y: 125.0297, - }, - { - l: '9.0', - x: 9.0833, - y: 125.4302, - }, - { - l: '9.0', - x: 9.1667, - y: 125.8381, - }, - { - l: '9.0', - x: 9.25, - y: 126.246, - }, - { - l: '9.0', - x: 9.3333, - y: 126.6518, - }, - { - l: '9.0', - x: 9.4167, - y: 127.065, - }, - { - l: '9.0', - x: 9.5, - y: 127.4781, - }, - { - l: '9.0', - x: 9.5833, - y: 127.8891, - }, - { - l: '9.0', - x: 9.6667, - y: 128.3, - }, - { - l: '9.0', - x: 9.75, - y: 128.7106, - }, - { - l: '9.0', - x: 9.8333, - y: 129.1285, - }, - { - l: '9.0', - x: 9.9167, - y: 129.5369, - }, - { - l: '9.0', - x: 10.0, - y: 129.9525, - }, - { - l: '9.0', - x: 10.0833, - y: 130.3586, - }, - { - l: '9.0', - x: 10.1667, - y: 130.7756, - }, - { - l: '9.0', - x: 10.25, - y: 131.1905, - }, - { - l: '9.0', - x: 10.3333, - y: 131.5977, - }, - { - l: '9.0', - x: 10.4167, - y: 132.0141, - }, - { - l: '9.0', - x: 10.5, - y: 132.4227, - }, - { - l: '9.0', - x: 10.5833, - y: 132.8405, - }, - { - l: '9.0', - x: 10.6667, - y: 133.2524, - }, - { - l: '9.0', - x: 10.75, - y: 133.6736, - }, - { - l: '9.0', - x: 10.8333, - y: 134.089, - }, - { - l: '9.0', - x: 10.9167, - y: 134.5062, - }, - { - l: '9.0', - x: 11.0, - y: 134.9251, - }, - { - l: '9.0', - x: 11.0833, - y: 135.3497, - }, - { - l: '9.0', - x: 11.1667, - y: 135.7762, - }, - { - l: '9.0', - x: 11.25, - y: 136.2064, - }, - { - l: '9.0', - x: 11.3333, - y: 136.6404, - }, - { - l: '9.0', - x: 11.4167, - y: 137.0783, - }, - { - l: '9.0', - x: 11.5, - y: 137.5108, - }, - { - l: '9.0', - x: 11.5833, - y: 137.9566, - }, - { - l: '9.0', - x: 11.6667, - y: 138.4083, - }, - { - l: '9.0', - x: 11.75, - y: 138.8621, - }, - { - l: '9.0', - x: 11.8333, - y: 139.3312, - }, - { - l: '9.0', - x: 11.9167, - y: 139.7858, - }, - { - l: '9.0', - x: 12.0, - y: 140.2652, - }, - { - l: '9.0', - x: 12.0833, - y: 140.7468, - }, - { - l: '9.0', - x: 12.1667, - y: 141.2233, - }, - { - l: '9.0', - x: 12.25, - y: 141.704, - }, - { - l: '9.0', - x: 12.3333, - y: 142.1964, - }, - { - l: '9.0', - x: 12.4167, - y: 142.6837, - }, - { - l: '9.0', - x: 12.5, - y: 143.1754, - }, - { - l: '9.0', - x: 12.5833, - y: 143.6601, - }, - { - l: '9.0', - x: 12.6667, - y: 144.1471, - }, - { - l: '9.0', - x: 12.75, - y: 144.6177, - }, - { - l: '9.0', - x: 12.8333, - y: 145.1001, - }, - { - l: '9.0', - x: 12.9167, - y: 145.5755, - }, - { - l: '9.0', - x: 13.0, - y: 146.0419, - }, - { - l: '9.0', - x: 13.0833, - y: 146.5012, - }, - { - l: '9.0', - x: 13.1667, - y: 146.9515, - }, - { - l: '9.0', - x: 13.25, - y: 147.4022, - }, - { - l: '9.0', - x: 13.3333, - y: 147.8343, - }, - { - l: '9.0', - x: 13.4167, - y: 148.2479, - }, - { - l: '9.0', - x: 13.5, - y: 148.6618, - }, - { - l: '9.0', - x: 13.5833, - y: 149.0572, - }, - { - l: '9.0', - x: 13.6667, - y: 149.4507, - }, - { - l: '9.0', - x: 13.75, - y: 149.8351, - }, - { - l: '9.0', - x: 13.8333, - y: 150.1987, - }, - { - l: '9.0', - x: 13.9167, - y: 150.5437, - }, - { - l: '9.0', - x: 14.0, - y: 150.8847, - }, - { - l: '9.0', - x: 14.0833, - y: 151.2069, - }, - { - l: '9.0', - x: 14.1667, - y: 151.5199, - }, - { - l: '9.0', - x: 14.25, - y: 151.8193, - }, - { - l: '9.0', - x: 14.3333, - y: 152.1074, - }, - { - l: '9.0', - x: 14.4167, - y: 152.3744, - }, - { - l: '9.0', - x: 14.5, - y: 152.6301, - }, - { - l: '9.0', - x: 14.5833, - y: 152.8647, - }, - { - l: '9.0', - x: 14.6667, - y: 153.0994, - }, - { - l: '9.0', - x: 14.75, - y: 153.3183, - }, - { - l: '9.0', - x: 14.8333, - y: 153.5184, - }, - { - l: '9.0', - x: 14.9167, - y: 153.6952, - }, - { - l: '9.0', - x: 15.0, - y: 153.8721, - }, - { - l: '9.0', - x: 15.0833, - y: 154.0352, - }, - { - l: '9.0', - x: 15.1667, - y: 154.1772, - }, - { - l: '9.0', - x: 15.25, - y: 154.3171, - }, - { - l: '9.0', - x: 15.3333, - y: 154.4359, - }, - { - l: '9.0', - x: 15.4167, - y: 154.5526, - }, - { - l: '9.0', - x: 15.5, - y: 154.6597, - }, - { - l: '9.0', - x: 15.5833, - y: 154.7436, - }, - { - l: '9.0', - x: 15.6667, - y: 154.837, - }, - { - l: '9.0', - x: 15.75, - y: 154.9092, - }, - { - l: '9.0', - x: 15.8333, - y: 154.9792, - }, - { - l: '9.0', - x: 15.9167, - y: 155.0493, - }, - { - l: '9.0', - x: 16.0, - y: 155.0982, - }, - { - l: '9.0', - x: 16.0833, - y: 155.1544, - }, - { - l: '9.0', - x: 16.1667, - y: 155.1938, - }, - { - l: '9.0', - x: 16.25, - y: 155.2383, - }, - { - l: '9.0', - x: 16.3333, - y: 155.2756, - }, - { - l: '9.0', - x: 16.4167, - y: 155.3106, - }, - { - l: '9.0', - x: 16.5, - y: 155.334, - }, - { - l: '9.0', - x: 16.5833, - y: 155.369, - }, - { - l: '9.0', - x: 16.6667, - y: 155.3807, - }, - { - l: '9.0', - x: 16.75, - y: 155.4041, - }, - { - l: '9.0', - x: 16.8333, - y: 155.4158, - }, - { - l: '9.0', - x: 16.9167, - y: 155.4275, - }, - { - l: '9.0', - x: 17.0, - y: 155.4391, - }, - { - l: '9.0', - x: 17.0833, - y: 155.4413, - }, - { - l: '9.0', - x: 17.1667, - y: 155.4508, - }, - { - l: '9.0', - x: 17.25, - y: 155.4508, - }, - { - l: '9.0', - x: 17.3333, - y: 155.4508, - }, - { - l: '9.0', - x: 17.4167, - y: 155.453, - }, - { - l: '9.0', - x: 17.5, - y: 155.4625, - }, - { - l: '9.0', - x: 17.5833, - y: 155.4647, - }, - { - l: '9.0', - x: 17.6667, - y: 155.4742, - }, - { - l: '9.0', - x: 17.75, - y: 155.4859, - }, - { - l: '9.0', - x: 17.8333, - y: 155.4976, - }, - { - l: '9.0', - x: 17.9167, - y: 155.5093, - }, - { - l: '9.0', - x: 18.0, - y: 155.5115, - }, - { - l: '9.0', - x: 18.0833, - y: 155.521, - }, - { - l: '9.0', - x: 18.1667, - y: 155.5326, - }, - { - l: '9.0', - x: 18.25, - y: 155.5443, - }, - { - l: '9.0', - x: 18.3333, - y: 155.5443, - }, - { - l: '9.0', - x: 18.4167, - y: 155.556, - }, - { - l: '9.0', - x: 18.5, - y: 155.556, - }, - { - l: '9.0', - x: 18.5833, - y: 155.5677, - }, - { - l: '9.0', - x: 18.6667, - y: 155.5677, - }, - { - l: '9.0', - x: 18.75, - y: 155.5677, - }, - { - l: '9.0', - x: 18.8333, - y: 155.5772, - }, - { - l: '9.0', - x: 18.9167, - y: 155.5772, - }, - { - l: '9.0', - x: 19.0, - y: 155.5772, - }, - { - l: '9.0', - x: 19.0833, - y: 155.5772, - }, - { - l: '9.0', - x: 19.1667, - y: 155.5772, - }, - { - l: '9.0', - x: 19.25, - y: 155.5772, - }, - { - l: '9.0', - x: 19.3333, - y: 155.5772, - }, - { - l: '9.0', - x: 19.4167, - y: 155.5772, - }, - { - l: '9.0', - x: 19.5, - y: 155.5794, - }, - { - l: '9.0', - x: 19.5833, - y: 155.5794, - }, - { - l: '9.0', - x: 19.6667, - y: 155.5794, - }, - { - l: '9.0', - x: 19.75, - y: 155.5794, - }, - { - l: '9.0', - x: 19.8333, - y: 155.5889, - }, - { - l: '9.0', - x: 19.9167, - y: 155.5889, - }, - { - l: '9.0', - x: 20.0, - y: 155.5889, - }, - { - l: '9.0', - x: 20.0, - y: 155.5889, - }, + { l: 9.0, x: 4, y: 96.1391 }, + { l: 9.0, x: 4.083, y: 96.6697 }, + { l: 9.0, x: 4.167, y: 97.2147 }, + { l: 9.0, x: 4.25, y: 97.7637 }, + { l: 9.0, x: 4.333, y: 98.3126 }, + { l: 9.0, x: 4.417, y: 98.8869 }, + { l: 9.0, x: 4.5, y: 99.4528 }, + { l: 9.0, x: 4.583, y: 100.0199 }, + { l: 9.0, x: 4.667, y: 100.6031 }, + { l: 9.0, x: 4.75, y: 101.1698 }, + { l: 9.0, x: 4.833, y: 101.7378 }, + { l: 9.0, x: 4.917, y: 102.3123 }, + { l: 9.0, x: 5, y: 102.8611 }, + { l: 9.0, x: 5.083, y: 103.4017 }, + { l: 9.0, x: 5.167, y: 103.9392 }, + { l: 9.0, x: 5.25, y: 104.4607 }, + { l: 9.0, x: 5.333, y: 104.9741 }, + { l: 9.0, x: 5.417, y: 105.4856 }, + { l: 9.0, x: 5.5, y: 105.972 }, + { l: 9.0, x: 5.583, y: 106.4584 }, + { l: 9.0, x: 5.667, y: 106.9425 }, + { l: 9.0, x: 5.75, y: 107.4208 }, + { l: 9.0, x: 5.833, y: 107.8896 }, + { l: 9.0, x: 5.917, y: 108.356 }, + { l: 9.0, x: 6, y: 108.8261 }, + { l: 9.0, x: 6.083, y: 109.2867 }, + { l: 9.0, x: 6.167, y: 109.7544 }, + { l: 9.0, x: 6.25, y: 110.207 }, + { l: 9.0, x: 6.333, y: 110.6596 }, + { l: 9.0, x: 6.417, y: 111.127 }, + { l: 9.0, x: 6.5, y: 111.5794 }, + { l: 9.0, x: 6.583, y: 112.0334 }, + { l: 9.0, x: 6.667, y: 112.4912 }, + { l: 9.0, x: 6.75, y: 112.945 }, + { l: 9.0, x: 6.833, y: 113.3988 }, + { l: 9.0, x: 6.917, y: 113.877 }, + { l: 9.0, x: 7, y: 114.3417 }, + { l: 9.0, x: 7.083, y: 114.8047 }, + { l: 9.0, x: 7.167, y: 115.2844 }, + { l: 9.0, x: 7.25, y: 115.7584 }, + { l: 9.0, x: 7.333, y: 116.2433 }, + { l: 9.0, x: 7.417, y: 116.723 }, + { l: 9.0, x: 7.5, y: 117.1985 }, + { l: 9.0, x: 7.583, y: 117.6723 }, + { l: 9.0, x: 7.667, y: 118.1424 }, + { l: 9.0, x: 7.75, y: 118.6161 }, + { l: 9.0, x: 7.833, y: 119.0804 }, + { l: 9.0, x: 7.917, y: 119.5503 }, + { l: 9.0, x: 8, y: 120.0017 }, + { l: 9.0, x: 8.083, y: 120.4454 }, + { l: 9.0, x: 8.167, y: 120.8909 }, + { l: 9.0, x: 8.25, y: 121.3122 }, + { l: 9.0, x: 8.333, y: 121.7412 }, + { l: 9.0, x: 8.417, y: 122.1658 }, + { l: 9.0, x: 8.5, y: 122.574 }, + { l: 9.0, x: 8.583, y: 122.9805 }, + { l: 9.0, x: 8.667, y: 123.3823 }, + { l: 9.0, x: 8.75, y: 123.7868 }, + { l: 9.0, x: 8.833, y: 124.18 }, + { l: 9.0, x: 8.917, y: 124.5855 }, + { l: 9.0, x: 9, y: 124.986 }, + { l: 9.0, x: 9.083, y: 125.3847 }, + { l: 9.0, x: 9.167, y: 125.7956 }, + { l: 9.0, x: 9.25, y: 126.2015 }, + { l: 9.0, x: 9.333, y: 126.6054 }, + { l: 9.0, x: 9.417, y: 127.0216 }, + { l: 9.0, x: 9.5, y: 127.4327 }, + { l: 9.0, x: 9.583, y: 127.8417 }, + { l: 9.0, x: 9.667, y: 128.2555 }, + { l: 9.0, x: 9.75, y: 128.6642 }, + { l: 9.0, x: 9.833, y: 129.0801 }, + { l: 9.0, x: 9.917, y: 129.4914 }, + { l: 9.0, x: 10, y: 129.9051 }, + { l: 9.0, x: 10.083, y: 130.3091 }, + { l: 9.0, x: 10.167, y: 130.7291 }, + { l: 9.0, x: 10.25, y: 131.142 }, + { l: 9.0, x: 10.333, y: 131.5472 }, + { l: 9.0, x: 10.417, y: 131.9664 }, + { l: 9.0, x: 10.5, y: 132.3731 }, + { l: 9.0, x: 10.583, y: 132.7888 }, + { l: 9.0, x: 10.667, y: 133.2038 }, + { l: 9.0, x: 10.75, y: 133.623 }, + { l: 9.0, x: 10.833, y: 134.0365 }, + { l: 9.0, x: 10.917, y: 134.4567 }, + { l: 9.0, x: 11, y: 134.8737 }, + { l: 9.0, x: 11.083, y: 135.2963 }, + { l: 9.0, x: 11.167, y: 135.7259 }, + { l: 9.0, x: 11.25, y: 136.1542 }, + { l: 9.0, x: 11.333, y: 136.5863 }, + { l: 9.0, x: 11.417, y: 137.0275 }, + { l: 9.0, x: 11.5, y: 137.4581 }, + { l: 9.0, x: 11.583, y: 137.9019 }, + { l: 9.0, x: 11.667, y: 138.3571 }, + { l: 9.0, x: 11.75, y: 138.809 }, + { l: 9.0, x: 11.833, y: 139.2762 }, + { l: 9.0, x: 11.917, y: 139.7345 }, + { l: 9.0, x: 12, y: 140.212 }, + { l: 9.0, x: 12.083, y: 140.6918 }, + { l: 9.0, x: 12.167, y: 141.1721 }, + { l: 9.0, x: 12.25, y: 141.651 }, + { l: 9.0, x: 12.333, y: 142.1414 }, + { l: 9.0, x: 12.417, y: 142.6328 }, + { l: 9.0, x: 12.5, y: 143.1226 }, + { l: 9.0, x: 12.583, y: 143.6055 }, + { l: 9.0, x: 12.667, y: 144.0965 }, + { l: 9.0, x: 12.75, y: 144.5654 }, + { l: 9.0, x: 12.833, y: 145.046 }, + { l: 9.0, x: 12.917, y: 145.5255 }, + { l: 9.0, x: 13, y: 145.9901 }, + { l: 9.0, x: 13.083, y: 146.4479 }, + { l: 9.0, x: 13.167, y: 146.9021 }, + { l: 9.0, x: 13.25, y: 147.3511 }, + { l: 9.0, x: 13.333, y: 147.7818 }, + { l: 9.0, x: 13.417, y: 148.199 }, + { l: 9.0, x: 13.5, y: 148.6115 }, + { l: 9.0, x: 13.583, y: 149.0056 }, + { l: 9.0, x: 13.667, y: 149.4025 }, + { l: 9.0, x: 13.75, y: 149.7855 }, + { l: 9.0, x: 13.833, y: 150.148 }, + { l: 9.0, x: 13.917, y: 150.496 }, + { l: 9.0, x: 14, y: 150.8358 }, + { l: 9.0, x: 14.083, y: 151.157 }, + { l: 9.0, x: 14.167, y: 151.4727 }, + { l: 9.0, x: 14.25, y: 151.7712 }, + { l: 9.0, x: 14.333, y: 152.0583 }, + { l: 9.0, x: 14.417, y: 152.3278 }, + { l: 9.0, x: 14.5, y: 152.5825 }, + { l: 9.0, x: 14.583, y: 152.8164 }, + { l: 9.0, x: 14.667, y: 153.0532 }, + { l: 9.0, x: 14.75, y: 153.2713 }, + { l: 9.0, x: 14.833, y: 153.4708 }, + { l: 9.0, x: 14.917, y: 153.6492 }, + { l: 9.0, x: 15, y: 153.8255 }, + { l: 9.0, x: 15.083, y: 153.9882 }, + { l: 9.0, x: 15.167, y: 154.1315 }, + { l: 9.0, x: 15.25, y: 154.271 }, + { l: 9.0, x: 15.333, y: 154.3894 }, + { l: 9.0, x: 15.417, y: 154.5071 }, + { l: 9.0, x: 15.5, y: 154.6139 }, + { l: 9.0, x: 15.583, y: 154.6975 }, + { l: 9.0, x: 15.667, y: 154.7916 }, + { l: 9.0, x: 15.75, y: 154.8635 }, + { l: 9.0, x: 15.833, y: 154.9334 }, + { l: 9.0, x: 15.917, y: 155.004 }, + { l: 9.0, x: 16, y: 155.0527 }, + { l: 9.0, x: 16.083, y: 155.1087 }, + { l: 9.0, x: 16.167, y: 155.1486 }, + { l: 9.0, x: 16.25, y: 155.193 }, + { l: 9.0, x: 16.333, y: 155.2301 }, + { l: 9.0, x: 16.417, y: 155.2654 }, + { l: 9.0, x: 16.5, y: 155.2887 }, + { l: 9.0, x: 16.583, y: 155.3237 }, + { l: 9.0, x: 16.667, y: 155.3356 }, + { l: 9.0, x: 16.75, y: 155.3589 }, + { l: 9.0, x: 16.833, y: 155.3705 }, + { l: 9.0, x: 16.917, y: 155.3823 }, + { l: 9.0, x: 17, y: 155.3939 }, + { l: 9.0, x: 17.083, y: 155.3961 }, + { l: 9.0, x: 17.167, y: 155.4057 }, + { l: 9.0, x: 17.25, y: 155.4056 }, + { l: 9.0, x: 17.333, y: 155.4056 }, + { l: 9.0, x: 17.417, y: 155.4079 }, + { l: 9.0, x: 17.5, y: 155.4173 }, + { l: 9.0, x: 17.583, y: 155.4195 }, + { l: 9.0, x: 17.667, y: 155.4291 }, + { l: 9.0, x: 17.75, y: 155.4407 }, + { l: 9.0, x: 17.833, y: 155.4524 }, + { l: 9.0, x: 17.917, y: 155.4641 }, + { l: 9.0, x: 18, y: 155.4663 }, + { l: 9.0, x: 18.083, y: 155.4758 }, + { l: 9.0, x: 18.167, y: 155.4876 }, + { l: 9.0, x: 18.25, y: 155.4992 }, + { l: 9.0, x: 18.333, y: 155.4992 }, + { l: 9.0, x: 18.417, y: 155.5109 }, + { l: 9.0, x: 18.5, y: 155.5109 }, + { l: 9.0, x: 18.583, y: 155.5226 }, + { l: 9.0, x: 18.667, y: 155.5226 }, + { l: 9.0, x: 18.75, y: 155.5226 }, + { l: 9.0, x: 18.833, y: 155.5321 }, + { l: 9.0, x: 18.917, y: 155.5321 }, + { l: 9.0, x: 19, y: 155.5321 }, + { l: 9.0, x: 19.083, y: 155.5321 }, + { l: 9.0, x: 19.167, y: 155.5321 }, + { l: 9.0, x: 19.25, y: 155.5321 }, + { l: 9.0, x: 19.333, y: 155.5321 }, + { l: 9.0, x: 19.417, y: 155.5321 }, + { l: 9.0, x: 19.5, y: 155.5343 }, + { l: 9.0, x: 19.583, y: 155.5343 }, + { l: 9.0, x: 19.667, y: 155.5343 }, + { l: 9.0, x: 19.75, y: 155.5343 }, + { l: 9.0, x: 19.833, y: 155.5438 }, + { l: 9.0, x: 19.917, y: 155.5438 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 4.0, - y: 98.8546, - }, - { - l: '25.0', - x: 4.0833, - y: 99.4111, - }, - { - l: '25.0', - x: 4.1667, - y: 99.9765, - }, - { - l: '25.0', - x: 4.25, - y: 100.5523, - }, - { - l: '25.0', - x: 4.3333, - y: 101.128, - }, - { - l: '25.0', - x: 4.4167, - y: 101.723, - }, - { - l: '25.0', - x: 4.5, - y: 102.3173, - }, - { - l: '25.0', - x: 4.5833, - y: 102.9121, - }, - { - l: '25.0', - x: 4.6667, - y: 103.5166, - }, - { - l: '25.0', - x: 4.75, - y: 104.1112, - }, - { - l: '25.0', - x: 4.8333, - y: 104.7065, - }, - { - l: '25.0', - x: 4.9167, - y: 105.3016, - }, - { - l: '25.0', - x: 5.0, - y: 105.8772, - }, - { - l: '25.0', - x: 5.0833, - y: 106.4438, - }, - { - l: '25.0', - x: 5.1667, - y: 107.0005, - }, - { - l: '25.0', - x: 5.25, - y: 107.5474, - }, - { - l: '25.0', - x: 5.3333, - y: 108.0853, - }, - { - l: '25.0', - x: 5.4167, - y: 108.6141, - }, - { - l: '25.0', - x: 5.5, - y: 109.1235, - }, - { - l: '25.0', - x: 5.5833, - y: 109.6327, - }, - { - l: '25.0', - x: 5.6667, - y: 110.133, - }, - { - l: '25.0', - x: 5.75, - y: 110.6332, - }, - { - l: '25.0', - x: 5.8333, - y: 111.1236, - }, - { - l: '25.0', - x: 5.9167, - y: 111.605, - }, - { - l: '25.0', - x: 6.0, - y: 112.0961, - }, - { - l: '25.0', - x: 6.0833, - y: 112.5775, - }, - { - l: '25.0', - x: 6.1667, - y: 113.0596, - }, - { - l: '25.0', - x: 6.25, - y: 113.5319, - }, - { - l: '25.0', - x: 6.3333, - y: 114.0042, - }, - { - l: '25.0', - x: 6.4167, - y: 114.4862, - }, - { - l: '25.0', - x: 6.5, - y: 114.9584, - }, - { - l: '25.0', - x: 6.5833, - y: 115.4314, - }, - { - l: '25.0', - x: 6.6667, - y: 115.9036, - }, - { - l: '25.0', - x: 6.75, - y: 116.3765, - }, - { - l: '25.0', - x: 6.8333, - y: 116.8494, - }, - { - l: '25.0', - x: 6.9167, - y: 117.3417, - }, - { - l: '25.0', - x: 7.0, - y: 117.8251, - }, - { - l: '25.0', - x: 7.0833, - y: 118.3077, - }, - { - l: '25.0', - x: 7.1667, - y: 118.8007, - }, - { - l: '25.0', - x: 7.25, - y: 119.2938, - }, - { - l: '25.0', - x: 7.3333, - y: 119.7973, - }, - { - l: '25.0', - x: 7.4167, - y: 120.2903, - }, - { - l: '25.0', - x: 7.5, - y: 120.7841, - }, - { - l: '25.0', - x: 7.5833, - y: 121.2771, - }, - { - l: '25.0', - x: 7.6667, - y: 121.7603, - }, - { - l: '25.0', - x: 7.75, - y: 122.2532, - }, - { - l: '25.0', - x: 7.8333, - y: 122.7364, - }, - { - l: '25.0', - x: 7.9167, - y: 123.2196, - }, - { - l: '25.0', - x: 8.0, - y: 123.6913, - }, - { - l: '25.0', - x: 8.0833, - y: 124.1541, - }, - { - l: '25.0', - x: 8.1667, - y: 124.6152, - }, - { - l: '25.0', - x: 8.25, - y: 125.0569, - }, - { - l: '25.0', - x: 8.3333, - y: 125.5073, - }, - { - l: '25.0', - x: 8.4167, - y: 125.948, - }, - { - l: '25.0', - x: 8.5, - y: 126.3781, - }, - { - l: '25.0', - x: 8.5833, - y: 126.8072, - }, - { - l: '25.0', - x: 8.6667, - y: 127.2266, - }, - { - l: '25.0', - x: 8.75, - y: 127.6548, - }, - { - l: '25.0', - x: 8.8333, - y: 128.0723, - }, - { - l: '25.0', - x: 8.9167, - y: 128.4986, - }, - { - l: '25.0', - x: 9.0, - y: 128.9248, - }, - { - l: '25.0', - x: 9.0833, - y: 129.3501, - }, - { - l: '25.0', - x: 9.1667, - y: 129.7841, - }, - { - l: '25.0', - x: 9.25, - y: 130.218, - }, - { - l: '25.0', - x: 9.3333, - y: 130.6509, - }, - { - l: '25.0', - x: 9.4167, - y: 131.0925, - }, - { - l: '25.0', - x: 9.5, - y: 131.5341, - }, - { - l: '25.0', - x: 9.5833, - y: 131.9746, - }, - { - l: '25.0', - x: 9.6667, - y: 132.415, - }, - { - l: '25.0', - x: 9.75, - y: 132.8553, - }, - { - l: '25.0', - x: 9.8333, - y: 133.3043, - }, - { - l: '25.0', - x: 9.9167, - y: 133.7434, - }, - { - l: '25.0', - x: 10.0, - y: 134.1913, - }, - { - l: '25.0', - x: 10.0833, - y: 134.6293, - }, - { - l: '25.0', - x: 10.1667, - y: 135.0778, - }, - { - l: '25.0', - x: 10.25, - y: 135.5253, - }, - { - l: '25.0', - x: 10.3333, - y: 135.9639, - }, - { - l: '25.0', - x: 10.4167, - y: 136.412, - }, - { - l: '25.0', - x: 10.5, - y: 136.8513, - }, - { - l: '25.0', - x: 10.5833, - y: 137.3002, - }, - { - l: '25.0', - x: 10.6667, - y: 137.7412, - }, - { - l: '25.0', - x: 10.75, - y: 138.1918, - }, - { - l: '25.0', - x: 10.8333, - y: 138.6345, - }, - { - l: '25.0', - x: 10.9167, - y: 139.0781, - }, - { - l: '25.0', - x: 11.0, - y: 139.5226, - }, - { - l: '25.0', - x: 11.0833, - y: 139.9699, - }, - { - l: '25.0', - x: 11.1667, - y: 140.4181, - }, - { - l: '25.0', - x: 11.25, - y: 140.8682, - }, - { - l: '25.0', - x: 11.3333, - y: 141.3202, - }, - { - l: '25.0', - x: 11.4167, - y: 141.7742, - }, - { - l: '25.0', - x: 11.5, - y: 142.2204, - }, - { - l: '25.0', - x: 11.5833, - y: 142.6783, - }, - { - l: '25.0', - x: 11.6667, - y: 143.1391, - }, - { - l: '25.0', - x: 11.75, - y: 143.601, - }, - { - l: '25.0', - x: 11.8333, - y: 144.0756, - }, - { - l: '25.0', - x: 11.9167, - y: 144.5329, - }, - { - l: '25.0', - x: 12.0, - y: 145.0126, - }, - { - l: '25.0', - x: 12.0833, - y: 145.4934, - }, - { - l: '25.0', - x: 12.1667, - y: 145.9667, - }, - { - l: '25.0', - x: 12.25, - y: 146.442, - }, - { - l: '25.0', - x: 12.3333, - y: 146.9282, - }, - { - l: '25.0', - x: 12.4167, - y: 147.4069, - }, - { - l: '25.0', - x: 12.5, - y: 147.8877, - }, - { - l: '25.0', - x: 12.5833, - y: 148.36, - }, - { - l: '25.0', - x: 12.6667, - y: 148.8335, - }, - { - l: '25.0', - x: 12.75, - y: 149.2889, - }, - { - l: '25.0', - x: 12.8333, - y: 149.7551, - }, - { - l: '25.0', - x: 12.9167, - y: 150.2128, - }, - { - l: '25.0', - x: 13.0, - y: 150.6609, - }, - { - l: '25.0', - x: 13.0833, - y: 151.1006, - }, - { - l: '25.0', - x: 13.1667, - y: 151.5308, - }, - { - l: '25.0', - x: 13.25, - y: 151.9611, - }, - { - l: '25.0', - x: 13.3333, - y: 152.3722, - }, - { - l: '25.0', - x: 13.4167, - y: 152.764, - }, - { - l: '25.0', - x: 13.5, - y: 153.1559, - }, - { - l: '25.0', - x: 13.5833, - y: 153.5286, - }, - { - l: '25.0', - x: 13.6667, - y: 153.9004, - }, - { - l: '25.0', - x: 13.75, - y: 154.2625, - }, - { - l: '25.0', - x: 13.8333, - y: 154.6044, - }, - { - l: '25.0', - x: 13.9167, - y: 154.9269, - }, - { - l: '25.0', - x: 14.0, - y: 155.2473, - }, - { - l: '25.0', - x: 14.0833, - y: 155.5485, - }, - { - l: '25.0', - x: 14.1667, - y: 155.84, - }, - { - l: '25.0', - x: 14.25, - y: 156.1197, - }, - { - l: '25.0', - x: 14.3333, - y: 156.3887, - }, - { - l: '25.0', - x: 14.4167, - y: 156.6372, - }, - { - l: '25.0', - x: 14.5, - y: 156.875, - }, - { - l: '25.0', - x: 14.5833, - y: 157.0923, - }, - { - l: '25.0', - x: 14.6667, - y: 157.3097, - }, - { - l: '25.0', - x: 14.75, - y: 157.5142, - }, - { - l: '25.0', - x: 14.8333, - y: 157.6992, - }, - { - l: '25.0', - x: 14.9167, - y: 157.8626, - }, - { - l: '25.0', - x: 15.0, - y: 158.026, - }, - { - l: '25.0', - x: 15.0833, - y: 158.1776, - }, - { - l: '25.0', - x: 15.1667, - y: 158.3086, - }, - { - l: '25.0', - x: 15.25, - y: 158.4386, - }, - { - l: '25.0', - x: 15.3333, - y: 158.548, - }, - { - l: '25.0', - x: 15.4167, - y: 158.6563, - }, - { - l: '25.0', - x: 15.5, - y: 158.7549, - }, - { - l: '25.0', - x: 15.5833, - y: 158.8318, - }, - { - l: '25.0', - x: 15.6667, - y: 158.9185, - }, - { - l: '25.0', - x: 15.75, - y: 158.9846, - }, - { - l: '25.0', - x: 15.8333, - y: 159.0496, - }, - { - l: '25.0', - x: 15.9167, - y: 159.1146, - }, - { - l: '25.0', - x: 16.0, - y: 159.1591, - }, - { - l: '25.0', - x: 16.0833, - y: 159.2122, - }, - { - l: '25.0', - x: 16.1667, - y: 159.2469, - }, - { - l: '25.0', - x: 16.25, - y: 159.2892, - }, - { - l: '25.0', - x: 16.3333, - y: 159.3228, - }, - { - l: '25.0', - x: 16.4167, - y: 159.3553, - }, - { - l: '25.0', - x: 16.5, - y: 159.377, - }, - { - l: '25.0', - x: 16.5833, - y: 159.4095, - }, - { - l: '25.0', - x: 16.6667, - y: 159.4204, - }, - { - l: '25.0', - x: 16.75, - y: 159.442, - }, - { - l: '25.0', - x: 16.8333, - y: 159.4529, - }, - { - l: '25.0', - x: 16.9167, - y: 159.4637, - }, - { - l: '25.0', - x: 17.0, - y: 159.4746, - }, - { - l: '25.0', - x: 17.0833, - y: 159.4757, - }, - { - l: '25.0', - x: 17.1667, - y: 159.4854, - }, - { - l: '25.0', - x: 17.25, - y: 159.4854, - }, - { - l: '25.0', - x: 17.3333, - y: 159.4854, - }, - { - l: '25.0', - x: 17.4167, - y: 159.4865, - }, - { - l: '25.0', - x: 17.5, - y: 159.4963, - }, - { - l: '25.0', - x: 17.5833, - y: 159.4974, - }, - { - l: '25.0', - x: 17.6667, - y: 159.5071, - }, - { - l: '25.0', - x: 17.75, - y: 159.5179, - }, - { - l: '25.0', - x: 17.8333, - y: 159.5288, - }, - { - l: '25.0', - x: 17.9167, - y: 159.5396, - }, - { - l: '25.0', - x: 18.0, - y: 159.5407, - }, - { - l: '25.0', - x: 18.0833, - y: 159.5505, - }, - { - l: '25.0', - x: 18.1667, - y: 159.5613, - }, - { - l: '25.0', - x: 18.25, - y: 159.5722, - }, - { - l: '25.0', - x: 18.3333, - y: 159.5722, - }, - { - l: '25.0', - x: 18.4167, - y: 159.583, - }, - { - l: '25.0', - x: 18.5, - y: 159.583, - }, - { - l: '25.0', - x: 18.5833, - y: 159.5939, - }, - { - l: '25.0', - x: 18.6667, - y: 159.5939, - }, - { - l: '25.0', - x: 18.75, - y: 159.5939, - }, - { - l: '25.0', - x: 18.8333, - y: 159.6036, - }, - { - l: '25.0', - x: 18.9167, - y: 159.6036, - }, - { - l: '25.0', - x: 19.0, - y: 159.6036, - }, - { - l: '25.0', - x: 19.0833, - y: 159.6036, - }, - { - l: '25.0', - x: 19.1667, - y: 159.6036, - }, - { - l: '25.0', - x: 19.25, - y: 159.6036, - }, - { - l: '25.0', - x: 19.3333, - y: 159.6036, - }, - { - l: '25.0', - x: 19.4167, - y: 159.6036, - }, - { - l: '25.0', - x: 19.5, - y: 159.6047, - }, - { - l: '25.0', - x: 19.5833, - y: 159.6047, - }, - { - l: '25.0', - x: 19.6667, - y: 159.6047, - }, - { - l: '25.0', - x: 19.75, - y: 159.6047, - }, - { - l: '25.0', - x: 19.8333, - y: 159.6145, - }, - { - l: '25.0', - x: 19.9167, - y: 159.6145, - }, - { - l: '25.0', - x: 20.0, - y: 159.6145, - }, - { - l: '25.0', - x: 20.0, - y: 159.6145, - }, + { l: 25.0, x: 4, y: 98.8231 }, + { l: 25.0, x: 4.083, y: 99.377 }, + { l: 25.0, x: 4.167, y: 99.9467 }, + { l: 25.0, x: 4.25, y: 100.5199 }, + { l: 25.0, x: 4.333, y: 101.093 }, + { l: 25.0, x: 4.417, y: 101.6924 }, + { l: 25.0, x: 4.5, y: 102.284 }, + { l: 25.0, x: 4.583, y: 102.8761 }, + { l: 25.0, x: 4.667, y: 103.4851 }, + { l: 25.0, x: 4.75, y: 104.077 }, + { l: 25.0, x: 4.833, y: 104.6696 }, + { l: 25.0, x: 4.917, y: 105.2692 }, + { l: 25.0, x: 5, y: 105.8422 }, + { l: 25.0, x: 5.083, y: 106.4062 }, + { l: 25.0, x: 5.167, y: 106.9671 }, + { l: 25.0, x: 5.25, y: 107.5116 }, + { l: 25.0, x: 5.333, y: 108.0471 }, + { l: 25.0, x: 5.417, y: 108.5798 }, + { l: 25.0, x: 5.5, y: 109.0869 }, + { l: 25.0, x: 5.583, y: 109.5939 }, + { l: 25.0, x: 5.667, y: 110.0979 }, + { l: 25.0, x: 5.75, y: 110.5959 }, + { l: 25.0, x: 5.833, y: 111.0841 }, + { l: 25.0, x: 5.917, y: 111.5692 }, + { l: 25.0, x: 6, y: 112.0581 }, + { l: 25.0, x: 6.083, y: 112.5374 }, + { l: 25.0, x: 6.167, y: 113.023 }, + { l: 25.0, x: 6.25, y: 113.4933 }, + { l: 25.0, x: 6.333, y: 113.9635 }, + { l: 25.0, x: 6.417, y: 114.449 }, + { l: 25.0, x: 6.5, y: 114.9192 }, + { l: 25.0, x: 6.583, y: 115.3901 }, + { l: 25.0, x: 6.667, y: 115.8658 }, + { l: 25.0, x: 6.75, y: 116.3366 }, + { l: 25.0, x: 6.833, y: 116.8074 }, + { l: 25.0, x: 6.917, y: 117.3034 }, + { l: 25.0, x: 7, y: 117.7846 }, + { l: 25.0, x: 7.083, y: 118.265 }, + { l: 25.0, x: 7.167, y: 118.7618 }, + { l: 25.0, x: 7.25, y: 119.2527 }, + { l: 25.0, x: 7.333, y: 119.754 }, + { l: 25.0, x: 7.417, y: 120.2508 }, + { l: 25.0, x: 7.5, y: 120.7424 }, + { l: 25.0, x: 7.583, y: 121.2332 }, + { l: 25.0, x: 7.667, y: 121.7202 }, + { l: 25.0, x: 7.75, y: 122.2109 }, + { l: 25.0, x: 7.833, y: 122.692 }, + { l: 25.0, x: 7.917, y: 123.1788 }, + { l: 25.0, x: 8, y: 123.6484 }, + { l: 25.0, x: 8.083, y: 124.1092 }, + { l: 25.0, x: 8.167, y: 124.5737 }, + { l: 25.0, x: 8.25, y: 125.0134 }, + { l: 25.0, x: 8.333, y: 125.4618 }, + { l: 25.0, x: 8.417, y: 125.9058 }, + { l: 25.0, x: 8.5, y: 126.3339 }, + { l: 25.0, x: 8.583, y: 126.7611 }, + { l: 25.0, x: 8.667, y: 127.1837 }, + { l: 25.0, x: 8.75, y: 127.6099 }, + { l: 25.0, x: 8.833, y: 128.0254 }, + { l: 25.0, x: 8.917, y: 128.4548 }, + { l: 25.0, x: 9, y: 128.8791 }, + { l: 25.0, x: 9.083, y: 129.3023 }, + { l: 25.0, x: 9.167, y: 129.7394 }, + { l: 25.0, x: 9.25, y: 130.1713 }, + { l: 25.0, x: 9.333, y: 130.6022 }, + { l: 25.0, x: 9.417, y: 131.047 }, + { l: 25.0, x: 9.5, y: 131.4864 }, + { l: 25.0, x: 9.583, y: 131.9248 }, + { l: 25.0, x: 9.667, y: 132.3684 }, + { l: 25.0, x: 9.75, y: 132.8066 }, + { l: 25.0, x: 9.833, y: 133.2534 }, + { l: 25.0, x: 9.917, y: 133.6958 }, + { l: 25.0, x: 10, y: 134.1415 }, + { l: 25.0, x: 10.083, y: 134.5773 }, + { l: 25.0, x: 10.167, y: 135.029 }, + { l: 25.0, x: 10.25, y: 135.4743 }, + { l: 25.0, x: 10.333, y: 135.9108 }, + { l: 25.0, x: 10.417, y: 136.3621 }, + { l: 25.0, x: 10.5, y: 136.7993 }, + { l: 25.0, x: 10.583, y: 137.246 }, + { l: 25.0, x: 10.667, y: 137.6903 }, + { l: 25.0, x: 10.75, y: 138.1387 }, + { l: 25.0, x: 10.833, y: 138.5793 }, + { l: 25.0, x: 10.917, y: 139.0262 }, + { l: 25.0, x: 11, y: 139.4686 }, + { l: 25.0, x: 11.083, y: 139.9138 }, + { l: 25.0, x: 11.167, y: 140.3653 }, + { l: 25.0, x: 11.25, y: 140.8134 }, + { l: 25.0, x: 11.333, y: 141.2634 }, + { l: 25.0, x: 11.417, y: 141.7208 }, + { l: 25.0, x: 11.5, y: 142.1651 }, + { l: 25.0, x: 11.583, y: 142.621 }, + { l: 25.0, x: 11.667, y: 143.0854 }, + { l: 25.0, x: 11.75, y: 143.5453 }, + { l: 25.0, x: 11.833, y: 144.018 }, + { l: 25.0, x: 11.917, y: 144.479 }, + { l: 25.0, x: 12, y: 144.9568 }, + { l: 25.0, x: 12.083, y: 145.4357 }, + { l: 25.0, x: 12.167, y: 145.9128 }, + { l: 25.0, x: 12.25, y: 146.3863 }, + { l: 25.0, x: 12.333, y: 146.8707 }, + { l: 25.0, x: 12.417, y: 147.3533 }, + { l: 25.0, x: 12.5, y: 147.8323 }, + { l: 25.0, x: 12.583, y: 148.3029 }, + { l: 25.0, x: 12.667, y: 148.7803 }, + { l: 25.0, x: 12.75, y: 149.234 }, + { l: 25.0, x: 12.833, y: 149.6985 }, + { l: 25.0, x: 12.917, y: 150.1601 }, + { l: 25.0, x: 13, y: 150.6067 }, + { l: 25.0, x: 13.083, y: 151.0448 }, + { l: 25.0, x: 13.167, y: 151.4787 }, + { l: 25.0, x: 13.25, y: 151.9075 }, + { l: 25.0, x: 13.333, y: 152.3172 }, + { l: 25.0, x: 13.417, y: 152.7125 }, + { l: 25.0, x: 13.5, y: 153.1031 }, + { l: 25.0, x: 13.583, y: 153.4746 }, + { l: 25.0, x: 13.667, y: 153.8496 }, + { l: 25.0, x: 13.75, y: 154.2105 }, + { l: 25.0, x: 13.833, y: 154.5513 }, + { l: 25.0, x: 13.917, y: 154.8766 }, + { l: 25.0, x: 14, y: 155.1961 }, + { l: 25.0, x: 14.083, y: 155.4963 }, + { l: 25.0, x: 14.167, y: 155.7903 }, + { l: 25.0, x: 14.25, y: 156.0691 }, + { l: 25.0, x: 14.333, y: 156.3373 }, + { l: 25.0, x: 14.417, y: 156.5881 }, + { l: 25.0, x: 14.5, y: 156.8251 }, + { l: 25.0, x: 14.583, y: 157.0418 }, + { l: 25.0, x: 14.667, y: 157.2611 }, + { l: 25.0, x: 14.75, y: 157.4649 }, + { l: 25.0, x: 14.833, y: 157.6494 }, + { l: 25.0, x: 14.917, y: 157.8143 }, + { l: 25.0, x: 15, y: 157.9772 }, + { l: 25.0, x: 15.083, y: 158.1283 }, + { l: 25.0, x: 15.167, y: 158.2606 }, + { l: 25.0, x: 15.25, y: 158.3901 }, + { l: 25.0, x: 15.333, y: 158.4992 }, + { l: 25.0, x: 15.417, y: 158.6085 }, + { l: 25.0, x: 15.5, y: 158.7067 }, + { l: 25.0, x: 15.583, y: 158.7835 }, + { l: 25.0, x: 15.667, y: 158.8708 }, + { l: 25.0, x: 15.75, y: 158.9367 }, + { l: 25.0, x: 15.833, y: 159.0015 }, + { l: 25.0, x: 15.917, y: 159.0671 }, + { l: 25.0, x: 16, y: 159.1114 }, + { l: 25.0, x: 16.083, y: 159.1643 }, + { l: 25.0, x: 16.167, y: 159.1994 }, + { l: 25.0, x: 16.25, y: 159.2416 }, + { l: 25.0, x: 16.333, y: 159.2751 }, + { l: 25.0, x: 16.417, y: 159.3079 }, + { l: 25.0, x: 16.5, y: 159.3295 }, + { l: 25.0, x: 16.583, y: 159.3619 }, + { l: 25.0, x: 16.667, y: 159.373 }, + { l: 25.0, x: 16.75, y: 159.3946 }, + { l: 25.0, x: 16.833, y: 159.4054 }, + { l: 25.0, x: 16.917, y: 159.4164 }, + { l: 25.0, x: 17, y: 159.4272 }, + { l: 25.0, x: 17.083, y: 159.4283 }, + { l: 25.0, x: 17.167, y: 159.438 }, + { l: 25.0, x: 17.25, y: 159.438 }, + { l: 25.0, x: 17.333, y: 159.438 }, + { l: 25.0, x: 17.417, y: 159.4391 }, + { l: 25.0, x: 17.5, y: 159.4489 }, + { l: 25.0, x: 17.583, y: 159.45 }, + { l: 25.0, x: 17.667, y: 159.4598 }, + { l: 25.0, x: 17.75, y: 159.4706 }, + { l: 25.0, x: 17.833, y: 159.4814 }, + { l: 25.0, x: 17.917, y: 159.4923 }, + { l: 25.0, x: 18, y: 159.4934 }, + { l: 25.0, x: 18.083, y: 159.5031 }, + { l: 25.0, x: 18.167, y: 159.514 }, + { l: 25.0, x: 18.25, y: 159.5248 }, + { l: 25.0, x: 18.333, y: 159.5248 }, + { l: 25.0, x: 18.417, y: 159.5357 }, + { l: 25.0, x: 18.5, y: 159.5357 }, + { l: 25.0, x: 18.583, y: 159.5465 }, + { l: 25.0, x: 18.667, y: 159.5465 }, + { l: 25.0, x: 18.75, y: 159.5466 }, + { l: 25.0, x: 18.833, y: 159.5563 }, + { l: 25.0, x: 18.917, y: 159.5563 }, + { l: 25.0, x: 19, y: 159.5563 }, + { l: 25.0, x: 19.083, y: 159.5563 }, + { l: 25.0, x: 19.167, y: 159.5563 }, + { l: 25.0, x: 19.25, y: 159.5563 }, + { l: 25.0, x: 19.333, y: 159.5563 }, + { l: 25.0, x: 19.417, y: 159.5563 }, + { l: 25.0, x: 19.5, y: 159.5574 }, + { l: 25.0, x: 19.583, y: 159.5574 }, + { l: 25.0, x: 19.667, y: 159.5574 }, + { l: 25.0, x: 19.75, y: 159.5574 }, + { l: 25.0, x: 19.833, y: 159.5671 }, + { l: 25.0, x: 19.917, y: 159.5672 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 4.0, - y: 101.54, - }, - { - l: '50.0', - x: 4.0833, - y: 102.12, - }, - { - l: '50.0', - x: 4.1667, - y: 102.71, - }, - { - l: '50.0', - x: 4.25, - y: 103.31, - }, - { - l: '50.0', - x: 4.3333, - y: 103.91, - }, - { - l: '50.0', - x: 4.4167, - y: 104.53, - }, - { - l: '50.0', - x: 4.5, - y: 105.15, - }, - { - l: '50.0', - x: 4.5833, - y: 105.77, - }, - { - l: '50.0', - x: 4.6667, - y: 106.4, - }, - { - l: '50.0', - x: 4.75, - y: 107.02, - }, - { - l: '50.0', - x: 4.8333, - y: 107.64, - }, - { - l: '50.0', - x: 4.9167, - y: 108.26, - }, - { - l: '50.0', - x: 5.0, - y: 108.86, - }, - { - l: '50.0', - x: 5.0833, - y: 109.45, - }, - { - l: '50.0', - x: 5.1667, - y: 110.03, - }, - { - l: '50.0', - x: 5.25, - y: 110.6, - }, - { - l: '50.0', - x: 5.3333, - y: 111.16, - }, - { - l: '50.0', - x: 5.4167, - y: 111.71, - }, - { - l: '50.0', - x: 5.5, - y: 112.24, - }, - { - l: '50.0', - x: 5.5833, - y: 112.77, - }, - { - l: '50.0', - x: 5.6667, - y: 113.29, - }, - { - l: '50.0', - x: 5.75, - y: 113.81, - }, - { - l: '50.0', - x: 5.8333, - y: 114.32, - }, - { - l: '50.0', - x: 5.9167, - y: 114.82, - }, - { - l: '50.0', - x: 6.0, - y: 115.33, - }, - { - l: '50.0', - x: 6.0833, - y: 115.83, - }, - { - l: '50.0', - x: 6.1667, - y: 116.33, - }, - { - l: '50.0', - x: 6.25, - y: 116.82, - }, - { - l: '50.0', - x: 6.3333, - y: 117.31, - }, - { - l: '50.0', - x: 6.4167, - y: 117.81, - }, - { - l: '50.0', - x: 6.5, - y: 118.3, - }, - { - l: '50.0', - x: 6.5833, - y: 118.79, - }, - { - l: '50.0', - x: 6.6667, - y: 119.28, - }, - { - l: '50.0', - x: 6.75, - y: 119.77, - }, - { - l: '50.0', - x: 6.8333, - y: 120.26, - }, - { - l: '50.0', - x: 6.9167, - y: 120.77, - }, - { - l: '50.0', - x: 7.0, - y: 121.27, - }, - { - l: '50.0', - x: 7.0833, - y: 121.77, - }, - { - l: '50.0', - x: 7.1667, - y: 122.28, - }, - { - l: '50.0', - x: 7.25, - y: 122.79, - }, - { - l: '50.0', - x: 7.3333, - y: 123.31, - }, - { - l: '50.0', - x: 7.4167, - y: 123.82, - }, - { - l: '50.0', - x: 7.5, - y: 124.33, - }, - { - l: '50.0', - x: 7.5833, - y: 124.84, - }, - { - l: '50.0', - x: 7.6667, - y: 125.34, - }, - { - l: '50.0', - x: 7.75, - y: 125.85, - }, - { - l: '50.0', - x: 7.8333, - y: 126.35, - }, - { - l: '50.0', - x: 7.9167, - y: 126.85, - }, - { - l: '50.0', - x: 8.0, - y: 127.34, - }, - { - l: '50.0', - x: 8.0833, - y: 127.82, - }, - { - l: '50.0', - x: 8.1667, - y: 128.3, - }, - { - l: '50.0', - x: 8.25, - y: 128.76, - }, - { - l: '50.0', - x: 8.3333, - y: 129.23, - }, - { - l: '50.0', - x: 8.4167, - y: 129.69, - }, - { - l: '50.0', - x: 8.5, - y: 130.14, - }, - { - l: '50.0', - x: 8.5833, - y: 130.59, - }, - { - l: '50.0', - x: 8.6667, - y: 131.03, - }, - { - l: '50.0', - x: 8.75, - y: 131.48, - }, - { - l: '50.0', - x: 8.8333, - y: 131.92, - }, - { - l: '50.0', - x: 8.9167, - y: 132.37, - }, - { - l: '50.0', - x: 9.0, - y: 132.82, - }, - { - l: '50.0', - x: 9.0833, - y: 133.27, - }, - { - l: '50.0', - x: 9.1667, - y: 133.73, - }, - { - l: '50.0', - x: 9.25, - y: 134.19, - }, - { - l: '50.0', - x: 9.3333, - y: 134.65, - }, - { - l: '50.0', - x: 9.4167, - y: 135.12, - }, - { - l: '50.0', - x: 9.5, - y: 135.59, - }, - { - l: '50.0', - x: 9.5833, - y: 136.06, - }, - { - l: '50.0', - x: 9.6667, - y: 136.53, - }, - { - l: '50.0', - x: 9.75, - y: 137.0, - }, - { - l: '50.0', - x: 9.8333, - y: 137.48, - }, - { - l: '50.0', - x: 9.9167, - y: 137.95, - }, - { - l: '50.0', - x: 10.0, - y: 138.43, - }, - { - l: '50.0', - x: 10.0833, - y: 138.9, - }, - { - l: '50.0', - x: 10.1667, - y: 139.38, - }, - { - l: '50.0', - x: 10.25, - y: 139.86, - }, - { - l: '50.0', - x: 10.3333, - y: 140.33, - }, - { - l: '50.0', - x: 10.4167, - y: 140.81, - }, - { - l: '50.0', - x: 10.5, - y: 141.28, - }, - { - l: '50.0', - x: 10.5833, - y: 141.76, - }, - { - l: '50.0', - x: 10.6667, - y: 142.23, - }, - { - l: '50.0', - x: 10.75, - y: 142.71, - }, - { - l: '50.0', - x: 10.8333, - y: 143.18, - }, - { - l: '50.0', - x: 10.9167, - y: 143.65, - }, - { - l: '50.0', - x: 11.0, - y: 144.12, - }, - { - l: '50.0', - x: 11.0833, - y: 144.59, - }, - { - l: '50.0', - x: 11.1667, - y: 145.06, - }, - { - l: '50.0', - x: 11.25, - y: 145.53, - }, - { - l: '50.0', - x: 11.3333, - y: 146.0, - }, - { - l: '50.0', - x: 11.4167, - y: 146.47, - }, - { - l: '50.0', - x: 11.5, - y: 146.93, - }, - { - l: '50.0', - x: 11.5833, - y: 147.4, - }, - { - l: '50.0', - x: 11.6667, - y: 147.87, - }, - { - l: '50.0', - x: 11.75, - y: 148.34, - }, - { - l: '50.0', - x: 11.8333, - y: 148.82, - }, - { - l: '50.0', - x: 11.9167, - y: 149.28, - }, - { - l: '50.0', - x: 12.0, - y: 149.76, - }, - { - l: '50.0', - x: 12.0833, - y: 150.24, - }, - { - l: '50.0', - x: 12.1667, - y: 150.71, - }, - { - l: '50.0', - x: 12.25, - y: 151.18, - }, - { - l: '50.0', - x: 12.3333, - y: 151.66, - }, - { - l: '50.0', - x: 12.4167, - y: 152.13, - }, - { - l: '50.0', - x: 12.5, - y: 152.6, - }, - { - l: '50.0', - x: 12.5833, - y: 153.06, - }, - { - l: '50.0', - x: 12.6667, - y: 153.52, - }, - { - l: '50.0', - x: 12.75, - y: 153.96, - }, - { - l: '50.0', - x: 12.8333, - y: 154.41, - }, - { - l: '50.0', - x: 12.9167, - y: 154.85, - }, - { - l: '50.0', - x: 13.0, - y: 155.28, - }, - { - l: '50.0', - x: 13.0833, - y: 155.7, - }, - { - l: '50.0', - x: 13.1667, - y: 156.11, - }, - { - l: '50.0', - x: 13.25, - y: 156.52, - }, - { - l: '50.0', - x: 13.3333, - y: 156.91, - }, - { - l: '50.0', - x: 13.4167, - y: 157.28, - }, - { - l: '50.0', - x: 13.5, - y: 157.65, - }, - { - l: '50.0', - x: 13.5833, - y: 158.0, - }, - { - l: '50.0', - x: 13.6667, - y: 158.35, - }, - { - l: '50.0', - x: 13.75, - y: 158.69, - }, - { - l: '50.0', - x: 13.8333, - y: 159.01, - }, - { - l: '50.0', - x: 13.9167, - y: 159.31, - }, - { - l: '50.0', - x: 14.0, - y: 159.61, - }, - { - l: '50.0', - x: 14.0833, - y: 159.89, - }, - { - l: '50.0', - x: 14.1667, - y: 160.16, - }, - { - l: '50.0', - x: 14.25, - y: 160.42, - }, - { - l: '50.0', - x: 14.3333, - y: 160.67, - }, - { - l: '50.0', - x: 14.4167, - y: 160.9, - }, - { - l: '50.0', - x: 14.5, - y: 161.12, - }, - { - l: '50.0', - x: 14.5833, - y: 161.32, - }, - { - l: '50.0', - x: 14.6667, - y: 161.52, - }, - { - l: '50.0', - x: 14.75, - y: 161.71, - }, - { - l: '50.0', - x: 14.8333, - y: 161.88, - }, - { - l: '50.0', - x: 14.9167, - y: 162.03, - }, - { - l: '50.0', - x: 15.0, - y: 162.18, - }, - { - l: '50.0', - x: 15.0833, - y: 162.32, - }, - { - l: '50.0', - x: 15.1667, - y: 162.44, - }, - { - l: '50.0', - x: 15.25, - y: 162.56, - }, - { - l: '50.0', - x: 15.3333, - y: 162.66, - }, - { - l: '50.0', - x: 15.4167, - y: 162.76, - }, - { - l: '50.0', - x: 15.5, - y: 162.85, - }, - { - l: '50.0', - x: 15.5833, - y: 162.92, - }, - { - l: '50.0', - x: 15.6667, - y: 163.0, - }, - { - l: '50.0', - x: 15.75, - y: 163.06, - }, - { - l: '50.0', - x: 15.8333, - y: 163.12, - }, - { - l: '50.0', - x: 15.9167, - y: 163.18, - }, - { - l: '50.0', - x: 16.0, - y: 163.22, - }, - { - l: '50.0', - x: 16.0833, - y: 163.27, - }, - { - l: '50.0', - x: 16.1667, - y: 163.3, - }, - { - l: '50.0', - x: 16.25, - y: 163.34, - }, - { - l: '50.0', - x: 16.3333, - y: 163.37, - }, - { - l: '50.0', - x: 16.4167, - y: 163.4, - }, - { - l: '50.0', - x: 16.5, - y: 163.42, - }, - { - l: '50.0', - x: 16.5833, - y: 163.45, - }, - { - l: '50.0', - x: 16.6667, - y: 163.46, - }, - { - l: '50.0', - x: 16.75, - y: 163.48, - }, - { - l: '50.0', - x: 16.8333, - y: 163.49, - }, - { - l: '50.0', - x: 16.9167, - y: 163.5, - }, - { - l: '50.0', - x: 17.0, - y: 163.51, - }, - { - l: '50.0', - x: 17.0833, - y: 163.51, - }, - { - l: '50.0', - x: 17.1667, - y: 163.52, - }, - { - l: '50.0', - x: 17.25, - y: 163.52, - }, - { - l: '50.0', - x: 17.3333, - y: 163.52, - }, - { - l: '50.0', - x: 17.4167, - y: 163.52, - }, - { - l: '50.0', - x: 17.5, - y: 163.53, - }, - { - l: '50.0', - x: 17.5833, - y: 163.53, - }, - { - l: '50.0', - x: 17.6667, - y: 163.54, - }, - { - l: '50.0', - x: 17.75, - y: 163.55, - }, - { - l: '50.0', - x: 17.8333, - y: 163.56, - }, - { - l: '50.0', - x: 17.9167, - y: 163.57, - }, - { - l: '50.0', - x: 18.0, - y: 163.57, - }, - { - l: '50.0', - x: 18.0833, - y: 163.58, - }, - { - l: '50.0', - x: 18.1667, - y: 163.59, - }, - { - l: '50.0', - x: 18.25, - y: 163.6, - }, - { - l: '50.0', - x: 18.3333, - y: 163.6, - }, - { - l: '50.0', - x: 18.4167, - y: 163.61, - }, - { - l: '50.0', - x: 18.5, - y: 163.61, - }, - { - l: '50.0', - x: 18.5833, - y: 163.62, - }, - { - l: '50.0', - x: 18.6667, - y: 163.62, - }, - { - l: '50.0', - x: 18.75, - y: 163.62, - }, - { - l: '50.0', - x: 18.8333, - y: 163.63, - }, - { - l: '50.0', - x: 18.9167, - y: 163.63, - }, - { - l: '50.0', - x: 19.0, - y: 163.63, - }, - { - l: '50.0', - x: 19.0833, - y: 163.63, - }, - { - l: '50.0', - x: 19.1667, - y: 163.63, - }, - { - l: '50.0', - x: 19.25, - y: 163.63, - }, - { - l: '50.0', - x: 19.3333, - y: 163.63, - }, - { - l: '50.0', - x: 19.4167, - y: 163.63, - }, - { - l: '50.0', - x: 19.5, - y: 163.63, - }, - { - l: '50.0', - x: 19.5833, - y: 163.63, - }, - { - l: '50.0', - x: 19.6667, - y: 163.63, - }, - { - l: '50.0', - x: 19.75, - y: 163.63, - }, - { - l: '50.0', - x: 19.8333, - y: 163.64, - }, - { - l: '50.0', - x: 19.9167, - y: 163.64, - }, - { - l: '50.0', - x: 20.0, - y: 163.64, - }, - { - l: '50.0', - x: 20.0, - y: 163.64, - }, + { l: 50.0, x: 4, y: 101.54 }, + { l: 50.0, x: 4.083, y: 102.1177 }, + { l: 50.0, x: 4.167, y: 102.7124 }, + { l: 50.0, x: 4.25, y: 103.31 }, + { l: 50.0, x: 4.333, y: 103.9076 }, + { l: 50.0, x: 4.417, y: 104.5325 }, + { l: 50.0, x: 4.5, y: 105.15 }, + { l: 50.0, x: 4.583, y: 105.7675 }, + { l: 50.0, x: 4.667, y: 106.4025 }, + { l: 50.0, x: 4.75, y: 107.02 }, + { l: 50.0, x: 4.833, y: 107.6375 }, + { l: 50.0, x: 4.917, y: 108.2624 }, + { l: 50.0, x: 5, y: 108.86 }, + { l: 50.0, x: 5.083, y: 109.4477 }, + { l: 50.0, x: 5.167, y: 110.0323 }, + { l: 50.0, x: 5.25, y: 110.6 }, + { l: 50.0, x: 5.333, y: 111.1578 }, + { l: 50.0, x: 5.417, y: 111.7121 }, + { l: 50.0, x: 5.5, y: 112.24 }, + { l: 50.0, x: 5.583, y: 112.7679 }, + { l: 50.0, x: 5.667, y: 113.2921 }, + { l: 50.0, x: 5.75, y: 113.81 }, + { l: 50.0, x: 5.833, y: 114.318 }, + { l: 50.0, x: 5.917, y: 114.822 }, + { l: 50.0, x: 6, y: 115.33 }, + { l: 50.0, x: 6.083, y: 115.828 }, + { l: 50.0, x: 6.167, y: 116.332 }, + { l: 50.0, x: 6.25, y: 116.82 }, + { l: 50.0, x: 6.333, y: 117.308 }, + { l: 50.0, x: 6.417, y: 117.812 }, + { l: 50.0, x: 6.5, y: 118.3 }, + { l: 50.0, x: 6.583, y: 118.788 }, + { l: 50.0, x: 6.667, y: 119.282 }, + { l: 50.0, x: 6.75, y: 119.77 }, + { l: 50.0, x: 6.833, y: 120.258 }, + { l: 50.0, x: 6.917, y: 120.772 }, + { l: 50.0, x: 7, y: 121.27 }, + { l: 50.0, x: 7.083, y: 121.768 }, + { l: 50.0, x: 7.167, y: 122.282 }, + { l: 50.0, x: 7.25, y: 122.79 }, + { l: 50.0, x: 7.333, y: 123.3079 }, + { l: 50.0, x: 7.417, y: 123.822 }, + { l: 50.0, x: 7.5, y: 124.33 }, + { l: 50.0, x: 7.583, y: 124.838 }, + { l: 50.0, x: 7.667, y: 125.342 }, + { l: 50.0, x: 7.75, y: 125.85 }, + { l: 50.0, x: 7.833, y: 126.348 }, + { l: 50.0, x: 7.917, y: 126.852 }, + { l: 50.0, x: 8, y: 127.34 }, + { l: 50.0, x: 8.083, y: 127.8181 }, + { l: 50.0, x: 8.167, y: 128.3019 }, + { l: 50.0, x: 8.25, y: 128.76 }, + { l: 50.0, x: 8.333, y: 129.2281 }, + { l: 50.0, x: 8.417, y: 129.6918 }, + { l: 50.0, x: 8.5, y: 130.14 }, + { l: 50.0, x: 8.583, y: 130.5882 }, + { l: 50.0, x: 8.667, y: 131.0318 }, + { l: 50.0, x: 8.75, y: 131.48 }, + { l: 50.0, x: 8.833, y: 131.9182 }, + { l: 50.0, x: 8.917, y: 132.3718 }, + { l: 50.0, x: 9, y: 132.82 }, + { l: 50.0, x: 9.083, y: 133.2682 }, + { l: 50.0, x: 9.167, y: 133.7318 }, + { l: 50.0, x: 9.25, y: 134.19 }, + { l: 50.0, x: 9.333, y: 134.6481 }, + { l: 50.0, x: 9.417, y: 135.1219 }, + { l: 50.0, x: 9.5, y: 135.59 }, + { l: 50.0, x: 9.583, y: 136.0581 }, + { l: 50.0, x: 9.667, y: 136.5319 }, + { l: 50.0, x: 9.75, y: 137.0 }, + { l: 50.0, x: 9.833, y: 137.4781 }, + { l: 50.0, x: 9.917, y: 137.9519 }, + { l: 50.0, x: 10, y: 138.43 }, + { l: 50.0, x: 10.083, y: 138.8981 }, + { l: 50.0, x: 10.167, y: 139.3819 }, + { l: 50.0, x: 10.25, y: 139.86 }, + { l: 50.0, x: 10.333, y: 140.3281 }, + { l: 50.0, x: 10.417, y: 140.8119 }, + { l: 50.0, x: 10.5, y: 141.28 }, + { l: 50.0, x: 10.583, y: 141.7581 }, + { l: 50.0, x: 10.667, y: 142.2319 }, + { l: 50.0, x: 10.75, y: 142.71 }, + { l: 50.0, x: 10.833, y: 143.1781 }, + { l: 50.0, x: 10.917, y: 143.6519 }, + { l: 50.0, x: 11, y: 144.12 }, + { l: 50.0, x: 11.083, y: 144.5881 }, + { l: 50.0, x: 11.167, y: 145.0619 }, + { l: 50.0, x: 11.25, y: 145.53 }, + { l: 50.0, x: 11.333, y: 145.9981 }, + { l: 50.0, x: 11.417, y: 146.4718 }, + { l: 50.0, x: 11.5, y: 146.93 }, + { l: 50.0, x: 11.583, y: 147.3981 }, + { l: 50.0, x: 11.667, y: 147.8719 }, + { l: 50.0, x: 11.75, y: 148.34 }, + { l: 50.0, x: 11.833, y: 148.8181 }, + { l: 50.0, x: 11.917, y: 149.2819 }, + { l: 50.0, x: 12, y: 149.76 }, + { l: 50.0, x: 12.083, y: 150.2381 }, + { l: 50.0, x: 12.167, y: 150.7119 }, + { l: 50.0, x: 12.25, y: 151.18 }, + { l: 50.0, x: 12.333, y: 151.6581 }, + { l: 50.0, x: 12.417, y: 152.1319 }, + { l: 50.0, x: 12.5, y: 152.6 }, + { l: 50.0, x: 12.583, y: 153.0582 }, + { l: 50.0, x: 12.667, y: 153.5218 }, + { l: 50.0, x: 12.75, y: 153.96 }, + { l: 50.0, x: 12.833, y: 154.4082 }, + { l: 50.0, x: 12.917, y: 154.8517 }, + { l: 50.0, x: 13, y: 155.28 }, + { l: 50.0, x: 13.083, y: 155.6983 }, + { l: 50.0, x: 13.167, y: 156.1117 }, + { l: 50.0, x: 13.25, y: 156.52 }, + { l: 50.0, x: 13.333, y: 156.9085 }, + { l: 50.0, x: 13.417, y: 157.2815 }, + { l: 50.0, x: 13.5, y: 157.65 }, + { l: 50.0, x: 13.583, y: 157.9986 }, + { l: 50.0, x: 13.667, y: 158.3514 }, + { l: 50.0, x: 13.75, y: 158.69 }, + { l: 50.0, x: 13.833, y: 159.0088 }, + { l: 50.0, x: 13.917, y: 159.3112 }, + { l: 50.0, x: 14, y: 159.61 }, + { l: 50.0, x: 14.083, y: 159.8889 }, + { l: 50.0, x: 14.167, y: 160.1611 }, + { l: 50.0, x: 14.25, y: 160.42 }, + { l: 50.0, x: 14.333, y: 160.669 }, + { l: 50.0, x: 14.417, y: 160.9009 }, + { l: 50.0, x: 14.5, y: 161.12 }, + { l: 50.0, x: 14.583, y: 161.3192 }, + { l: 50.0, x: 14.667, y: 161.5208 }, + { l: 50.0, x: 14.75, y: 161.71 }, + { l: 50.0, x: 14.833, y: 161.8794 }, + { l: 50.0, x: 14.917, y: 162.0306 }, + { l: 50.0, x: 15, y: 162.18 }, + { l: 50.0, x: 15.083, y: 162.3195 }, + { l: 50.0, x: 15.167, y: 162.4405 }, + { l: 50.0, x: 15.25, y: 162.56 }, + { l: 50.0, x: 15.333, y: 162.6596 }, + { l: 50.0, x: 15.417, y: 162.7604 }, + { l: 50.0, x: 15.5, y: 162.85 }, + { l: 50.0, x: 15.583, y: 162.9197 }, + { l: 50.0, x: 15.667, y: 163.0003 }, + { l: 50.0, x: 15.75, y: 163.06 }, + { l: 50.0, x: 15.833, y: 163.1198 }, + { l: 50.0, x: 15.917, y: 163.1802 }, + { l: 50.0, x: 16, y: 163.22 }, + { l: 50.0, x: 16.083, y: 163.2698 }, + { l: 50.0, x: 16.167, y: 163.3002 }, + { l: 50.0, x: 16.25, y: 163.34 }, + { l: 50.0, x: 16.333, y: 163.3699 }, + { l: 50.0, x: 16.417, y: 163.4001 }, + { l: 50.0, x: 16.5, y: 163.42 }, + { l: 50.0, x: 16.583, y: 163.4499 }, + { l: 50.0, x: 16.667, y: 163.4601 }, + { l: 50.0, x: 16.75, y: 163.48 }, + { l: 50.0, x: 16.833, y: 163.49 }, + { l: 50.0, x: 16.917, y: 163.5 }, + { l: 50.0, x: 17, y: 163.51 }, + { l: 50.0, x: 17.083, y: 163.51 }, + { l: 50.0, x: 17.167, y: 163.52 }, + { l: 50.0, x: 17.25, y: 163.52 }, + { l: 50.0, x: 17.333, y: 163.52 }, + { l: 50.0, x: 17.417, y: 163.52 }, + { l: 50.0, x: 17.5, y: 163.53 }, + { l: 50.0, x: 17.583, y: 163.53 }, + { l: 50.0, x: 17.667, y: 163.54 }, + { l: 50.0, x: 17.75, y: 163.55 }, + { l: 50.0, x: 17.833, y: 163.56 }, + { l: 50.0, x: 17.917, y: 163.57 }, + { l: 50.0, x: 18, y: 163.57 }, + { l: 50.0, x: 18.083, y: 163.58 }, + { l: 50.0, x: 18.167, y: 163.59 }, + { l: 50.0, x: 18.25, y: 163.6 }, + { l: 50.0, x: 18.333, y: 163.6 }, + { l: 50.0, x: 18.417, y: 163.61 }, + { l: 50.0, x: 18.5, y: 163.61 }, + { l: 50.0, x: 18.583, y: 163.62 }, + { l: 50.0, x: 18.667, y: 163.62 }, + { l: 50.0, x: 18.75, y: 163.62 }, + { l: 50.0, x: 18.833, y: 163.63 }, + { l: 50.0, x: 18.917, y: 163.63 }, + { l: 50.0, x: 19, y: 163.63 }, + { l: 50.0, x: 19.083, y: 163.63 }, + { l: 50.0, x: 19.167, y: 163.63 }, + { l: 50.0, x: 19.25, y: 163.63 }, + { l: 50.0, x: 19.333, y: 163.63 }, + { l: 50.0, x: 19.417, y: 163.63 }, + { l: 50.0, x: 19.5, y: 163.63 }, + { l: 50.0, x: 19.583, y: 163.63 }, + { l: 50.0, x: 19.667, y: 163.63 }, + { l: 50.0, x: 19.75, y: 163.63 }, + { l: 50.0, x: 19.833, y: 163.64 }, + { l: 50.0, x: 19.917, y: 163.64 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 4.0, - y: 104.2254, - }, - { - l: '75.0', - x: 4.0833, - y: 104.8289, - }, - { - l: '75.0', - x: 4.1667, - y: 105.4435, - }, - { - l: '75.0', - x: 4.25, - y: 106.0677, - }, - { - l: '75.0', - x: 4.3333, - y: 106.692, - }, - { - l: '75.0', - x: 4.4167, - y: 107.337, - }, - { - l: '75.0', - x: 4.5, - y: 107.9827, - }, - { - l: '75.0', - x: 4.5833, - y: 108.6279, - }, - { - l: '75.0', - x: 4.6667, - y: 109.2834, - }, - { - l: '75.0', - x: 4.75, - y: 109.9288, - }, - { - l: '75.0', - x: 4.8333, - y: 110.5735, - }, - { - l: '75.0', - x: 4.9167, - y: 111.2184, - }, - { - l: '75.0', - x: 5.0, - y: 111.8428, - }, - { - l: '75.0', - x: 5.0833, - y: 112.4562, - }, - { - l: '75.0', - x: 5.1667, - y: 113.0595, - }, - { - l: '75.0', - x: 5.25, - y: 113.6526, - }, - { - l: '75.0', - x: 5.3333, - y: 114.2347, - }, - { - l: '75.0', - x: 5.4167, - y: 114.8059, - }, - { - l: '75.0', - x: 5.5, - y: 115.3565, - }, - { - l: '75.0', - x: 5.5833, - y: 115.9073, - }, - { - l: '75.0', - x: 5.6667, - y: 116.447, - }, - { - l: '75.0', - x: 5.75, - y: 116.9868, - }, - { - l: '75.0', - x: 5.8333, - y: 117.5164, - }, - { - l: '75.0', - x: 5.9167, - y: 118.035, - }, - { - l: '75.0', - x: 6.0, - y: 118.5639, - }, - { - l: '75.0', - x: 6.0833, - y: 119.0825, - }, - { - l: '75.0', - x: 6.1667, - y: 119.6004, - }, - { - l: '75.0', - x: 6.25, - y: 120.1081, - }, - { - l: '75.0', - x: 6.3333, - y: 120.6158, - }, - { - l: '75.0', - x: 6.4167, - y: 121.1338, - }, - { - l: '75.0', - x: 6.5, - y: 121.6416, - }, - { - l: '75.0', - x: 6.5833, - y: 122.1486, - }, - { - l: '75.0', - x: 6.6667, - y: 122.6564, - }, - { - l: '75.0', - x: 6.75, - y: 123.1635, - }, - { - l: '75.0', - x: 6.8333, - y: 123.6706, - }, - { - l: '75.0', - x: 6.9167, - y: 124.1983, - }, - { - l: '75.0', - x: 7.0, - y: 124.7149, - }, - { - l: '75.0', - x: 7.0833, - y: 125.2323, - }, - { - l: '75.0', - x: 7.1667, - y: 125.7593, - }, - { - l: '75.0', - x: 7.25, - y: 126.2862, - }, - { - l: '75.0', - x: 7.3333, - y: 126.8227, - }, - { - l: '75.0', - x: 7.4167, - y: 127.3497, - }, - { - l: '75.0', - x: 7.5, - y: 127.8759, - }, - { - l: '75.0', - x: 7.5833, - y: 128.4029, - }, - { - l: '75.0', - x: 7.6667, - y: 128.9197, - }, - { - l: '75.0', - x: 7.75, - y: 129.4468, - }, - { - l: '75.0', - x: 7.8333, - y: 129.9636, - }, - { - l: '75.0', - x: 7.9167, - y: 130.4804, - }, - { - l: '75.0', - x: 8.0, - y: 130.9887, - }, - { - l: '75.0', - x: 8.0833, - y: 131.4859, - }, - { - l: '75.0', - x: 8.1667, - y: 131.9848, - }, - { - l: '75.0', - x: 8.25, - y: 132.4631, - }, - { - l: '75.0', - x: 8.3333, - y: 132.9527, - }, - { - l: '75.0', - x: 8.4167, - y: 133.432, - }, - { - l: '75.0', - x: 8.5, - y: 133.9019, - }, - { - l: '75.0', - x: 8.5833, - y: 134.3728, - }, - { - l: '75.0', - x: 8.6667, - y: 134.8334, - }, - { - l: '75.0', - x: 8.75, - y: 135.3052, - }, - { - l: '75.0', - x: 8.8333, - y: 135.7677, - }, - { - l: '75.0', - x: 8.9167, - y: 136.2414, - }, - { - l: '75.0', - x: 9.0, - y: 136.7152, - }, - { - l: '75.0', - x: 9.0833, - y: 137.1899, - }, - { - l: '75.0', - x: 9.1667, - y: 137.6759, - }, - { - l: '75.0', - x: 9.25, - y: 138.162, - }, - { - l: '75.0', - x: 9.3333, - y: 138.6491, - }, - { - l: '75.0', - x: 9.4167, - y: 139.1475, - }, - { - l: '75.0', - x: 9.5, - y: 139.6459, - }, - { - l: '75.0', - x: 9.5833, - y: 140.1454, - }, - { - l: '75.0', - x: 9.6667, - y: 140.645, - }, - { - l: '75.0', - x: 9.75, - y: 141.1447, - }, - { - l: '75.0', - x: 9.8333, - y: 141.6557, - }, - { - l: '75.0', - x: 9.9167, - y: 142.1566, - }, - { - l: '75.0', - x: 10.0, - y: 142.6687, - }, - { - l: '75.0', - x: 10.0833, - y: 143.1707, - }, - { - l: '75.0', - x: 10.1667, - y: 143.6822, - }, - { - l: '75.0', - x: 10.25, - y: 144.1947, - }, - { - l: '75.0', - x: 10.3333, - y: 144.6961, - }, - { - l: '75.0', - x: 10.4167, - y: 145.208, - }, - { - l: '75.0', - x: 10.5, - y: 145.7087, - }, - { - l: '75.0', - x: 10.5833, - y: 146.2198, - }, - { - l: '75.0', - x: 10.6667, - y: 146.7188, - }, - { - l: '75.0', - x: 10.75, - y: 147.2282, - }, - { - l: '75.0', - x: 10.8333, - y: 147.7255, - }, - { - l: '75.0', - x: 10.9167, - y: 148.2219, - }, - { - l: '75.0', - x: 11.0, - y: 148.7174, - }, - { - l: '75.0', - x: 11.0833, - y: 149.2101, - }, - { - l: '75.0', - x: 11.1667, - y: 149.7019, - }, - { - l: '75.0', - x: 11.25, - y: 150.1918, - }, - { - l: '75.0', - x: 11.3333, - y: 150.6798, - }, - { - l: '75.0', - x: 11.4167, - y: 151.1658, - }, - { - l: '75.0', - x: 11.5, - y: 151.6396, - }, - { - l: '75.0', - x: 11.5833, - y: 152.1217, - }, - { - l: '75.0', - x: 11.6667, - y: 152.6009, - }, - { - l: '75.0', - x: 11.75, - y: 153.079, - }, - { - l: '75.0', - x: 11.8333, - y: 153.5644, - }, - { - l: '75.0', - x: 11.9167, - y: 154.0271, - }, - { - l: '75.0', - x: 12.0, - y: 154.5074, - }, - { - l: '75.0', - x: 12.0833, - y: 154.9866, - }, - { - l: '75.0', - x: 12.1667, - y: 155.4533, - }, - { - l: '75.0', - x: 12.25, - y: 155.918, - }, - { - l: '75.0', - x: 12.3333, - y: 156.3918, - }, - { - l: '75.0', - x: 12.4167, - y: 156.8531, - }, - { - l: '75.0', - x: 12.5, - y: 157.3123, - }, - { - l: '75.0', - x: 12.5833, - y: 157.76, - }, - { - l: '75.0', - x: 12.6667, - y: 158.2065, - }, - { - l: '75.0', - x: 12.75, - y: 158.6311, - }, - { - l: '75.0', - x: 12.8333, - y: 159.0649, - }, - { - l: '75.0', - x: 12.9167, - y: 159.4872, - }, - { - l: '75.0', - x: 13.0, - y: 159.8991, - }, - { - l: '75.0', - x: 13.0833, - y: 160.2994, - }, - { - l: '75.0', - x: 13.1667, - y: 160.6892, - }, - { - l: '75.0', - x: 13.25, - y: 161.0789, - }, - { - l: '75.0', - x: 13.3333, - y: 161.4478, - }, - { - l: '75.0', - x: 13.4167, - y: 161.796, - }, - { - l: '75.0', - x: 13.5, - y: 162.1441, - }, - { - l: '75.0', - x: 13.5833, - y: 162.4714, - }, - { - l: '75.0', - x: 13.6667, - y: 162.7996, - }, - { - l: '75.0', - x: 13.75, - y: 163.1175, - }, - { - l: '75.0', - x: 13.8333, - y: 163.4156, - }, - { - l: '75.0', - x: 13.9167, - y: 163.6931, - }, - { - l: '75.0', - x: 14.0, - y: 163.9727, - }, - { - l: '75.0', - x: 14.0833, - y: 164.2315, - }, - { - l: '75.0', - x: 14.1667, - y: 164.48, - }, - { - l: '75.0', - x: 14.25, - y: 164.7203, - }, - { - l: '75.0', - x: 14.3333, - y: 164.9513, - }, - { - l: '75.0', - x: 14.4167, - y: 165.1628, - }, - { - l: '75.0', - x: 14.5, - y: 165.365, - }, - { - l: '75.0', - x: 14.5833, - y: 165.5477, - }, - { - l: '75.0', - x: 14.6667, - y: 165.7303, - }, - { - l: '75.0', - x: 14.75, - y: 165.9058, - }, - { - l: '75.0', - x: 14.8333, - y: 166.0608, - }, - { - l: '75.0', - x: 14.9167, - y: 166.1974, - }, - { - l: '75.0', - x: 15.0, - y: 166.334, - }, - { - l: '75.0', - x: 15.0833, - y: 166.4624, - }, - { - l: '75.0', - x: 15.1667, - y: 166.5714, - }, - { - l: '75.0', - x: 15.25, - y: 166.6814, - }, - { - l: '75.0', - x: 15.3333, - y: 166.772, - }, - { - l: '75.0', - x: 15.4167, - y: 166.8637, - }, - { - l: '75.0', - x: 15.5, - y: 166.9451, - }, - { - l: '75.0', - x: 15.5833, - y: 167.0082, - }, - { - l: '75.0', - x: 15.6667, - y: 167.0815, - }, - { - l: '75.0', - x: 15.75, - y: 167.1354, - }, - { - l: '75.0', - x: 15.8333, - y: 167.1904, - }, - { - l: '75.0', - x: 15.9167, - y: 167.2454, - }, - { - l: '75.0', - x: 16.0, - y: 167.2809, - }, - { - l: '75.0', - x: 16.0833, - y: 167.3278, - }, - { - l: '75.0', - x: 16.1667, - y: 167.3531, - }, - { - l: '75.0', - x: 16.25, - y: 167.3908, - }, - { - l: '75.0', - x: 16.3333, - y: 167.4172, - }, - { - l: '75.0', - x: 16.4167, - y: 167.4447, - }, - { - l: '75.0', - x: 16.5, - y: 167.463, - }, - { - l: '75.0', - x: 16.5833, - y: 167.4905, - }, - { - l: '75.0', - x: 16.6667, - y: 167.4996, - }, - { - l: '75.0', - x: 16.75, - y: 167.518, - }, - { - l: '75.0', - x: 16.8333, - y: 167.5271, - }, - { - l: '75.0', - x: 16.9167, - y: 167.5363, - }, - { - l: '75.0', - x: 17.0, - y: 167.5454, - }, - { - l: '75.0', - x: 17.0833, - y: 167.5443, - }, - { - l: '75.0', - x: 17.1667, - y: 167.5546, - }, - { - l: '75.0', - x: 17.25, - y: 167.5546, - }, - { - l: '75.0', - x: 17.3333, - y: 167.5546, - }, - { - l: '75.0', - x: 17.4167, - y: 167.5535, - }, - { - l: '75.0', - x: 17.5, - y: 167.5637, - }, - { - l: '75.0', - x: 17.5833, - y: 167.5626, - }, - { - l: '75.0', - x: 17.6667, - y: 167.5729, - }, - { - l: '75.0', - x: 17.75, - y: 167.5821, - }, - { - l: '75.0', - x: 17.8333, - y: 167.5912, - }, - { - l: '75.0', - x: 17.9167, - y: 167.6004, - }, - { - l: '75.0', - x: 18.0, - y: 167.5993, - }, - { - l: '75.0', - x: 18.0833, - y: 167.6095, - }, - { - l: '75.0', - x: 18.1667, - y: 167.6187, - }, - { - l: '75.0', - x: 18.25, - y: 167.6278, - }, - { - l: '75.0', - x: 18.3333, - y: 167.6278, - }, - { - l: '75.0', - x: 18.4167, - y: 167.637, - }, - { - l: '75.0', - x: 18.5, - y: 167.637, - }, - { - l: '75.0', - x: 18.5833, - y: 167.6461, - }, - { - l: '75.0', - x: 18.6667, - y: 167.6461, - }, - { - l: '75.0', - x: 18.75, - y: 167.6461, - }, - { - l: '75.0', - x: 18.8333, - y: 167.6564, - }, - { - l: '75.0', - x: 18.9167, - y: 167.6564, - }, - { - l: '75.0', - x: 19.0, - y: 167.6564, - }, - { - l: '75.0', - x: 19.0833, - y: 167.6564, - }, - { - l: '75.0', - x: 19.1667, - y: 167.6564, - }, - { - l: '75.0', - x: 19.25, - y: 167.6564, - }, - { - l: '75.0', - x: 19.3333, - y: 167.6564, - }, - { - l: '75.0', - x: 19.4167, - y: 167.6564, - }, - { - l: '75.0', - x: 19.5, - y: 167.6553, - }, - { - l: '75.0', - x: 19.5833, - y: 167.6553, - }, - { - l: '75.0', - x: 19.6667, - y: 167.6553, - }, - { - l: '75.0', - x: 19.75, - y: 167.6553, - }, - { - l: '75.0', - x: 19.8333, - y: 167.6655, - }, - { - l: '75.0', - x: 19.9167, - y: 167.6655, - }, - { - l: '75.0', - x: 20.0, - y: 167.6655, - }, - { - l: '75.0', - x: 20.0, - y: 167.6655, - }, + { l: 75.0, x: 4, y: 104.2569 }, + { l: 75.0, x: 4.083, y: 104.8583 }, + { l: 75.0, x: 4.167, y: 105.4781 }, + { l: 75.0, x: 4.25, y: 106.1001 }, + { l: 75.0, x: 4.333, y: 106.7222 }, + { l: 75.0, x: 4.417, y: 107.3725 }, + { l: 75.0, x: 4.5, y: 108.016 }, + { l: 75.0, x: 4.583, y: 108.6589 }, + { l: 75.0, x: 4.667, y: 109.3199 }, + { l: 75.0, x: 4.75, y: 109.963 }, + { l: 75.0, x: 4.833, y: 110.6054 }, + { l: 75.0, x: 4.917, y: 111.2557 }, + { l: 75.0, x: 5, y: 111.8778 }, + { l: 75.0, x: 5.083, y: 112.4891 }, + { l: 75.0, x: 5.167, y: 113.0975 }, + { l: 75.0, x: 5.25, y: 113.6884 }, + { l: 75.0, x: 5.333, y: 114.2685 }, + { l: 75.0, x: 5.417, y: 114.8445 }, + { l: 75.0, x: 5.5, y: 115.3931 }, + { l: 75.0, x: 5.583, y: 115.9419 }, + { l: 75.0, x: 5.667, y: 116.4863 }, + { l: 75.0, x: 5.75, y: 117.0241 }, + { l: 75.0, x: 5.833, y: 117.5518 }, + { l: 75.0, x: 5.917, y: 118.0748 }, + { l: 75.0, x: 6, y: 118.6019 }, + { l: 75.0, x: 6.083, y: 119.1187 }, + { l: 75.0, x: 6.167, y: 119.6409 }, + { l: 75.0, x: 6.25, y: 120.1467 }, + { l: 75.0, x: 6.333, y: 120.6526 }, + { l: 75.0, x: 6.417, y: 121.1749 }, + { l: 75.0, x: 6.5, y: 121.6808 }, + { l: 75.0, x: 6.583, y: 122.186 }, + { l: 75.0, x: 6.667, y: 122.6981 }, + { l: 75.0, x: 6.75, y: 123.2034 }, + { l: 75.0, x: 6.833, y: 123.7086 }, + { l: 75.0, x: 6.917, y: 124.2406 }, + { l: 75.0, x: 7, y: 124.7554 }, + { l: 75.0, x: 7.083, y: 125.2709 }, + { l: 75.0, x: 7.167, y: 125.8023 }, + { l: 75.0, x: 7.25, y: 126.3273 }, + { l: 75.0, x: 7.333, y: 126.8618 }, + { l: 75.0, x: 7.417, y: 127.3933 }, + { l: 75.0, x: 7.5, y: 127.9176 }, + { l: 75.0, x: 7.583, y: 128.4427 }, + { l: 75.0, x: 7.667, y: 128.9639 }, + { l: 75.0, x: 7.75, y: 129.4891 }, + { l: 75.0, x: 7.833, y: 130.004 }, + { l: 75.0, x: 7.917, y: 130.5252 }, + { l: 75.0, x: 8, y: 131.0316 }, + { l: 75.0, x: 8.083, y: 131.527 }, + { l: 75.0, x: 8.167, y: 132.03 }, + { l: 75.0, x: 8.25, y: 132.5066 }, + { l: 75.0, x: 8.333, y: 132.9945 }, + { l: 75.0, x: 8.417, y: 133.4778 }, + { l: 75.0, x: 8.5, y: 133.9461 }, + { l: 75.0, x: 8.583, y: 134.4153 }, + { l: 75.0, x: 8.667, y: 134.8799 }, + { l: 75.0, x: 8.75, y: 135.3501 }, + { l: 75.0, x: 8.833, y: 135.811 }, + { l: 75.0, x: 8.917, y: 136.2888 }, + { l: 75.0, x: 9, y: 136.7609 }, + { l: 75.0, x: 9.083, y: 137.2341 }, + { l: 75.0, x: 9.167, y: 137.7242 }, + { l: 75.0, x: 9.25, y: 138.2087 }, + { l: 75.0, x: 9.333, y: 138.6941 }, + { l: 75.0, x: 9.417, y: 139.1968 }, + { l: 75.0, x: 9.5, y: 139.6936 }, + { l: 75.0, x: 9.583, y: 140.1914 }, + { l: 75.0, x: 9.667, y: 140.6954 }, + { l: 75.0, x: 9.75, y: 141.1934 }, + { l: 75.0, x: 9.833, y: 141.7028 }, + { l: 75.0, x: 9.917, y: 142.208 }, + { l: 75.0, x: 10, y: 142.7185 }, + { l: 75.0, x: 10.083, y: 143.2189 }, + { l: 75.0, x: 10.167, y: 143.7348 }, + { l: 75.0, x: 10.25, y: 144.2457 }, + { l: 75.0, x: 10.333, y: 144.7454 }, + { l: 75.0, x: 10.417, y: 145.2617 }, + { l: 75.0, x: 10.5, y: 145.7607 }, + { l: 75.0, x: 10.583, y: 146.2701 }, + { l: 75.0, x: 10.667, y: 146.7736 }, + { l: 75.0, x: 10.75, y: 147.2813 }, + { l: 75.0, x: 10.833, y: 147.7769 }, + { l: 75.0, x: 10.917, y: 148.2776 }, + { l: 75.0, x: 11, y: 148.7714 }, + { l: 75.0, x: 11.083, y: 149.2625 }, + { l: 75.0, x: 11.167, y: 149.7584 }, + { l: 75.0, x: 11.25, y: 150.2466 }, + { l: 75.0, x: 11.333, y: 150.7328 }, + { l: 75.0, x: 11.417, y: 151.2229 }, + { l: 75.0, x: 11.5, y: 151.6949 }, + { l: 75.0, x: 11.583, y: 152.1753 }, + { l: 75.0, x: 11.667, y: 152.6584 }, + { l: 75.0, x: 11.75, y: 153.1347 }, + { l: 75.0, x: 11.833, y: 153.6182 }, + { l: 75.0, x: 11.917, y: 154.0848 }, + { l: 75.0, x: 12, y: 154.5632 }, + { l: 75.0, x: 12.083, y: 155.0405 }, + { l: 75.0, x: 12.167, y: 155.5109 }, + { l: 75.0, x: 12.25, y: 155.9737 }, + { l: 75.0, x: 12.333, y: 156.4455 }, + { l: 75.0, x: 12.417, y: 156.9105 }, + { l: 75.0, x: 12.5, y: 157.3677 }, + { l: 75.0, x: 12.583, y: 157.8134 }, + { l: 75.0, x: 12.667, y: 158.2632 }, + { l: 75.0, x: 12.75, y: 158.686 }, + { l: 75.0, x: 12.833, y: 159.1179 }, + { l: 75.0, x: 12.917, y: 159.5434 }, + { l: 75.0, x: 13, y: 159.9533 }, + { l: 75.0, x: 13.083, y: 160.3518 }, + { l: 75.0, x: 13.167, y: 160.7446 }, + { l: 75.0, x: 13.25, y: 161.1325 }, + { l: 75.0, x: 13.333, y: 161.4997 }, + { l: 75.0, x: 13.417, y: 161.8505 }, + { l: 75.0, x: 13.5, y: 162.1969 }, + { l: 75.0, x: 13.583, y: 162.5226 }, + { l: 75.0, x: 13.667, y: 162.8532 }, + { l: 75.0, x: 13.75, y: 163.1695 }, + { l: 75.0, x: 13.833, y: 163.4663 }, + { l: 75.0, x: 13.917, y: 163.7458 }, + { l: 75.0, x: 14, y: 164.0239 }, + { l: 75.0, x: 14.083, y: 164.2816 }, + { l: 75.0, x: 14.167, y: 164.5318 }, + { l: 75.0, x: 14.25, y: 164.7709 }, + { l: 75.0, x: 14.333, y: 165.0007 }, + { l: 75.0, x: 14.417, y: 165.2137 }, + { l: 75.0, x: 14.5, y: 165.4149 }, + { l: 75.0, x: 14.583, y: 165.5966 }, + { l: 75.0, x: 14.667, y: 165.7805 }, + { l: 75.0, x: 14.75, y: 165.9551 }, + { l: 75.0, x: 14.833, y: 166.1094 }, + { l: 75.0, x: 14.917, y: 166.2469 }, + { l: 75.0, x: 15, y: 166.3828 }, + { l: 75.0, x: 15.083, y: 166.5106 }, + { l: 75.0, x: 15.167, y: 166.6204 }, + { l: 75.0, x: 15.25, y: 166.7299 }, + { l: 75.0, x: 15.333, y: 166.82 }, + { l: 75.0, x: 15.417, y: 166.9123 }, + { l: 75.0, x: 15.5, y: 166.9933 }, + { l: 75.0, x: 15.583, y: 167.056 }, + { l: 75.0, x: 15.667, y: 167.1297 }, + { l: 75.0, x: 15.75, y: 167.1833 }, + { l: 75.0, x: 15.833, y: 167.238 }, + { l: 75.0, x: 15.917, y: 167.2933 }, + { l: 75.0, x: 16, y: 167.3286 }, + { l: 75.0, x: 16.083, y: 167.3753 }, + { l: 75.0, x: 16.167, y: 167.4009 }, + { l: 75.0, x: 16.25, y: 167.4384 }, + { l: 75.0, x: 16.333, y: 167.4647 }, + { l: 75.0, x: 16.417, y: 167.4923 }, + { l: 75.0, x: 16.5, y: 167.5105 }, + { l: 75.0, x: 16.583, y: 167.5379 }, + { l: 75.0, x: 16.667, y: 167.5472 }, + { l: 75.0, x: 16.75, y: 167.5654 }, + { l: 75.0, x: 16.833, y: 167.5745 }, + { l: 75.0, x: 16.917, y: 167.5837 }, + { l: 75.0, x: 17, y: 167.5928 }, + { l: 75.0, x: 17.083, y: 167.5917 }, + { l: 75.0, x: 17.167, y: 167.602 }, + { l: 75.0, x: 17.25, y: 167.602 }, + { l: 75.0, x: 17.333, y: 167.602 }, + { l: 75.0, x: 17.417, y: 167.6009 }, + { l: 75.0, x: 17.5, y: 167.6111 }, + { l: 75.0, x: 17.583, y: 167.61 }, + { l: 75.0, x: 17.667, y: 167.6203 }, + { l: 75.0, x: 17.75, y: 167.6294 }, + { l: 75.0, x: 17.833, y: 167.6385 }, + { l: 75.0, x: 17.917, y: 167.6477 }, + { l: 75.0, x: 18, y: 167.6466 }, + { l: 75.0, x: 18.083, y: 167.6568 }, + { l: 75.0, x: 18.167, y: 167.6661 }, + { l: 75.0, x: 18.25, y: 167.6752 }, + { l: 75.0, x: 18.333, y: 167.6752 }, + { l: 75.0, x: 18.417, y: 167.6843 }, + { l: 75.0, x: 18.5, y: 167.6843 }, + { l: 75.0, x: 18.583, y: 167.6934 }, + { l: 75.0, x: 18.667, y: 167.6934 }, + { l: 75.0, x: 18.75, y: 167.6934 }, + { l: 75.0, x: 18.833, y: 167.7037 }, + { l: 75.0, x: 18.917, y: 167.7037 }, + { l: 75.0, x: 19, y: 167.7037 }, + { l: 75.0, x: 19.083, y: 167.7037 }, + { l: 75.0, x: 19.167, y: 167.7037 }, + { l: 75.0, x: 19.25, y: 167.7037 }, + { l: 75.0, x: 19.333, y: 167.7037 }, + { l: 75.0, x: 19.417, y: 167.7037 }, + { l: 75.0, x: 19.5, y: 167.7026 }, + { l: 75.0, x: 19.583, y: 167.7026 }, + { l: 75.0, x: 19.667, y: 167.7026 }, + { l: 75.0, x: 19.75, y: 167.7026 }, + { l: 75.0, x: 19.833, y: 167.7128 }, + { l: 75.0, x: 19.917, y: 167.7128 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 4.0, - y: 106.9108, - }, - { - l: '91.0', - x: 4.0833, - y: 107.5378, - }, - { - l: '91.0', - x: 4.1667, - y: 108.1769, - }, - { - l: '91.0', - x: 4.25, - y: 108.8254, - }, - { - l: '91.0', - x: 4.3333, - y: 109.474, - }, - { - l: '91.0', - x: 4.4167, - y: 110.144, - }, - { - l: '91.0', - x: 4.5, - y: 110.8155, - }, - { - l: '91.0', - x: 4.5833, - y: 111.4858, - }, - { - l: '91.0', - x: 4.6667, - y: 112.1669, - }, - { - l: '91.0', - x: 4.75, - y: 112.8376, - }, - { - l: '91.0', - x: 4.8333, - y: 113.5071, - }, - { - l: '91.0', - x: 4.9167, - y: 114.1768, - }, - { - l: '91.0', - x: 5.0, - y: 114.8255, - }, - { - l: '91.0', - x: 5.0833, - y: 115.4625, - }, - { - l: '91.0', - x: 5.1667, - y: 116.089, - }, - { - l: '91.0', - x: 5.25, - y: 116.7051, - }, - { - l: '91.0', - x: 5.3333, - y: 117.3094, - }, - { - l: '91.0', - x: 5.4167, - y: 117.9017, - }, - { - l: '91.0', - x: 5.5, - y: 118.4731, - }, - { - l: '91.0', - x: 5.5833, - y: 119.0445, - }, - { - l: '91.0', - x: 5.6667, - y: 119.604, - }, - { - l: '91.0', - x: 5.75, - y: 120.1636, - }, - { - l: '91.0', - x: 5.8333, - y: 120.7128, - }, - { - l: '91.0', - x: 5.9167, - y: 121.2499, - }, - { - l: '91.0', - x: 6.0, - y: 121.7977, - }, - { - l: '91.0', - x: 6.0833, - y: 122.335, - }, - { - l: '91.0', - x: 6.1667, - y: 122.8708, - }, - { - l: '91.0', - x: 6.25, - y: 123.3962, - }, - { - l: '91.0', - x: 6.3333, - y: 123.9216, - }, - { - l: '91.0', - x: 6.4167, - y: 124.4576, - }, - { - l: '91.0', - x: 6.5, - y: 124.9832, - }, - { - l: '91.0', - x: 6.5833, - y: 125.5072, - }, - { - l: '91.0', - x: 6.6667, - y: 126.0328, - }, - { - l: '91.0', - x: 6.75, - y: 126.557, - }, - { - l: '91.0', - x: 6.8333, - y: 127.0811, - }, - { - l: '91.0', - x: 6.9167, - y: 127.6265, - }, - { - l: '91.0', - x: 7.0, - y: 128.1598, - }, - { - l: '91.0', - x: 7.0833, - y: 128.6947, - }, - { - l: '91.0', - x: 7.1667, - y: 129.2385, - }, - { - l: '91.0', - x: 7.25, - y: 129.7825, - }, - { - l: '91.0', - x: 7.3333, - y: 130.3354, - }, - { - l: '91.0', - x: 7.4167, - y: 130.8794, - }, - { - l: '91.0', - x: 7.5, - y: 131.4218, - }, - { - l: '91.0', - x: 7.5833, - y: 131.9659, - }, - { - l: '91.0', - x: 7.6667, - y: 132.4994, - }, - { - l: '91.0', - x: 7.75, - y: 133.0436, - }, - { - l: '91.0', - x: 7.8333, - y: 133.5772, - }, - { - l: '91.0', - x: 7.9167, - y: 134.1109, - }, - { - l: '91.0', - x: 8.0, - y: 134.6374, - }, - { - l: '91.0', - x: 8.0833, - y: 135.1518, - }, - { - l: '91.0', - x: 8.1667, - y: 135.6696, - }, - { - l: '91.0', - x: 8.25, - y: 136.1663, - }, - { - l: '91.0', - x: 8.3333, - y: 136.6754, - }, - { - l: '91.0', - x: 8.4167, - y: 137.174, - }, - { - l: '91.0', - x: 8.5, - y: 137.6638, - }, - { - l: '91.0', - x: 8.5833, - y: 138.1555, - }, - { - l: '91.0', - x: 8.6667, - y: 138.6367, - }, - { - l: '91.0', - x: 8.75, - y: 139.1304, - }, - { - l: '91.0', - x: 8.8333, - y: 139.6153, - }, - { - l: '91.0', - x: 8.9167, - y: 140.1128, - }, - { - l: '91.0', - x: 9.0, - y: 140.6103, - }, - { - l: '91.0', - x: 9.0833, - y: 141.1098, - }, - { - l: '91.0', - x: 9.1667, - y: 141.6219, - }, - { - l: '91.0', - x: 9.25, - y: 142.134, - }, - { - l: '91.0', - x: 9.3333, - y: 142.6482, - }, - { - l: '91.0', - x: 9.4167, - y: 143.175, - }, - { - l: '91.0', - x: 9.5, - y: 143.7019, - }, - { - l: '91.0', - x: 9.5833, - y: 144.2309, - }, - { - l: '91.0', - x: 9.6667, - y: 144.76, - }, - { - l: '91.0', - x: 9.75, - y: 145.2894, - }, - { - l: '91.0', - x: 9.8333, - y: 145.8315, - }, - { - l: '91.0', - x: 9.9167, - y: 146.3631, - }, - { - l: '91.0', - x: 10.0, - y: 146.9075, - }, - { - l: '91.0', - x: 10.0833, - y: 147.4414, - }, - { - l: '91.0', - x: 10.1667, - y: 147.9844, - }, - { - l: '91.0', - x: 10.25, - y: 148.5295, - }, - { - l: '91.0', - x: 10.3333, - y: 149.0623, - }, - { - l: '91.0', - x: 10.4167, - y: 149.6059, - }, - { - l: '91.0', - x: 10.5, - y: 150.1373, - }, - { - l: '91.0', - x: 10.5833, - y: 150.6795, - }, - { - l: '91.0', - x: 10.6667, - y: 151.2076, - }, - { - l: '91.0', - x: 10.75, - y: 151.7464, - }, - { - l: '91.0', - x: 10.8333, - y: 152.271, - }, - { - l: '91.0', - x: 10.9167, - y: 152.7938, - }, - { - l: '91.0', - x: 11.0, - y: 153.3149, - }, - { - l: '91.0', - x: 11.0833, - y: 153.8303, - }, - { - l: '91.0', - x: 11.1667, - y: 154.3438, - }, - { - l: '91.0', - x: 11.25, - y: 154.8536, - }, - { - l: '91.0', - x: 11.3333, - y: 155.3596, - }, - { - l: '91.0', - x: 11.4167, - y: 155.8617, - }, - { - l: '91.0', - x: 11.5, - y: 156.3492, - }, - { - l: '91.0', - x: 11.5833, - y: 156.8434, - }, - { - l: '91.0', - x: 11.6667, - y: 157.3317, - }, - { - l: '91.0', - x: 11.75, - y: 157.8179, - }, - { - l: '91.0', - x: 11.8333, - y: 158.3088, - }, - { - l: '91.0', - x: 11.9167, - y: 158.7742, - }, - { - l: '91.0', - x: 12.0, - y: 159.2548, - }, - { - l: '91.0', - x: 12.0833, - y: 159.7332, - }, - { - l: '91.0', - x: 12.1667, - y: 160.1967, - }, - { - l: '91.0', - x: 12.25, - y: 160.656, - }, - { - l: '91.0', - x: 12.3333, - y: 161.1236, - }, - { - l: '91.0', - x: 12.4167, - y: 161.5763, - }, - { - l: '91.0', - x: 12.5, - y: 162.0246, - }, - { - l: '91.0', - x: 12.5833, - y: 162.4599, - }, - { - l: '91.0', - x: 12.6667, - y: 162.8929, - }, - { - l: '91.0', - x: 12.75, - y: 163.3023, - }, - { - l: '91.0', - x: 12.8333, - y: 163.7199, - }, - { - l: '91.0', - x: 12.9167, - y: 164.1245, - }, - { - l: '91.0', - x: 13.0, - y: 164.5181, - }, - { - l: '91.0', - x: 13.0833, - y: 164.8988, - }, - { - l: '91.0', - x: 13.1667, - y: 165.2685, - }, - { - l: '91.0', - x: 13.25, - y: 165.6378, - }, - { - l: '91.0', - x: 13.3333, - y: 165.9857, - }, - { - l: '91.0', - x: 13.4167, - y: 166.3121, - }, - { - l: '91.0', - x: 13.5, - y: 166.6382, - }, - { - l: '91.0', - x: 13.5833, - y: 166.9428, - }, - { - l: '91.0', - x: 13.6667, - y: 167.2493, - }, - { - l: '91.0', - x: 13.75, - y: 167.5449, - }, - { - l: '91.0', - x: 13.8333, - y: 167.8213, - }, - { - l: '91.0', - x: 13.9167, - y: 168.0763, - }, - { - l: '91.0', - x: 14.0, - y: 168.3353, - }, - { - l: '91.0', - x: 14.0833, - y: 168.5731, - }, - { - l: '91.0', - x: 14.1667, - y: 168.8001, - }, - { - l: '91.0', - x: 14.25, - y: 169.0207, - }, - { - l: '91.0', - x: 14.3333, - y: 169.2326, - }, - { - l: '91.0', - x: 14.4167, - y: 169.4256, - }, - { - l: '91.0', - x: 14.5, - y: 169.6099, - }, - { - l: '91.0', - x: 14.5833, - y: 169.7753, - }, - { - l: '91.0', - x: 14.6667, - y: 169.9406, - }, - { - l: '91.0', - x: 14.75, - y: 170.1017, - }, - { - l: '91.0', - x: 14.8333, - y: 170.2416, - }, - { - l: '91.0', - x: 14.9167, - y: 170.3648, - }, - { - l: '91.0', - x: 15.0, - y: 170.4879, - }, - { - l: '91.0', - x: 15.0833, - y: 170.6048, - }, - { - l: '91.0', - x: 15.1667, - y: 170.7028, - }, - { - l: '91.0', - x: 15.25, - y: 170.8029, - }, - { - l: '91.0', - x: 15.3333, - y: 170.8841, - }, - { - l: '91.0', - x: 15.4167, - y: 170.9674, - }, - { - l: '91.0', - x: 15.5, - y: 171.0403, - }, - { - l: '91.0', - x: 15.5833, - y: 171.0964, - }, - { - l: '91.0', - x: 15.6667, - y: 171.163, - }, - { - l: '91.0', - x: 15.75, - y: 171.2108, - }, - { - l: '91.0', - x: 15.8333, - y: 171.2608, - }, - { - l: '91.0', - x: 15.9167, - y: 171.3107, - }, - { - l: '91.0', - x: 16.0, - y: 171.3418, - }, - { - l: '91.0', - x: 16.0833, - y: 171.3856, - }, - { - l: '91.0', - x: 16.1667, - y: 171.4062, - }, - { - l: '91.0', - x: 16.25, - y: 171.4417, - }, - { - l: '91.0', - x: 16.3333, - y: 171.4644, - }, - { - l: '91.0', - x: 16.4167, - y: 171.4894, - }, - { - l: '91.0', - x: 16.5, - y: 171.506, - }, - { - l: '91.0', - x: 16.5833, - y: 171.531, - }, - { - l: '91.0', - x: 16.6667, - y: 171.5393, - }, - { - l: '91.0', - x: 16.75, - y: 171.5559, - }, - { - l: '91.0', - x: 16.8333, - y: 171.5642, - }, - { - l: '91.0', - x: 16.9167, - y: 171.5725, - }, - { - l: '91.0', - x: 17.0, - y: 171.5809, - }, - { - l: '91.0', - x: 17.0833, - y: 171.5787, - }, - { - l: '91.0', - x: 17.1667, - y: 171.5892, - }, - { - l: '91.0', - x: 17.25, - y: 171.5892, - }, - { - l: '91.0', - x: 17.3333, - y: 171.5892, - }, - { - l: '91.0', - x: 17.4167, - y: 171.587, - }, - { - l: '91.0', - x: 17.5, - y: 171.5975, - }, - { - l: '91.0', - x: 17.5833, - y: 171.5953, - }, - { - l: '91.0', - x: 17.6667, - y: 171.6058, - }, - { - l: '91.0', - x: 17.75, - y: 171.6141, - }, - { - l: '91.0', - x: 17.8333, - y: 171.6224, - }, - { - l: '91.0', - x: 17.9167, - y: 171.6307, - }, - { - l: '91.0', - x: 18.0, - y: 171.6285, - }, - { - l: '91.0', - x: 18.0833, - y: 171.639, - }, - { - l: '91.0', - x: 18.1667, - y: 171.6474, - }, - { - l: '91.0', - x: 18.25, - y: 171.6557, - }, - { - l: '91.0', - x: 18.3333, - y: 171.6557, - }, - { - l: '91.0', - x: 18.4167, - y: 171.664, - }, - { - l: '91.0', - x: 18.5, - y: 171.664, - }, - { - l: '91.0', - x: 18.5833, - y: 171.6723, - }, - { - l: '91.0', - x: 18.6667, - y: 171.6723, - }, - { - l: '91.0', - x: 18.75, - y: 171.6723, - }, - { - l: '91.0', - x: 18.8333, - y: 171.6828, - }, - { - l: '91.0', - x: 18.9167, - y: 171.6828, - }, - { - l: '91.0', - x: 19.0, - y: 171.6828, - }, - { - l: '91.0', - x: 19.0833, - y: 171.6828, - }, - { - l: '91.0', - x: 19.1667, - y: 171.6828, - }, - { - l: '91.0', - x: 19.25, - y: 171.6828, - }, - { - l: '91.0', - x: 19.3333, - y: 171.6828, - }, - { - l: '91.0', - x: 19.4167, - y: 171.6828, - }, - { - l: '91.0', - x: 19.5, - y: 171.6806, - }, - { - l: '91.0', - x: 19.5833, - y: 171.6806, - }, - { - l: '91.0', - x: 19.6667, - y: 171.6806, - }, - { - l: '91.0', - x: 19.75, - y: 171.6806, - }, - { - l: '91.0', - x: 19.8333, - y: 171.6911, - }, - { - l: '91.0', - x: 19.9167, - y: 171.6911, - }, - { - l: '91.0', - x: 20.0, - y: 171.6911, - }, - { - l: '91.0', - x: 20.0, - y: 171.6911, - }, + { l: 91.0, x: 4, y: 106.9409 }, + { l: 91.0, x: 4.083, y: 107.5656 }, + { l: 91.0, x: 4.167, y: 108.2101 }, + { l: 91.0, x: 4.25, y: 108.8563 }, + { l: 91.0, x: 4.333, y: 109.5026 }, + { l: 91.0, x: 4.417, y: 110.1781 }, + { l: 91.0, x: 4.5, y: 110.8472 }, + { l: 91.0, x: 4.583, y: 111.5151 }, + { l: 91.0, x: 4.667, y: 112.2019 }, + { l: 91.0, x: 4.75, y: 112.8702 }, + { l: 91.0, x: 4.833, y: 113.5373 }, + { l: 91.0, x: 4.917, y: 114.2125 }, + { l: 91.0, x: 5, y: 114.8589 }, + { l: 91.0, x: 5.083, y: 115.4936 }, + { l: 91.0, x: 5.167, y: 116.1254 }, + { l: 91.0, x: 5.25, y: 116.7393 }, + { l: 91.0, x: 5.333, y: 117.3414 }, + { l: 91.0, x: 5.417, y: 117.9387 }, + { l: 91.0, x: 5.5, y: 118.508 }, + { l: 91.0, x: 5.583, y: 119.0774 }, + { l: 91.0, x: 5.667, y: 119.6416 }, + { l: 91.0, x: 5.75, y: 120.1992 }, + { l: 91.0, x: 5.833, y: 120.7464 }, + { l: 91.0, x: 5.917, y: 121.2881 }, + { l: 91.0, x: 6, y: 121.8339 }, + { l: 91.0, x: 6.083, y: 122.3693 }, + { l: 91.0, x: 6.167, y: 122.9096 }, + { l: 91.0, x: 6.25, y: 123.433 }, + { l: 91.0, x: 6.333, y: 123.9565 }, + { l: 91.0, x: 6.417, y: 124.497 }, + { l: 91.0, x: 6.5, y: 125.0206 }, + { l: 91.0, x: 6.583, y: 125.5427 }, + { l: 91.0, x: 6.667, y: 126.0728 }, + { l: 91.0, x: 6.75, y: 126.595 }, + { l: 91.0, x: 6.833, y: 127.1172 }, + { l: 91.0, x: 6.917, y: 127.6671 }, + { l: 91.0, x: 7, y: 128.1983 }, + { l: 91.0, x: 7.083, y: 128.7313 }, + { l: 91.0, x: 7.167, y: 129.2797 }, + { l: 91.0, x: 7.25, y: 129.8216 }, + { l: 91.0, x: 7.333, y: 130.3725 }, + { l: 91.0, x: 7.417, y: 130.9211 }, + { l: 91.0, x: 7.5, y: 131.4615 }, + { l: 91.0, x: 7.583, y: 132.0036 }, + { l: 91.0, x: 7.667, y: 132.5417 }, + { l: 91.0, x: 7.75, y: 133.0839 }, + { l: 91.0, x: 7.833, y: 133.6156 }, + { l: 91.0, x: 7.917, y: 134.1537 }, + { l: 91.0, x: 8, y: 134.6783 }, + { l: 91.0, x: 8.083, y: 135.1908 }, + { l: 91.0, x: 8.167, y: 135.7128 }, + { l: 91.0, x: 8.25, y: 136.2078 }, + { l: 91.0, x: 8.333, y: 136.715 }, + { l: 91.0, x: 8.417, y: 137.2179 }, + { l: 91.0, x: 8.5, y: 137.706 }, + { l: 91.0, x: 8.583, y: 138.1959 }, + { l: 91.0, x: 8.667, y: 138.6813 }, + { l: 91.0, x: 8.75, y: 139.1732 }, + { l: 91.0, x: 8.833, y: 139.6565 }, + { l: 91.0, x: 8.917, y: 140.1581 }, + { l: 91.0, x: 9, y: 140.654 }, + { l: 91.0, x: 9.083, y: 141.1517 }, + { l: 91.0, x: 9.167, y: 141.6681 }, + { l: 91.0, x: 9.25, y: 142.1785 }, + { l: 91.0, x: 9.333, y: 142.6909 }, + { l: 91.0, x: 9.417, y: 143.2222 }, + { l: 91.0, x: 9.5, y: 143.7473 }, + { l: 91.0, x: 9.583, y: 144.2745 }, + { l: 91.0, x: 9.667, y: 144.8082 }, + { l: 91.0, x: 9.75, y: 145.3358 }, + { l: 91.0, x: 9.833, y: 145.8761 }, + { l: 91.0, x: 9.917, y: 146.4124 }, + { l: 91.0, x: 10, y: 146.9549 }, + { l: 91.0, x: 10.083, y: 147.4871 }, + { l: 91.0, x: 10.167, y: 148.0348 }, + { l: 91.0, x: 10.25, y: 148.578 }, + { l: 91.0, x: 10.333, y: 149.109 }, + { l: 91.0, x: 10.417, y: 149.6573 }, + { l: 91.0, x: 10.5, y: 150.1869 }, + { l: 91.0, x: 10.583, y: 150.7273 }, + { l: 91.0, x: 10.667, y: 151.26 }, + { l: 91.0, x: 10.75, y: 151.797 }, + { l: 91.0, x: 10.833, y: 152.3198 }, + { l: 91.0, x: 10.917, y: 152.8471 }, + { l: 91.0, x: 11, y: 153.3663 }, + { l: 91.0, x: 11.083, y: 153.88 }, + { l: 91.0, x: 11.167, y: 154.3979 }, + { l: 91.0, x: 11.25, y: 154.9058 }, + { l: 91.0, x: 11.333, y: 155.41 }, + { l: 91.0, x: 11.417, y: 155.9162 }, + { l: 91.0, x: 11.5, y: 156.4019 }, + { l: 91.0, x: 11.583, y: 156.8943 }, + { l: 91.0, x: 11.667, y: 157.3866 }, + { l: 91.0, x: 11.75, y: 157.871 }, + { l: 91.0, x: 11.833, y: 158.36 }, + { l: 91.0, x: 11.917, y: 158.8293 }, + { l: 91.0, x: 12, y: 159.308 }, + { l: 91.0, x: 12.083, y: 159.7844 }, + { l: 91.0, x: 12.167, y: 160.2517 }, + { l: 91.0, x: 12.25, y: 160.709 }, + { l: 91.0, x: 12.333, y: 161.1747 }, + { l: 91.0, x: 12.417, y: 161.631 }, + { l: 91.0, x: 12.5, y: 162.0774 }, + { l: 91.0, x: 12.583, y: 162.5108 }, + { l: 91.0, x: 12.667, y: 162.9471 }, + { l: 91.0, x: 12.75, y: 163.3546 }, + { l: 91.0, x: 12.833, y: 163.7704 }, + { l: 91.0, x: 12.917, y: 164.178 }, + { l: 91.0, x: 13, y: 164.5699 }, + { l: 91.0, x: 13.083, y: 164.9488 }, + { l: 91.0, x: 13.167, y: 165.3212 }, + { l: 91.0, x: 13.25, y: 165.6889 }, + { l: 91.0, x: 13.333, y: 166.0352 }, + { l: 91.0, x: 13.417, y: 166.364 }, + { l: 91.0, x: 13.5, y: 166.6885 }, + { l: 91.0, x: 13.583, y: 166.9917 }, + { l: 91.0, x: 13.667, y: 167.3003 }, + { l: 91.0, x: 13.75, y: 167.5945 }, + { l: 91.0, x: 13.833, y: 167.8696 }, + { l: 91.0, x: 13.917, y: 168.1264 }, + { l: 91.0, x: 14, y: 168.3842 }, + { l: 91.0, x: 14.083, y: 168.6208 }, + { l: 91.0, x: 14.167, y: 168.8494 }, + { l: 91.0, x: 14.25, y: 169.0688 }, + { l: 91.0, x: 14.333, y: 169.2798 }, + { l: 91.0, x: 14.417, y: 169.4741 }, + { l: 91.0, x: 14.5, y: 169.6575 }, + { l: 91.0, x: 14.583, y: 169.822 }, + { l: 91.0, x: 14.667, y: 169.9884 }, + { l: 91.0, x: 14.75, y: 170.1487 }, + { l: 91.0, x: 14.833, y: 170.2879 }, + { l: 91.0, x: 14.917, y: 170.412 }, + { l: 91.0, x: 15, y: 170.5345 }, + { l: 91.0, x: 15.083, y: 170.6508 }, + { l: 91.0, x: 15.167, y: 170.7495 }, + { l: 91.0, x: 15.25, y: 170.849 }, + { l: 91.0, x: 15.333, y: 170.9298 }, + { l: 91.0, x: 15.417, y: 171.0137 }, + { l: 91.0, x: 15.5, y: 171.0861 }, + { l: 91.0, x: 15.583, y: 171.142 }, + { l: 91.0, x: 15.667, y: 171.209 }, + { l: 91.0, x: 15.75, y: 171.2565 }, + { l: 91.0, x: 15.833, y: 171.3062 }, + { l: 91.0, x: 15.917, y: 171.3564 }, + { l: 91.0, x: 16, y: 171.3873 }, + { l: 91.0, x: 16.083, y: 171.4309 }, + { l: 91.0, x: 16.167, y: 171.4517 }, + { l: 91.0, x: 16.25, y: 171.487 }, + { l: 91.0, x: 16.333, y: 171.5097 }, + { l: 91.0, x: 16.417, y: 171.5348 }, + { l: 91.0, x: 16.5, y: 171.5513 }, + { l: 91.0, x: 16.583, y: 171.5761 }, + { l: 91.0, x: 16.667, y: 171.5846 }, + { l: 91.0, x: 16.75, y: 171.6011 }, + { l: 91.0, x: 16.833, y: 171.6094 }, + { l: 91.0, x: 16.917, y: 171.6178 }, + { l: 91.0, x: 17, y: 171.6261 }, + { l: 91.0, x: 17.083, y: 171.6239 }, + { l: 91.0, x: 17.167, y: 171.6344 }, + { l: 91.0, x: 17.25, y: 171.6344 }, + { l: 91.0, x: 17.333, y: 171.6344 }, + { l: 91.0, x: 17.417, y: 171.6322 }, + { l: 91.0, x: 17.5, y: 171.6427 }, + { l: 91.0, x: 17.583, y: 171.6405 }, + { l: 91.0, x: 17.667, y: 171.651 }, + { l: 91.0, x: 17.75, y: 171.6593 }, + { l: 91.0, x: 17.833, y: 171.6675 }, + { l: 91.0, x: 17.917, y: 171.6759 }, + { l: 91.0, x: 18, y: 171.6737 }, + { l: 91.0, x: 18.083, y: 171.6841 }, + { l: 91.0, x: 18.167, y: 171.6925 }, + { l: 91.0, x: 18.25, y: 171.7008 }, + { l: 91.0, x: 18.333, y: 171.7008 }, + { l: 91.0, x: 18.417, y: 171.7091 }, + { l: 91.0, x: 18.5, y: 171.7091 }, + { l: 91.0, x: 18.583, y: 171.7174 }, + { l: 91.0, x: 18.667, y: 171.7174 }, + { l: 91.0, x: 18.75, y: 171.7174 }, + { l: 91.0, x: 18.833, y: 171.7278 }, + { l: 91.0, x: 18.917, y: 171.7279 }, + { l: 91.0, x: 19, y: 171.7279 }, + { l: 91.0, x: 19.083, y: 171.7279 }, + { l: 91.0, x: 19.167, y: 171.7279 }, + { l: 91.0, x: 19.25, y: 171.7279 }, + { l: 91.0, x: 19.333, y: 171.7279 }, + { l: 91.0, x: 19.417, y: 171.7279 }, + { l: 91.0, x: 19.5, y: 171.7257 }, + { l: 91.0, x: 19.583, y: 171.7257 }, + { l: 91.0, x: 19.667, y: 171.7257 }, + { l: 91.0, x: 19.75, y: 171.7257 }, + { l: 91.0, x: 19.833, y: 171.7361 }, + { l: 91.0, x: 19.917, y: 171.7362 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 4.0, - y: 109.5962, - }, - { - l: '98.0', - x: 4.0833, - y: 110.2467, - }, - { - l: '98.0', - x: 4.1667, - y: 110.9104, - }, - { - l: '98.0', - x: 4.25, - y: 111.5831, - }, - { - l: '98.0', - x: 4.3333, - y: 112.2561, - }, - { - l: '98.0', - x: 4.4167, - y: 112.9509, - }, - { - l: '98.0', - x: 4.5, - y: 113.6482, - }, - { - l: '98.0', - x: 4.5833, - y: 114.3437, - }, - { - l: '98.0', - x: 4.6667, - y: 115.0503, - }, - { - l: '98.0', - x: 4.75, - y: 115.7464, - }, - { - l: '98.0', - x: 4.8333, - y: 116.4406, - }, - { - l: '98.0', - x: 4.9167, - y: 117.1352, - }, - { - l: '98.0', - x: 5.0, - y: 117.8083, - }, - { - l: '98.0', - x: 5.0833, - y: 118.4687, - }, - { - l: '98.0', - x: 5.1667, - y: 119.1185, - }, - { - l: '98.0', - x: 5.25, - y: 119.7577, - }, - { - l: '98.0', - x: 5.3333, - y: 120.3841, - }, - { - l: '98.0', - x: 5.4167, - y: 120.9976, - }, - { - l: '98.0', - x: 5.5, - y: 121.5896, - }, - { - l: '98.0', - x: 5.5833, - y: 122.1818, - }, - { - l: '98.0', - x: 5.6667, - y: 122.761, - }, - { - l: '98.0', - x: 5.75, - y: 123.3404, - }, - { - l: '98.0', - x: 5.8333, - y: 123.9092, - }, - { - l: '98.0', - x: 5.9167, - y: 124.4649, - }, - { - l: '98.0', - x: 6.0, - y: 125.0316, - }, - { - l: '98.0', - x: 6.0833, - y: 125.5875, - }, - { - l: '98.0', - x: 6.1667, - y: 126.1413, - }, - { - l: '98.0', - x: 6.25, - y: 126.6843, - }, - { - l: '98.0', - x: 6.3333, - y: 127.2274, - }, - { - l: '98.0', - x: 6.4167, - y: 127.7814, - }, - { - l: '98.0', - x: 6.5, - y: 128.3247, - }, - { - l: '98.0', - x: 6.5833, - y: 128.8658, - }, - { - l: '98.0', - x: 6.6667, - y: 129.4093, - }, - { - l: '98.0', - x: 6.75, - y: 129.9504, - }, - { - l: '98.0', - x: 6.8333, - y: 130.4917, - }, - { - l: '98.0', - x: 6.9167, - y: 131.0548, - }, - { - l: '98.0', - x: 7.0, - y: 131.6046, - }, - { - l: '98.0', - x: 7.0833, - y: 132.157, - }, - { - l: '98.0', - x: 7.1667, - y: 132.7178, - }, - { - l: '98.0', - x: 7.25, - y: 133.2787, - }, - { - l: '98.0', - x: 7.3333, - y: 133.8481, - }, - { - l: '98.0', - x: 7.4167, - y: 134.4091, - }, - { - l: '98.0', - x: 7.5, - y: 134.9677, - }, - { - l: '98.0', - x: 7.5833, - y: 135.5288, - }, - { - l: '98.0', - x: 7.6667, - y: 136.0791, - }, - { - l: '98.0', - x: 7.75, - y: 136.6404, - }, - { - l: '98.0', - x: 7.8333, - y: 137.1908, - }, - { - l: '98.0', - x: 7.9167, - y: 137.7413, - }, - { - l: '98.0', - x: 8.0, - y: 138.2861, - }, - { - l: '98.0', - x: 8.0833, - y: 138.8176, - }, - { - l: '98.0', - x: 8.1667, - y: 139.3543, - }, - { - l: '98.0', - x: 8.25, - y: 139.8694, - }, - { - l: '98.0', - x: 8.3333, - y: 140.3981, - }, - { - l: '98.0', - x: 8.4167, - y: 140.916, - }, - { - l: '98.0', - x: 8.5, - y: 141.4257, - }, - { - l: '98.0', - x: 8.5833, - y: 141.9383, - }, - { - l: '98.0', - x: 8.6667, - y: 142.4401, - }, - { - l: '98.0', - x: 8.75, - y: 142.9556, - }, - { - l: '98.0', - x: 8.8333, - y: 143.463, - }, - { - l: '98.0', - x: 8.9167, - y: 143.9841, - }, - { - l: '98.0', - x: 9.0, - y: 144.5055, - }, - { - l: '98.0', - x: 9.0833, - y: 145.0297, - }, - { - l: '98.0', - x: 9.1667, - y: 145.5678, - }, - { - l: '98.0', - x: 9.25, - y: 146.1061, - }, - { - l: '98.0', - x: 9.3333, - y: 146.6473, - }, - { - l: '98.0', - x: 9.4167, - y: 147.2024, - }, - { - l: '98.0', - x: 9.5, - y: 147.7578, - }, - { - l: '98.0', - x: 9.5833, - y: 148.3163, - }, - { - l: '98.0', - x: 9.6667, - y: 148.875, - }, - { - l: '98.0', - x: 9.75, - y: 149.4341, - }, - { - l: '98.0', - x: 9.8333, - y: 150.0072, - }, - { - l: '98.0', - x: 9.9167, - y: 150.5697, - }, - { - l: '98.0', - x: 10.0, - y: 151.1462, - }, - { - l: '98.0', - x: 10.0833, - y: 151.7121, - }, - { - l: '98.0', - x: 10.1667, - y: 152.2866, - }, - { - l: '98.0', - x: 10.25, - y: 152.8642, - }, - { - l: '98.0', - x: 10.3333, - y: 153.4284, - }, - { - l: '98.0', - x: 10.4167, - y: 154.0039, - }, - { - l: '98.0', - x: 10.5, - y: 154.566, - }, - { - l: '98.0', - x: 10.5833, - y: 155.1393, - }, - { - l: '98.0', - x: 10.6667, - y: 155.6963, - }, - { - l: '98.0', - x: 10.75, - y: 156.2646, - }, - { - l: '98.0', - x: 10.8333, - y: 156.8165, - }, - { - l: '98.0', - x: 10.9167, - y: 157.3657, - }, - { - l: '98.0', - x: 11.0, - y: 157.9123, - }, - { - l: '98.0', - x: 11.0833, - y: 158.4504, - }, - { - l: '98.0', - x: 11.1667, - y: 158.9858, - }, - { - l: '98.0', - x: 11.25, - y: 159.5154, - }, - { - l: '98.0', - x: 11.3333, - y: 160.0394, - }, - { - l: '98.0', - x: 11.4167, - y: 160.5575, - }, - { - l: '98.0', - x: 11.5, - y: 161.0588, - }, - { - l: '98.0', - x: 11.5833, - y: 161.5651, - }, - { - l: '98.0', - x: 11.6667, - y: 162.0626, - }, - { - l: '98.0', - x: 11.75, - y: 162.5569, - }, - { - l: '98.0', - x: 11.8333, - y: 163.0531, - }, - { - l: '98.0', - x: 11.9167, - y: 163.5213, - }, - { - l: '98.0', - x: 12.0, - y: 164.0022, - }, - { - l: '98.0', - x: 12.0833, - y: 164.4797, - }, - { - l: '98.0', - x: 12.1667, - y: 164.94, - }, - { - l: '98.0', - x: 12.25, - y: 165.3939, - }, - { - l: '98.0', - x: 12.3333, - y: 165.8554, - }, - { - l: '98.0', - x: 12.4167, - y: 166.2994, - }, - { - l: '98.0', - x: 12.5, - y: 166.7369, - }, - { - l: '98.0', - x: 12.5833, - y: 167.1599, - }, - { - l: '98.0', - x: 12.6667, - y: 167.5794, - }, - { - l: '98.0', - x: 12.75, - y: 167.9734, - }, - { - l: '98.0', - x: 12.8333, - y: 168.3748, - }, - { - l: '98.0', - x: 12.9167, - y: 168.7617, - }, - { - l: '98.0', - x: 13.0, - y: 169.1372, - }, - { - l: '98.0', - x: 13.0833, - y: 169.4981, - }, - { - l: '98.0', - x: 13.1667, - y: 169.8477, - }, - { - l: '98.0', - x: 13.25, - y: 170.1967, - }, - { - l: '98.0', - x: 13.3333, - y: 170.5235, - }, - { - l: '98.0', - x: 13.4167, - y: 170.8281, - }, - { - l: '98.0', - x: 13.5, - y: 171.1322, - }, - { - l: '98.0', - x: 13.5833, - y: 171.4142, - }, - { - l: '98.0', - x: 13.6667, - y: 171.6989, - }, - { - l: '98.0', - x: 13.75, - y: 171.9724, - }, - { - l: '98.0', - x: 13.8333, - y: 172.2269, - }, - { - l: '98.0', - x: 13.9167, - y: 172.4594, - }, - { - l: '98.0', - x: 14.0, - y: 172.698, - }, - { - l: '98.0', - x: 14.0833, - y: 172.9146, - }, - { - l: '98.0', - x: 14.1667, - y: 173.1201, - }, - { - l: '98.0', - x: 14.25, - y: 173.321, - }, - { - l: '98.0', - x: 14.3333, - y: 173.514, - }, - { - l: '98.0', - x: 14.4167, - y: 173.6883, - }, - { - l: '98.0', - x: 14.5, - y: 173.8549, - }, - { - l: '98.0', - x: 14.5833, - y: 174.003, - }, - { - l: '98.0', - x: 14.6667, - y: 174.1509, - }, - { - l: '98.0', - x: 14.75, - y: 174.2975, - }, - { - l: '98.0', - x: 14.8333, - y: 174.4225, - }, - { - l: '98.0', - x: 14.9167, - y: 174.5322, - }, - { - l: '98.0', - x: 15.0, - y: 174.6419, - }, - { - l: '98.0', - x: 15.0833, - y: 174.7472, - }, - { - l: '98.0', - x: 15.1667, - y: 174.8342, - }, - { - l: '98.0', - x: 15.25, - y: 174.9243, - }, - { - l: '98.0', - x: 15.3333, - y: 174.9961, - }, - { - l: '98.0', - x: 15.4167, - y: 175.0712, - }, - { - l: '98.0', - x: 15.5, - y: 175.1354, - }, - { - l: '98.0', - x: 15.5833, - y: 175.1846, - }, - { - l: '98.0', - x: 15.6667, - y: 175.2446, - }, - { - l: '98.0', - x: 15.75, - y: 175.2862, - }, - { - l: '98.0', - x: 15.8333, - y: 175.3312, - }, - { - l: '98.0', - x: 15.9167, - y: 175.3761, - }, - { - l: '98.0', - x: 16.0, - y: 175.4027, - }, - { - l: '98.0', - x: 16.0833, - y: 175.4434, - }, - { - l: '98.0', - x: 16.1667, - y: 175.4593, - }, - { - l: '98.0', - x: 16.25, - y: 175.4925, - }, - { - l: '98.0', - x: 16.3333, - y: 175.5117, - }, - { - l: '98.0', - x: 16.4167, - y: 175.5341, - }, - { - l: '98.0', - x: 16.5, - y: 175.549, - }, - { - l: '98.0', - x: 16.5833, - y: 175.5715, - }, - { - l: '98.0', - x: 16.6667, - y: 175.5789, - }, - { - l: '98.0', - x: 16.75, - y: 175.5939, - }, - { - l: '98.0', - x: 16.8333, - y: 175.6013, - }, - { - l: '98.0', - x: 16.9167, - y: 175.6088, - }, - { - l: '98.0', - x: 17.0, - y: 175.6163, - }, - { - l: '98.0', - x: 17.0833, - y: 175.613, - }, - { - l: '98.0', - x: 17.1667, - y: 175.6238, - }, - { - l: '98.0', - x: 17.25, - y: 175.6238, - }, - { - l: '98.0', - x: 17.3333, - y: 175.6238, - }, - { - l: '98.0', - x: 17.4167, - y: 175.6205, - }, - { - l: '98.0', - x: 17.5, - y: 175.6312, - }, - { - l: '98.0', - x: 17.5833, - y: 175.6279, - }, - { - l: '98.0', - x: 17.6667, - y: 175.6387, - }, - { - l: '98.0', - x: 17.75, - y: 175.6462, - }, - { - l: '98.0', - x: 17.8333, - y: 175.6536, - }, - { - l: '98.0', - x: 17.9167, - y: 175.6611, - }, - { - l: '98.0', - x: 18.0, - y: 175.6578, - }, - { - l: '98.0', - x: 18.0833, - y: 175.6686, - }, - { - l: '98.0', - x: 18.1667, - y: 175.676, - }, - { - l: '98.0', - x: 18.25, - y: 175.6835, - }, - { - l: '98.0', - x: 18.3333, - y: 175.6835, - }, - { - l: '98.0', - x: 18.4167, - y: 175.691, - }, - { - l: '98.0', - x: 18.5, - y: 175.691, - }, - { - l: '98.0', - x: 18.5833, - y: 175.6984, - }, - { - l: '98.0', - x: 18.6667, - y: 175.6984, - }, - { - l: '98.0', - x: 18.75, - y: 175.6984, - }, - { - l: '98.0', - x: 18.8333, - y: 175.7092, - }, - { - l: '98.0', - x: 18.9167, - y: 175.7092, - }, - { - l: '98.0', - x: 19.0, - y: 175.7092, - }, - { - l: '98.0', - x: 19.0833, - y: 175.7092, - }, - { - l: '98.0', - x: 19.1667, - y: 175.7092, - }, - { - l: '98.0', - x: 19.25, - y: 175.7092, - }, - { - l: '98.0', - x: 19.3333, - y: 175.7092, - }, - { - l: '98.0', - x: 19.4167, - y: 175.7092, - }, - { - l: '98.0', - x: 19.5, - y: 175.7059, - }, - { - l: '98.0', - x: 19.5833, - y: 175.7059, - }, - { - l: '98.0', - x: 19.6667, - y: 175.7059, - }, - { - l: '98.0', - x: 19.75, - y: 175.7059, - }, - { - l: '98.0', - x: 19.8333, - y: 175.7166, - }, - { - l: '98.0', - x: 19.9167, - y: 175.7166, - }, - { - l: '98.0', - x: 20.0, - y: 175.7166, - }, - { - l: '98.0', - x: 20.0, - y: 175.7166, - }, + { l: 98.0, x: 4, y: 109.8125 }, + { l: 98.0, x: 4.083, y: 110.4623 }, + { l: 98.0, x: 4.167, y: 111.1332 }, + { l: 98.0, x: 4.25, y: 111.8052 }, + { l: 98.0, x: 4.333, y: 112.4774 }, + { l: 98.0, x: 4.417, y: 113.1798 }, + { l: 98.0, x: 4.5, y: 113.8764 }, + { l: 98.0, x: 4.583, y: 114.5711 }, + { l: 98.0, x: 4.667, y: 115.2854 }, + { l: 98.0, x: 4.75, y: 115.9807 }, + { l: 98.0, x: 4.833, y: 116.6742 }, + { l: 98.0, x: 4.917, y: 117.3762 }, + { l: 98.0, x: 5, y: 118.0486 }, + { l: 98.0, x: 5.083, y: 118.7082 }, + { l: 98.0, x: 5.167, y: 119.3651 }, + { l: 98.0, x: 5.25, y: 120.0036 }, + { l: 98.0, x: 5.333, y: 120.6292 }, + { l: 98.0, x: 5.417, y: 121.2493 }, + { l: 98.0, x: 5.5, y: 121.8406 }, + { l: 98.0, x: 5.583, y: 122.4321 }, + { l: 98.0, x: 5.667, y: 123.0177 }, + { l: 98.0, x: 5.75, y: 123.5963 }, + { l: 98.0, x: 5.833, y: 124.1644 }, + { l: 98.0, x: 5.917, y: 124.7261 }, + { l: 98.0, x: 6, y: 125.292 }, + { l: 98.0, x: 6.083, y: 125.8473 }, + { l: 98.0, x: 6.167, y: 126.4069 }, + { l: 98.0, x: 6.25, y: 126.9491 }, + { l: 98.0, x: 6.333, y: 127.4915 }, + { l: 98.0, x: 6.417, y: 128.0514 }, + { l: 98.0, x: 6.5, y: 128.5939 }, + { l: 98.0, x: 6.583, y: 129.1341 }, + { l: 98.0, x: 6.667, y: 129.6834 }, + { l: 98.0, x: 6.75, y: 130.2238 }, + { l: 98.0, x: 6.833, y: 130.7642 }, + { l: 98.0, x: 6.917, y: 131.3331 }, + { l: 98.0, x: 7, y: 131.8821 }, + { l: 98.0, x: 7.083, y: 132.4336 }, + { l: 98.0, x: 7.167, y: 133.0003 }, + { l: 98.0, x: 7.25, y: 133.5603 }, + { l: 98.0, x: 7.333, y: 134.1287 }, + { l: 98.0, x: 7.417, y: 134.6956 }, + { l: 98.0, x: 7.5, y: 135.2533 }, + { l: 98.0, x: 7.583, y: 135.8136 }, + { l: 98.0, x: 7.667, y: 136.3697 }, + { l: 98.0, x: 7.75, y: 136.9301 }, + { l: 98.0, x: 7.833, y: 137.4797 }, + { l: 98.0, x: 7.917, y: 138.036 }, + { l: 98.0, x: 8, y: 138.5801 }, + { l: 98.0, x: 8.083, y: 139.1108 }, + { l: 98.0, x: 8.167, y: 139.6532 }, + { l: 98.0, x: 8.25, y: 140.1677 }, + { l: 98.0, x: 8.333, y: 140.6958 }, + { l: 98.0, x: 8.417, y: 141.2194 }, + { l: 98.0, x: 8.5, y: 141.7288 }, + { l: 98.0, x: 8.583, y: 142.2409 }, + { l: 98.0, x: 8.667, y: 142.7485 }, + { l: 98.0, x: 8.75, y: 143.2637 }, + { l: 98.0, x: 8.833, y: 143.7709 }, + { l: 98.0, x: 8.917, y: 144.2981 }, + { l: 98.0, x: 9, y: 144.8193 }, + { l: 98.0, x: 9.083, y: 145.3434 }, + { l: 98.0, x: 9.167, y: 145.8878 }, + { l: 98.0, x: 9.25, y: 146.426 }, + { l: 98.0, x: 9.333, y: 146.9672 }, + { l: 98.0, x: 9.417, y: 147.5291 }, + { l: 98.0, x: 9.5, y: 148.0846 }, + { l: 98.0, x: 9.583, y: 148.6431 }, + { l: 98.0, x: 9.667, y: 149.2087 }, + { l: 98.0, x: 9.75, y: 149.768 }, + { l: 98.0, x: 9.833, y: 150.3412 }, + { l: 98.0, x: 9.917, y: 150.9108 }, + { l: 98.0, x: 10, y: 151.4876 }, + { l: 98.0, x: 10.083, y: 152.0539 }, + { l: 98.0, x: 10.167, y: 152.6355 }, + { l: 98.0, x: 10.25, y: 153.2133 }, + { l: 98.0, x: 10.333, y: 153.7778 }, + { l: 98.0, x: 10.417, y: 154.3604 }, + { l: 98.0, x: 10.5, y: 154.9227 }, + { l: 98.0, x: 10.583, y: 155.4963 }, + { l: 98.0, x: 10.667, y: 156.0602 }, + { l: 98.0, x: 10.75, y: 156.6285 }, + { l: 98.0, x: 10.833, y: 157.1804 }, + { l: 98.0, x: 10.917, y: 157.7362 }, + { l: 98.0, x: 11, y: 158.2826 }, + { l: 98.0, x: 11.083, y: 158.8204 }, + { l: 98.0, x: 11.167, y: 159.3618 }, + { l: 98.0, x: 11.25, y: 159.8909 }, + { l: 98.0, x: 11.333, y: 160.4142 }, + { l: 98.0, x: 11.417, y: 160.9378 }, + { l: 98.0, x: 11.5, y: 161.4381 }, + { l: 98.0, x: 11.583, y: 161.9435 }, + { l: 98.0, x: 11.667, y: 162.4456 }, + { l: 98.0, x: 11.75, y: 162.9386 }, + { l: 98.0, x: 11.833, y: 163.4334 }, + { l: 98.0, x: 11.917, y: 163.9056 }, + { l: 98.0, x: 12, y: 164.3846 }, + { l: 98.0, x: 12.083, y: 164.8602 }, + { l: 98.0, x: 12.167, y: 165.3239 }, + { l: 98.0, x: 12.25, y: 165.7756 }, + { l: 98.0, x: 12.333, y: 166.2347 }, + { l: 98.0, x: 12.417, y: 166.6816 }, + { l: 98.0, x: 12.5, y: 167.1164 }, + { l: 98.0, x: 12.583, y: 167.5368 }, + { l: 98.0, x: 12.667, y: 167.9585 }, + { l: 98.0, x: 12.75, y: 168.3497 }, + { l: 98.0, x: 12.833, y: 168.7482 }, + { l: 98.0, x: 12.917, y: 169.1368 }, + { l: 98.0, x: 13, y: 169.5093 }, + { l: 98.0, x: 13.083, y: 169.8672 }, + { l: 98.0, x: 13.167, y: 170.2179 }, + { l: 98.0, x: 13.25, y: 170.5639 }, + { l: 98.0, x: 13.333, y: 170.8878 }, + { l: 98.0, x: 13.417, y: 171.1931 }, + { l: 98.0, x: 13.5, y: 171.4942 }, + { l: 98.0, x: 13.583, y: 171.7733 }, + { l: 98.0, x: 13.667, y: 172.0584 }, + { l: 98.0, x: 13.75, y: 172.329 }, + { l: 98.0, x: 13.833, y: 172.5808 }, + { l: 98.0, x: 13.917, y: 172.8135 }, + { l: 98.0, x: 14, y: 173.0494 }, + { l: 98.0, x: 14.083, y: 173.2635 }, + { l: 98.0, x: 14.167, y: 173.4689 }, + { l: 98.0, x: 14.25, y: 173.6674 }, + { l: 98.0, x: 14.333, y: 173.8581 }, + { l: 98.0, x: 14.417, y: 174.0324 }, + { l: 98.0, x: 14.5, y: 174.1969 }, + { l: 98.0, x: 14.583, y: 174.3429 }, + { l: 98.0, x: 14.667, y: 174.4906 }, + { l: 98.0, x: 14.75, y: 174.6355 }, + { l: 98.0, x: 14.833, y: 174.7588 }, + { l: 98.0, x: 14.917, y: 174.8684 }, + { l: 98.0, x: 15, y: 174.9765 }, + { l: 98.0, x: 15.083, y: 175.0805 }, + { l: 98.0, x: 15.167, y: 175.1673 }, + { l: 98.0, x: 15.25, y: 175.2563 }, + { l: 98.0, x: 15.333, y: 175.3271 }, + { l: 98.0, x: 15.417, y: 175.402 }, + { l: 98.0, x: 15.5, y: 175.4653 }, + { l: 98.0, x: 15.583, y: 175.5137 }, + { l: 98.0, x: 15.667, y: 175.5735 }, + { l: 98.0, x: 15.75, y: 175.6145 }, + { l: 98.0, x: 15.833, y: 175.6589 }, + { l: 98.0, x: 15.917, y: 175.7037 }, + { l: 98.0, x: 16, y: 175.7298 }, + { l: 98.0, x: 16.083, y: 175.7701 }, + { l: 98.0, x: 16.167, y: 175.7859 }, + { l: 98.0, x: 16.25, y: 175.8188 }, + { l: 98.0, x: 16.333, y: 175.8376 }, + { l: 98.0, x: 16.417, y: 175.8599 }, + { l: 98.0, x: 16.5, y: 175.8747 }, + { l: 98.0, x: 16.583, y: 175.8968 }, + { l: 98.0, x: 16.667, y: 175.9044 }, + { l: 98.0, x: 16.75, y: 175.9191 }, + { l: 98.0, x: 16.833, y: 175.9265 }, + { l: 98.0, x: 16.917, y: 175.934 }, + { l: 98.0, x: 17, y: 175.9413 }, + { l: 98.0, x: 17.083, y: 175.938 }, + { l: 98.0, x: 17.167, y: 175.9488 }, + { l: 98.0, x: 17.25, y: 175.9487 }, + { l: 98.0, x: 17.333, y: 175.9487 }, + { l: 98.0, x: 17.417, y: 175.9454 }, + { l: 98.0, x: 17.5, y: 175.9561 }, + { l: 98.0, x: 17.583, y: 175.9528 }, + { l: 98.0, x: 17.667, y: 175.9636 }, + { l: 98.0, x: 17.75, y: 175.9709 }, + { l: 98.0, x: 17.833, y: 175.9783 }, + { l: 98.0, x: 17.917, y: 175.9857 }, + { l: 98.0, x: 18, y: 175.9824 }, + { l: 98.0, x: 18.083, y: 175.9931 }, + { l: 98.0, x: 18.167, y: 176.0006 }, + { l: 98.0, x: 18.25, y: 176.0079 }, + { l: 98.0, x: 18.333, y: 176.0079 }, + { l: 98.0, x: 18.417, y: 176.0153 }, + { l: 98.0, x: 18.5, y: 176.0153 }, + { l: 98.0, x: 18.583, y: 176.0227 }, + { l: 98.0, x: 18.667, y: 176.0227 }, + { l: 98.0, x: 18.75, y: 176.0227 }, + { l: 98.0, x: 18.833, y: 176.0335 }, + { l: 98.0, x: 18.917, y: 176.0335 }, + { l: 98.0, x: 19, y: 176.0335 }, + { l: 98.0, x: 19.083, y: 176.0335 }, + { l: 98.0, x: 19.167, y: 176.0335 }, + { l: 98.0, x: 19.25, y: 176.0335 }, + { l: 98.0, x: 19.333, y: 176.0335 }, + { l: 98.0, x: 19.417, y: 176.0335 }, + { l: 98.0, x: 19.5, y: 176.0301 }, + { l: 98.0, x: 19.583, y: 176.0301 }, + { l: 98.0, x: 19.667, y: 176.0301 }, + { l: 98.0, x: 19.75, y: 176.0301 }, + { l: 98.0, x: 19.833, y: 176.0409 }, + { l: 98.0, x: 19.917, y: 176.0409 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 4.0, - y: 112.2816, - }, - { - l: '99.6', - x: 4.0833, - y: 112.9556, - }, - { - l: '99.6', - x: 4.1667, - y: 113.6438, - }, - { - l: '99.6', - x: 4.25, - y: 114.3408, - }, - { - l: '99.6', - x: 4.3333, - y: 115.0381, - }, - { - l: '99.6', - x: 4.4167, - y: 115.7579, - }, - { - l: '99.6', - x: 4.5, - y: 116.481, - }, - { - l: '99.6', - x: 4.5833, - y: 117.2016, - }, - { - l: '99.6', - x: 4.6667, - y: 117.9338, - }, - { - l: '99.6', - x: 4.75, - y: 118.6552, - }, - { - l: '99.6', - x: 4.8333, - y: 119.3742, - }, - { - l: '99.6', - x: 4.9167, - y: 120.0935, - }, - { - l: '99.6', - x: 5.0, - y: 120.7911, - }, - { - l: '99.6', - x: 5.0833, - y: 121.4749, - }, - { - l: '99.6', - x: 5.1667, - y: 122.148, - }, - { - l: '99.6', - x: 5.25, - y: 122.8102, - }, - { - l: '99.6', - x: 5.3333, - y: 123.4587, - }, - { - l: '99.6', - x: 5.4167, - y: 124.0934, - }, - { - l: '99.6', - x: 5.5, - y: 124.7061, - }, - { - l: '99.6', - x: 5.5833, - y: 125.319, - }, - { - l: '99.6', - x: 5.6667, - y: 125.9181, - }, - { - l: '99.6', - x: 5.75, - y: 126.5173, - }, - { - l: '99.6', - x: 5.8333, - y: 127.1055, - }, - { - l: '99.6', - x: 5.9167, - y: 127.6798, - }, - { - l: '99.6', - x: 6.0, - y: 128.2654, - }, - { - l: '99.6', - x: 6.0833, - y: 128.84, - }, - { - l: '99.6', - x: 6.1667, - y: 129.4117, - }, - { - l: '99.6', - x: 6.25, - y: 129.9724, - }, - { - l: '99.6', - x: 6.3333, - y: 130.5332, - }, - { - l: '99.6', - x: 6.4167, - y: 131.1053, - }, - { - l: '99.6', - x: 6.5, - y: 131.6663, - }, - { - l: '99.6', - x: 6.5833, - y: 132.2244, - }, - { - l: '99.6', - x: 6.6667, - y: 132.7857, - }, - { - l: '99.6', - x: 6.75, - y: 133.3439, - }, - { - l: '99.6', - x: 6.8333, - y: 133.9023, - }, - { - l: '99.6', - x: 6.9167, - y: 134.483, - }, - { - l: '99.6', - x: 7.0, - y: 135.0495, - }, - { - l: '99.6', - x: 7.0833, - y: 135.6193, - }, - { - l: '99.6', - x: 7.1667, - y: 136.1971, - }, - { - l: '99.6', - x: 7.25, - y: 136.775, - }, - { - l: '99.6', - x: 7.3333, - y: 137.3608, - }, - { - l: '99.6', - x: 7.4167, - y: 137.9388, - }, - { - l: '99.6', - x: 7.5, - y: 138.5136, - }, - { - l: '99.6', - x: 7.5833, - y: 139.0917, - }, - { - l: '99.6', - x: 7.6667, - y: 139.6588, - }, - { - l: '99.6', - x: 7.75, - y: 140.2372, - }, - { - l: '99.6', - x: 7.8333, - y: 140.8044, - }, - { - l: '99.6', - x: 7.9167, - y: 141.3718, - }, - { - l: '99.6', - x: 8.0, - y: 141.9349, - }, - { - l: '99.6', - x: 8.0833, - y: 142.4835, - }, - { - l: '99.6', - x: 8.1667, - y: 143.0391, - }, - { - l: '99.6', - x: 8.25, - y: 143.5726, - }, - { - l: '99.6', - x: 8.3333, - y: 144.1207, - }, - { - l: '99.6', - x: 8.4167, - y: 144.658, - }, - { - l: '99.6', - x: 8.5, - y: 145.1877, - }, - { - l: '99.6', - x: 8.5833, - y: 145.721, - }, - { - l: '99.6', - x: 8.6667, - y: 146.2435, - }, - { - l: '99.6', - x: 8.75, - y: 146.7808, - }, - { - l: '99.6', - x: 8.8333, - y: 147.3107, - }, - { - l: '99.6', - x: 8.9167, - y: 147.8555, - }, - { - l: '99.6', - x: 9.0, - y: 148.4007, - }, - { - l: '99.6', - x: 9.0833, - y: 148.9497, - }, - { - l: '99.6', - x: 9.1667, - y: 149.5137, - }, - { - l: '99.6', - x: 9.25, - y: 150.0781, - }, - { - l: '99.6', - x: 9.3333, - y: 150.6464, - }, - { - l: '99.6', - x: 9.4167, - y: 151.2299, - }, - { - l: '99.6', - x: 9.5, - y: 151.8138, - }, - { - l: '99.6', - x: 9.5833, - y: 152.4017, - }, - { - l: '99.6', - x: 9.6667, - y: 152.9901, - }, - { - l: '99.6', - x: 9.75, - y: 153.5788, - }, - { - l: '99.6', - x: 9.8333, - y: 154.1829, - }, - { - l: '99.6', - x: 9.9167, - y: 154.7762, - }, - { - l: '99.6', - x: 10.0, - y: 155.3849, - }, - { - l: '99.6', - x: 10.0833, - y: 155.9828, - }, - { - l: '99.6', - x: 10.1667, - y: 156.5888, - }, - { - l: '99.6', - x: 10.25, - y: 157.1989, - }, - { - l: '99.6', - x: 10.3333, - y: 157.7945, - }, - { - l: '99.6', - x: 10.4167, - y: 158.4019, - }, - { - l: '99.6', - x: 10.5, - y: 158.9946, - }, - { - l: '99.6', - x: 10.5833, - y: 159.5991, - }, - { - l: '99.6', - x: 10.6667, - y: 160.1851, - }, - { - l: '99.6', - x: 10.75, - y: 160.7828, - }, - { - l: '99.6', - x: 10.8333, - y: 161.362, - }, - { - l: '99.6', - x: 10.9167, - y: 161.9376, - }, - { - l: '99.6', - x: 11.0, - y: 162.5097, - }, - { - l: '99.6', - x: 11.0833, - y: 163.0705, - }, - { - l: '99.6', - x: 11.1667, - y: 163.6277, - }, - { - l: '99.6', - x: 11.25, - y: 164.1772, - }, - { - l: '99.6', - x: 11.3333, - y: 164.7191, - }, - { - l: '99.6', - x: 11.4167, - y: 165.2533, - }, - { - l: '99.6', - x: 11.5, - y: 165.7684, - }, - { - l: '99.6', - x: 11.5833, - y: 166.2869, - }, - { - l: '99.6', - x: 11.6667, - y: 166.7934, - }, - { - l: '99.6', - x: 11.75, - y: 167.2959, - }, - { - l: '99.6', - x: 11.8333, - y: 167.7975, - }, - { - l: '99.6', - x: 11.9167, - y: 168.2684, - }, - { - l: '99.6', - x: 12.0, - y: 168.7496, - }, - { - l: '99.6', - x: 12.0833, - y: 169.2263, - }, - { - l: '99.6', - x: 12.1667, - y: 169.6834, - }, - { - l: '99.6', - x: 12.25, - y: 170.1319, - }, - { - l: '99.6', - x: 12.3333, - y: 170.5872, - }, - { - l: '99.6', - x: 12.4167, - y: 171.0225, - }, - { - l: '99.6', - x: 12.5, - y: 171.4492, - }, - { - l: '99.6', - x: 12.5833, - y: 171.8598, - }, - { - l: '99.6', - x: 12.6667, - y: 172.2658, - }, - { - l: '99.6', - x: 12.75, - y: 172.6446, - }, - { - l: '99.6', - x: 12.8333, - y: 173.0298, - }, - { - l: '99.6', - x: 12.9167, - y: 173.399, - }, - { - l: '99.6', - x: 13.0, - y: 173.7562, - }, - { - l: '99.6', - x: 13.0833, - y: 174.0975, - }, - { - l: '99.6', - x: 13.1667, - y: 174.4269, - }, - { - l: '99.6', - x: 13.25, - y: 174.7556, - }, - { - l: '99.6', - x: 13.3333, - y: 175.0613, - }, - { - l: '99.6', - x: 13.4167, - y: 175.3441, - }, - { - l: '99.6', - x: 13.5, - y: 175.6263, - }, - { - l: '99.6', - x: 13.5833, - y: 175.8856, - }, - { - l: '99.6', - x: 13.6667, - y: 176.1485, - }, - { - l: '99.6', - x: 13.75, - y: 176.3998, - }, - { - l: '99.6', - x: 13.8333, - y: 176.6325, - }, - { - l: '99.6', - x: 13.9167, - y: 176.8426, - }, - { - l: '99.6', - x: 14.0, - y: 177.0607, - }, - { - l: '99.6', - x: 14.0833, - y: 177.2562, - }, - { - l: '99.6', - x: 14.1667, - y: 177.4402, - }, - { - l: '99.6', - x: 14.25, - y: 177.6213, - }, - { - l: '99.6', - x: 14.3333, - y: 177.7953, - }, - { - l: '99.6', - x: 14.4167, - y: 177.9511, - }, - { - l: '99.6', - x: 14.5, - y: 178.0999, - }, - { - l: '99.6', - x: 14.5833, - y: 178.2306, - }, - { - l: '99.6', - x: 14.6667, - y: 178.3612, - }, - { - l: '99.6', - x: 14.75, - y: 178.4933, - }, - { - l: '99.6', - x: 14.8333, - y: 178.6033, - }, - { - l: '99.6', - x: 14.9167, - y: 178.6996, - }, - { - l: '99.6', - x: 15.0, - y: 178.7959, - }, - { - l: '99.6', - x: 15.0833, - y: 178.8896, - }, - { - l: '99.6', - x: 15.1667, - y: 178.9656, - }, - { - l: '99.6', - x: 15.25, - y: 179.0458, - }, - { - l: '99.6', - x: 15.3333, - y: 179.1082, - }, - { - l: '99.6', - x: 15.4167, - y: 179.1749, - }, - { - l: '99.6', - x: 15.5, - y: 179.2305, - }, - { - l: '99.6', - x: 15.5833, - y: 179.2728, - }, - { - l: '99.6', - x: 15.6667, - y: 179.3261, - }, - { - l: '99.6', - x: 15.75, - y: 179.3617, - }, - { - l: '99.6', - x: 15.8333, - y: 179.4016, - }, - { - l: '99.6', - x: 15.9167, - y: 179.4414, - }, - { - l: '99.6', - x: 16.0, - y: 179.4637, - }, - { - l: '99.6', - x: 16.0833, - y: 179.5012, - }, - { - l: '99.6', - x: 16.1667, - y: 179.5124, - }, - { - l: '99.6', - x: 16.25, - y: 179.5433, - }, - { - l: '99.6', - x: 16.3333, - y: 179.5589, - }, - { - l: '99.6', - x: 16.4167, - y: 179.5788, - }, - { - l: '99.6', - x: 16.5, - y: 179.592, - }, - { - l: '99.6', - x: 16.5833, - y: 179.6119, - }, - { - l: '99.6', - x: 16.6667, - y: 179.6186, - }, - { - l: '99.6', - x: 16.75, - y: 179.6318, - }, - { - l: '99.6', - x: 16.8333, - y: 179.6385, - }, - { - l: '99.6', - x: 16.9167, - y: 179.6451, - }, - { - l: '99.6', - x: 17.0, - y: 179.6517, - }, - { - l: '99.6', - x: 17.0833, - y: 179.6473, - }, - { - l: '99.6', - x: 17.1667, - y: 179.6583, - }, - { - l: '99.6', - x: 17.25, - y: 179.6583, - }, - { - l: '99.6', - x: 17.3333, - y: 179.6583, - }, - { - l: '99.6', - x: 17.4167, - y: 179.654, - }, - { - l: '99.6', - x: 17.5, - y: 179.665, - }, - { - l: '99.6', - x: 17.5833, - y: 179.6606, - }, - { - l: '99.6', - x: 17.6667, - y: 179.6716, - }, - { - l: '99.6', - x: 17.75, - y: 179.6782, - }, - { - l: '99.6', - x: 17.8333, - y: 179.6848, - }, - { - l: '99.6', - x: 17.9167, - y: 179.6915, - }, - { - l: '99.6', - x: 18.0, - y: 179.6871, - }, - { - l: '99.6', - x: 18.0833, - y: 179.6981, - }, - { - l: '99.6', - x: 18.1667, - y: 179.7047, - }, - { - l: '99.6', - x: 18.25, - y: 179.7113, - }, - { - l: '99.6', - x: 18.3333, - y: 179.7113, - }, - { - l: '99.6', - x: 18.4167, - y: 179.7179, - }, - { - l: '99.6', - x: 18.5, - y: 179.7179, - }, - { - l: '99.6', - x: 18.5833, - y: 179.7246, - }, - { - l: '99.6', - x: 18.6667, - y: 179.7246, - }, - { - l: '99.6', - x: 18.75, - y: 179.7246, - }, - { - l: '99.6', - x: 18.8333, - y: 179.7356, - }, - { - l: '99.6', - x: 18.9167, - y: 179.7356, - }, - { - l: '99.6', - x: 19.0, - y: 179.7356, - }, - { - l: '99.6', - x: 19.0833, - y: 179.7356, - }, - { - l: '99.6', - x: 19.1667, - y: 179.7356, - }, - { - l: '99.6', - x: 19.25, - y: 179.7356, - }, - { - l: '99.6', - x: 19.3333, - y: 179.7356, - }, - { - l: '99.6', - x: 19.4167, - y: 179.7356, - }, - { - l: '99.6', - x: 19.5, - y: 179.7312, - }, - { - l: '99.6', - x: 19.5833, - y: 179.7312, - }, - { - l: '99.6', - x: 19.6667, - y: 179.7312, - }, - { - l: '99.6', - x: 19.75, - y: 179.7312, - }, - { - l: '99.6', - x: 19.8333, - y: 179.7422, - }, - { - l: '99.6', - x: 19.9167, - y: 179.7422, - }, - { - l: '99.6', - x: 20.0, - y: 179.7422, - }, - { - l: '99.6', - x: 20.0, - y: 179.7422, - }, + { l: 99.6, x: 4, y: 112.2229 }, + { l: 99.6, x: 4.083, y: 112.8937 }, + { l: 99.6, x: 4.167, y: 113.5869 }, + { l: 99.6, x: 4.25, y: 114.2805 }, + { l: 99.6, x: 4.333, y: 114.9745 }, + { l: 99.6, x: 4.417, y: 115.6995 }, + { l: 99.6, x: 4.5, y: 116.4191 }, + { l: 99.6, x: 4.583, y: 117.1363 }, + { l: 99.6, x: 4.667, y: 117.8737 }, + { l: 99.6, x: 4.75, y: 118.5917 }, + { l: 99.6, x: 4.833, y: 119.3072 }, + { l: 99.6, x: 4.917, y: 120.0317 }, + { l: 99.6, x: 5, y: 120.7259 }, + { l: 99.6, x: 5.083, y: 121.4065 }, + { l: 99.6, x: 5.167, y: 122.0844 }, + { l: 99.6, x: 5.25, y: 122.7435 }, + { l: 99.6, x: 5.333, y: 123.389 }, + { l: 99.6, x: 5.417, y: 124.0283 }, + { l: 99.6, x: 5.5, y: 124.638 }, + { l: 99.6, x: 5.583, y: 125.2481 }, + { l: 99.6, x: 5.667, y: 125.8515 }, + { l: 99.6, x: 5.75, y: 126.4479 }, + { l: 99.6, x: 5.833, y: 127.0334 }, + { l: 99.6, x: 5.917, y: 127.6119 }, + { l: 99.6, x: 6, y: 128.1948 }, + { l: 99.6, x: 6.083, y: 128.7667 }, + { l: 99.6, x: 6.167, y: 129.3425 }, + { l: 99.6, x: 6.25, y: 129.9005 }, + { l: 99.6, x: 6.333, y: 130.4587 }, + { l: 99.6, x: 6.417, y: 131.0349 }, + { l: 99.6, x: 6.5, y: 131.5933 }, + { l: 99.6, x: 6.583, y: 132.1487 }, + { l: 99.6, x: 6.667, y: 132.7141 }, + { l: 99.6, x: 6.75, y: 133.2698 }, + { l: 99.6, x: 6.833, y: 133.8255 }, + { l: 99.6, x: 6.917, y: 134.4104 }, + { l: 99.6, x: 7, y: 134.9742 }, + { l: 99.6, x: 7.083, y: 135.5414 }, + { l: 99.6, x: 7.167, y: 136.1234 }, + { l: 99.6, x: 7.25, y: 136.6986 }, + { l: 99.6, x: 7.333, y: 137.2817 }, + { l: 99.6, x: 7.417, y: 137.864 }, + { l: 99.6, x: 7.5, y: 138.4361 }, + { l: 99.6, x: 7.583, y: 139.0116 }, + { l: 99.6, x: 7.667, y: 139.5829 }, + { l: 99.6, x: 7.75, y: 140.1586 }, + { l: 99.6, x: 7.833, y: 140.7232 }, + { l: 99.6, x: 7.917, y: 141.2947 }, + { l: 99.6, x: 8, y: 141.8551 }, + { l: 99.6, x: 8.083, y: 142.4012 }, + { l: 99.6, x: 8.167, y: 142.9607 }, + { l: 99.6, x: 8.25, y: 143.4916 }, + { l: 99.6, x: 8.333, y: 144.0372 }, + { l: 99.6, x: 8.417, y: 144.5783 }, + { l: 99.6, x: 8.5, y: 145.1055 }, + { l: 99.6, x: 8.583, y: 145.6363 }, + { l: 99.6, x: 8.667, y: 146.1625 }, + { l: 99.6, x: 8.75, y: 146.6972 }, + { l: 99.6, x: 8.833, y: 147.2245 }, + { l: 99.6, x: 8.917, y: 147.7731 }, + { l: 99.6, x: 9, y: 148.3156 }, + { l: 99.6, x: 9.083, y: 148.8618 }, + { l: 99.6, x: 9.167, y: 149.4297 }, + { l: 99.6, x: 9.25, y: 149.9913 }, + { l: 99.6, x: 9.333, y: 150.5567 }, + { l: 99.6, x: 9.417, y: 151.1442 }, + { l: 99.6, x: 9.5, y: 151.7252 }, + { l: 99.6, x: 9.583, y: 152.3101 }, + { l: 99.6, x: 9.667, y: 152.9025 }, + { l: 99.6, x: 9.75, y: 153.4883 }, + { l: 99.6, x: 9.833, y: 154.0893 }, + { l: 99.6, x: 9.917, y: 154.6867 }, + { l: 99.6, x: 10, y: 155.2923 }, + { l: 99.6, x: 10.083, y: 155.8871 }, + { l: 99.6, x: 10.167, y: 156.4972 }, + { l: 99.6, x: 10.25, y: 157.1042 }, + { l: 99.6, x: 10.333, y: 157.6968 }, + { l: 99.6, x: 10.417, y: 158.3081 }, + { l: 99.6, x: 10.5, y: 158.8979 }, + { l: 99.6, x: 10.583, y: 159.4992 }, + { l: 99.6, x: 10.667, y: 160.0894 }, + { l: 99.6, x: 10.75, y: 160.6841 }, + { l: 99.6, x: 10.833, y: 161.2603 }, + { l: 99.6, x: 10.917, y: 161.84 }, + { l: 99.6, x: 11, y: 162.4093 }, + { l: 99.6, x: 11.083, y: 162.9674 }, + { l: 99.6, x: 11.167, y: 163.5285 }, + { l: 99.6, x: 11.25, y: 164.0754 }, + { l: 99.6, x: 11.333, y: 164.6147 }, + { l: 99.6, x: 11.417, y: 165.1528 }, + { l: 99.6, x: 11.5, y: 165.6655 }, + { l: 99.6, x: 11.583, y: 166.1816 }, + { l: 99.6, x: 11.667, y: 166.6921 }, + { l: 99.6, x: 11.75, y: 167.1923 }, + { l: 99.6, x: 11.833, y: 167.6919 }, + { l: 99.6, x: 11.917, y: 168.1666 }, + { l: 99.6, x: 12, y: 168.6458 }, + { l: 99.6, x: 12.083, y: 169.1207 }, + { l: 99.6, x: 12.167, y: 169.5815 }, + { l: 99.6, x: 12.25, y: 170.0284 }, + { l: 99.6, x: 12.333, y: 170.482 }, + { l: 99.6, x: 12.417, y: 170.921 }, + { l: 99.6, x: 12.5, y: 171.3462 }, + { l: 99.6, x: 12.583, y: 171.7555 }, + { l: 99.6, x: 12.667, y: 172.165 }, + { l: 99.6, x: 12.75, y: 172.5425 }, + { l: 99.6, x: 12.833, y: 172.9266 }, + { l: 99.6, x: 12.917, y: 173.2991 }, + { l: 99.6, x: 13, y: 173.6553 }, + { l: 99.6, x: 13.083, y: 173.9957 }, + { l: 99.6, x: 13.167, y: 174.3282 }, + { l: 99.6, x: 13.25, y: 174.656 }, + { l: 99.6, x: 13.333, y: 174.961 }, + { l: 99.6, x: 13.417, y: 175.2466 }, + { l: 99.6, x: 13.5, y: 175.5281 }, + { l: 99.6, x: 13.583, y: 175.7869 }, + { l: 99.6, x: 13.667, y: 176.0524 }, + { l: 99.6, x: 13.75, y: 176.3031 }, + { l: 99.6, x: 13.833, y: 176.5354 }, + { l: 99.6, x: 13.917, y: 176.7477 }, + { l: 99.6, x: 14, y: 176.9654 }, + { l: 99.6, x: 14.083, y: 177.1606 }, + { l: 99.6, x: 14.167, y: 177.3465 }, + { l: 99.6, x: 14.25, y: 177.5273 }, + { l: 99.6, x: 14.333, y: 177.7011 }, + { l: 99.6, x: 14.417, y: 177.8586 }, + { l: 99.6, x: 14.5, y: 178.0071 }, + { l: 99.6, x: 14.583, y: 178.1378 }, + { l: 99.6, x: 14.667, y: 178.2697 }, + { l: 99.6, x: 14.75, y: 178.4017 }, + { l: 99.6, x: 14.833, y: 178.5115 }, + { l: 99.6, x: 14.917, y: 178.609 }, + { l: 99.6, x: 15, y: 178.7051 }, + { l: 99.6, x: 15.083, y: 178.7988 }, + { l: 99.6, x: 15.167, y: 178.8756 }, + { l: 99.6, x: 15.25, y: 178.9557 }, + { l: 99.6, x: 15.333, y: 179.0181 }, + { l: 99.6, x: 15.417, y: 179.0855 }, + { l: 99.6, x: 15.5, y: 179.1411 }, + { l: 99.6, x: 15.583, y: 179.1833 }, + { l: 99.6, x: 15.667, y: 179.2371 }, + { l: 99.6, x: 15.75, y: 179.2726 }, + { l: 99.6, x: 15.833, y: 179.3125 }, + { l: 99.6, x: 15.917, y: 179.3527 }, + { l: 99.6, x: 16, y: 179.3749 }, + { l: 99.6, x: 16.083, y: 179.4124 }, + { l: 99.6, x: 16.167, y: 179.424 }, + { l: 99.6, x: 16.25, y: 179.4548 }, + { l: 99.6, x: 16.333, y: 179.4704 }, + { l: 99.6, x: 16.417, y: 179.4905 }, + { l: 99.6, x: 16.5, y: 179.5037 }, + { l: 99.6, x: 16.583, y: 179.5236 }, + { l: 99.6, x: 16.667, y: 179.5303 }, + { l: 99.6, x: 16.75, y: 179.5436 }, + { l: 99.6, x: 16.833, y: 179.5502 }, + { l: 99.6, x: 16.917, y: 179.5569 }, + { l: 99.6, x: 17, y: 179.5635 }, + { l: 99.6, x: 17.083, y: 179.5592 }, + { l: 99.6, x: 17.167, y: 179.5702 }, + { l: 99.6, x: 17.25, y: 179.5702 }, + { l: 99.6, x: 17.333, y: 179.5702 }, + { l: 99.6, x: 17.417, y: 179.5659 }, + { l: 99.6, x: 17.5, y: 179.5768 }, + { l: 99.6, x: 17.583, y: 179.5725 }, + { l: 99.6, x: 17.667, y: 179.5835 }, + { l: 99.6, x: 17.75, y: 179.5901 }, + { l: 99.6, x: 17.833, y: 179.5967 }, + { l: 99.6, x: 17.917, y: 179.6034 }, + { l: 99.6, x: 18, y: 179.5991 }, + { l: 99.6, x: 18.083, y: 179.61 }, + { l: 99.6, x: 18.167, y: 179.6167 }, + { l: 99.6, x: 18.25, y: 179.6233 }, + { l: 99.6, x: 18.333, y: 179.6233 }, + { l: 99.6, x: 18.417, y: 179.63 }, + { l: 99.6, x: 18.5, y: 179.63 }, + { l: 99.6, x: 18.583, y: 179.6366 }, + { l: 99.6, x: 18.667, y: 179.6366 }, + { l: 99.6, x: 18.75, y: 179.6366 }, + { l: 99.6, x: 18.833, y: 179.6475 }, + { l: 99.6, x: 18.917, y: 179.6476 }, + { l: 99.6, x: 19, y: 179.6476 }, + { l: 99.6, x: 19.083, y: 179.6476 }, + { l: 99.6, x: 19.167, y: 179.6476 }, + { l: 99.6, x: 19.25, y: 179.6476 }, + { l: 99.6, x: 19.333, y: 179.6476 }, + { l: 99.6, x: 19.417, y: 179.6476 }, + { l: 99.6, x: 19.5, y: 179.6432 }, + { l: 99.6, x: 19.583, y: 179.6432 }, + { l: 99.6, x: 19.667, y: 179.6432 }, + { l: 99.6, x: 19.75, y: 179.6432 }, + { l: 99.6, x: 19.833, y: 179.6542 }, + { l: 99.6, x: 19.917, y: 179.6542 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, }, }, diff --git a/src/chartdata/uk_who_height_male_centile_data.ts b/src/chartdata/uk_who_height_male_centile_data.ts index 4f31e06..c49efb0 100644 --- a/src/chartdata/uk_who_height_male_centile_data.ts +++ b/src/chartdata/uk_who_height_male_centile_data.ts @@ -10,962 +10,211 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: -0.33, - y: null, - }, - { - l: '0.4', - x: -0.2875, - y: 27.7419, - }, - { - l: '0.4', - x: -0.2683, - y: 28.7883, - }, - { - l: '0.4', - x: -0.2491, - y: 29.8516, - }, - { - l: '0.4', - x: -0.23, - y: 30.9325, - }, - { - l: '0.4', - x: -0.2108, - y: 32.0479, - }, - { - l: '0.4', - x: -0.1916, - y: 33.2236, - }, - { - l: '0.4', - x: -0.1725, - y: 34.4775, - }, - { - l: '0.4', - x: -0.1533, - y: 35.7906, - }, - { - l: '0.4', - x: -0.1342, - y: 37.1336, - }, - { - l: '0.4', - x: -0.115, - y: 38.4763, - }, - { - l: '0.4', - x: -0.0958, - y: 39.7938, - }, - { - l: '0.4', - x: -0.0767, - y: 41.0676, - }, - { - l: '0.4', - x: -0.0575, - y: 42.281, - }, - { - l: '0.4', - x: -0.0383, - y: 43.403, - }, - { - l: '0.4', - x: -0.0192, - y: 44.3934, - }, - { - l: '0.4', - x: -0.0, - y: 45.242, - }, - { - l: '0.4', - x: 0.0192, - y: 45.9987, - }, - { - l: '0.4', - x: 0.0383, - y: 46.7337, - }, - { - l: '0.4', - x: 0.0383, - y: 46.7337, - }, + { l: 0.4, x: -0.2683, y: 28.83 }, + { l: 0.4, x: -0.2491, y: 29.893 }, + { l: 0.4, x: -0.23, y: 30.9734 }, + { l: 0.4, x: -0.2108, y: 32.0883 }, + { l: 0.4, x: -0.1916, y: 33.2633 }, + { l: 0.4, x: -0.1725, y: 34.5162 }, + { l: 0.4, x: -0.1533, y: 35.8284 }, + { l: 0.4, x: -0.1342, y: 37.1704 }, + { l: 0.4, x: -0.115, y: 38.512 }, + { l: 0.4, x: -0.0958, y: 39.8285 }, + { l: 0.4, x: -0.0767, y: 41.1013 }, + { l: 0.4, x: -0.0575, y: 42.3138 }, + { l: 0.4, x: -0.0383, y: 43.4351 }, + { l: 0.4, x: -0.0192, y: 44.425 }, + { l: 0.4, x: 0, y: 45.2731 }, + { l: 0.4, x: 0.0192, y: 46.0296 }, + { l: 0.4, x: 0.0383, y: 46.7642 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: -0.33, - y: null, - }, - { - l: '2.0', - x: -0.2875, - y: 29.6624, - }, - { - l: '2.0', - x: -0.2683, - y: 30.6975, - }, - { - l: '2.0', - x: -0.2491, - y: 31.7456, - }, - { - l: '2.0', - x: -0.23, - y: 32.8063, - }, - { - l: '2.0', - x: -0.2108, - y: 33.8951, - }, - { - l: '2.0', - x: -0.1916, - y: 35.0377, - }, - { - l: '2.0', - x: -0.1725, - y: 36.2527, - }, - { - l: '2.0', - x: -0.1533, - y: 37.5221, - }, - { - l: '2.0', - x: -0.1342, - y: 38.8179, - }, - { - l: '2.0', - x: -0.115, - y: 40.1117, - }, - { - l: '2.0', - x: -0.0958, - y: 41.3807, - }, - { - l: '2.0', - x: -0.0767, - y: 42.6091, - }, - { - l: '2.0', - x: -0.0575, - y: 43.7824, - }, - { - l: '2.0', - x: -0.0383, - y: 44.8714, - }, - { - l: '2.0', - x: -0.0192, - y: 45.8366, - }, - { - l: '2.0', - x: -0.0, - y: 46.6676, - }, - { - l: '2.0', - x: 0.0192, - y: 47.4105, - }, - { - l: '2.0', - x: 0.0383, - y: 48.1266, - }, - { - l: '2.0', - x: 0.0383, - y: 48.1266, - }, + { l: 2.0, x: -0.2683, y: 30.5437 }, + { l: 2.0, x: -0.2491, y: 31.5931 }, + { l: 2.0, x: -0.23, y: 32.6554 }, + { l: 2.0, x: -0.2108, y: 33.7463 }, + { l: 2.0, x: -0.1916, y: 34.8916 }, + { l: 2.0, x: -0.1725, y: 36.1097 }, + { l: 2.0, x: -0.1533, y: 37.3826 }, + { l: 2.0, x: -0.1342, y: 38.6822 }, + { l: 2.0, x: -0.115, y: 39.98 }, + { l: 2.0, x: -0.0958, y: 41.2529 }, + { l: 2.0, x: -0.0767, y: 42.4849 }, + { l: 2.0, x: -0.0575, y: 43.6615 }, + { l: 2.0, x: -0.0383, y: 44.7531 }, + { l: 2.0, x: -0.0192, y: 45.7203 }, + { l: 2.0, x: 0, y: 46.5528 }, + { l: 2.0, x: 0.0192, y: 47.2968 }, + { l: 2.0, x: 0.0383, y: 48.0144 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: -0.33, - y: null, - }, - { - l: '9.0', - x: -0.2875, - y: 31.583, - }, - { - l: '9.0', - x: -0.2683, - y: 32.6066, - }, - { - l: '9.0', - x: -0.2491, - y: 33.6397, - }, - { - l: '9.0', - x: -0.23, - y: 34.6802, - }, - { - l: '9.0', - x: -0.2108, - y: 35.7423, - }, - { - l: '9.0', - x: -0.1916, - y: 36.8519, - }, - { - l: '9.0', - x: -0.1725, - y: 38.0279, - }, - { - l: '9.0', - x: -0.1533, - y: 39.2536, - }, - { - l: '9.0', - x: -0.1342, - y: 40.5022, - }, - { - l: '9.0', - x: -0.115, - y: 41.7472, - }, - { - l: '9.0', - x: -0.0958, - y: 42.9677, - }, - { - l: '9.0', - x: -0.0767, - y: 44.1506, - }, - { - l: '9.0', - x: -0.0575, - y: 45.2839, - }, - { - l: '9.0', - x: -0.0383, - y: 46.3398, - }, - { - l: '9.0', - x: -0.0192, - y: 47.2797, - }, - { - l: '9.0', - x: -0.0, - y: 48.0933, - }, - { - l: '9.0', - x: 0.0192, - y: 48.8223, - }, - { - l: '9.0', - x: 0.0383, - y: 49.5194, - }, - { - l: '9.0', - x: 0.0383, - y: 49.5194, - }, + { l: 9.0, x: -0.2683, y: 32.5852 }, + { l: 9.0, x: -0.2491, y: 33.6185 }, + { l: 9.0, x: -0.23, y: 34.6592 }, + { l: 9.0, x: -0.2108, y: 35.7216 }, + { l: 9.0, x: -0.1916, y: 36.8315 }, + { l: 9.0, x: -0.1725, y: 38.008 }, + { l: 9.0, x: -0.1533, y: 39.2342 }, + { l: 9.0, x: -0.1342, y: 40.4833 }, + { l: 9.0, x: -0.115, y: 41.7288 }, + { l: 9.0, x: -0.0958, y: 42.9499 }, + { l: 9.0, x: -0.0767, y: 44.1333 }, + { l: 9.0, x: -0.0575, y: 45.2671 }, + { l: 9.0, x: -0.0383, y: 46.3233 }, + { l: 9.0, x: -0.0192, y: 47.2635 }, + { l: 9.0, x: 0, y: 48.0773 }, + { l: 9.0, x: 0.0192, y: 48.8065 }, + { l: 9.0, x: 0.0383, y: 49.5038 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: -0.33, - y: null, - }, - { - l: '25.0', - x: -0.2875, - y: 33.5036, - }, - { - l: '25.0', - x: -0.2683, - y: 34.5158, - }, - { - l: '25.0', - x: -0.2491, - y: 35.5337, - }, - { - l: '25.0', - x: -0.23, - y: 36.554, - }, - { - l: '25.0', - x: -0.2108, - y: 37.5895, - }, - { - l: '25.0', - x: -0.1916, - y: 38.666, - }, - { - l: '25.0', - x: -0.1725, - y: 39.8031, - }, - { - l: '25.0', - x: -0.1533, - y: 40.9851, - }, - { - l: '25.0', - x: -0.1342, - y: 42.1865, - }, - { - l: '25.0', - x: -0.115, - y: 43.3826, - }, - { - l: '25.0', - x: -0.0958, - y: 44.5546, - }, - { - l: '25.0', - x: -0.0767, - y: 45.692, - }, - { - l: '25.0', - x: -0.0575, - y: 46.7853, - }, - { - l: '25.0', - x: -0.0383, - y: 47.8082, - }, - { - l: '25.0', - x: -0.0192, - y: 48.7228, - }, - { - l: '25.0', - x: -0.0, - y: 49.5189, - }, - { - l: '25.0', - x: 0.0192, - y: 50.234, - }, - { - l: '25.0', - x: 0.0383, - y: 50.9123, - }, - { - l: '25.0', - x: 0.0383, - y: 50.9123, - }, + { l: 25.0, x: -0.2683, y: 34.4933 }, + { l: 25.0, x: -0.2491, y: 35.5114 }, + { l: 25.0, x: -0.23, y: 36.532 }, + { l: 25.0, x: -0.2108, y: 37.5678 }, + { l: 25.0, x: -0.1916, y: 38.6447 }, + { l: 25.0, x: -0.1725, y: 39.7823 }, + { l: 25.0, x: -0.1533, y: 40.9648 }, + { l: 25.0, x: -0.1342, y: 42.1667 }, + { l: 25.0, x: -0.115, y: 43.3634 }, + { l: 25.0, x: -0.0958, y: 44.5359 }, + { l: 25.0, x: -0.0767, y: 45.6739 }, + { l: 25.0, x: -0.0575, y: 46.7677 }, + { l: 25.0, x: -0.0383, y: 47.7909 }, + { l: 25.0, x: -0.0192, y: 48.7059 }, + { l: 25.0, x: 0, y: 49.5021 }, + { l: 25.0, x: 0.0192, y: 50.2174 }, + { l: 25.0, x: 0.0383, y: 50.8959 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: -0.33, - y: null, - }, - { - l: '50.0', - x: -0.2875, - y: 35.4241, - }, - { - l: '50.0', - x: -0.2683, - y: 36.4249, - }, - { - l: '50.0', - x: -0.2491, - y: 37.4277, - }, - { - l: '50.0', - x: -0.23, - y: 38.4279, - }, - { - l: '50.0', - x: -0.2108, - y: 39.4367, - }, - { - l: '50.0', - x: -0.1916, - y: 40.4801, - }, - { - l: '50.0', - x: -0.1725, - y: 41.5784, - }, - { - l: '50.0', - x: -0.1533, - y: 42.7166, - }, - { - l: '50.0', - x: -0.1342, - y: 43.8708, - }, - { - l: '50.0', - x: -0.115, - y: 45.018, - }, - { - l: '50.0', - x: -0.0958, - y: 46.1415, - }, - { - l: '50.0', - x: -0.0767, - y: 47.2335, - }, - { - l: '50.0', - x: -0.0575, - y: 48.2868, - }, - { - l: '50.0', - x: -0.0383, - y: 49.2766, - }, - { - l: '50.0', - x: -0.0192, - y: 50.1659, - }, - { - l: '50.0', - x: -0.0, - y: 50.9445, - }, - { - l: '50.0', - x: 0.0192, - y: 51.6458, - }, - { - l: '50.0', - x: 0.0383, - y: 52.3051, - }, - { - l: '50.0', - x: 0.0383, - y: 52.3051, - }, + { l: 50.0, x: -0.2683, y: 36.4249 }, + { l: 50.0, x: -0.2491, y: 37.4277 }, + { l: 50.0, x: -0.23, y: 38.4279 }, + { l: 50.0, x: -0.2108, y: 39.4367 }, + { l: 50.0, x: -0.1916, y: 40.4801 }, + { l: 50.0, x: -0.1725, y: 41.5784 }, + { l: 50.0, x: -0.1533, y: 42.7166 }, + { l: 50.0, x: -0.1342, y: 43.8708 }, + { l: 50.0, x: -0.115, y: 45.018 }, + { l: 50.0, x: -0.0958, y: 46.1415 }, + { l: 50.0, x: -0.0767, y: 47.2335 }, + { l: 50.0, x: -0.0575, y: 48.2868 }, + { l: 50.0, x: -0.0383, y: 49.2766 }, + { l: 50.0, x: -0.0192, y: 50.1659 }, + { l: 50.0, x: 0, y: 50.9445 }, + { l: 50.0, x: 0.0192, y: 51.6458 }, + { l: 50.0, x: 0.0383, y: 52.3051 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: -0.33, - y: null, - }, - { - l: '75.0', - x: -0.2875, - y: 37.3447, - }, - { - l: '75.0', - x: -0.2683, - y: 38.3341, - }, - { - l: '75.0', - x: -0.2491, - y: 39.3217, - }, - { - l: '75.0', - x: -0.23, - y: 40.3017, - }, - { - l: '75.0', - x: -0.2108, - y: 41.2839, - }, - { - l: '75.0', - x: -0.1916, - y: 42.2942, - }, - { - l: '75.0', - x: -0.1725, - y: 43.3536, - }, - { - l: '75.0', - x: -0.1533, - y: 44.4481, - }, - { - l: '75.0', - x: -0.1342, - y: 45.5551, - }, - { - l: '75.0', - x: -0.115, - y: 46.6535, - }, - { - l: '75.0', - x: -0.0958, - y: 47.7284, - }, - { - l: '75.0', - x: -0.0767, - y: 48.775, - }, - { - l: '75.0', - x: -0.0575, - y: 49.7882, - }, - { - l: '75.0', - x: -0.0383, - y: 50.745, - }, - { - l: '75.0', - x: -0.0192, - y: 51.6091, - }, - { - l: '75.0', - x: -0.0, - y: 52.3702, - }, - { - l: '75.0', - x: 0.0192, - y: 53.0576, - }, - { - l: '75.0', - x: 0.0383, - y: 53.698, - }, - { - l: '75.0', - x: 0.0383, - y: 53.698, - }, + { l: 75.0, x: -0.2683, y: 38.3565 }, + { l: 75.0, x: -0.2491, y: 39.344 }, + { l: 75.0, x: -0.23, y: 40.3238 }, + { l: 75.0, x: -0.2108, y: 41.3056 }, + { l: 75.0, x: -0.1916, y: 42.3155 }, + { l: 75.0, x: -0.1725, y: 43.3745 }, + { l: 75.0, x: -0.1533, y: 44.4685 }, + { l: 75.0, x: -0.1342, y: 45.5749 }, + { l: 75.0, x: -0.115, y: 46.6727 }, + { l: 75.0, x: -0.0958, y: 47.7471 }, + { l: 75.0, x: -0.0767, y: 48.7931 }, + { l: 75.0, x: -0.0575, y: 49.8059 }, + { l: 75.0, x: -0.0383, y: 50.7623 }, + { l: 75.0, x: -0.0192, y: 51.626 }, + { l: 75.0, x: 0, y: 52.3869 }, + { l: 75.0, x: 0.0192, y: 53.0741 }, + { l: 75.0, x: 0.0383, y: 53.7143 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: -0.33, - y: null, - }, - { - l: '91.0', - x: -0.2875, - y: 39.2653, - }, - { - l: '91.0', - x: -0.2683, - y: 40.2432, - }, - { - l: '91.0', - x: -0.2491, - y: 41.2158, - }, - { - l: '91.0', - x: -0.23, - y: 42.1756, - }, - { - l: '91.0', - x: -0.2108, - y: 43.1311, - }, - { - l: '91.0', - x: -0.1916, - y: 44.1083, - }, - { - l: '91.0', - x: -0.1725, - y: 45.1288, - }, - { - l: '91.0', - x: -0.1533, - y: 46.1796, - }, - { - l: '91.0', - x: -0.1342, - y: 47.2394, - }, - { - l: '91.0', - x: -0.115, - y: 48.2889, - }, - { - l: '91.0', - x: -0.0958, - y: 49.3153, - }, - { - l: '91.0', - x: -0.0767, - y: 50.3165, - }, - { - l: '91.0', - x: -0.0575, - y: 51.2897, - }, - { - l: '91.0', - x: -0.0383, - y: 52.2134, - }, - { - l: '91.0', - x: -0.0192, - y: 53.0522, - }, - { - l: '91.0', - x: -0.0, - y: 53.7958, - }, - { - l: '91.0', - x: 0.0192, - y: 54.4693, - }, - { - l: '91.0', - x: 0.0383, - y: 55.0908, - }, - { - l: '91.0', - x: 0.0383, - y: 55.0908, - }, + { l: 91.0, x: -0.2683, y: 40.2646 }, + { l: 91.0, x: -0.2491, y: 41.237 }, + { l: 91.0, x: -0.23, y: 42.1966 }, + { l: 91.0, x: -0.2108, y: 43.1518 }, + { l: 91.0, x: -0.1916, y: 44.1286 }, + { l: 91.0, x: -0.1725, y: 45.1487 }, + { l: 91.0, x: -0.1533, y: 46.199 }, + { l: 91.0, x: -0.1342, y: 47.2583 }, + { l: 91.0, x: -0.115, y: 48.3072 }, + { l: 91.0, x: -0.0958, y: 49.3331 }, + { l: 91.0, x: -0.0767, y: 50.3337 }, + { l: 91.0, x: -0.0575, y: 51.3065 }, + { l: 91.0, x: -0.0383, y: 52.2299 }, + { l: 91.0, x: -0.0192, y: 53.0684 }, + { l: 91.0, x: 0, y: 53.8118 }, + { l: 91.0, x: 0.0192, y: 54.4851 }, + { l: 91.0, x: 0.0383, y: 55.1064 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: -0.33, - y: null, - }, - { - l: '98.0', - x: -0.2875, - y: 41.1858, - }, - { - l: '98.0', - x: -0.2683, - y: 42.1524, - }, - { - l: '98.0', - x: -0.2491, - y: 43.1098, - }, - { - l: '98.0', - x: -0.23, - y: 44.0495, - }, - { - l: '98.0', - x: -0.2108, - y: 44.9784, - }, - { - l: '98.0', - x: -0.1916, - y: 45.9224, - }, - { - l: '98.0', - x: -0.1725, - y: 46.9041, - }, - { - l: '98.0', - x: -0.1533, - y: 47.9111, - }, - { - l: '98.0', - x: -0.1342, - y: 48.9238, - }, - { - l: '98.0', - x: -0.115, - y: 49.9244, - }, - { - l: '98.0', - x: -0.0958, - y: 50.9023, - }, - { - l: '98.0', - x: -0.0767, - y: 51.858, - }, - { - l: '98.0', - x: -0.0575, - y: 52.7911, - }, - { - l: '98.0', - x: -0.0383, - y: 53.6818, - }, - { - l: '98.0', - x: -0.0192, - y: 54.4953, - }, - { - l: '98.0', - x: -0.0, - y: 55.2215, - }, - { - l: '98.0', - x: 0.0192, - y: 55.8811, - }, - { - l: '98.0', - x: 0.0383, - y: 56.4837, - }, - { - l: '98.0', - x: 0.0383, - y: 56.4837, - }, + { l: 98.0, x: -0.2683, y: 42.3062 }, + { l: 98.0, x: -0.2491, y: 43.2624 }, + { l: 98.0, x: -0.23, y: 44.2004 }, + { l: 98.0, x: -0.2108, y: 45.1271 }, + { l: 98.0, x: -0.1916, y: 46.0685 }, + { l: 98.0, x: -0.1725, y: 47.0471 }, + { l: 98.0, x: -0.1533, y: 48.0506 }, + { l: 98.0, x: -0.1342, y: 49.0594 }, + { l: 98.0, x: -0.115, y: 50.0561 }, + { l: 98.0, x: -0.0958, y: 51.0301 }, + { l: 98.0, x: -0.0767, y: 51.9821 }, + { l: 98.0, x: -0.0575, y: 52.9121 }, + { l: 98.0, x: -0.0383, y: 53.8001 }, + { l: 98.0, x: -0.0192, y: 54.6116 }, + { l: 98.0, x: 0, y: 55.3363 }, + { l: 98.0, x: 0.0192, y: 55.9948 }, + { l: 98.0, x: 0.0383, y: 56.5959 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: -0.33, - y: null, - }, - { - l: '99.6', - x: -0.2875, - y: 43.1064, - }, - { - l: '99.6', - x: -0.2683, - y: 44.0615, - }, - { - l: '99.6', - x: -0.2491, - y: 45.0038, - }, - { - l: '99.6', - x: -0.23, - y: 45.9233, - }, - { - l: '99.6', - x: -0.2108, - y: 46.8256, - }, - { - l: '99.6', - x: -0.1916, - y: 47.7365, - }, - { - l: '99.6', - x: -0.1725, - y: 48.6793, - }, - { - l: '99.6', - x: -0.1533, - y: 49.6426, - }, - { - l: '99.6', - x: -0.1342, - y: 50.6081, - }, - { - l: '99.6', - x: -0.115, - y: 51.5598, - }, - { - l: '99.6', - x: -0.0958, - y: 52.4892, - }, - { - l: '99.6', - x: -0.0767, - y: 53.3994, - }, - { - l: '99.6', - x: -0.0575, - y: 54.2926, - }, - { - l: '99.6', - x: -0.0383, - y: 55.1502, - }, - { - l: '99.6', - x: -0.0192, - y: 55.9385, - }, - { - l: '99.6', - x: -0.0, - y: 56.6471, - }, - { - l: '99.6', - x: 0.0192, - y: 57.2928, - }, - { - l: '99.6', - x: 0.0383, - y: 57.8765, - }, - { - l: '99.6', - x: 0.0383, - y: 57.8765, - }, + { l: 99.6, x: -0.2683, y: 44.0198 }, + { l: 99.6, x: -0.2491, y: 44.9624 }, + { l: 99.6, x: -0.23, y: 45.8824 }, + { l: 99.6, x: -0.2108, y: 46.7852 }, + { l: 99.6, x: -0.1916, y: 47.6969 }, + { l: 99.6, x: -0.1725, y: 48.6405 }, + { l: 99.6, x: -0.1533, y: 49.6048 }, + { l: 99.6, x: -0.1342, y: 50.5713 }, + { l: 99.6, x: -0.115, y: 51.5241 }, + { l: 99.6, x: -0.0958, y: 52.4545 }, + { l: 99.6, x: -0.0767, y: 53.3658 }, + { l: 99.6, x: -0.0575, y: 54.2598 }, + { l: 99.6, x: -0.0383, y: 55.1181 }, + { l: 99.6, x: -0.0192, y: 55.9069 }, + { l: 99.6, x: 0, y: 56.616 }, + { l: 99.6, x: 0.0192, y: 57.262 }, + { l: 99.6, x: 0.0383, y: 57.8461 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, - female: null, }, }, { @@ -976,4742 +225,382 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 0.0383, - y: 47.2483, - }, - { - l: '0.4', - x: 0.0575, - y: 48.2522, - }, - { - l: '0.4', - x: 0.0767, - y: 49.2104, - }, - { - l: '0.4', - x: 0.0958, - y: 50.1224, - }, - { - l: '0.4', - x: 0.115, - y: 50.9855, - }, - { - l: '0.4', - x: 0.1342, - y: 51.8028, - }, - { - l: '0.4', - x: 0.1533, - y: 52.5755, - }, - { - l: '0.4', - x: 0.1725, - y: 53.3106, - }, - { - l: '0.4', - x: 0.1916, - y: 54.0154, - }, - { - l: '0.4', - x: 0.2108, - y: 54.691, - }, - { - l: '0.4', - x: 0.23, - y: 55.3358, - }, - { - l: '0.4', - x: 0.2491, - y: 55.9505, - }, - { - l: '0.4', - x: 0.2683, - y: 56.5417, - }, - { - l: '0.4', - x: 0.2875, - y: 57.103, - }, - { - l: '0.4', - x: 0.3066, - y: 57.6365, - }, - { - l: '0.4', - x: 0.3258, - y: 58.1443, - }, - { - l: '0.4', - x: 0.345, - y: 58.6299, - }, - { - l: '0.4', - x: 0.3641, - y: 59.0947, - }, - { - l: '0.4', - x: 0.3833, - y: 59.5397, - }, - { - l: '0.4', - x: 0.4025, - y: 59.9664, - }, - { - l: '0.4', - x: 0.4216, - y: 60.3769, - }, - { - l: '0.4', - x: 0.4408, - y: 60.7732, - }, - { - l: '0.4', - x: 0.46, - y: 61.1557, - }, - { - l: '0.4', - x: 0.4791, - y: 61.5258, - }, - { - l: '0.4', - x: 0.4983, - y: 61.8846, - }, - { - l: '0.4', - x: 0.5175, - y: 62.2347, - }, - { - l: '0.4', - x: 0.5366, - y: 62.5759, - }, - { - l: '0.4', - x: 0.5558, - y: 62.9089, - }, - { - l: '0.4', - x: 0.5749, - y: 63.2346, - }, - { - l: '0.4', - x: 0.5941, - y: 63.5544, - }, - { - l: '0.4', - x: 0.6133, - y: 63.8688, - }, - { - l: '0.4', - x: 0.6324, - y: 64.1778, - }, - { - l: '0.4', - x: 0.6516, - y: 64.482, - }, - { - l: '0.4', - x: 0.6708, - y: 64.7822, - }, - { - l: '0.4', - x: 0.6899, - y: 65.0795, - }, - { - l: '0.4', - x: 0.7091, - y: 65.3729, - }, - { - l: '0.4', - x: 0.7283, - y: 65.6626, - }, - { - l: '0.4', - x: 0.7474, - y: 65.9486, - }, - { - l: '0.4', - x: 0.7666, - y: 66.2312, - }, - { - l: '0.4', - x: 0.7858, - y: 66.5102, - }, - { - l: '0.4', - x: 0.8049, - y: 66.7858, - }, - { - l: '0.4', - x: 0.8241, - y: 67.0581, - }, - { - l: '0.4', - x: 0.8433, - y: 67.3269, - }, - { - l: '0.4', - x: 0.8624, - y: 67.5924, - }, - { - l: '0.4', - x: 0.8816, - y: 67.8548, - }, - { - l: '0.4', - x: 0.9008, - y: 68.1141, - }, - { - l: '0.4', - x: 0.9199, - y: 68.3705, - }, - { - l: '0.4', - x: 0.9391, - y: 68.6241, - }, - { - l: '0.4', - x: 0.9582, - y: 68.875, - }, - { - l: '0.4', - x: 0.9774, - y: 69.1231, - }, - { - l: '0.4', - x: 0.9966, - y: 69.3686, - }, - { - l: '0.4', - x: 1.0157, - y: 69.6116, - }, - { - l: '0.4', - x: 1.0349, - y: 69.8521, - }, - { - l: '0.4', - x: 1.0541, - y: 70.0902, - }, - { - l: '0.4', - x: 1.0732, - y: 70.326, - }, - { - l: '0.4', - x: 1.0924, - y: 70.5595, - }, - { - l: '0.4', - x: 1.1116, - y: 70.7908, - }, - { - l: '0.4', - x: 1.1307, - y: 71.0198, - }, - { - l: '0.4', - x: 1.1499, - y: 71.2468, - }, - { - l: '0.4', - x: 1.1691, - y: 71.4715, - }, - { - l: '0.4', - x: 1.1882, - y: 71.6942, - }, - { - l: '0.4', - x: 1.2074, - y: 71.9148, - }, - { - l: '0.4', - x: 1.2266, - y: 72.1334, - }, - { - l: '0.4', - x: 1.2457, - y: 72.3502, - }, - { - l: '0.4', - x: 1.2649, - y: 72.5654, - }, - { - l: '0.4', - x: 1.2841, - y: 72.7788, - }, - { - l: '0.4', - x: 1.3032, - y: 72.9905, - }, - { - l: '0.4', - x: 1.3224, - y: 73.2004, - }, - { - l: '0.4', - x: 1.3415, - y: 73.4084, - }, - { - l: '0.4', - x: 1.3607, - y: 73.6146, - }, - { - l: '0.4', - x: 1.3799, - y: 73.8191, - }, - { - l: '0.4', - x: 1.399, - y: 74.022, - }, - { - l: '0.4', - x: 1.4182, - y: 74.2233, - }, - { - l: '0.4', - x: 1.4374, - y: 74.4233, - }, - { - l: '0.4', - x: 1.4565, - y: 74.6217, - }, - { - l: '0.4', - x: 1.4757, - y: 74.8186, - }, - { - l: '0.4', - x: 1.4949, - y: 75.014, - }, - { - l: '0.4', - x: 1.514, - y: 75.2075, - }, - { - l: '0.4', - x: 1.5332, - y: 75.3994, - }, - { - l: '0.4', - x: 1.5524, - y: 75.5898, - }, - { - l: '0.4', - x: 1.5715, - y: 75.7787, - }, - { - l: '0.4', - x: 1.5907, - y: 75.9662, - }, - { - l: '0.4', - x: 1.6099, - y: 76.1523, - }, - { - l: '0.4', - x: 1.629, - y: 76.337, - }, - { - l: '0.4', - x: 1.6482, - y: 76.5203, - }, - { - l: '0.4', - x: 1.6674, - y: 76.7022, - }, - { - l: '0.4', - x: 1.6865, - y: 76.8825, - }, - { - l: '0.4', - x: 1.7057, - y: 77.0615, - }, - { - l: '0.4', - x: 1.7248, - y: 77.2391, - }, - { - l: '0.4', - x: 1.744, - y: 77.4155, - }, - { - l: '0.4', - x: 1.7632, - y: 77.5909, - }, - { - l: '0.4', - x: 1.7823, - y: 77.7651, - }, - { - l: '0.4', - x: 1.8015, - y: 77.9382, - }, - { - l: '0.4', - x: 1.8207, - y: 78.1101, - }, - { - l: '0.4', - x: 1.8398, - y: 78.2808, - }, - { - l: '0.4', - x: 1.859, - y: 78.4503, - }, - { - l: '0.4', - x: 1.8782, - y: 78.6187, - }, - { - l: '0.4', - x: 1.8973, - y: 78.7861, - }, - { - l: '0.4', - x: 1.9165, - y: 78.9525, - }, - { - l: '0.4', - x: 1.9357, - y: 79.1171, - }, - { - l: '0.4', - x: 1.9548, - y: 79.2817, - }, - { - l: '0.4', - x: 1.974, - y: 79.4461, - }, - { - l: '0.4', - x: 1.9932, - y: 79.6104, - }, - { - l: '0.4', - x: 2.0, - y: 79.6691, - }, + { l: 0.4, x: 0.0383, y: 46.7642 }, + { l: 0.4, x: 0.0575, y: 48.2803 }, + { l: 0.4, x: 0.0767, y: 49.2386 }, + { l: 0.4, x: 0.0833, y: 49.562 }, + { l: 0.4, x: 0.0958, y: 50.1509 }, + { l: 0.4, x: 0.115, y: 51.0142 }, + { l: 0.4, x: 0.1342, y: 51.8317 }, + { l: 0.4, x: 0.1533, y: 52.6045 }, + { l: 0.4, x: 0.1667, y: 53.1195 }, + { l: 0.4, x: 0.1725, y: 53.3398 }, + { l: 0.4, x: 0.1916, y: 54.0448 }, + { l: 0.4, x: 0.2108, y: 54.7205 }, + { l: 0.4, x: 0.23, y: 55.3654 }, + { l: 0.4, x: 0.2491, y: 55.9803 }, + { l: 0.4, x: 0.25, y: 56.0073 }, + { l: 0.4, x: 0.3333, y: 58.3676 }, + { l: 0.4, x: 0.4167, y: 60.3026 }, + { l: 0.4, x: 0.5, y: 61.9473 }, + { l: 0.4, x: 0.5833, y: 63.4066 }, + { l: 0.4, x: 0.6667, y: 64.7501 }, + { l: 0.4, x: 0.75, y: 66.0193 }, + { l: 0.4, x: 0.8333, y: 67.2214 }, + { l: 0.4, x: 0.9167, y: 68.3612 }, + { l: 0.4, x: 1, y: 69.4468 }, + { l: 0.4, x: 1.0833, y: 70.4846 }, + { l: 0.4, x: 1.1667, y: 71.4797 }, + { l: 0.4, x: 1.25, y: 72.4352 }, + { l: 0.4, x: 1.3333, y: 73.3572 }, + { l: 0.4, x: 1.4167, y: 74.2456 }, + { l: 0.4, x: 1.5, y: 75.1053 }, + { l: 0.4, x: 1.5833, y: 75.9345 }, + { l: 0.4, x: 1.6667, y: 76.7367 }, + { l: 0.4, x: 1.75, y: 77.5123 }, + { l: 0.4, x: 1.8333, y: 78.2658 }, + { l: 0.4, x: 1.9167, y: 78.9976 }, + { l: 0.4, x: 2, y: 79.7136 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 0.0383, - y: 48.5227, - }, - { - l: '2.0', - x: 0.0575, - y: 49.5368, - }, - { - l: '2.0', - x: 0.0767, - y: 50.5048, - }, - { - l: '2.0', - x: 0.0958, - y: 51.4262, - }, - { - l: '2.0', - x: 0.115, - y: 52.2981, - }, - { - l: '2.0', - x: 0.1342, - y: 53.1234, - }, - { - l: '2.0', - x: 0.1533, - y: 53.9038, - }, - { - l: '2.0', - x: 0.1725, - y: 54.6464, - }, - { - l: '2.0', - x: 0.1916, - y: 55.3584, - }, - { - l: '2.0', - x: 0.2108, - y: 56.0406, - }, - { - l: '2.0', - x: 0.23, - y: 56.692, - }, - { - l: '2.0', - x: 0.2491, - y: 57.3132, - }, - { - l: '2.0', - x: 0.2683, - y: 57.9094, - }, - { - l: '2.0', - x: 0.2875, - y: 58.4762, - }, - { - l: '2.0', - x: 0.3066, - y: 59.0155, - }, - { - l: '2.0', - x: 0.3258, - y: 59.5292, - }, - { - l: '2.0', - x: 0.345, - y: 60.0201, - }, - { - l: '2.0', - x: 0.3641, - y: 60.4898, - }, - { - l: '2.0', - x: 0.3833, - y: 60.9395, - }, - { - l: '2.0', - x: 0.4025, - y: 61.3708, - }, - { - l: '2.0', - x: 0.4216, - y: 61.7857, - }, - { - l: '2.0', - x: 0.4408, - y: 62.1864, - }, - { - l: '2.0', - x: 0.46, - y: 62.5734, - }, - { - l: '2.0', - x: 0.4791, - y: 62.9478, - }, - { - l: '2.0', - x: 0.4983, - y: 63.3111, - }, - { - l: '2.0', - x: 0.5175, - y: 63.6658, - }, - { - l: '2.0', - x: 0.5366, - y: 64.0116, - }, - { - l: '2.0', - x: 0.5558, - y: 64.3493, - }, - { - l: '2.0', - x: 0.5749, - y: 64.6798, - }, - { - l: '2.0', - x: 0.5941, - y: 65.0046, - }, - { - l: '2.0', - x: 0.6133, - y: 65.3241, - }, - { - l: '2.0', - x: 0.6324, - y: 65.6385, - }, - { - l: '2.0', - x: 0.6516, - y: 65.9481, - }, - { - l: '2.0', - x: 0.6708, - y: 66.2537, - }, - { - l: '2.0', - x: 0.6899, - y: 66.5566, - }, - { - l: '2.0', - x: 0.7091, - y: 66.8558, - }, - { - l: '2.0', - x: 0.7283, - y: 67.1513, - }, - { - l: '2.0', - x: 0.7474, - y: 67.4433, - }, - { - l: '2.0', - x: 0.7666, - y: 67.732, - }, - { - l: '2.0', - x: 0.7858, - y: 68.0174, - }, - { - l: '2.0', - x: 0.8049, - y: 68.2994, - }, - { - l: '2.0', - x: 0.8241, - y: 68.5781, - }, - { - l: '2.0', - x: 0.8433, - y: 68.8536, - }, - { - l: '2.0', - x: 0.8624, - y: 69.1258, - }, - { - l: '2.0', - x: 0.8816, - y: 69.395, - }, - { - l: '2.0', - x: 0.9008, - y: 69.6612, - }, - { - l: '2.0', - x: 0.9199, - y: 69.9246, - }, - { - l: '2.0', - x: 0.9391, - y: 70.1853, - }, - { - l: '2.0', - x: 0.9582, - y: 70.4432, - }, - { - l: '2.0', - x: 0.9774, - y: 70.6986, - }, - { - l: '2.0', - x: 0.9966, - y: 70.9514, - }, - { - l: '2.0', - x: 1.0157, - y: 71.2019, - }, - { - l: '2.0', - x: 1.0349, - y: 71.45, - }, - { - l: '2.0', - x: 1.0541, - y: 71.6958, - }, - { - l: '2.0', - x: 1.0732, - y: 71.9392, - }, - { - l: '2.0', - x: 1.0924, - y: 72.1805, - }, - { - l: '2.0', - x: 1.1116, - y: 72.4196, - }, - { - l: '2.0', - x: 1.1307, - y: 72.6565, - }, - { - l: '2.0', - x: 1.1499, - y: 72.8913, - }, - { - l: '2.0', - x: 1.1691, - y: 73.1241, - }, - { - l: '2.0', - x: 1.1882, - y: 73.3547, - }, - { - l: '2.0', - x: 1.2074, - y: 73.5834, - }, - { - l: '2.0', - x: 1.2266, - y: 73.8102, - }, - { - l: '2.0', - x: 1.2457, - y: 74.0352, - }, - { - l: '2.0', - x: 1.2649, - y: 74.2586, - }, - { - l: '2.0', - x: 1.2841, - y: 74.4803, - }, - { - l: '2.0', - x: 1.3032, - y: 74.7003, - }, - { - l: '2.0', - x: 1.3224, - y: 74.9185, - }, - { - l: '2.0', - x: 1.3415, - y: 75.135, - }, - { - l: '2.0', - x: 1.3607, - y: 75.3498, - }, - { - l: '2.0', - x: 1.3799, - y: 75.5629, - }, - { - l: '2.0', - x: 1.399, - y: 75.7744, - }, - { - l: '2.0', - x: 1.4182, - y: 75.9844, - }, - { - l: '2.0', - x: 1.4374, - y: 76.193, - }, - { - l: '2.0', - x: 1.4565, - y: 76.4001, - }, - { - l: '2.0', - x: 1.4757, - y: 76.6057, - }, - { - l: '2.0', - x: 1.4949, - y: 76.8098, - }, - { - l: '2.0', - x: 1.514, - y: 77.0122, - }, - { - l: '2.0', - x: 1.5332, - y: 77.2129, - }, - { - l: '2.0', - x: 1.5524, - y: 77.4122, - }, - { - l: '2.0', - x: 1.5715, - y: 77.61, - }, - { - l: '2.0', - x: 1.5907, - y: 77.8065, - }, - { - l: '2.0', - x: 1.6099, - y: 78.0015, - }, - { - l: '2.0', - x: 1.629, - y: 78.1952, - }, - { - l: '2.0', - x: 1.6482, - y: 78.3875, - }, - { - l: '2.0', - x: 1.6674, - y: 78.5785, - }, - { - l: '2.0', - x: 1.6865, - y: 78.768, - }, - { - l: '2.0', - x: 1.7057, - y: 78.9561, - }, - { - l: '2.0', - x: 1.7248, - y: 79.143, - }, - { - l: '2.0', - x: 1.744, - y: 79.3287, - }, - { - l: '2.0', - x: 1.7632, - y: 79.5133, - }, - { - l: '2.0', - x: 1.7823, - y: 79.6967, - }, - { - l: '2.0', - x: 1.8015, - y: 79.879, - }, - { - l: '2.0', - x: 1.8207, - y: 80.0602, - }, - { - l: '2.0', - x: 1.8398, - y: 80.2401, - }, - { - l: '2.0', - x: 1.859, - y: 80.4189, - }, - { - l: '2.0', - x: 1.8782, - y: 80.5966, - }, - { - l: '2.0', - x: 1.8973, - y: 80.7734, - }, - { - l: '2.0', - x: 1.9165, - y: 80.9492, - }, - { - l: '2.0', - x: 1.9357, - y: 81.123, - }, - { - l: '2.0', - x: 1.9548, - y: 81.2967, - }, - { - l: '2.0', - x: 1.974, - y: 81.4703, - }, - { - l: '2.0', - x: 1.9932, - y: 81.6439, - }, - { - l: '2.0', - x: 2.0, - y: 81.7059, - }, + { l: 2.0, x: 0.0383, y: 48.0144 }, + { l: 2.0, x: 0.0575, y: 49.4333 }, + { l: 2.0, x: 0.0767, y: 50.4005 }, + { l: 2.0, x: 0.0833, y: 50.7268 }, + { l: 2.0, x: 0.0958, y: 51.3211 }, + { l: 2.0, x: 0.115, y: 52.1924 }, + { l: 2.0, x: 0.1342, y: 53.017 }, + { l: 2.0, x: 0.1533, y: 53.7968 }, + { l: 2.0, x: 0.1667, y: 54.3165 }, + { l: 2.0, x: 0.1725, y: 54.5388 }, + { l: 2.0, x: 0.1916, y: 55.2502 }, + { l: 2.0, x: 0.2108, y: 55.9319 }, + { l: 2.0, x: 0.23, y: 56.5827 }, + { l: 2.0, x: 0.2491, y: 57.2034 }, + { l: 2.0, x: 0.25, y: 57.2307 }, + { l: 2.0, x: 0.3333, y: 59.6127 }, + { l: 2.0, x: 0.4167, y: 61.5662 }, + { l: 2.0, x: 0.5, y: 63.2281 }, + { l: 2.0, x: 0.5833, y: 64.7058 }, + { l: 2.0, x: 0.6667, y: 66.0699 }, + { l: 2.0, x: 0.75, y: 67.3617 }, + { l: 2.0, x: 0.8333, y: 68.5887 }, + { l: 2.0, x: 0.9167, y: 69.755 }, + { l: 2.0, x: 1, y: 70.8687 }, + { l: 2.0, x: 1.0833, y: 71.9363 }, + { l: 2.0, x: 1.1667, y: 72.9621 }, + { l: 2.0, x: 1.25, y: 73.9493 }, + { l: 2.0, x: 1.3333, y: 74.9037 }, + { l: 2.0, x: 1.4167, y: 75.8257 }, + { l: 2.0, x: 1.5, y: 76.7193 }, + { l: 2.0, x: 1.5833, y: 77.5832 }, + { l: 2.0, x: 1.6667, y: 78.4206 }, + { l: 2.0, x: 1.75, y: 79.2322 }, + { l: 2.0, x: 1.8333, y: 80.0217 }, + { l: 2.0, x: 1.9167, y: 80.7899 }, + { l: 2.0, x: 2, y: 81.5418 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 0.0383, - y: 49.7972, - }, - { - l: '9.0', - x: 0.0575, - y: 50.8213, - }, - { - l: '9.0', - x: 0.0767, - y: 51.7992, - }, - { - l: '9.0', - x: 0.0958, - y: 52.7299, - }, - { - l: '9.0', - x: 0.115, - y: 53.6106, - }, - { - l: '9.0', - x: 0.1342, - y: 54.444, - }, - { - l: '9.0', - x: 0.1533, - y: 55.2322, - }, - { - l: '9.0', - x: 0.1725, - y: 55.9821, - }, - { - l: '9.0', - x: 0.1916, - y: 56.7013, - }, - { - l: '9.0', - x: 0.2108, - y: 57.3902, - }, - { - l: '9.0', - x: 0.23, - y: 58.0482, - }, - { - l: '9.0', - x: 0.2491, - y: 58.6759, - }, - { - l: '9.0', - x: 0.2683, - y: 59.2771, - }, - { - l: '9.0', - x: 0.2875, - y: 59.8494, - }, - { - l: '9.0', - x: 0.3066, - y: 60.3944, - }, - { - l: '9.0', - x: 0.3258, - y: 60.9141, - }, - { - l: '9.0', - x: 0.345, - y: 61.4103, - }, - { - l: '9.0', - x: 0.3641, - y: 61.8848, - }, - { - l: '9.0', - x: 0.3833, - y: 62.3392, - }, - { - l: '9.0', - x: 0.4025, - y: 62.7751, - }, - { - l: '9.0', - x: 0.4216, - y: 63.1946, - }, - { - l: '9.0', - x: 0.4408, - y: 63.5997, - }, - { - l: '9.0', - x: 0.46, - y: 63.991, - }, - { - l: '9.0', - x: 0.4791, - y: 64.3698, - }, - { - l: '9.0', - x: 0.4983, - y: 64.7375, - }, - { - l: '9.0', - x: 0.5175, - y: 65.0968, - }, - { - l: '9.0', - x: 0.5366, - y: 65.4472, - }, - { - l: '9.0', - x: 0.5558, - y: 65.7897, - }, - { - l: '9.0', - x: 0.5749, - y: 66.125, - }, - { - l: '9.0', - x: 0.5941, - y: 66.4548, - }, - { - l: '9.0', - x: 0.6133, - y: 66.7795, - }, - { - l: '9.0', - x: 0.6324, - y: 67.0991, - }, - { - l: '9.0', - x: 0.6516, - y: 67.4141, - }, - { - l: '9.0', - x: 0.6708, - y: 67.7253, - }, - { - l: '9.0', - x: 0.6899, - y: 68.0337, - }, - { - l: '9.0', - x: 0.7091, - y: 68.3386, - }, - { - l: '9.0', - x: 0.7283, - y: 68.64, - }, - { - l: '9.0', - x: 0.7474, - y: 68.938, - }, - { - l: '9.0', - x: 0.7666, - y: 69.2329, - }, - { - l: '9.0', - x: 0.7858, - y: 69.5245, - }, - { - l: '9.0', - x: 0.8049, - y: 69.813, - }, - { - l: '9.0', - x: 0.8241, - y: 70.0982, - }, - { - l: '9.0', - x: 0.8433, - y: 70.3803, - }, - { - l: '9.0', - x: 0.8624, - y: 70.6592, - }, - { - l: '9.0', - x: 0.8816, - y: 70.9352, - }, - { - l: '9.0', - x: 0.9008, - y: 71.2083, - }, - { - l: '9.0', - x: 0.9199, - y: 71.4787, - }, - { - l: '9.0', - x: 0.9391, - y: 71.7464, - }, - { - l: '9.0', - x: 0.9582, - y: 72.0115, - }, - { - l: '9.0', - x: 0.9774, - y: 72.2741, - }, - { - l: '9.0', - x: 0.9966, - y: 72.5343, - }, - { - l: '9.0', - x: 1.0157, - y: 72.7922, - }, - { - l: '9.0', - x: 1.0349, - y: 73.0479, - }, - { - l: '9.0', - x: 1.0541, - y: 73.3013, - }, - { - l: '9.0', - x: 1.0732, - y: 73.5525, - }, - { - l: '9.0', - x: 1.0924, - y: 73.8015, - }, - { - l: '9.0', - x: 1.1116, - y: 74.0484, - }, - { - l: '9.0', - x: 1.1307, - y: 74.2932, - }, - { - l: '9.0', - x: 1.1499, - y: 74.5359, - }, - { - l: '9.0', - x: 1.1691, - y: 74.7766, - }, - { - l: '9.0', - x: 1.1882, - y: 75.0153, - }, - { - l: '9.0', - x: 1.2074, - y: 75.2521, - }, - { - l: '9.0', - x: 1.2266, - y: 75.4871, - }, - { - l: '9.0', - x: 1.2457, - y: 75.7203, - }, - { - l: '9.0', - x: 1.2649, - y: 75.9519, - }, - { - l: '9.0', - x: 1.2841, - y: 76.1818, - }, - { - l: '9.0', - x: 1.3032, - y: 76.4101, - }, - { - l: '9.0', - x: 1.3224, - y: 76.6367, - }, - { - l: '9.0', - x: 1.3415, - y: 76.8616, - }, - { - l: '9.0', - x: 1.3607, - y: 77.0849, - }, - { - l: '9.0', - x: 1.3799, - y: 77.3066, - }, - { - l: '9.0', - x: 1.399, - y: 77.5268, - }, - { - l: '9.0', - x: 1.4182, - y: 77.7454, - }, - { - l: '9.0', - x: 1.4374, - y: 77.9627, - }, - { - l: '9.0', - x: 1.4565, - y: 78.1785, - }, - { - l: '9.0', - x: 1.4757, - y: 78.3928, - }, - { - l: '9.0', - x: 1.4949, - y: 78.6056, - }, - { - l: '9.0', - x: 1.514, - y: 78.8168, - }, - { - l: '9.0', - x: 1.5332, - y: 79.0264, - }, - { - l: '9.0', - x: 1.5524, - y: 79.2346, - }, - { - l: '9.0', - x: 1.5715, - y: 79.4414, - }, - { - l: '9.0', - x: 1.5907, - y: 79.6468, - }, - { - l: '9.0', - x: 1.6099, - y: 79.8508, - }, - { - l: '9.0', - x: 1.629, - y: 80.0534, - }, - { - l: '9.0', - x: 1.6482, - y: 80.2548, - }, - { - l: '9.0', - x: 1.6674, - y: 80.4548, - }, - { - l: '9.0', - x: 1.6865, - y: 80.6534, - }, - { - l: '9.0', - x: 1.7057, - y: 80.8508, - }, - { - l: '9.0', - x: 1.7248, - y: 81.047, - }, - { - l: '9.0', - x: 1.744, - y: 81.2419, - }, - { - l: '9.0', - x: 1.7632, - y: 81.4357, - }, - { - l: '9.0', - x: 1.7823, - y: 81.6283, - }, - { - l: '9.0', - x: 1.8015, - y: 81.8198, - }, - { - l: '9.0', - x: 1.8207, - y: 82.0102, - }, - { - l: '9.0', - x: 1.8398, - y: 82.1995, - }, - { - l: '9.0', - x: 1.859, - y: 82.3876, - }, - { - l: '9.0', - x: 1.8782, - y: 82.5746, - }, - { - l: '9.0', - x: 1.8973, - y: 82.7607, - }, - { - l: '9.0', - x: 1.9165, - y: 82.9459, - }, - { - l: '9.0', - x: 1.9357, - y: 83.1288, - }, - { - l: '9.0', - x: 1.9548, - y: 83.3117, - }, - { - l: '9.0', - x: 1.974, - y: 83.4945, - }, - { - l: '9.0', - x: 1.9932, - y: 83.6773, - }, - { - l: '9.0', - x: 2.0, - y: 83.7426, - }, + { l: 9.0, x: 0.0383, y: 49.5038 }, + { l: 9.0, x: 0.0575, y: 50.807 }, + { l: 9.0, x: 0.0767, y: 51.7847 }, + { l: 9.0, x: 0.0833, y: 52.1145 }, + { l: 9.0, x: 0.0958, y: 52.7153 }, + { l: 9.0, x: 0.115, y: 53.5959 }, + { l: 9.0, x: 0.1342, y: 54.4292 }, + { l: 9.0, x: 0.1533, y: 55.2173 }, + { l: 9.0, x: 0.1667, y: 55.7427 }, + { l: 9.0, x: 0.1725, y: 55.9672 }, + { l: 9.0, x: 0.1916, y: 56.6863 }, + { l: 9.0, x: 0.2108, y: 57.3751 }, + { l: 9.0, x: 0.23, y: 58.033 }, + { l: 9.0, x: 0.2491, y: 58.6606 }, + { l: 9.0, x: 0.25, y: 58.6881 }, + { l: 9.0, x: 0.3333, y: 61.0961 }, + { l: 9.0, x: 0.4167, y: 63.0715 }, + { l: 9.0, x: 0.5, y: 64.7539 }, + { l: 9.0, x: 0.5833, y: 66.2535 }, + { l: 9.0, x: 0.6667, y: 67.6422 }, + { l: 9.0, x: 0.75, y: 68.9609 }, + { l: 9.0, x: 0.8333, y: 70.2176 }, + { l: 9.0, x: 0.9167, y: 71.4156 }, + { l: 9.0, x: 1, y: 72.5627 }, + { l: 9.0, x: 1.0833, y: 73.6658 }, + { l: 9.0, x: 1.1667, y: 74.7281 }, + { l: 9.0, x: 1.25, y: 75.7532 }, + { l: 9.0, x: 1.3333, y: 76.7461 }, + { l: 9.0, x: 1.4167, y: 77.7082 }, + { l: 9.0, x: 1.5, y: 78.6422 }, + { l: 9.0, x: 1.5833, y: 79.5475 }, + { l: 9.0, x: 1.6667, y: 80.4267 }, + { l: 9.0, x: 1.75, y: 81.2811 }, + { l: 9.0, x: 1.8333, y: 82.1135 }, + { l: 9.0, x: 1.9167, y: 82.9251 }, + { l: 9.0, x: 2, y: 83.7198 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 0.0383, - y: 51.0716, - }, - { - l: '25.0', - x: 0.0575, - y: 52.1059, - }, - { - l: '25.0', - x: 0.0767, - y: 53.0937, - }, - { - l: '25.0', - x: 0.0958, - y: 54.0337, - }, - { - l: '25.0', - x: 0.115, - y: 54.9232, - }, - { - l: '25.0', - x: 0.1342, - y: 55.7645, - }, - { - l: '25.0', - x: 0.1533, - y: 56.5605, - }, - { - l: '25.0', - x: 0.1725, - y: 57.3179, - }, - { - l: '25.0', - x: 0.1916, - y: 58.0443, - }, - { - l: '25.0', - x: 0.2108, - y: 58.7398, - }, - { - l: '25.0', - x: 0.23, - y: 59.4043, - }, - { - l: '25.0', - x: 0.2491, - y: 60.0386, - }, - { - l: '25.0', - x: 0.2683, - y: 60.6448, - }, - { - l: '25.0', - x: 0.2875, - y: 61.2225, - }, - { - l: '25.0', - x: 0.3066, - y: 61.7734, - }, - { - l: '25.0', - x: 0.3258, - y: 62.2989, - }, - { - l: '25.0', - x: 0.345, - y: 62.8005, - }, - { - l: '25.0', - x: 0.3641, - y: 63.2799, - }, - { - l: '25.0', - x: 0.3833, - y: 63.739, - }, - { - l: '25.0', - x: 0.4025, - y: 64.1795, - }, - { - l: '25.0', - x: 0.4216, - y: 64.6034, - }, - { - l: '25.0', - x: 0.4408, - y: 65.0129, - }, - { - l: '25.0', - x: 0.46, - y: 65.4086, - }, - { - l: '25.0', - x: 0.4791, - y: 65.7919, - }, - { - l: '25.0', - x: 0.4983, - y: 66.164, - }, - { - l: '25.0', - x: 0.5175, - y: 66.5278, - }, - { - l: '25.0', - x: 0.5366, - y: 66.8829, - }, - { - l: '25.0', - x: 0.5558, - y: 67.2301, - }, - { - l: '25.0', - x: 0.5749, - y: 67.5703, - }, - { - l: '25.0', - x: 0.5941, - y: 67.905, - }, - { - l: '25.0', - x: 0.6133, - y: 68.2349, - }, - { - l: '25.0', - x: 0.6324, - y: 68.5597, - }, - { - l: '25.0', - x: 0.6516, - y: 68.8801, - }, - { - l: '25.0', - x: 0.6708, - y: 69.1968, - }, - { - l: '25.0', - x: 0.6899, - y: 69.5109, - }, - { - l: '25.0', - x: 0.7091, - y: 69.8215, - }, - { - l: '25.0', - x: 0.7283, - y: 70.1287, - }, - { - l: '25.0', - x: 0.7474, - y: 70.4327, - }, - { - l: '25.0', - x: 0.7666, - y: 70.7337, - }, - { - l: '25.0', - x: 0.7858, - y: 71.0317, - }, - { - l: '25.0', - x: 0.8049, - y: 71.3265, - }, - { - l: '25.0', - x: 0.8241, - y: 71.6183, - }, - { - l: '25.0', - x: 0.8433, - y: 71.907, - }, - { - l: '25.0', - x: 0.8624, - y: 72.1927, - }, - { - l: '25.0', - x: 0.8816, - y: 72.4754, - }, - { - l: '25.0', - x: 0.9008, - y: 72.7554, - }, - { - l: '25.0', - x: 0.9199, - y: 73.0328, - }, - { - l: '25.0', - x: 0.9391, - y: 73.3075, - }, - { - l: '25.0', - x: 0.9582, - y: 73.5798, - }, - { - l: '25.0', - x: 0.9774, - y: 73.8496, - }, - { - l: '25.0', - x: 0.9966, - y: 74.1171, - }, - { - l: '25.0', - x: 1.0157, - y: 74.3825, - }, - { - l: '25.0', - x: 1.0349, - y: 74.6457, - }, - { - l: '25.0', - x: 1.0541, - y: 74.9068, - }, - { - l: '25.0', - x: 1.0732, - y: 75.1657, - }, - { - l: '25.0', - x: 1.0924, - y: 75.4225, - }, - { - l: '25.0', - x: 1.1116, - y: 75.6772, - }, - { - l: '25.0', - x: 1.1307, - y: 75.9298, - }, - { - l: '25.0', - x: 1.1499, - y: 76.1805, - }, - { - l: '25.0', - x: 1.1691, - y: 76.4291, - }, - { - l: '25.0', - x: 1.1882, - y: 76.6759, - }, - { - l: '25.0', - x: 1.2074, - y: 76.9208, - }, - { - l: '25.0', - x: 1.2266, - y: 77.1639, - }, - { - l: '25.0', - x: 1.2457, - y: 77.4053, - }, - { - l: '25.0', - x: 1.2649, - y: 77.6451, - }, - { - l: '25.0', - x: 1.2841, - y: 77.8833, - }, - { - l: '25.0', - x: 1.3032, - y: 78.1198, - }, - { - l: '25.0', - x: 1.3224, - y: 78.3548, - }, - { - l: '25.0', - x: 1.3415, - y: 78.5882, - }, - { - l: '25.0', - x: 1.3607, - y: 78.8201, - }, - { - l: '25.0', - x: 1.3799, - y: 79.0504, - }, - { - l: '25.0', - x: 1.399, - y: 79.2792, - }, - { - l: '25.0', - x: 1.4182, - y: 79.5065, - }, - { - l: '25.0', - x: 1.4374, - y: 79.7325, - }, - { - l: '25.0', - x: 1.4565, - y: 79.9569, - }, - { - l: '25.0', - x: 1.4757, - y: 80.1799, - }, - { - l: '25.0', - x: 1.4949, - y: 80.4014, - }, - { - l: '25.0', - x: 1.514, - y: 80.6214, - }, - { - l: '25.0', - x: 1.5332, - y: 80.84, - }, - { - l: '25.0', - x: 1.5524, - y: 81.057, - }, - { - l: '25.0', - x: 1.5715, - y: 81.2727, - }, - { - l: '25.0', - x: 1.5907, - y: 81.4871, - }, - { - l: '25.0', - x: 1.6099, - y: 81.7, - }, - { - l: '25.0', - x: 1.629, - y: 81.9117, - }, - { - l: '25.0', - x: 1.6482, - y: 82.122, - }, - { - l: '25.0', - x: 1.6674, - y: 82.3311, - }, - { - l: '25.0', - x: 1.6865, - y: 82.5389, - }, - { - l: '25.0', - x: 1.7057, - y: 82.7455, - }, - { - l: '25.0', - x: 1.7248, - y: 82.9509, - }, - { - l: '25.0', - x: 1.744, - y: 83.1551, - }, - { - l: '25.0', - x: 1.7632, - y: 83.3581, - }, - { - l: '25.0', - x: 1.7823, - y: 83.56, - }, - { - l: '25.0', - x: 1.8015, - y: 83.7607, - }, - { - l: '25.0', - x: 1.8207, - y: 83.9603, - }, - { - l: '25.0', - x: 1.8398, - y: 84.1588, - }, - { - l: '25.0', - x: 1.859, - y: 84.3562, - }, - { - l: '25.0', - x: 1.8782, - y: 84.5526, - }, - { - l: '25.0', - x: 1.8973, - y: 84.7481, - }, - { - l: '25.0', - x: 1.9165, - y: 84.9425, - }, - { - l: '25.0', - x: 1.9357, - y: 85.1346, - }, - { - l: '25.0', - x: 1.9548, - y: 85.3267, - }, - { - l: '25.0', - x: 1.974, - y: 85.5187, - }, - { - l: '25.0', - x: 1.9932, - y: 85.7108, - }, - { - l: '25.0', - x: 2.0, - y: 85.7794, - }, + { l: 25.0, x: 0.0383, y: 50.8959 }, + { l: 25.0, x: 0.0575, y: 52.0908 }, + { l: 25.0, x: 0.0767, y: 53.0785 }, + { l: 25.0, x: 0.0833, y: 53.4115 }, + { l: 25.0, x: 0.0958, y: 54.0183 }, + { l: 25.0, x: 0.115, y: 54.9077 }, + { l: 25.0, x: 0.1342, y: 55.749 }, + { l: 25.0, x: 0.1533, y: 56.5449 }, + { l: 25.0, x: 0.1667, y: 57.0756 }, + { l: 25.0, x: 0.1725, y: 57.3022 }, + { l: 25.0, x: 0.1916, y: 58.0285 }, + { l: 25.0, x: 0.2108, y: 58.7239 }, + { l: 25.0, x: 0.23, y: 59.3884 }, + { l: 25.0, x: 0.2491, y: 60.0226 }, + { l: 25.0, x: 0.25, y: 60.0503 }, + { l: 25.0, x: 0.3333, y: 62.4825 }, + { l: 25.0, x: 0.4167, y: 64.4784 }, + { l: 25.0, x: 0.5, y: 66.18 }, + { l: 25.0, x: 0.5833, y: 67.7001 }, + { l: 25.0, x: 0.6667, y: 69.1118 }, + { l: 25.0, x: 0.75, y: 70.4556 }, + { l: 25.0, x: 0.8333, y: 71.74 }, + { l: 25.0, x: 0.9167, y: 72.9677 }, + { l: 25.0, x: 1, y: 74.146 }, + { l: 25.0, x: 1.0833, y: 75.2823 }, + { l: 25.0, x: 1.1667, y: 76.3788 }, + { l: 25.0, x: 1.25, y: 77.4391 }, + { l: 25.0, x: 1.3333, y: 78.4681 }, + { l: 25.0, x: 1.4167, y: 79.4676 }, + { l: 25.0, x: 1.5, y: 80.4394 }, + { l: 25.0, x: 1.5833, y: 81.3833 }, + { l: 25.0, x: 1.6667, y: 82.3016 }, + { l: 25.0, x: 1.75, y: 83.1962 }, + { l: 25.0, x: 1.8333, y: 84.0686 }, + { l: 25.0, x: 1.9167, y: 84.9208 }, + { l: 25.0, x: 2, y: 85.7554 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 0.0383, - y: 52.3461, - }, - { - l: '50.0', - x: 0.0575, - y: 53.3905, - }, - { - l: '50.0', - x: 0.0767, - y: 54.3881, - }, - { - l: '50.0', - x: 0.0958, - y: 55.3374, - }, - { - l: '50.0', - x: 0.115, - y: 56.2357, - }, - { - l: '50.0', - x: 0.1342, - y: 57.0851, - }, - { - l: '50.0', - x: 0.1533, - y: 57.8889, - }, - { - l: '50.0', - x: 0.1725, - y: 58.6536, - }, - { - l: '50.0', - x: 0.1916, - y: 59.3872, - }, - { - l: '50.0', - x: 0.2108, - y: 60.0894, - }, - { - l: '50.0', - x: 0.23, - y: 60.7605, - }, - { - l: '50.0', - x: 0.2491, - y: 61.4013, - }, - { - l: '50.0', - x: 0.2683, - y: 62.0125, - }, - { - l: '50.0', - x: 0.2875, - y: 62.5957, - }, - { - l: '50.0', - x: 0.3066, - y: 63.1524, - }, - { - l: '50.0', - x: 0.3258, - y: 63.6838, - }, - { - l: '50.0', - x: 0.345, - y: 64.1907, - }, - { - l: '50.0', - x: 0.3641, - y: 64.6749, - }, - { - l: '50.0', - x: 0.3833, - y: 65.1387, - }, - { - l: '50.0', - x: 0.4025, - y: 65.5838, - }, - { - l: '50.0', - x: 0.4216, - y: 66.0122, - }, - { - l: '50.0', - x: 0.4408, - y: 66.4262, - }, - { - l: '50.0', - x: 0.46, - y: 66.8263, - }, - { - l: '50.0', - x: 0.4791, - y: 67.2139, - }, - { - l: '50.0', - x: 0.4983, - y: 67.5905, - }, - { - l: '50.0', - x: 0.5175, - y: 67.9588, - }, - { - l: '50.0', - x: 0.5366, - y: 68.3185, - }, - { - l: '50.0', - x: 0.5558, - y: 68.6705, - }, - { - l: '50.0', - x: 0.5749, - y: 69.0155, - }, - { - l: '50.0', - x: 0.5941, - y: 69.3552, - }, - { - l: '50.0', - x: 0.6133, - y: 69.6902, - }, - { - l: '50.0', - x: 0.6324, - y: 70.0204, - }, - { - l: '50.0', - x: 0.6516, - y: 70.3461, - }, - { - l: '50.0', - x: 0.6708, - y: 70.6683, - }, - { - l: '50.0', - x: 0.6899, - y: 70.988, - }, - { - l: '50.0', - x: 0.7091, - y: 71.3043, - }, - { - l: '50.0', - x: 0.7283, - y: 71.6174, - }, - { - l: '50.0', - x: 0.7474, - y: 71.9274, - }, - { - l: '50.0', - x: 0.7666, - y: 72.2346, - }, - { - l: '50.0', - x: 0.7858, - y: 72.5388, - }, - { - l: '50.0', - x: 0.8049, - y: 72.8401, - }, - { - l: '50.0', - x: 0.8241, - y: 73.1384, - }, - { - l: '50.0', - x: 0.8433, - y: 73.4337, - }, - { - l: '50.0', - x: 0.8624, - y: 73.7261, - }, - { - l: '50.0', - x: 0.8816, - y: 74.0156, - }, - { - l: '50.0', - x: 0.9008, - y: 74.3025, - }, - { - l: '50.0', - x: 0.9199, - y: 74.5869, - }, - { - l: '50.0', - x: 0.9391, - y: 74.8687, - }, - { - l: '50.0', - x: 0.9582, - y: 75.148, - }, - { - l: '50.0', - x: 0.9774, - y: 75.4251, - }, - { - l: '50.0', - x: 0.9966, - y: 75.7, - }, - { - l: '50.0', - x: 1.0157, - y: 75.9728, - }, - { - l: '50.0', - x: 1.0349, - y: 76.2436, - }, - { - l: '50.0', - x: 1.0541, - y: 76.5123, - }, - { - l: '50.0', - x: 1.0732, - y: 76.779, - }, - { - l: '50.0', - x: 1.0924, - y: 77.0435, - }, - { - l: '50.0', - x: 1.1116, - y: 77.306, - }, - { - l: '50.0', - x: 1.1307, - y: 77.5665, - }, - { - l: '50.0', - x: 1.1499, - y: 77.825, - }, - { - l: '50.0', - x: 1.1691, - y: 78.0817, - }, - { - l: '50.0', - x: 1.1882, - y: 78.3365, - }, - { - l: '50.0', - x: 1.2074, - y: 78.5895, - }, - { - l: '50.0', - x: 1.2266, - y: 78.8407, - }, - { - l: '50.0', - x: 1.2457, - y: 79.0903, - }, - { - l: '50.0', - x: 1.2649, - y: 79.3383, - }, - { - l: '50.0', - x: 1.2841, - y: 79.5847, - }, - { - l: '50.0', - x: 1.3032, - y: 79.8296, - }, - { - l: '50.0', - x: 1.3224, - y: 80.0729, - }, - { - l: '50.0', - x: 1.3415, - y: 80.3148, - }, - { - l: '50.0', - x: 1.3607, - y: 80.5552, - }, - { - l: '50.0', - x: 1.3799, - y: 80.7941, - }, - { - l: '50.0', - x: 1.399, - y: 81.0316, - }, - { - l: '50.0', - x: 1.4182, - y: 81.2676, - }, - { - l: '50.0', - x: 1.4374, - y: 81.5022, - }, - { - l: '50.0', - x: 1.4565, - y: 81.7353, - }, - { - l: '50.0', - x: 1.4757, - y: 81.967, - }, - { - l: '50.0', - x: 1.4949, - y: 82.1973, - }, - { - l: '50.0', - x: 1.514, - y: 82.4261, - }, - { - l: '50.0', - x: 1.5332, - y: 82.6535, - }, - { - l: '50.0', - x: 1.5524, - y: 82.8795, - }, - { - l: '50.0', - x: 1.5715, - y: 83.1041, - }, - { - l: '50.0', - x: 1.5907, - y: 83.3273, - }, - { - l: '50.0', - x: 1.6099, - y: 83.5493, - }, - { - l: '50.0', - x: 1.629, - y: 83.7699, - }, - { - l: '50.0', - x: 1.6482, - y: 83.9892, - }, - { - l: '50.0', - x: 1.6674, - y: 84.2074, - }, - { - l: '50.0', - x: 1.6865, - y: 84.4244, - }, - { - l: '50.0', - x: 1.7057, - y: 84.6402, - }, - { - l: '50.0', - x: 1.7248, - y: 84.8549, - }, - { - l: '50.0', - x: 1.744, - y: 85.0683, - }, - { - l: '50.0', - x: 1.7632, - y: 85.2806, - }, - { - l: '50.0', - x: 1.7823, - y: 85.4916, - }, - { - l: '50.0', - x: 1.8015, - y: 85.7015, - }, - { - l: '50.0', - x: 1.8207, - y: 85.9103, - }, - { - l: '50.0', - x: 1.8398, - y: 86.1181, - }, - { - l: '50.0', - x: 1.859, - y: 86.3249, - }, - { - l: '50.0', - x: 1.8782, - y: 86.5306, - }, - { - l: '50.0', - x: 1.8973, - y: 86.7354, - }, - { - l: '50.0', - x: 1.9165, - y: 86.9392, - }, - { - l: '50.0', - x: 1.9357, - y: 87.1405, - }, - { - l: '50.0', - x: 1.9548, - y: 87.3417, - }, - { - l: '50.0', - x: 1.974, - y: 87.543, - }, - { - l: '50.0', - x: 1.9932, - y: 87.7442, - }, - { - l: '50.0', - x: 2.0, - y: 87.8161, - }, + { l: 50.0, x: 0.0383, y: 52.3051 }, + { l: 50.0, x: 0.0575, y: 53.3905 }, + { l: 50.0, x: 0.0767, y: 54.3881 }, + { l: 50.0, x: 0.0833, y: 54.7244 }, + { l: 50.0, x: 0.0958, y: 55.3374 }, + { l: 50.0, x: 0.115, y: 56.2357 }, + { l: 50.0, x: 0.1342, y: 57.0851 }, + { l: 50.0, x: 0.1533, y: 57.8889 }, + { l: 50.0, x: 0.1667, y: 58.4249 }, + { l: 50.0, x: 0.1725, y: 58.6536 }, + { l: 50.0, x: 0.1916, y: 59.3872 }, + { l: 50.0, x: 0.2108, y: 60.0894 }, + { l: 50.0, x: 0.23, y: 60.7605 }, + { l: 50.0, x: 0.2491, y: 61.4013 }, + { l: 50.0, x: 0.25, y: 61.4292 }, + { l: 50.0, x: 0.3333, y: 63.886 }, + { l: 50.0, x: 0.4167, y: 65.9026 }, + { l: 50.0, x: 0.5, y: 67.6236 }, + { l: 50.0, x: 0.5833, y: 69.1645 }, + { l: 50.0, x: 0.6667, y: 70.5994 }, + { l: 50.0, x: 0.75, y: 71.9687 }, + { l: 50.0, x: 0.8333, y: 73.2812 }, + { l: 50.0, x: 0.9167, y: 74.5388 }, + { l: 50.0, x: 1, y: 75.7488 }, + { l: 50.0, x: 1.0833, y: 76.9186 }, + { l: 50.0, x: 1.1667, y: 78.0497 }, + { l: 50.0, x: 1.25, y: 79.1458 }, + { l: 50.0, x: 1.3333, y: 80.2113 }, + { l: 50.0, x: 1.4167, y: 81.2487 }, + { l: 50.0, x: 1.5, y: 82.2587 }, + { l: 50.0, x: 1.5833, y: 83.2418 }, + { l: 50.0, x: 1.6667, y: 84.1996 }, + { l: 50.0, x: 1.75, y: 85.1348 }, + { l: 50.0, x: 1.8333, y: 86.0477 }, + { l: 50.0, x: 1.9167, y: 86.941 }, + { l: 50.0, x: 2, y: 87.8161 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 0.0383, - y: 53.6206, - }, - { - l: '75.0', - x: 0.0575, - y: 54.6751, - }, - { - l: '75.0', - x: 0.0767, - y: 55.6825, - }, - { - l: '75.0', - x: 0.0958, - y: 56.6411, - }, - { - l: '75.0', - x: 0.115, - y: 57.5482, - }, - { - l: '75.0', - x: 0.1342, - y: 58.4057, - }, - { - l: '75.0', - x: 0.1533, - y: 59.2173, - }, - { - l: '75.0', - x: 0.1725, - y: 59.9893, - }, - { - l: '75.0', - x: 0.1916, - y: 60.7301, - }, - { - l: '75.0', - x: 0.2108, - y: 61.439, - }, - { - l: '75.0', - x: 0.23, - y: 62.1167, - }, - { - l: '75.0', - x: 0.2491, - y: 62.764, - }, - { - l: '75.0', - x: 0.2683, - y: 63.3802, - }, - { - l: '75.0', - x: 0.2875, - y: 63.9689, - }, - { - l: '75.0', - x: 0.3066, - y: 64.5313, - }, - { - l: '75.0', - x: 0.3258, - y: 65.0687, - }, - { - l: '75.0', - x: 0.345, - y: 65.5809, - }, - { - l: '75.0', - x: 0.3641, - y: 66.07, - }, - { - l: '75.0', - x: 0.3833, - y: 66.5385, - }, - { - l: '75.0', - x: 0.4025, - y: 66.9881, - }, - { - l: '75.0', - x: 0.4216, - y: 67.421, - }, - { - l: '75.0', - x: 0.4408, - y: 67.8394, - }, - { - l: '75.0', - x: 0.46, - y: 68.2439, - }, - { - l: '75.0', - x: 0.4791, - y: 68.6359, - }, - { - l: '75.0', - x: 0.4983, - y: 69.0169, - }, - { - l: '75.0', - x: 0.5175, - y: 69.3898, - }, - { - l: '75.0', - x: 0.5366, - y: 69.7542, - }, - { - l: '75.0', - x: 0.5558, - y: 70.1108, - }, - { - l: '75.0', - x: 0.5749, - y: 70.4607, - }, - { - l: '75.0', - x: 0.5941, - y: 70.8055, - }, - { - l: '75.0', - x: 0.6133, - y: 71.1456, - }, - { - l: '75.0', - x: 0.6324, - y: 71.481, - }, - { - l: '75.0', - x: 0.6516, - y: 71.8122, - }, - { - l: '75.0', - x: 0.6708, - y: 72.1399, - }, - { - l: '75.0', - x: 0.6899, - y: 72.4652, - }, - { - l: '75.0', - x: 0.7091, - y: 72.7872, - }, - { - l: '75.0', - x: 0.7283, - y: 73.1062, - }, - { - l: '75.0', - x: 0.7474, - y: 73.4221, - }, - { - l: '75.0', - x: 0.7666, - y: 73.7354, - }, - { - l: '75.0', - x: 0.7858, - y: 74.046, - }, - { - l: '75.0', - x: 0.8049, - y: 74.3536, - }, - { - l: '75.0', - x: 0.8241, - y: 74.6585, - }, - { - l: '75.0', - x: 0.8433, - y: 74.9604, - }, - { - l: '75.0', - x: 0.8624, - y: 75.2595, - }, - { - l: '75.0', - x: 0.8816, - y: 75.5559, - }, - { - l: '75.0', - x: 0.9008, - y: 75.8496, - }, - { - l: '75.0', - x: 0.9199, - y: 76.1409, - }, - { - l: '75.0', - x: 0.9391, - y: 76.4298, - }, - { - l: '75.0', - x: 0.9582, - y: 76.7163, - }, - { - l: '75.0', - x: 0.9774, - y: 77.0006, - }, - { - l: '75.0', - x: 0.9966, - y: 77.2828, - }, - { - l: '75.0', - x: 1.0157, - y: 77.5631, - }, - { - l: '75.0', - x: 1.0349, - y: 77.8415, - }, - { - l: '75.0', - x: 1.0541, - y: 78.1179, - }, - { - l: '75.0', - x: 1.0732, - y: 78.3922, - }, - { - l: '75.0', - x: 1.0924, - y: 78.6645, - }, - { - l: '75.0', - x: 1.1116, - y: 78.9348, - }, - { - l: '75.0', - x: 1.1307, - y: 79.2031, - }, - { - l: '75.0', - x: 1.1499, - y: 79.4696, - }, - { - l: '75.0', - x: 1.1691, - y: 79.7342, - }, - { - l: '75.0', - x: 1.1882, - y: 79.997, - }, - { - l: '75.0', - x: 1.2074, - y: 80.2581, - }, - { - l: '75.0', - x: 1.2266, - y: 80.5176, - }, - { - l: '75.0', - x: 1.2457, - y: 80.7753, - }, - { - l: '75.0', - x: 1.2649, - y: 81.0316, - }, - { - l: '75.0', - x: 1.2841, - y: 81.2862, - }, - { - l: '75.0', - x: 1.3032, - y: 81.5394, - }, - { - l: '75.0', - x: 1.3224, - y: 81.7911, - }, - { - l: '75.0', - x: 1.3415, - y: 82.0414, - }, - { - l: '75.0', - x: 1.3607, - y: 82.2903, - }, - { - l: '75.0', - x: 1.3799, - y: 82.5379, - }, - { - l: '75.0', - x: 1.399, - y: 82.784, - }, - { - l: '75.0', - x: 1.4182, - y: 83.0287, - }, - { - l: '75.0', - x: 1.4374, - y: 83.2719, - }, - { - l: '75.0', - x: 1.4565, - y: 83.5137, - }, - { - l: '75.0', - x: 1.4757, - y: 83.7541, - }, - { - l: '75.0', - x: 1.4949, - y: 83.9931, - }, - { - l: '75.0', - x: 1.514, - y: 84.2307, - }, - { - l: '75.0', - x: 1.5332, - y: 84.467, - }, - { - l: '75.0', - x: 1.5524, - y: 84.7019, - }, - { - l: '75.0', - x: 1.5715, - y: 84.9354, - }, - { - l: '75.0', - x: 1.5907, - y: 85.1676, - }, - { - l: '75.0', - x: 1.6099, - y: 85.3985, - }, - { - l: '75.0', - x: 1.629, - y: 85.6281, - }, - { - l: '75.0', - x: 1.6482, - y: 85.8565, - }, - { - l: '75.0', - x: 1.6674, - y: 86.0837, - }, - { - l: '75.0', - x: 1.6865, - y: 86.3099, - }, - { - l: '75.0', - x: 1.7057, - y: 86.5349, - }, - { - l: '75.0', - x: 1.7248, - y: 86.7588, - }, - { - l: '75.0', - x: 1.744, - y: 86.9815, - }, - { - l: '75.0', - x: 1.7632, - y: 87.203, - }, - { - l: '75.0', - x: 1.7823, - y: 87.4232, - }, - { - l: '75.0', - x: 1.8015, - y: 87.6423, - }, - { - l: '75.0', - x: 1.8207, - y: 87.8604, - }, - { - l: '75.0', - x: 1.8398, - y: 88.0774, - }, - { - l: '75.0', - x: 1.859, - y: 88.2935, - }, - { - l: '75.0', - x: 1.8782, - y: 88.5086, - }, - { - l: '75.0', - x: 1.8973, - y: 88.7227, - }, - { - l: '75.0', - x: 1.9165, - y: 88.9358, - }, - { - l: '75.0', - x: 1.9357, - y: 89.1463, - }, - { - l: '75.0', - x: 1.9548, - y: 89.3567, - }, - { - l: '75.0', - x: 1.974, - y: 89.5672, - }, - { - l: '75.0', - x: 1.9932, - y: 89.7777, - }, - { - l: '75.0', - x: 2.0, - y: 89.8528, - }, + { l: 75.0, x: 0.0383, y: 53.7143 }, + { l: 75.0, x: 0.0575, y: 54.6902 }, + { l: 75.0, x: 0.0767, y: 55.6977 }, + { l: 75.0, x: 0.0833, y: 56.0373 }, + { l: 75.0, x: 0.0958, y: 56.6565 }, + { l: 75.0, x: 0.115, y: 57.5637 }, + { l: 75.0, x: 0.1342, y: 58.4212 }, + { l: 75.0, x: 0.1533, y: 59.2329 }, + { l: 75.0, x: 0.1667, y: 59.7742 }, + { l: 75.0, x: 0.1725, y: 60.005 }, + { l: 75.0, x: 0.1916, y: 60.7459 }, + { l: 75.0, x: 0.2108, y: 61.4549 }, + { l: 75.0, x: 0.23, y: 62.1326 }, + { l: 75.0, x: 0.2491, y: 62.78 }, + { l: 75.0, x: 0.25, y: 62.8081 }, + { l: 75.0, x: 0.3333, y: 65.2895 }, + { l: 75.0, x: 0.4167, y: 67.3268 }, + { l: 75.0, x: 0.5, y: 69.0672 }, + { l: 75.0, x: 0.5833, y: 70.6289 }, + { l: 75.0, x: 0.6667, y: 72.087 }, + { l: 75.0, x: 0.75, y: 73.4818 }, + { l: 75.0, x: 0.8333, y: 74.8224 }, + { l: 75.0, x: 0.9167, y: 76.1099 }, + { l: 75.0, x: 1, y: 77.3516 }, + { l: 75.0, x: 1.0833, y: 78.5549 }, + { l: 75.0, x: 1.1667, y: 79.7206 }, + { l: 75.0, x: 1.25, y: 80.8525 }, + { l: 75.0, x: 1.3333, y: 81.9545 }, + { l: 75.0, x: 1.4167, y: 83.0298 }, + { l: 75.0, x: 1.5, y: 84.078 }, + { l: 75.0, x: 1.5833, y: 85.1003 }, + { l: 75.0, x: 1.6667, y: 86.0976 }, + { l: 75.0, x: 1.75, y: 87.0734 }, + { l: 75.0, x: 1.8333, y: 88.0268 }, + { l: 75.0, x: 1.9167, y: 88.9612 }, + { l: 75.0, x: 2, y: 89.8768 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 0.0383, - y: 54.895, - }, - { - l: '91.0', - x: 0.0575, - y: 55.9597, - }, - { - l: '91.0', - x: 0.0767, - y: 56.977, - }, - { - l: '91.0', - x: 0.0958, - y: 57.9449, - }, - { - l: '91.0', - x: 0.115, - y: 58.8608, - }, - { - l: '91.0', - x: 0.1342, - y: 59.7262, - }, - { - l: '91.0', - x: 0.1533, - y: 60.5456, - }, - { - l: '91.0', - x: 0.1725, - y: 61.3251, - }, - { - l: '91.0', - x: 0.1916, - y: 62.0731, - }, - { - l: '91.0', - x: 0.2108, - y: 62.7886, - }, - { - l: '91.0', - x: 0.23, - y: 63.4728, - }, - { - l: '91.0', - x: 0.2491, - y: 64.1267, - }, - { - l: '91.0', - x: 0.2683, - y: 64.7479, - }, - { - l: '91.0', - x: 0.2875, - y: 65.3421, - }, - { - l: '91.0', - x: 0.3066, - y: 65.9103, - }, - { - l: '91.0', - x: 0.3258, - y: 66.4536, - }, - { - l: '91.0', - x: 0.345, - y: 66.9711, - }, - { - l: '91.0', - x: 0.3641, - y: 67.465, - }, - { - l: '91.0', - x: 0.3833, - y: 67.9382, - }, - { - l: '91.0', - x: 0.4025, - y: 68.3925, - }, - { - l: '91.0', - x: 0.4216, - y: 68.8299, - }, - { - l: '91.0', - x: 0.4408, - y: 69.2527, - }, - { - l: '91.0', - x: 0.46, - y: 69.6615, - }, - { - l: '91.0', - x: 0.4791, - y: 70.0579, - }, - { - l: '91.0', - x: 0.4983, - y: 70.4434, - }, - { - l: '91.0', - x: 0.5175, - y: 70.8208, - }, - { - l: '91.0', - x: 0.5366, - y: 71.1898, - }, - { - l: '91.0', - x: 0.5558, - y: 71.5512, - }, - { - l: '91.0', - x: 0.5749, - y: 71.9059, - }, - { - l: '91.0', - x: 0.5941, - y: 72.2557, - }, - { - l: '91.0', - x: 0.6133, - y: 72.6009, - }, - { - l: '91.0', - x: 0.6324, - y: 72.9416, - }, - { - l: '91.0', - x: 0.6516, - y: 73.2782, - }, - { - l: '91.0', - x: 0.6708, - y: 73.6114, - }, - { - l: '91.0', - x: 0.6899, - y: 73.9423, - }, - { - l: '91.0', - x: 0.7091, - y: 74.2701, - }, - { - l: '91.0', - x: 0.7283, - y: 74.5949, - }, - { - l: '91.0', - x: 0.7474, - y: 74.9168, - }, - { - l: '91.0', - x: 0.7666, - y: 75.2363, - }, - { - l: '91.0', - x: 0.7858, - y: 75.5531, - }, - { - l: '91.0', - x: 0.8049, - y: 75.8672, - }, - { - l: '91.0', - x: 0.8241, - y: 76.1786, - }, - { - l: '91.0', - x: 0.8433, - y: 76.4871, - }, - { - l: '91.0', - x: 0.8624, - y: 76.7929, - }, - { - l: '91.0', - x: 0.8816, - y: 77.0961, - }, - { - l: '91.0', - x: 0.9008, - y: 77.3967, - }, - { - l: '91.0', - x: 0.9199, - y: 77.695, - }, - { - l: '91.0', - x: 0.9391, - y: 77.9909, - }, - { - l: '91.0', - x: 0.9582, - y: 78.2846, - }, - { - l: '91.0', - x: 0.9774, - y: 78.5761, - }, - { - l: '91.0', - x: 0.9966, - y: 78.8656, - }, - { - l: '91.0', - x: 1.0157, - y: 79.1534, - }, - { - l: '91.0', - x: 1.0349, - y: 79.4394, - }, - { - l: '91.0', - x: 1.0541, - y: 79.7234, - }, - { - l: '91.0', - x: 1.0732, - y: 80.0055, - }, - { - l: '91.0', - x: 1.0924, - y: 80.2855, - }, - { - l: '91.0', - x: 1.1116, - y: 80.5636, - }, - { - l: '91.0', - x: 1.1307, - y: 80.8398, - }, - { - l: '91.0', - x: 1.1499, - y: 81.1141, - }, - { - l: '91.0', - x: 1.1691, - y: 81.3867, - }, - { - l: '91.0', - x: 1.1882, - y: 81.6576, - }, - { - l: '91.0', - x: 1.2074, - y: 81.9268, - }, - { - l: '91.0', - x: 1.2266, - y: 82.1944, - }, - { - l: '91.0', - x: 1.2457, - y: 82.4604, - }, - { - l: '91.0', - x: 1.2649, - y: 82.7248, - }, - { - l: '91.0', - x: 1.2841, - y: 82.9877, - }, - { - l: '91.0', - x: 1.3032, - y: 83.2492, - }, - { - l: '91.0', - x: 1.3224, - y: 83.5092, - }, - { - l: '91.0', - x: 1.3415, - y: 83.768, - }, - { - l: '91.0', - x: 1.3607, - y: 84.0255, - }, - { - l: '91.0', - x: 1.3799, - y: 84.2816, - }, - { - l: '91.0', - x: 1.399, - y: 84.5364, - }, - { - l: '91.0', - x: 1.4182, - y: 84.7898, - }, - { - l: '91.0', - x: 1.4374, - y: 85.0416, - }, - { - l: '91.0', - x: 1.4565, - y: 85.2921, - }, - { - l: '91.0', - x: 1.4757, - y: 85.5412, - }, - { - l: '91.0', - x: 1.4949, - y: 85.7889, - }, - { - l: '91.0', - x: 1.514, - y: 86.0354, - }, - { - l: '91.0', - x: 1.5332, - y: 86.2805, - }, - { - l: '91.0', - x: 1.5524, - y: 86.5243, - }, - { - l: '91.0', - x: 1.5715, - y: 86.7668, - }, - { - l: '91.0', - x: 1.5907, - y: 87.0079, - }, - { - l: '91.0', - x: 1.6099, - y: 87.2477, - }, - { - l: '91.0', - x: 1.629, - y: 87.4863, - }, - { - l: '91.0', - x: 1.6482, - y: 87.7237, - }, - { - l: '91.0', - x: 1.6674, - y: 87.96, - }, - { - l: '91.0', - x: 1.6865, - y: 88.1953, - }, - { - l: '91.0', - x: 1.7057, - y: 88.4296, - }, - { - l: '91.0', - x: 1.7248, - y: 88.6628, - }, - { - l: '91.0', - x: 1.744, - y: 88.8947, - }, - { - l: '91.0', - x: 1.7632, - y: 89.1254, - }, - { - l: '91.0', - x: 1.7823, - y: 89.3548, - }, - { - l: '91.0', - x: 1.8015, - y: 89.5831, - }, - { - l: '91.0', - x: 1.8207, - y: 89.8104, - }, - { - l: '91.0', - x: 1.8398, - y: 90.0367, - }, - { - l: '91.0', - x: 1.859, - y: 90.2622, - }, - { - l: '91.0', - x: 1.8782, - y: 90.4866, - }, - { - l: '91.0', - x: 1.8973, - y: 90.7101, - }, - { - l: '91.0', - x: 1.9165, - y: 90.9325, - }, - { - l: '91.0', - x: 1.9357, - y: 91.1521, - }, - { - l: '91.0', - x: 1.9548, - y: 91.3717, - }, - { - l: '91.0', - x: 1.974, - y: 91.5914, - }, - { - l: '91.0', - x: 1.9932, - y: 91.8111, - }, - { - l: '91.0', - x: 2.0, - y: 91.8896, - }, + { l: 91.0, x: 0.0383, y: 55.1064 }, + { l: 91.0, x: 0.0575, y: 55.974 }, + { l: 91.0, x: 0.0767, y: 56.9915 }, + { l: 91.0, x: 0.0833, y: 57.3343 }, + { l: 91.0, x: 0.0958, y: 57.9595 }, + { l: 91.0, x: 0.115, y: 58.8755 }, + { l: 91.0, x: 0.1342, y: 59.741 }, + { l: 91.0, x: 0.1533, y: 60.5605 }, + { l: 91.0, x: 0.1667, y: 61.1071 }, + { l: 91.0, x: 0.1725, y: 61.34 }, + { l: 91.0, x: 0.1916, y: 62.0881 }, + { l: 91.0, x: 0.2108, y: 62.8037 }, + { l: 91.0, x: 0.23, y: 63.488 }, + { l: 91.0, x: 0.2491, y: 64.142 }, + { l: 91.0, x: 0.25, y: 64.1703 }, + { l: 91.0, x: 0.3333, y: 66.6759 }, + { l: 91.0, x: 0.4167, y: 68.7337 }, + { l: 91.0, x: 0.5, y: 70.4933 }, + { l: 91.0, x: 0.5833, y: 72.0755 }, + { l: 91.0, x: 0.6667, y: 73.5566 }, + { l: 91.0, x: 0.75, y: 74.9765 }, + { l: 91.0, x: 0.8333, y: 76.3448 }, + { l: 91.0, x: 0.9167, y: 77.662 }, + { l: 91.0, x: 1, y: 78.9349 }, + { l: 91.0, x: 1.0833, y: 80.1714 }, + { l: 91.0, x: 1.1667, y: 81.3713 }, + { l: 91.0, x: 1.25, y: 82.5384 }, + { l: 91.0, x: 1.3333, y: 83.6765 }, + { l: 91.0, x: 1.4167, y: 84.7892 }, + { l: 91.0, x: 1.5, y: 85.8752 }, + { l: 91.0, x: 1.5833, y: 86.9361 }, + { l: 91.0, x: 1.6667, y: 87.9725 }, + { l: 91.0, x: 1.75, y: 88.9885 }, + { l: 91.0, x: 1.8333, y: 89.9819 }, + { l: 91.0, x: 1.9167, y: 90.9569 }, + { l: 91.0, x: 2, y: 91.9124 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 0.0383, - y: 56.1695, - }, - { - l: '98.0', - x: 0.0575, - y: 57.2442, - }, - { - l: '98.0', - x: 0.0767, - y: 58.2714, - }, - { - l: '98.0', - x: 0.0958, - y: 59.2486, - }, - { - l: '98.0', - x: 0.115, - y: 60.1733, - }, - { - l: '98.0', - x: 0.1342, - y: 61.0468, - }, - { - l: '98.0', - x: 0.1533, - y: 61.874, - }, - { - l: '98.0', - x: 0.1725, - y: 62.6608, - }, - { - l: '98.0', - x: 0.1916, - y: 63.416, - }, - { - l: '98.0', - x: 0.2108, - y: 64.1382, - }, - { - l: '98.0', - x: 0.23, - y: 64.829, - }, - { - l: '98.0', - x: 0.2491, - y: 65.4894, - }, - { - l: '98.0', - x: 0.2683, - y: 66.1155, - }, - { - l: '98.0', - x: 0.2875, - y: 66.7152, - }, - { - l: '98.0', - x: 0.3066, - y: 67.2893, - }, - { - l: '98.0', - x: 0.3258, - y: 67.8384, - }, - { - l: '98.0', - x: 0.345, - y: 68.3613, - }, - { - l: '98.0', - x: 0.3641, - y: 68.8601, - }, - { - l: '98.0', - x: 0.3833, - y: 69.338, - }, - { - l: '98.0', - x: 0.4025, - y: 69.7968, - }, - { - l: '98.0', - x: 0.4216, - y: 70.2387, - }, - { - l: '98.0', - x: 0.4408, - y: 70.6659, - }, - { - l: '98.0', - x: 0.46, - y: 71.0792, - }, - { - l: '98.0', - x: 0.4791, - y: 71.48, - }, - { - l: '98.0', - x: 0.4983, - y: 71.8698, - }, - { - l: '98.0', - x: 0.5175, - y: 72.2518, - }, - { - l: '98.0', - x: 0.5366, - y: 72.6254, - }, - { - l: '98.0', - x: 0.5558, - y: 72.9916, - }, - { - l: '98.0', - x: 0.5749, - y: 73.3512, - }, - { - l: '98.0', - x: 0.5941, - y: 73.7059, - }, - { - l: '98.0', - x: 0.6133, - y: 74.0563, - }, - { - l: '98.0', - x: 0.6324, - y: 74.4023, - }, - { - l: '98.0', - x: 0.6516, - y: 74.7442, - }, - { - l: '98.0', - x: 0.6708, - y: 75.083, - }, - { - l: '98.0', - x: 0.6899, - y: 75.4194, - }, - { - l: '98.0', - x: 0.7091, - y: 75.7529, - }, - { - l: '98.0', - x: 0.7283, - y: 76.0836, - }, - { - l: '98.0', - x: 0.7474, - y: 76.4115, - }, - { - l: '98.0', - x: 0.7666, - y: 76.7372, - }, - { - l: '98.0', - x: 0.7858, - y: 77.0603, - }, - { - l: '98.0', - x: 0.8049, - y: 77.3808, - }, - { - l: '98.0', - x: 0.8241, - y: 77.6987, - }, - { - l: '98.0', - x: 0.8433, - y: 78.0138, - }, - { - l: '98.0', - x: 0.8624, - y: 78.3263, - }, - { - l: '98.0', - x: 0.8816, - y: 78.6363, - }, - { - l: '98.0', - x: 0.9008, - y: 78.9438, - }, - { - l: '98.0', - x: 0.9199, - y: 79.2491, - }, - { - l: '98.0', - x: 0.9391, - y: 79.552, - }, - { - l: '98.0', - x: 0.9582, - y: 79.8529, - }, - { - l: '98.0', - x: 0.9774, - y: 80.1516, - }, - { - l: '98.0', - x: 0.9966, - y: 80.4485, - }, - { - l: '98.0', - x: 1.0157, - y: 80.7437, - }, - { - l: '98.0', - x: 1.0349, - y: 81.0373, - }, - { - l: '98.0', - x: 1.0541, - y: 81.3289, - }, - { - l: '98.0', - x: 1.0732, - y: 81.6187, - }, - { - l: '98.0', - x: 1.0924, - y: 81.9065, - }, - { - l: '98.0', - x: 1.1116, - y: 82.1924, - }, - { - l: '98.0', - x: 1.1307, - y: 82.4764, - }, - { - l: '98.0', - x: 1.1499, - y: 82.7587, - }, - { - l: '98.0', - x: 1.1691, - y: 83.0393, - }, - { - l: '98.0', - x: 1.1882, - y: 83.3182, - }, - { - l: '98.0', - x: 1.2074, - y: 83.5955, - }, - { - l: '98.0', - x: 1.2266, - y: 83.8712, - }, - { - l: '98.0', - x: 1.2457, - y: 84.1454, - }, - { - l: '98.0', - x: 1.2649, - y: 84.418, - }, - { - l: '98.0', - x: 1.2841, - y: 84.6892, - }, - { - l: '98.0', - x: 1.3032, - y: 84.9589, - }, - { - l: '98.0', - x: 1.3224, - y: 85.2273, - }, - { - l: '98.0', - x: 1.3415, - y: 85.4945, - }, - { - l: '98.0', - x: 1.3607, - y: 85.7606, - }, - { - l: '98.0', - x: 1.3799, - y: 86.0254, - }, - { - l: '98.0', - x: 1.399, - y: 86.2888, - }, - { - l: '98.0', - x: 1.4182, - y: 86.5509, - }, - { - l: '98.0', - x: 1.4374, - y: 86.8114, - }, - { - l: '98.0', - x: 1.4565, - y: 87.0705, - }, - { - l: '98.0', - x: 1.4757, - y: 87.3283, - }, - { - l: '98.0', - x: 1.4949, - y: 87.5847, - }, - { - l: '98.0', - x: 1.514, - y: 87.84, - }, - { - l: '98.0', - x: 1.5332, - y: 88.094, - }, - { - l: '98.0', - x: 1.5524, - y: 88.3467, - }, - { - l: '98.0', - x: 1.5715, - y: 88.5981, - }, - { - l: '98.0', - x: 1.5907, - y: 88.8482, - }, - { - l: '98.0', - x: 1.6099, - y: 89.097, - }, - { - l: '98.0', - x: 1.629, - y: 89.3445, - }, - { - l: '98.0', - x: 1.6482, - y: 89.5909, - }, - { - l: '98.0', - x: 1.6674, - y: 89.8363, - }, - { - l: '98.0', - x: 1.6865, - y: 90.0808, - }, - { - l: '98.0', - x: 1.7057, - y: 90.3243, - }, - { - l: '98.0', - x: 1.7248, - y: 90.5667, - }, - { - l: '98.0', - x: 1.744, - y: 90.808, - }, - { - l: '98.0', - x: 1.7632, - y: 91.0478, - }, - { - l: '98.0', - x: 1.7823, - y: 91.2864, - }, - { - l: '98.0', - x: 1.8015, - y: 91.524, - }, - { - l: '98.0', - x: 1.8207, - y: 91.7605, - }, - { - l: '98.0', - x: 1.8398, - y: 91.996, - }, - { - l: '98.0', - x: 1.859, - y: 92.2308, - }, - { - l: '98.0', - x: 1.8782, - y: 92.4646, - }, - { - l: '98.0', - x: 1.8973, - y: 92.6974, - }, - { - l: '98.0', - x: 1.9165, - y: 92.9292, - }, - { - l: '98.0', - x: 1.9357, - y: 93.1579, - }, - { - l: '98.0', - x: 1.9548, - y: 93.3868, - }, - { - l: '98.0', - x: 1.974, - y: 93.6156, - }, - { - l: '98.0', - x: 1.9932, - y: 93.8446, - }, - { - l: '98.0', - x: 2.0, - y: 93.9263, - }, + { l: 98.0, x: 0.0383, y: 56.5959 }, + { l: 98.0, x: 0.0575, y: 57.3477 }, + { l: 98.0, x: 0.0767, y: 58.3757 }, + { l: 98.0, x: 0.0833, y: 58.722 }, + { l: 98.0, x: 0.0958, y: 59.3537 }, + { l: 98.0, x: 0.115, y: 60.279 }, + { l: 98.0, x: 0.1342, y: 61.1532 }, + { l: 98.0, x: 0.1533, y: 61.981 }, + { l: 98.0, x: 0.1667, y: 62.5333 }, + { l: 98.0, x: 0.1725, y: 62.7684 }, + { l: 98.0, x: 0.1916, y: 63.5242 }, + { l: 98.0, x: 0.2108, y: 64.2469 }, + { l: 98.0, x: 0.23, y: 64.9383 }, + { l: 98.0, x: 0.2491, y: 65.5992 }, + { l: 98.0, x: 0.25, y: 65.6277 }, + { l: 98.0, x: 0.3333, y: 68.1593 }, + { l: 98.0, x: 0.4167, y: 70.239 }, + { l: 98.0, x: 0.5, y: 72.0191 }, + { l: 98.0, x: 0.5833, y: 73.6232 }, + { l: 98.0, x: 0.6667, y: 75.1289 }, + { l: 98.0, x: 0.75, y: 76.5757 }, + { l: 98.0, x: 0.8333, y: 77.9737 }, + { l: 98.0, x: 0.9167, y: 79.3226 }, + { l: 98.0, x: 1, y: 80.6289 }, + { l: 98.0, x: 1.0833, y: 81.9009 }, + { l: 98.0, x: 1.1667, y: 83.1373 }, + { l: 98.0, x: 1.25, y: 84.3423 }, + { l: 98.0, x: 1.3333, y: 85.5189 }, + { l: 98.0, x: 1.4167, y: 86.6717 }, + { l: 98.0, x: 1.5, y: 87.7981 }, + { l: 98.0, x: 1.5833, y: 88.9004 }, + { l: 98.0, x: 1.6667, y: 89.9786 }, + { l: 98.0, x: 1.75, y: 91.0374 }, + { l: 98.0, x: 1.8333, y: 92.0737 }, + { l: 98.0, x: 1.9167, y: 93.0921 }, + { l: 98.0, x: 2, y: 94.0904 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 0.0383, - y: 57.4439, - }, - { - l: '99.6', - x: 0.0575, - y: 58.5288, - }, - { - l: '99.6', - x: 0.0767, - y: 59.5658, - }, - { - l: '99.6', - x: 0.0958, - y: 60.5524, - }, - { - l: '99.6', - x: 0.115, - y: 61.4859, - }, - { - l: '99.6', - x: 0.1342, - y: 62.3674, - }, - { - l: '99.6', - x: 0.1533, - y: 63.2023, - }, - { - l: '99.6', - x: 0.1725, - y: 63.9966, - }, - { - l: '99.6', - x: 0.1916, - y: 64.759, - }, - { - l: '99.6', - x: 0.2108, - y: 65.4878, - }, - { - l: '99.6', - x: 0.23, - y: 66.1852, - }, - { - l: '99.6', - x: 0.2491, - y: 66.8521, - }, - { - l: '99.6', - x: 0.2683, - y: 67.4832, - }, - { - l: '99.6', - x: 0.2875, - y: 68.0884, - }, - { - l: '99.6', - x: 0.3066, - y: 68.6682, - }, - { - l: '99.6', - x: 0.3258, - y: 69.2233, - }, - { - l: '99.6', - x: 0.345, - y: 69.7515, - }, - { - l: '99.6', - x: 0.3641, - y: 70.2551, - }, - { - l: '99.6', - x: 0.3833, - y: 70.7377, - }, - { - l: '99.6', - x: 0.4025, - y: 71.2011, - }, - { - l: '99.6', - x: 0.4216, - y: 71.6475, - }, - { - l: '99.6', - x: 0.4408, - y: 72.0792, - }, - { - l: '99.6', - x: 0.46, - y: 72.4968, - }, - { - l: '99.6', - x: 0.4791, - y: 72.902, - }, - { - l: '99.6', - x: 0.4983, - y: 73.2963, - }, - { - l: '99.6', - x: 0.5175, - y: 73.6828, - }, - { - l: '99.6', - x: 0.5366, - y: 74.0611, - }, - { - l: '99.6', - x: 0.5558, - y: 74.432, - }, - { - l: '99.6', - x: 0.5749, - y: 74.7964, - }, - { - l: '99.6', - x: 0.5941, - y: 75.1561, - }, - { - l: '99.6', - x: 0.6133, - y: 75.5117, - }, - { - l: '99.6', - x: 0.6324, - y: 75.8629, - }, - { - l: '99.6', - x: 0.6516, - y: 76.2103, - }, - { - l: '99.6', - x: 0.6708, - y: 76.5545, - }, - { - l: '99.6', - x: 0.6899, - y: 76.8966, - }, - { - l: '99.6', - x: 0.7091, - y: 77.2358, - }, - { - l: '99.6', - x: 0.7283, - y: 77.5723, - }, - { - l: '99.6', - x: 0.7474, - y: 77.9062, - }, - { - l: '99.6', - x: 0.7666, - y: 78.238, - }, - { - l: '99.6', - x: 0.7858, - y: 78.5674, - }, - { - l: '99.6', - x: 0.8049, - y: 78.8943, - }, - { - l: '99.6', - x: 0.8241, - y: 79.2188, - }, - { - l: '99.6', - x: 0.8433, - y: 79.5405, - }, - { - l: '99.6', - x: 0.8624, - y: 79.8597, - }, - { - l: '99.6', - x: 0.8816, - y: 80.1765, - }, - { - l: '99.6', - x: 0.9008, - y: 80.4909, - }, - { - l: '99.6', - x: 0.9199, - y: 80.8032, - }, - { - l: '99.6', - x: 0.9391, - y: 81.1132, - }, - { - l: '99.6', - x: 0.9582, - y: 81.4211, - }, - { - l: '99.6', - x: 0.9774, - y: 81.7271, - }, - { - l: '99.6', - x: 0.9966, - y: 82.0313, - }, - { - l: '99.6', - x: 1.0157, - y: 82.3341, - }, - { - l: '99.6', - x: 1.0349, - y: 82.6351, - }, - { - l: '99.6', - x: 1.0541, - y: 82.9344, - }, - { - l: '99.6', - x: 1.0732, - y: 83.232, - }, - { - l: '99.6', - x: 1.0924, - y: 83.5276, - }, - { - l: '99.6', - x: 1.1116, - y: 83.8212, - }, - { - l: '99.6', - x: 1.1307, - y: 84.1131, - }, - { - l: '99.6', - x: 1.1499, - y: 84.4033, - }, - { - l: '99.6', - x: 1.1691, - y: 84.6918, - }, - { - l: '99.6', - x: 1.1882, - y: 84.9788, - }, - { - l: '99.6', - x: 1.2074, - y: 85.2642, - }, - { - l: '99.6', - x: 1.2266, - y: 85.5481, - }, - { - l: '99.6', - x: 1.2457, - y: 85.8304, - }, - { - l: '99.6', - x: 1.2649, - y: 86.1113, - }, - { - l: '99.6', - x: 1.2841, - y: 86.3907, - }, - { - l: '99.6', - x: 1.3032, - y: 86.6687, - }, - { - l: '99.6', - x: 1.3224, - y: 86.9455, - }, - { - l: '99.6', - x: 1.3415, - y: 87.2211, - }, - { - l: '99.6', - x: 1.3607, - y: 87.4958, - }, - { - l: '99.6', - x: 1.3799, - y: 87.7691, - }, - { - l: '99.6', - x: 1.399, - y: 88.0412, - }, - { - l: '99.6', - x: 1.4182, - y: 88.3119, - }, - { - l: '99.6', - x: 1.4374, - y: 88.5811, - }, - { - l: '99.6', - x: 1.4565, - y: 88.8489, - }, - { - l: '99.6', - x: 1.4757, - y: 89.1154, - }, - { - l: '99.6', - x: 1.4949, - y: 89.3806, - }, - { - l: '99.6', - x: 1.514, - y: 89.6446, - }, - { - l: '99.6', - x: 1.5332, - y: 89.9075, - }, - { - l: '99.6', - x: 1.5524, - y: 90.1691, - }, - { - l: '99.6', - x: 1.5715, - y: 90.4295, - }, - { - l: '99.6', - x: 1.5907, - y: 90.6885, - }, - { - l: '99.6', - x: 1.6099, - y: 90.9462, - }, - { - l: '99.6', - x: 1.629, - y: 91.2027, - }, - { - l: '99.6', - x: 1.6482, - y: 91.4582, - }, - { - l: '99.6', - x: 1.6674, - y: 91.7125, - }, - { - l: '99.6', - x: 1.6865, - y: 91.9663, - }, - { - l: '99.6', - x: 1.7057, - y: 92.219, - }, - { - l: '99.6', - x: 1.7248, - y: 92.4706, - }, - { - l: '99.6', - x: 1.744, - y: 92.7212, - }, - { - l: '99.6', - x: 1.7632, - y: 92.9702, - }, - { - l: '99.6', - x: 1.7823, - y: 93.2181, - }, - { - l: '99.6', - x: 1.8015, - y: 93.4648, - }, - { - l: '99.6', - x: 1.8207, - y: 93.7105, - }, - { - l: '99.6', - x: 1.8398, - y: 93.9553, - }, - { - l: '99.6', - x: 1.859, - y: 94.1995, - }, - { - l: '99.6', - x: 1.8782, - y: 94.4426, - }, - { - l: '99.6', - x: 1.8973, - y: 94.6847, - }, - { - l: '99.6', - x: 1.9165, - y: 94.9258, - }, - { - l: '99.6', - x: 1.9357, - y: 95.1638, - }, - { - l: '99.6', - x: 1.9548, - y: 95.4018, - }, - { - l: '99.6', - x: 1.974, - y: 95.6398, - }, - { - l: '99.6', - x: 1.9932, - y: 95.878, - }, - { - l: '99.6', - x: 2.0, - y: 95.9631, - }, + { l: 99.6, x: 0.0383, y: 57.8461 }, + { l: 99.6, x: 0.0575, y: 58.5007 }, + { l: 99.6, x: 0.0767, y: 59.5376 }, + { l: 99.6, x: 0.0833, y: 59.8868 }, + { l: 99.6, x: 0.0958, y: 60.5239 }, + { l: 99.6, x: 0.115, y: 61.4572 }, + { l: 99.6, x: 0.1342, y: 62.3385 }, + { l: 99.6, x: 0.1533, y: 63.1733 }, + { l: 99.6, x: 0.1667, y: 63.7303 }, + { l: 99.6, x: 0.1725, y: 63.9674 }, + { l: 99.6, x: 0.1916, y: 64.7296 }, + { l: 99.6, x: 0.2108, y: 65.4583 }, + { l: 99.6, x: 0.23, y: 66.1556 }, + { l: 99.6, x: 0.2491, y: 66.8223 }, + { l: 99.6, x: 0.25, y: 66.8511 }, + { l: 99.6, x: 0.3333, y: 69.4044 }, + { l: 99.6, x: 0.4167, y: 71.5026 }, + { l: 99.6, x: 0.5, y: 73.2999 }, + { l: 99.6, x: 0.5833, y: 74.9224 }, + { l: 99.6, x: 0.6667, y: 76.4487 }, + { l: 99.6, x: 0.75, y: 77.9181 }, + { l: 99.6, x: 0.8333, y: 79.341 }, + { l: 99.6, x: 0.9167, y: 80.7164 }, + { l: 99.6, x: 1, y: 82.0508 }, + { l: 99.6, x: 1.0833, y: 83.3526 }, + { l: 99.6, x: 1.1667, y: 84.6197 }, + { l: 99.6, x: 1.25, y: 85.8564 }, + { l: 99.6, x: 1.3333, y: 87.0654 }, + { l: 99.6, x: 1.4167, y: 88.2518 }, + { l: 99.6, x: 1.5, y: 89.4121 }, + { l: 99.6, x: 1.5833, y: 90.5491 }, + { l: 99.6, x: 1.6667, y: 91.6625 }, + { l: 99.6, x: 1.75, y: 92.7573 }, + { l: 99.6, x: 1.8333, y: 93.8296 }, + { l: 99.6, x: 1.9167, y: 94.8844 }, + { l: 99.6, x: 2, y: 95.9186 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, - female: null, }, }, { @@ -5722,1232 +611,283 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 2.0, - y: 78.969, - }, - { - l: '0.4', - x: 2.0192, - y: 79.1287, - }, - { - l: '0.4', - x: 2.1025, - y: 79.8197, - }, - { - l: '0.4', - x: 2.1858, - y: 80.4901, - }, - { - l: '0.4', - x: 2.2692, - y: 81.1408, - }, - { - l: '0.4', - x: 2.3525, - y: 81.775, - }, - { - l: '0.4', - x: 2.4358, - y: 82.3894, - }, - { - l: '0.4', - x: 2.5192, - y: 82.9885, - }, - { - l: '0.4', - x: 2.6025, - y: 83.5714, - }, - { - l: '0.4', - x: 2.6858, - y: 84.1403, - }, - { - l: '0.4', - x: 2.7692, - y: 84.6986, - }, - { - l: '0.4', - x: 2.8525, - y: 85.2463, - }, - { - l: '0.4', - x: 2.9358, - y: 85.7862, - }, - { - l: '0.4', - x: 3.0192, - y: 86.3208, - }, - { - l: '0.4', - x: 3.1025, - y: 86.8478, - }, - { - l: '0.4', - x: 3.1858, - y: 87.3672, - }, - { - l: '0.4', - x: 3.2692, - y: 87.883, - }, - { - l: '0.4', - x: 3.3525, - y: 88.3929, - }, - { - l: '0.4', - x: 3.4358, - y: 88.8962, - }, - { - l: '0.4', - x: 3.5192, - y: 89.3919, - }, - { - l: '0.4', - x: 3.6025, - y: 89.8832, - }, - { - l: '0.4', - x: 3.6858, - y: 90.3658, - }, - { - l: '0.4', - x: 3.7692, - y: 90.8451, - }, - { - l: '0.4', - x: 3.8525, - y: 91.3165, - }, - { - l: '0.4', - x: 3.9358, - y: 91.7849, - }, - { - l: '0.4', - x: 4.0, - y: 92.1432, - }, + { l: 0.4, x: 2, y: 79.0135 }, + { l: 0.4, x: 2.0833, y: 79.7081 }, + { l: 0.4, x: 2.1667, y: 80.3842 }, + { l: 0.4, x: 2.25, y: 81.0394 }, + { l: 0.4, x: 2.3333, y: 81.6792 }, + { l: 0.4, x: 2.4167, y: 82.2981 }, + { l: 0.4, x: 2.5, y: 82.9018 }, + { l: 0.4, x: 2.5833, y: 83.4892 }, + { l: 0.4, x: 2.6667, y: 84.0615 }, + { l: 0.4, x: 2.75, y: 84.6231 }, + { l: 0.4, x: 2.8333, y: 85.1738 }, + { l: 0.4, x: 2.9167, y: 85.7157 }, + { l: 0.4, x: 3, y: 86.2524 }, + { l: 0.4, x: 3.0833, y: 86.7822 }, + { l: 0.4, x: 3.1667, y: 87.3032 }, + { l: 0.4, x: 3.25, y: 87.8208 }, + { l: 0.4, x: 3.3333, y: 88.3326 }, + { l: 0.4, x: 3.4167, y: 88.8386 }, + { l: 0.4, x: 3.5, y: 89.3357 }, + { l: 0.4, x: 3.5833, y: 89.8298 }, + { l: 0.4, x: 3.6667, y: 90.3136 }, + { l: 0.4, x: 3.75, y: 90.7954 }, + { l: 0.4, x: 3.8333, y: 91.2682 }, + { l: 0.4, x: 3.9167, y: 91.7384 }, + { l: 0.4, x: 4, y: 92.2042 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 2.0, - y: 81.0058, - }, - { - l: '2.0', - x: 2.0192, - y: 81.1748, - }, - { - l: '2.0', - x: 2.1025, - y: 81.9063, - }, - { - l: '2.0', - x: 2.1858, - y: 82.6164, - }, - { - l: '2.0', - x: 2.2692, - y: 83.3065, - }, - { - l: '2.0', - x: 2.3525, - y: 83.979, - }, - { - l: '2.0', - x: 2.4358, - y: 84.6313, - }, - { - l: '2.0', - x: 2.5192, - y: 85.267, - }, - { - l: '2.0', - x: 2.6025, - y: 85.8857, - }, - { - l: '2.0', - x: 2.6858, - y: 86.4894, - }, - { - l: '2.0', - x: 2.7692, - y: 87.0812, - }, - { - l: '2.0', - x: 2.8525, - y: 87.6618, - }, - { - l: '2.0', - x: 2.9358, - y: 88.2337, - }, - { - l: '2.0', - x: 3.0192, - y: 88.7991, - }, - { - l: '2.0', - x: 3.1025, - y: 89.3564, - }, - { - l: '2.0', - x: 3.1858, - y: 89.9057, - }, - { - l: '2.0', - x: 3.2692, - y: 90.4501, - }, - { - l: '2.0', - x: 3.3525, - y: 90.988, - }, - { - l: '2.0', - x: 3.4358, - y: 91.5186, - }, - { - l: '2.0', - x: 3.5192, - y: 92.0413, - }, - { - l: '2.0', - x: 3.6025, - y: 92.5586, - }, - { - l: '2.0', - x: 3.6858, - y: 93.0673, - }, - { - l: '2.0', - x: 3.7692, - y: 93.5717, - }, - { - l: '2.0', - x: 3.8525, - y: 94.0685, - }, - { - l: '2.0', - x: 3.9358, - y: 94.5618, - }, - { - l: '2.0', - x: 4.0, - y: 94.9392, - }, + { l: 2.0, x: 2, y: 80.8417 }, + { l: 2.0, x: 2.0833, y: 81.5727 }, + { l: 2.0, x: 2.1667, y: 82.2845 }, + { l: 2.0, x: 2.25, y: 82.9754 }, + { l: 2.0, x: 2.3333, y: 83.6496 }, + { l: 2.0, x: 2.4167, y: 84.3028 }, + { l: 2.0, x: 2.5, y: 84.9395 }, + { l: 2.0, x: 2.5833, y: 85.5591 }, + { l: 2.0, x: 2.6667, y: 86.163 }, + { l: 2.0, x: 2.75, y: 86.7549 }, + { l: 2.0, x: 2.8333, y: 87.3353 }, + { l: 2.0, x: 2.9167, y: 87.9061 }, + { l: 2.0, x: 3, y: 88.4706 }, + { l: 2.0, x: 3.0833, y: 89.0276 }, + { l: 2.0, x: 3.1667, y: 89.5757 }, + { l: 2.0, x: 3.25, y: 90.1192 }, + { l: 2.0, x: 3.3333, y: 90.6563 }, + { l: 2.0, x: 3.4167, y: 91.1868 }, + { l: 2.0, x: 3.5, y: 91.7084 }, + { l: 2.0, x: 3.5833, y: 92.2257 }, + { l: 2.0, x: 3.6667, y: 92.7332 }, + { l: 2.0, x: 3.75, y: 93.2374 }, + { l: 2.0, x: 3.8333, y: 93.7333 }, + { l: 2.0, x: 3.9167, y: 94.2258 }, + { l: 2.0, x: 4, y: 94.714 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 2.0, - y: 83.0426, - }, - { - l: '9.0', - x: 2.0192, - y: 83.2208, - }, - { - l: '9.0', - x: 2.1025, - y: 83.9928, - }, - { - l: '9.0', - x: 2.1858, - y: 84.7427, - }, - { - l: '9.0', - x: 2.2692, - y: 85.4723, - }, - { - l: '9.0', - x: 2.3525, - y: 86.1831, - }, - { - l: '9.0', - x: 2.4358, - y: 86.8732, - }, - { - l: '9.0', - x: 2.5192, - y: 87.5454, - }, - { - l: '9.0', - x: 2.6025, - y: 88.1999, - }, - { - l: '9.0', - x: 2.6858, - y: 88.8385, - }, - { - l: '9.0', - x: 2.7692, - y: 89.4638, - }, - { - l: '9.0', - x: 2.8525, - y: 90.0774, - }, - { - l: '9.0', - x: 2.9358, - y: 90.6812, - }, - { - l: '9.0', - x: 3.0192, - y: 91.2773, - }, - { - l: '9.0', - x: 3.1025, - y: 91.8649, - }, - { - l: '9.0', - x: 3.1858, - y: 92.4442, - }, - { - l: '9.0', - x: 3.2692, - y: 93.0172, - }, - { - l: '9.0', - x: 3.3525, - y: 93.5831, - }, - { - l: '9.0', - x: 3.4358, - y: 94.1411, - }, - { - l: '9.0', - x: 3.5192, - y: 94.6907, - }, - { - l: '9.0', - x: 3.6025, - y: 95.2339, - }, - { - l: '9.0', - x: 3.6858, - y: 95.7687, - }, - { - l: '9.0', - x: 3.7692, - y: 96.2982, - }, - { - l: '9.0', - x: 3.8525, - y: 96.8206, - }, - { - l: '9.0', - x: 3.9358, - y: 97.3386, - }, - { - l: '9.0', - x: 4.0, - y: 97.7352, - }, + { l: 9.0, x: 2, y: 83.0197 }, + { l: 9.0, x: 2.0833, y: 83.7941 }, + { l: 9.0, x: 2.1667, y: 84.5485 }, + { l: 9.0, x: 2.25, y: 85.2818 }, + { l: 9.0, x: 2.3333, y: 85.997 }, + { l: 9.0, x: 2.4167, y: 86.691 }, + { l: 9.0, x: 2.5, y: 87.367 }, + { l: 9.0, x: 2.5833, y: 88.0251 }, + { l: 9.0, x: 2.6667, y: 88.6666 }, + { l: 9.0, x: 2.75, y: 89.2945 }, + { l: 9.0, x: 2.8333, y: 89.9102 }, + { l: 9.0, x: 2.9167, y: 90.5157 }, + { l: 9.0, x: 3, y: 91.1133 }, + { l: 9.0, x: 3.0833, y: 91.7026 }, + { l: 9.0, x: 3.1667, y: 92.283 }, + { l: 9.0, x: 3.25, y: 92.8574 }, + { l: 9.0, x: 3.3333, y: 93.4245 }, + { l: 9.0, x: 3.4167, y: 93.9844 }, + { l: 9.0, x: 3.5, y: 94.5351 }, + { l: 9.0, x: 3.5833, y: 95.0801 }, + { l: 9.0, x: 3.6667, y: 95.6159 }, + { l: 9.0, x: 3.75, y: 96.1468 }, + { l: 9.0, x: 3.8333, y: 96.67 }, + { l: 9.0, x: 3.9167, y: 97.1891 }, + { l: 9.0, x: 4, y: 97.7039 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 2.0, - y: 85.0793, - }, - { - l: '25.0', - x: 2.0192, - y: 85.2669, - }, - { - l: '25.0', - x: 2.1025, - y: 86.0793, - }, - { - l: '25.0', - x: 2.1858, - y: 86.8691, - }, - { - l: '25.0', - x: 2.2692, - y: 87.638, - }, - { - l: '25.0', - x: 2.3525, - y: 88.3871, - }, - { - l: '25.0', - x: 2.4358, - y: 89.1151, - }, - { - l: '25.0', - x: 2.5192, - y: 89.8239, - }, - { - l: '25.0', - x: 2.6025, - y: 90.5142, - }, - { - l: '25.0', - x: 2.6858, - y: 91.1876, - }, - { - l: '25.0', - x: 2.7692, - y: 91.8465, - }, - { - l: '25.0', - x: 2.8525, - y: 92.4929, - }, - { - l: '25.0', - x: 2.9358, - y: 93.1287, - }, - { - l: '25.0', - x: 3.0192, - y: 93.7556, - }, - { - l: '25.0', - x: 3.1025, - y: 94.3734, - }, - { - l: '25.0', - x: 3.1858, - y: 94.9826, - }, - { - l: '25.0', - x: 3.2692, - y: 95.5844, - }, - { - l: '25.0', - x: 3.3525, - y: 96.1781, - }, - { - l: '25.0', - x: 3.4358, - y: 96.7635, - }, - { - l: '25.0', - x: 3.5192, - y: 97.3401, - }, - { - l: '25.0', - x: 3.6025, - y: 97.9093, - }, - { - l: '25.0', - x: 3.6858, - y: 98.4702, - }, - { - l: '25.0', - x: 3.7692, - y: 99.0248, - }, - { - l: '25.0', - x: 3.8525, - y: 99.5726, - }, - { - l: '25.0', - x: 3.9358, - y: 100.1155, - }, - { - l: '25.0', - x: 4.0, - y: 100.5313, - }, + { l: 25.0, x: 2, y: 85.0554 }, + { l: 25.0, x: 2.0833, y: 85.8703 }, + { l: 25.0, x: 2.1667, y: 86.6645 }, + { l: 25.0, x: 2.25, y: 87.4375 }, + { l: 25.0, x: 2.3333, y: 88.191 }, + { l: 25.0, x: 2.4167, y: 88.9232 }, + { l: 25.0, x: 2.5, y: 89.6359 }, + { l: 25.0, x: 2.5833, y: 90.3299 }, + { l: 25.0, x: 2.6667, y: 91.0066 }, + { l: 25.0, x: 2.75, y: 91.6682 }, + { l: 25.0, x: 2.8333, y: 92.3169 }, + { l: 25.0, x: 2.9167, y: 92.9546 }, + { l: 25.0, x: 3, y: 93.5832 }, + { l: 25.0, x: 3.0833, y: 94.2028 }, + { l: 25.0, x: 3.1667, y: 94.8134 }, + { l: 25.0, x: 3.25, y: 95.4166 }, + { l: 25.0, x: 3.3333, y: 96.0118 }, + { l: 25.0, x: 3.4167, y: 96.599 }, + { l: 25.0, x: 3.5, y: 97.177 }, + { l: 25.0, x: 3.5833, y: 97.7479 }, + { l: 25.0, x: 3.6667, y: 98.31 }, + { l: 25.0, x: 3.75, y: 98.866 }, + { l: 25.0, x: 3.8333, y: 99.4148 }, + { l: 25.0, x: 3.9167, y: 99.9588 }, + { l: 25.0, x: 4, y: 100.4984 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 2.0, - y: 87.1161, - }, - { - l: '50.0', - x: 2.0192, - y: 87.3129, - }, - { - l: '50.0', - x: 2.1025, - y: 88.1658, - }, - { - l: '50.0', - x: 2.1858, - y: 88.9954, - }, - { - l: '50.0', - x: 2.2692, - y: 89.8038, - }, - { - l: '50.0', - x: 2.3525, - y: 90.5912, - }, - { - l: '50.0', - x: 2.4358, - y: 91.3571, - }, - { - l: '50.0', - x: 2.5192, - y: 92.1024, - }, - { - l: '50.0', - x: 2.6025, - y: 92.8284, - }, - { - l: '50.0', - x: 2.6858, - y: 93.5367, - }, - { - l: '50.0', - x: 2.7692, - y: 94.2291, - }, - { - l: '50.0', - x: 2.8525, - y: 94.9084, - }, - { - l: '50.0', - x: 2.9358, - y: 95.5763, - }, - { - l: '50.0', - x: 3.0192, - y: 96.2339, - }, - { - l: '50.0', - x: 3.1025, - y: 96.882, - }, - { - l: '50.0', - x: 3.1858, - y: 97.5211, - }, - { - l: '50.0', - x: 3.2692, - y: 98.1515, - }, - { - l: '50.0', - x: 3.3525, - y: 98.7732, - }, - { - l: '50.0', - x: 3.4358, - y: 99.386, - }, - { - l: '50.0', - x: 3.5192, - y: 99.9895, - }, - { - l: '50.0', - x: 3.6025, - y: 100.5846, - }, - { - l: '50.0', - x: 3.6858, - y: 101.1717, - }, - { - l: '50.0', - x: 3.7692, - y: 101.7513, - }, - { - l: '50.0', - x: 3.8525, - y: 102.3247, - }, - { - l: '50.0', - x: 3.9358, - y: 102.8924, - }, - { - l: '50.0', - x: 4.0, - y: 103.3273, - }, + { l: 50.0, x: 2, y: 87.1161 }, + { l: 50.0, x: 2.0833, y: 87.972 }, + { l: 50.0, x: 2.1667, y: 88.8065 }, + { l: 50.0, x: 2.25, y: 89.6197 }, + { l: 50.0, x: 2.3333, y: 90.412 }, + { l: 50.0, x: 2.4167, y: 91.1828 }, + { l: 50.0, x: 2.5, y: 91.9327 }, + { l: 50.0, x: 2.5833, y: 92.6631 }, + { l: 50.0, x: 2.6667, y: 93.3753 }, + { l: 50.0, x: 2.75, y: 94.0711 }, + { l: 50.0, x: 2.8333, y: 94.7532 }, + { l: 50.0, x: 2.9167, y: 95.4236 }, + { l: 50.0, x: 3, y: 96.0835 }, + { l: 50.0, x: 3.0833, y: 96.7337 }, + { l: 50.0, x: 3.1667, y: 97.3749 }, + { l: 50.0, x: 3.25, y: 98.0073 }, + { l: 50.0, x: 3.3333, y: 98.631 }, + { l: 50.0, x: 3.4167, y: 99.2459 }, + { l: 50.0, x: 3.5, y: 99.8515 }, + { l: 50.0, x: 3.5833, y: 100.4485 }, + { l: 50.0, x: 3.6667, y: 101.0374 }, + { l: 50.0, x: 3.75, y: 101.6186 }, + { l: 50.0, x: 3.8333, y: 102.1933 }, + { l: 50.0, x: 3.9167, y: 102.7625 }, + { l: 50.0, x: 4, y: 103.3273 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 2.0, - y: 89.1529, - }, - { - l: '75.0', - x: 2.0192, - y: 89.359, - }, - { - l: '75.0', - x: 2.1025, - y: 90.2523, - }, - { - l: '75.0', - x: 2.1858, - y: 91.1217, - }, - { - l: '75.0', - x: 2.2692, - y: 91.9695, - }, - { - l: '75.0', - x: 2.3525, - y: 92.7952, - }, - { - l: '75.0', - x: 2.4358, - y: 93.599, - }, - { - l: '75.0', - x: 2.5192, - y: 94.3808, - }, - { - l: '75.0', - x: 2.6025, - y: 95.1427, - }, - { - l: '75.0', - x: 2.6858, - y: 95.8858, - }, - { - l: '75.0', - x: 2.7692, - y: 96.6117, - }, - { - l: '75.0', - x: 2.8525, - y: 97.3239, - }, - { - l: '75.0', - x: 2.9358, - y: 98.0238, - }, - { - l: '75.0', - x: 3.0192, - y: 98.7121, - }, - { - l: '75.0', - x: 3.1025, - y: 99.3905, - }, - { - l: '75.0', - x: 3.1858, - y: 100.0596, - }, - { - l: '75.0', - x: 3.2692, - y: 100.7187, - }, - { - l: '75.0', - x: 3.3525, - y: 101.3683, - }, - { - l: '75.0', - x: 3.4358, - y: 102.0084, - }, - { - l: '75.0', - x: 3.5192, - y: 102.6389, - }, - { - l: '75.0', - x: 3.6025, - y: 103.26, - }, - { - l: '75.0', - x: 3.6858, - y: 103.8732, - }, - { - l: '75.0', - x: 3.7692, - y: 104.4779, - }, - { - l: '75.0', - x: 3.8525, - y: 105.0767, - }, - { - l: '75.0', - x: 3.9358, - y: 105.6693, - }, - { - l: '75.0', - x: 4.0, - y: 106.1233, - }, + { l: 75.0, x: 2, y: 89.1768 }, + { l: 75.0, x: 2.0833, y: 90.0737 }, + { l: 75.0, x: 2.1667, y: 90.9485 }, + { l: 75.0, x: 2.25, y: 91.8019 }, + { l: 75.0, x: 2.3333, y: 92.633 }, + { l: 75.0, x: 2.4167, y: 93.4424 }, + { l: 75.0, x: 2.5, y: 94.2295 }, + { l: 75.0, x: 2.5833, y: 94.9963 }, + { l: 75.0, x: 2.6667, y: 95.744 }, + { l: 75.0, x: 2.75, y: 96.474 }, + { l: 75.0, x: 2.8333, y: 97.1895 }, + { l: 75.0, x: 2.9167, y: 97.8926 }, + { l: 75.0, x: 3, y: 98.5838 }, + { l: 75.0, x: 3.0833, y: 99.2646 }, + { l: 75.0, x: 3.1667, y: 99.9364 }, + { l: 75.0, x: 3.25, y: 100.598 }, + { l: 75.0, x: 3.3333, y: 101.2502 }, + { l: 75.0, x: 3.4167, y: 101.8928 }, + { l: 75.0, x: 3.5, y: 102.526 }, + { l: 75.0, x: 3.5833, y: 103.1491 }, + { l: 75.0, x: 3.6667, y: 103.7648 }, + { l: 75.0, x: 3.75, y: 104.3712 }, + { l: 75.0, x: 3.8333, y: 104.9718 }, + { l: 75.0, x: 3.9167, y: 105.5662 }, + { l: 75.0, x: 4, y: 106.1562 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 2.0, - y: 91.1896, - }, - { - l: '91.0', - x: 2.0192, - y: 91.4051, - }, - { - l: '91.0', - x: 2.1025, - y: 92.3388, - }, - { - l: '91.0', - x: 2.1858, - y: 93.2481, - }, - { - l: '91.0', - x: 2.2692, - y: 94.1353, - }, - { - l: '91.0', - x: 2.3525, - y: 94.9992, - }, - { - l: '91.0', - x: 2.4358, - y: 95.8409, - }, - { - l: '91.0', - x: 2.5192, - y: 96.6593, - }, - { - l: '91.0', - x: 2.6025, - y: 97.4569, - }, - { - l: '91.0', - x: 2.6858, - y: 98.2349, - }, - { - l: '91.0', - x: 2.7692, - y: 98.9944, - }, - { - l: '91.0', - x: 2.8525, - y: 99.7394, - }, - { - l: '91.0', - x: 2.9358, - y: 100.4713, - }, - { - l: '91.0', - x: 3.0192, - y: 101.1904, - }, - { - l: '91.0', - x: 3.1025, - y: 101.899, - }, - { - l: '91.0', - x: 3.1858, - y: 102.5981, - }, - { - l: '91.0', - x: 3.2692, - y: 103.2858, - }, - { - l: '91.0', - x: 3.3525, - y: 103.9634, - }, - { - l: '91.0', - x: 3.4358, - y: 104.6309, - }, - { - l: '91.0', - x: 3.5192, - y: 105.2883, - }, - { - l: '91.0', - x: 3.6025, - y: 105.9353, - }, - { - l: '91.0', - x: 3.6858, - y: 106.5747, - }, - { - l: '91.0', - x: 3.7692, - y: 107.2044, - }, - { - l: '91.0', - x: 3.8525, - y: 107.8287, - }, - { - l: '91.0', - x: 3.9358, - y: 108.4461, - }, - { - l: '91.0', - x: 4.0, - y: 108.9194, - }, + { l: 91.0, x: 2, y: 91.2125 }, + { l: 91.0, x: 2.0833, y: 92.1499 }, + { l: 91.0, x: 2.1667, y: 93.0645 }, + { l: 91.0, x: 2.25, y: 93.9576 }, + { l: 91.0, x: 2.3333, y: 94.827 }, + { l: 91.0, x: 2.4167, y: 95.6746 }, + { l: 91.0, x: 2.5, y: 96.4984 }, + { l: 91.0, x: 2.5833, y: 97.3011 }, + { l: 91.0, x: 2.6667, y: 98.084 }, + { l: 91.0, x: 2.75, y: 98.8477 }, + { l: 91.0, x: 2.8333, y: 99.5962 }, + { l: 91.0, x: 2.9167, y: 100.3315 }, + { l: 91.0, x: 3, y: 101.0537 }, + { l: 91.0, x: 3.0833, y: 101.7648 }, + { l: 91.0, x: 3.1667, y: 102.4668 }, + { l: 91.0, x: 3.25, y: 103.1572 }, + { l: 91.0, x: 3.3333, y: 103.8375 }, + { l: 91.0, x: 3.4167, y: 104.5074 }, + { l: 91.0, x: 3.5, y: 105.1679 }, + { l: 91.0, x: 3.5833, y: 105.8169 }, + { l: 91.0, x: 3.6667, y: 106.4589 }, + { l: 91.0, x: 3.75, y: 107.0904 }, + { l: 91.0, x: 3.8333, y: 107.7166 }, + { l: 91.0, x: 3.9167, y: 108.3359 }, + { l: 91.0, x: 4, y: 108.9507 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 2.0, - y: 93.2264, - }, - { - l: '98.0', - x: 2.0192, - y: 93.4511, - }, - { - l: '98.0', - x: 2.1025, - y: 94.4254, - }, - { - l: '98.0', - x: 2.1858, - y: 95.3744, - }, - { - l: '98.0', - x: 2.2692, - y: 96.301, - }, - { - l: '98.0', - x: 2.3525, - y: 97.2033, - }, - { - l: '98.0', - x: 2.4358, - y: 98.0828, - }, - { - l: '98.0', - x: 2.5192, - y: 98.9377, - }, - { - l: '98.0', - x: 2.6025, - y: 99.7712, - }, - { - l: '98.0', - x: 2.6858, - y: 100.584, - }, - { - l: '98.0', - x: 2.7692, - y: 101.377, - }, - { - l: '98.0', - x: 2.8525, - y: 102.1549, - }, - { - l: '98.0', - x: 2.9358, - y: 102.9188, - }, - { - l: '98.0', - x: 3.0192, - y: 103.6687, - }, - { - l: '98.0', - x: 3.1025, - y: 104.4076, - }, - { - l: '98.0', - x: 3.1858, - y: 105.1366, - }, - { - l: '98.0', - x: 3.2692, - y: 105.8529, - }, - { - l: '98.0', - x: 3.3525, - y: 106.5584, - }, - { - l: '98.0', - x: 3.4358, - y: 107.2533, - }, - { - l: '98.0', - x: 3.5192, - y: 107.9377, - }, - { - l: '98.0', - x: 3.6025, - y: 108.6107, - }, - { - l: '98.0', - x: 3.6858, - y: 109.2761, - }, - { - l: '98.0', - x: 3.7692, - y: 109.931, - }, - { - l: '98.0', - x: 3.8525, - y: 110.5808, - }, - { - l: '98.0', - x: 3.9358, - y: 111.223, - }, - { - l: '98.0', - x: 4.0, - y: 111.7154, - }, + { l: 98.0, x: 2, y: 93.3905 }, + { l: 98.0, x: 2.0833, y: 94.3713 }, + { l: 98.0, x: 2.1667, y: 95.3285 }, + { l: 98.0, x: 2.25, y: 96.264 }, + { l: 98.0, x: 2.3333, y: 97.1744 }, + { l: 98.0, x: 2.4167, y: 98.0628 }, + { l: 98.0, x: 2.5, y: 98.9259 }, + { l: 98.0, x: 2.5833, y: 99.7671 }, + { l: 98.0, x: 2.6667, y: 100.5876 }, + { l: 98.0, x: 2.75, y: 101.3873 }, + { l: 98.0, x: 2.8333, y: 102.1711 }, + { l: 98.0, x: 2.9167, y: 102.9411 }, + { l: 98.0, x: 3, y: 103.6964 }, + { l: 98.0, x: 3.0833, y: 104.4398 }, + { l: 98.0, x: 3.1667, y: 105.1741 }, + { l: 98.0, x: 3.25, y: 105.8954 }, + { l: 98.0, x: 3.3333, y: 106.6057 }, + { l: 98.0, x: 3.4167, y: 107.305 }, + { l: 98.0, x: 3.5, y: 107.9946 }, + { l: 98.0, x: 3.5833, y: 108.6713 }, + { l: 98.0, x: 3.6667, y: 109.3416 }, + { l: 98.0, x: 3.75, y: 109.9998 }, + { l: 98.0, x: 3.8333, y: 110.6533 }, + { l: 98.0, x: 3.9167, y: 111.2992 }, + { l: 98.0, x: 4, y: 111.9406 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 2.0, - y: 95.2632, - }, - { - l: '99.6', - x: 2.0192, - y: 95.4972, - }, - { - l: '99.6', - x: 2.1025, - y: 96.5119, - }, - { - l: '99.6', - x: 2.1858, - y: 97.5007, - }, - { - l: '99.6', - x: 2.2692, - y: 98.4668, - }, - { - l: '99.6', - x: 2.3525, - y: 99.4073, - }, - { - l: '99.6', - x: 2.4358, - y: 100.3248, - }, - { - l: '99.6', - x: 2.5192, - y: 101.2162, - }, - { - l: '99.6', - x: 2.6025, - y: 102.0854, - }, - { - l: '99.6', - x: 2.6858, - y: 102.933, - }, - { - l: '99.6', - x: 2.7692, - y: 103.7597, - }, - { - l: '99.6', - x: 2.8525, - y: 104.5704, - }, - { - l: '99.6', - x: 2.9358, - y: 105.3663, - }, - { - l: '99.6', - x: 3.0192, - y: 106.1469, - }, - { - l: '99.6', - x: 3.1025, - y: 106.9161, - }, - { - l: '99.6', - x: 3.1858, - y: 107.675, - }, - { - l: '99.6', - x: 3.2692, - y: 108.4201, - }, - { - l: '99.6', - x: 3.3525, - y: 109.1535, - }, - { - l: '99.6', - x: 3.4358, - y: 109.8758, - }, - { - l: '99.6', - x: 3.5192, - y: 110.5871, - }, - { - l: '99.6', - x: 3.6025, - y: 111.286, - }, - { - l: '99.6', - x: 3.6858, - y: 111.9776, - }, - { - l: '99.6', - x: 3.7692, - y: 112.6575, - }, - { - l: '99.6', - x: 3.8525, - y: 113.3328, - }, - { - l: '99.6', - x: 3.9358, - y: 113.9999, - }, - { - l: '99.6', - x: 4.0, - y: 114.5114, - }, + { l: 99.6, x: 2, y: 95.2187 }, + { l: 99.6, x: 2.0833, y: 96.2359 }, + { l: 99.6, x: 2.1667, y: 97.2288 }, + { l: 99.6, x: 2.25, y: 98.2 }, + { l: 99.6, x: 2.3333, y: 99.1448 }, + { l: 99.6, x: 2.4167, y: 100.0675 }, + { l: 99.6, x: 2.5, y: 100.9636 }, + { l: 99.6, x: 2.5833, y: 101.837 }, + { l: 99.6, x: 2.6667, y: 102.6891 }, + { l: 99.6, x: 2.75, y: 103.5191 }, + { l: 99.6, x: 2.8333, y: 104.3326 }, + { l: 99.6, x: 2.9167, y: 105.1315 }, + { l: 99.6, x: 3, y: 105.9146 }, + { l: 99.6, x: 3.0833, y: 106.6852 }, + { l: 99.6, x: 3.1667, y: 107.4466 }, + { l: 99.6, x: 3.25, y: 108.1938 }, + { l: 99.6, x: 3.3333, y: 108.9294 }, + { l: 99.6, x: 3.4167, y: 109.6532 }, + { l: 99.6, x: 3.5, y: 110.3673 }, + { l: 99.6, x: 3.5833, y: 111.0672 }, + { l: 99.6, x: 3.6667, y: 111.7612 }, + { l: 99.6, x: 3.75, y: 112.4418 }, + { l: 99.6, x: 3.8333, y: 113.1184 }, + { l: 99.6, x: 3.9167, y: 113.7866 }, + { l: 99.6, x: 4, y: 114.4504 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, - female: null, }, }, { @@ -6958,8792 +898,1786 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { sds: -2.67, centile: 0.4, data: [ - { - l: '0.4', - x: 4.0, - y: 91.5359, - }, - { - l: '0.4', - x: 4.0833, - y: 92.0092, - }, - { - l: '0.4', - x: 4.1667, - y: 92.4939, - }, - { - l: '0.4', - x: 4.25, - y: 92.9781, - }, - { - l: '0.4', - x: 4.3333, - y: 93.462, - }, - { - l: '0.4', - x: 4.4167, - y: 93.9662, - }, - { - l: '0.4', - x: 4.5, - y: 94.4729, - }, - { - l: '0.4', - x: 4.5833, - y: 94.9763, - }, - { - l: '0.4', - x: 4.6667, - y: 95.4941, - }, - { - l: '0.4', - x: 4.75, - y: 96.0026, - }, - { - l: '0.4', - x: 4.8333, - y: 96.5138, - }, - { - l: '0.4', - x: 4.9167, - y: 97.0247, - }, - { - l: '0.4', - x: 5.0, - y: 97.5176, - }, - { - l: '0.4', - x: 5.0833, - y: 98.0071, - }, - { - l: '0.4', - x: 5.1667, - y: 98.4936, - }, - { - l: '0.4', - x: 5.25, - y: 98.968, - }, - { - l: '0.4', - x: 5.3333, - y: 99.4215, - }, - { - l: '0.4', - x: 5.4167, - y: 99.8866, - }, - { - l: '0.4', - x: 5.5, - y: 100.3339, - }, - { - l: '0.4', - x: 5.5833, - y: 100.7721, - }, - { - l: '0.4', - x: 5.6667, - y: 101.2222, - }, - { - l: '0.4', - x: 5.75, - y: 101.6632, - }, - { - l: '0.4', - x: 5.8333, - y: 102.1041, - }, - { - l: '0.4', - x: 5.9167, - y: 102.5449, - }, - { - l: '0.4', - x: 6.0, - y: 102.9768, - }, - { - l: '0.4', - x: 6.0833, - y: 103.4205, - }, - { - l: '0.4', - x: 6.1667, - y: 103.8521, - }, - { - l: '0.4', - x: 6.25, - y: 104.2867, - }, - { - l: '0.4', - x: 6.3333, - y: 104.7213, - }, - { - l: '0.4', - x: 6.4167, - y: 105.1469, - }, - { - l: '0.4', - x: 6.5, - y: 105.5813, - }, - { - l: '0.4', - x: 6.5833, - y: 106.0067, - }, - { - l: '0.4', - x: 6.6667, - y: 106.4289, - }, - { - l: '0.4', - x: 6.75, - y: 106.8631, - }, - { - l: '0.4', - x: 6.8333, - y: 107.285, - }, - { - l: '0.4', - x: 6.9167, - y: 107.7158, - }, - { - l: '0.4', - x: 7.0, - y: 108.1464, - }, - { - l: '0.4', - x: 7.0833, - y: 108.5737, - }, - { - l: '0.4', - x: 7.1667, - y: 109.0041, - }, - { - l: '0.4', - x: 7.25, - y: 109.4311, - }, - { - l: '0.4', - x: 7.3333, - y: 109.8613, - }, - { - l: '0.4', - x: 7.4167, - y: 110.2881, - }, - { - l: '0.4', - x: 7.5, - y: 110.7147, - }, - { - l: '0.4', - x: 7.5833, - y: 111.1445, - }, - { - l: '0.4', - x: 7.6667, - y: 111.5654, - }, - { - l: '0.4', - x: 7.75, - y: 111.9917, - }, - { - l: '0.4', - x: 7.8333, - y: 112.4034, - }, - { - l: '0.4', - x: 7.9167, - y: 112.824, - }, - { - l: '0.4', - x: 8.0, - y: 113.2444, - }, - { - l: '0.4', - x: 8.0833, - y: 113.6525, - }, - { - l: '0.4', - x: 8.1667, - y: 114.055, - }, - { - l: '0.4', - x: 8.25, - y: 114.4574, - }, - { - l: '0.4', - x: 8.3333, - y: 114.8562, - }, - { - l: '0.4', - x: 8.4167, - y: 115.2372, - }, - { - l: '0.4', - x: 8.5, - y: 115.6181, - }, - { - l: '0.4', - x: 8.5833, - y: 115.9954, - }, - { - l: '0.4', - x: 8.6667, - y: 116.3726, - }, - { - l: '0.4', - x: 8.75, - y: 116.7319, - }, - { - l: '0.4', - x: 8.8333, - y: 117.0963, - }, - { - l: '0.4', - x: 8.9167, - y: 117.4518, - }, - { - l: '0.4', - x: 9.0, - y: 117.816, - }, - { - l: '0.4', - x: 9.0833, - y: 118.1675, - }, - { - l: '0.4', - x: 9.1667, - y: 118.5189, - }, - { - l: '0.4', - x: 9.25, - y: 118.8666, - }, - { - l: '0.4', - x: 9.3333, - y: 119.2088, - }, - { - l: '0.4', - x: 9.4167, - y: 119.5524, - }, - { - l: '0.4', - x: 9.5, - y: 119.8906, - }, - { - l: '0.4', - x: 9.5833, - y: 120.2249, - }, - { - l: '0.4', - x: 9.6667, - y: 120.559, - }, - { - l: '0.4', - x: 9.75, - y: 120.893, - }, - { - l: '0.4', - x: 9.8333, - y: 121.2318, - }, - { - l: '0.4', - x: 9.9167, - y: 121.5667, - }, - { - l: '0.4', - x: 10.0, - y: 121.9013, - }, - { - l: '0.4', - x: 10.0833, - y: 122.2356, - }, - { - l: '0.4', - x: 10.1667, - y: 122.5748, - }, - { - l: '0.4', - x: 10.25, - y: 122.9048, - }, - { - l: '0.4', - x: 10.3333, - y: 123.2309, - }, - { - l: '0.4', - x: 10.4167, - y: 123.5478, - }, - { - l: '0.4', - x: 10.5, - y: 123.8644, - }, - { - l: '0.4', - x: 10.5833, - y: 124.1719, - }, - { - l: '0.4', - x: 10.6667, - y: 124.4753, - }, - { - l: '0.4', - x: 10.75, - y: 124.7696, - }, - { - l: '0.4', - x: 10.8333, - y: 125.0636, - }, - { - l: '0.4', - x: 10.9167, - y: 125.3534, - }, - { - l: '0.4', - x: 11.0, - y: 125.638, - }, - { - l: '0.4', - x: 11.0833, - y: 125.9272, - }, - { - l: '0.4', - x: 11.1667, - y: 126.2073, - }, - { - l: '0.4', - x: 11.25, - y: 126.4832, - }, - { - l: '0.4', - x: 11.3333, - y: 126.7675, - }, - { - l: '0.4', - x: 11.4167, - y: 127.0427, - }, - { - l: '0.4', - x: 11.5, - y: 127.335, - }, - { - l: '0.4', - x: 11.5833, - y: 127.6269, - }, - { - l: '0.4', - x: 11.6667, - y: 127.9194, - }, - { - l: '0.4', - x: 11.75, - y: 128.2328, - }, - { - l: '0.4', - x: 11.8333, - y: 128.5458, - }, - { - l: '0.4', - x: 11.9167, - y: 128.8631, - }, - { - l: '0.4', - x: 12.0, - y: 129.18, - }, - { - l: '0.4', - x: 12.0833, - y: 129.5099, - }, - { - l: '0.4', - x: 12.1667, - y: 129.8519, - }, - { - l: '0.4', - x: 12.25, - y: 130.2109, - }, - { - l: '0.4', - x: 12.3333, - y: 130.5653, - }, - { - l: '0.4', - x: 12.4167, - y: 130.9406, - }, - { - l: '0.4', - x: 12.5, - y: 131.3153, - }, - { - l: '0.4', - x: 12.5833, - y: 131.7069, - }, - { - l: '0.4', - x: 12.6667, - y: 132.1106, - }, - { - l: '0.4', - x: 12.75, - y: 132.5225, - }, - { - l: '0.4', - x: 12.8333, - y: 132.9511, - }, - { - l: '0.4', - x: 12.9167, - y: 133.3961, - }, - { - l: '0.4', - x: 13.0, - y: 133.8534, - }, - { - l: '0.4', - x: 13.0833, - y: 134.3188, - }, - { - l: '0.4', - x: 13.1667, - y: 134.8048, - }, - { - l: '0.4', - x: 13.25, - y: 135.2991, - }, - { - l: '0.4', - x: 13.3333, - y: 135.8142, - }, - { - l: '0.4', - x: 13.4167, - y: 136.3374, - }, - { - l: '0.4', - x: 13.5, - y: 136.8646, - }, - { - l: '0.4', - x: 13.5833, - y: 137.4129, - }, - { - l: '0.4', - x: 13.6667, - y: 137.9611, - }, - { - l: '0.4', - x: 13.75, - y: 138.5134, - }, - { - l: '0.4', - x: 13.8333, - y: 139.0873, - }, - { - l: '0.4', - x: 13.9167, - y: 139.6571, - }, - { - l: '0.4', - x: 14.0, - y: 140.2357, - }, - { - l: '0.4', - x: 14.0833, - y: 140.8148, - }, - { - l: '0.4', - x: 14.1667, - y: 141.4073, - }, - { - l: '0.4', - x: 14.25, - y: 141.9961, - }, - { - l: '0.4', - x: 14.3333, - y: 142.5856, - }, - { - l: '0.4', - x: 14.4167, - y: 143.1846, - }, - { - l: '0.4', - x: 14.5, - y: 143.7715, - }, - { - l: '0.4', - x: 14.5833, - y: 144.368, - }, - { - l: '0.4', - x: 14.6667, - y: 144.9569, - }, - { - l: '0.4', - x: 14.75, - y: 145.5424, - }, - { - l: '0.4', - x: 14.8333, - y: 146.1247, - }, - { - l: '0.4', - x: 14.9167, - y: 146.6992, - }, - { - l: '0.4', - x: 15.0, - y: 147.2661, - }, - { - l: '0.4', - x: 15.0833, - y: 147.8252, - }, - { - l: '0.4', - x: 15.1667, - y: 148.3722, - }, - { - l: '0.4', - x: 15.25, - y: 148.9071, - }, - { - l: '0.4', - x: 15.3333, - y: 149.4341, - }, - { - l: '0.4', - x: 15.4167, - y: 149.9398, - }, - { - l: '0.4', - x: 15.5, - y: 150.4287, - }, - { - l: '0.4', - x: 15.5833, - y: 150.9095, - }, - { - l: '0.4', - x: 15.6667, - y: 151.3822, - }, - { - l: '0.4', - x: 15.75, - y: 151.8376, - }, - { - l: '0.4', - x: 15.8333, - y: 152.2672, - }, - { - l: '0.4', - x: 15.9167, - y: 152.6927, - }, - { - l: '0.4', - x: 16.0, - y: 153.0964, - }, - { - l: '0.4', - x: 16.0833, - y: 153.4784, - }, - { - l: '0.4', - x: 16.1667, - y: 153.8562, - }, - { - l: '0.4', - x: 16.25, - y: 154.2074, - }, - { - l: '0.4', - x: 16.3333, - y: 154.5454, - }, - { - l: '0.4', - x: 16.4167, - y: 154.8661, - }, - { - l: '0.4', - x: 16.5, - y: 155.1731, - }, - { - l: '0.4', - x: 16.5833, - y: 155.4626, - }, - { - l: '0.4', - x: 16.6667, - y: 155.7388, - }, - { - l: '0.4', - x: 16.75, - y: 155.997, - }, - { - l: '0.4', - x: 16.8333, - y: 156.2508, - }, - { - l: '0.4', - x: 16.9167, - y: 156.4869, - }, - { - l: '0.4', - x: 17.0, - y: 156.7048, - }, - { - l: '0.4', - x: 17.0833, - y: 156.9183, - }, - { - l: '0.4', - x: 17.1667, - y: 157.1182, - }, - { - l: '0.4', - x: 17.25, - y: 157.3005, - }, - { - l: '0.4', - x: 17.3333, - y: 157.4734, - }, - { - l: '0.4', - x: 17.4167, - y: 157.6417, - }, - { - l: '0.4', - x: 17.5, - y: 157.7875, - }, - { - l: '0.4', - x: 17.5833, - y: 157.9197, - }, - { - l: '0.4', - x: 17.6667, - y: 158.0473, - }, - { - l: '0.4', - x: 17.75, - y: 158.1476, - }, - { - l: '0.4', - x: 17.8333, - y: 158.2479, - }, - { - l: '0.4', - x: 17.9167, - y: 158.3257, - }, - { - l: '0.4', - x: 18.0, - y: 158.3987, - }, - { - l: '0.4', - x: 18.0833, - y: 158.4581, - }, - { - l: '0.4', - x: 18.1667, - y: 158.5175, - }, - { - l: '0.4', - x: 18.25, - y: 158.5586, - }, - { - l: '0.4', - x: 18.3333, - y: 158.5996, - }, - { - l: '0.4', - x: 18.4167, - y: 158.6269, - }, - { - l: '0.4', - x: 18.5, - y: 158.6453, - }, - { - l: '0.4', - x: 18.5833, - y: 158.659, - }, - { - l: '0.4', - x: 18.6667, - y: 158.6637, - }, - { - l: '0.4', - x: 18.75, - y: 158.6727, - }, - { - l: '0.4', - x: 18.8333, - y: 158.6727, - }, - { - l: '0.4', - x: 18.9167, - y: 158.6727, - }, - { - l: '0.4', - x: 19.0, - y: 158.6774, - }, - { - l: '0.4', - x: 19.0833, - y: 158.6864, - }, - { - l: '0.4', - x: 19.1667, - y: 158.6911, - }, - { - l: '0.4', - x: 19.25, - y: 158.6911, - }, - { - l: '0.4', - x: 19.3333, - y: 158.7, - }, - { - l: '0.4', - x: 19.4167, - y: 158.7, - }, - { - l: '0.4', - x: 19.5, - y: 158.7, - }, - { - l: '0.4', - x: 19.5833, - y: 158.7048, - }, - { - l: '0.4', - x: 19.6667, - y: 158.7048, - }, - { - l: '0.4', - x: 19.75, - y: 158.7185, - }, - { - l: '0.4', - x: 19.8333, - y: 158.7321, - }, - { - l: '0.4', - x: 19.9167, - y: 158.7458, - }, - { - l: '0.4', - x: 20.0, - y: 158.7595, - }, - { - l: '0.4', - x: 20.0, - y: 158.7595, - }, + { l: 0.4, x: 4, y: 91.5957 }, + { l: 0.4, x: 4.083, y: 92.0677 }, + { l: 0.4, x: 4.167, y: 92.5567 }, + { l: 0.4, x: 4.25, y: 93.0395 }, + { l: 0.4, x: 4.333, y: 93.522 }, + { l: 0.4, x: 4.417, y: 94.0307 }, + { l: 0.4, x: 4.5, y: 94.5358 }, + { l: 0.4, x: 4.583, y: 95.0378 }, + { l: 0.4, x: 4.667, y: 95.5601 }, + { l: 0.4, x: 4.75, y: 96.0671 }, + { l: 0.4, x: 4.833, y: 96.5767 }, + { l: 0.4, x: 4.917, y: 97.0922 }, + { l: 0.4, x: 5, y: 97.5835 }, + { l: 0.4, x: 5.083, y: 98.0716 }, + { l: 0.4, x: 5.167, y: 98.5624 }, + { l: 0.4, x: 5.25, y: 99.0352 }, + { l: 0.4, x: 5.333, y: 99.4873 }, + { l: 0.4, x: 5.417, y: 99.9565 }, + { l: 0.4, x: 5.5, y: 100.4024 }, + { l: 0.4, x: 5.583, y: 100.8393 }, + { l: 0.4, x: 5.667, y: 101.2932 }, + { l: 0.4, x: 5.75, y: 101.7328 }, + { l: 0.4, x: 5.833, y: 102.1724 }, + { l: 0.4, x: 5.917, y: 102.6171 }, + { l: 0.4, x: 6, y: 103.0475 }, + { l: 0.4, x: 6.083, y: 103.4898 }, + { l: 0.4, x: 6.167, y: 103.9253 }, + { l: 0.4, x: 6.25, y: 104.3586 }, + { l: 0.4, x: 6.333, y: 104.7918 }, + { l: 0.4, x: 6.417, y: 105.2212 }, + { l: 0.4, x: 6.5, y: 105.6542 }, + { l: 0.4, x: 6.583, y: 106.0783 }, + { l: 0.4, x: 6.667, y: 106.5043 }, + { l: 0.4, x: 6.75, y: 106.9371 }, + { l: 0.4, x: 6.833, y: 107.3577 }, + { l: 0.4, x: 6.917, y: 107.7923 }, + { l: 0.4, x: 7, y: 108.2216 }, + { l: 0.4, x: 7.083, y: 108.6475 }, + { l: 0.4, x: 7.167, y: 109.0817 }, + { l: 0.4, x: 7.25, y: 109.5074 }, + { l: 0.4, x: 7.333, y: 109.9363 }, + { l: 0.4, x: 7.417, y: 110.3669 }, + { l: 0.4, x: 7.5, y: 110.7922 }, + { l: 0.4, x: 7.583, y: 111.2207 }, + { l: 0.4, x: 7.667, y: 111.6454 }, + { l: 0.4, x: 7.75, y: 112.0703 }, + { l: 0.4, x: 7.833, y: 112.4808 }, + { l: 0.4, x: 7.917, y: 112.9051 }, + { l: 0.4, x: 8, y: 113.3242 }, + { l: 0.4, x: 8.083, y: 113.731 }, + { l: 0.4, x: 8.167, y: 114.1371 }, + { l: 0.4, x: 8.25, y: 114.5383 }, + { l: 0.4, x: 8.333, y: 114.936 }, + { l: 0.4, x: 8.417, y: 115.3205 }, + { l: 0.4, x: 8.5, y: 115.7002 }, + { l: 0.4, x: 8.583, y: 116.0764 }, + { l: 0.4, x: 8.667, y: 116.4569 }, + { l: 0.4, x: 8.75, y: 116.8151 }, + { l: 0.4, x: 8.833, y: 117.1785 }, + { l: 0.4, x: 8.917, y: 117.5373 }, + { l: 0.4, x: 9, y: 117.9004 }, + { l: 0.4, x: 9.083, y: 118.2511 }, + { l: 0.4, x: 9.167, y: 118.6057 }, + { l: 0.4, x: 9.25, y: 118.9524 }, + { l: 0.4, x: 9.333, y: 119.2936 }, + { l: 0.4, x: 9.417, y: 119.6404 }, + { l: 0.4, x: 9.5, y: 119.9777 }, + { l: 0.4, x: 9.583, y: 120.3112 }, + { l: 0.4, x: 9.667, y: 120.6484 }, + { l: 0.4, x: 9.75, y: 120.9815 }, + { l: 0.4, x: 9.833, y: 121.3195 }, + { l: 0.4, x: 9.917, y: 121.6576 }, + { l: 0.4, x: 10, y: 121.9914 }, + { l: 0.4, x: 10.083, y: 122.3249 }, + { l: 0.4, x: 10.167, y: 122.6673 }, + { l: 0.4, x: 10.25, y: 122.9965 }, + { l: 0.4, x: 10.333, y: 123.3218 }, + { l: 0.4, x: 10.417, y: 123.6419 }, + { l: 0.4, x: 10.5, y: 123.9578 }, + { l: 0.4, x: 10.583, y: 124.2646 }, + { l: 0.4, x: 10.667, y: 124.571 }, + { l: 0.4, x: 10.75, y: 124.8647 }, + { l: 0.4, x: 10.833, y: 125.1581 }, + { l: 0.4, x: 10.917, y: 125.4509 }, + { l: 0.4, x: 11, y: 125.7349 }, + { l: 0.4, x: 11.083, y: 126.0235 }, + { l: 0.4, x: 11.167, y: 126.3064 }, + { l: 0.4, x: 11.25, y: 126.5819 }, + { l: 0.4, x: 11.333, y: 126.8657 }, + { l: 0.4, x: 11.417, y: 127.1438 }, + { l: 0.4, x: 11.5, y: 127.4356 }, + { l: 0.4, x: 11.583, y: 127.727 }, + { l: 0.4, x: 11.667, y: 128.0226 }, + { l: 0.4, x: 11.75, y: 128.3354 }, + { l: 0.4, x: 11.833, y: 128.6479 }, + { l: 0.4, x: 11.917, y: 128.9684 }, + { l: 0.4, x: 12, y: 129.2848 }, + { l: 0.4, x: 12.083, y: 129.6141 }, + { l: 0.4, x: 12.167, y: 129.9596 }, + { l: 0.4, x: 12.25, y: 130.3179 }, + { l: 0.4, x: 12.333, y: 130.6717 }, + { l: 0.4, x: 12.417, y: 131.0507 }, + { l: 0.4, x: 12.5, y: 131.4247 }, + { l: 0.4, x: 12.583, y: 131.8155 }, + { l: 0.4, x: 12.667, y: 132.2233 }, + { l: 0.4, x: 12.75, y: 132.6343 }, + { l: 0.4, x: 12.833, y: 133.0621 }, + { l: 0.4, x: 12.917, y: 133.5114 }, + { l: 0.4, x: 13, y: 133.9676 }, + { l: 0.4, x: 13.083, y: 134.4319 }, + { l: 0.4, x: 13.167, y: 134.9225 }, + { l: 0.4, x: 13.25, y: 135.4156 }, + { l: 0.4, x: 13.333, y: 135.9293 }, + { l: 0.4, x: 13.417, y: 136.4573 }, + { l: 0.4, x: 13.5, y: 136.983 }, + { l: 0.4, x: 13.583, y: 137.5298 }, + { l: 0.4, x: 13.667, y: 138.0828 }, + { l: 0.4, x: 13.75, y: 138.6334 }, + { l: 0.4, x: 13.833, y: 139.2053 }, + { l: 0.4, x: 13.917, y: 139.78 }, + { l: 0.4, x: 14, y: 140.3566 }, + { l: 0.4, x: 14.083, y: 140.9335 }, + { l: 0.4, x: 14.167, y: 141.5308 }, + { l: 0.4, x: 14.25, y: 142.1172 }, + { l: 0.4, x: 14.333, y: 142.7043 }, + { l: 0.4, x: 14.417, y: 143.3079 }, + { l: 0.4, x: 14.5, y: 143.8923 }, + { l: 0.4, x: 14.583, y: 144.4862 }, + { l: 0.4, x: 14.667, y: 145.0794 }, + { l: 0.4, x: 14.75, y: 145.6622 }, + { l: 0.4, x: 14.833, y: 146.2418 }, + { l: 0.4, x: 14.917, y: 146.8204 }, + { l: 0.4, x: 15, y: 147.3845 }, + { l: 0.4, x: 15.083, y: 147.9409 }, + { l: 0.4, x: 15.167, y: 148.4917 }, + { l: 0.4, x: 15.25, y: 149.0238 }, + { l: 0.4, x: 15.333, y: 149.548 }, + { l: 0.4, x: 15.417, y: 150.0571 }, + { l: 0.4, x: 15.5, y: 150.5434 }, + { l: 0.4, x: 15.583, y: 151.0217 }, + { l: 0.4, x: 15.667, y: 151.4975 }, + { l: 0.4, x: 15.75, y: 151.9504 }, + { l: 0.4, x: 15.833, y: 152.3776 }, + { l: 0.4, x: 15.917, y: 152.8058 }, + { l: 0.4, x: 16, y: 153.2073 }, + { l: 0.4, x: 16.083, y: 153.5871 }, + { l: 0.4, x: 16.167, y: 153.9673 }, + { l: 0.4, x: 16.25, y: 154.3165 }, + { l: 0.4, x: 16.333, y: 154.6527 }, + { l: 0.4, x: 16.417, y: 154.9754 }, + { l: 0.4, x: 16.5, y: 155.2806 }, + { l: 0.4, x: 16.583, y: 155.5685 }, + { l: 0.4, x: 16.667, y: 155.8465 }, + { l: 0.4, x: 16.75, y: 156.1032 }, + { l: 0.4, x: 16.833, y: 156.3555 }, + { l: 0.4, x: 16.917, y: 156.5931 }, + { l: 0.4, x: 17, y: 156.8098 }, + { l: 0.4, x: 17.083, y: 157.0221 }, + { l: 0.4, x: 17.167, y: 157.2233 }, + { l: 0.4, x: 17.25, y: 157.4044 }, + { l: 0.4, x: 17.333, y: 157.5764 }, + { l: 0.4, x: 17.417, y: 157.7457 }, + { l: 0.4, x: 17.5, y: 157.8907 }, + { l: 0.4, x: 17.583, y: 158.0221 }, + { l: 0.4, x: 17.667, y: 158.1505 }, + { l: 0.4, x: 17.75, y: 158.2502 }, + { l: 0.4, x: 17.833, y: 158.3499 }, + { l: 0.4, x: 17.917, y: 158.4282 }, + { l: 0.4, x: 18, y: 158.5008 }, + { l: 0.4, x: 18.083, y: 158.5599 }, + { l: 0.4, x: 18.167, y: 158.6196 }, + { l: 0.4, x: 18.25, y: 158.6604 }, + { l: 0.4, x: 18.333, y: 158.7012 }, + { l: 0.4, x: 18.417, y: 158.7288 }, + { l: 0.4, x: 18.5, y: 158.747 }, + { l: 0.4, x: 18.583, y: 158.7606 }, + { l: 0.4, x: 18.667, y: 158.7654 }, + { l: 0.4, x: 18.75, y: 158.7743 }, + { l: 0.4, x: 18.833, y: 158.7743 }, + { l: 0.4, x: 18.917, y: 158.7743 }, + { l: 0.4, x: 19, y: 158.779 }, + { l: 0.4, x: 19.083, y: 158.788 }, + { l: 0.4, x: 19.167, y: 158.7927 }, + { l: 0.4, x: 19.25, y: 158.7927 }, + { l: 0.4, x: 19.333, y: 158.8016 }, + { l: 0.4, x: 19.417, y: 158.8016 }, + { l: 0.4, x: 19.5, y: 158.8017 }, + { l: 0.4, x: 19.583, y: 158.8063 }, + { l: 0.4, x: 19.667, y: 158.8064 }, + { l: 0.4, x: 19.75, y: 158.82 }, + { l: 0.4, x: 19.833, y: 158.8336 }, + { l: 0.4, x: 19.917, y: 158.8474 }, ], }, { - sds: -2.0, + sds: -2.05, centile: 2.0, data: [ - { - l: '2.0', - x: 4.0, - y: 94.2744, - }, - { - l: '2.0', - x: 4.0833, - y: 94.7719, - }, - { - l: '2.0', - x: 4.1667, - y: 95.2804, - }, - { - l: '2.0', - x: 4.25, - y: 95.7886, - }, - { - l: '2.0', - x: 4.3333, - y: 96.2965, - }, - { - l: '2.0', - x: 4.4167, - y: 96.8247, - }, - { - l: '2.0', - x: 4.5, - y: 97.3546, - }, - { - l: '2.0', - x: 4.5833, - y: 97.8823, - }, - { - l: '2.0', - x: 4.6667, - y: 98.4231, - }, - { - l: '2.0', - x: 4.75, - y: 98.9545, - }, - { - l: '2.0', - x: 4.8333, - y: 99.4879, - }, - { - l: '2.0', - x: 4.9167, - y: 100.021, - }, - { - l: '2.0', - x: 5.0, - y: 100.5357, - }, - { - l: '2.0', - x: 5.0833, - y: 101.0454, - }, - { - l: '2.0', - x: 5.1667, - y: 101.5527, - }, - { - l: '2.0', - x: 5.25, - y: 102.046, - }, - { - l: '2.0', - x: 5.3333, - y: 102.5186, - }, - { - l: '2.0', - x: 5.4167, - y: 103.0025, - }, - { - l: '2.0', - x: 5.5, - y: 103.4679, - }, - { - l: '2.0', - x: 5.5833, - y: 103.9241, - }, - { - l: '2.0', - x: 5.6667, - y: 104.3916, - }, - { - l: '2.0', - x: 5.75, - y: 104.8499, - }, - { - l: '2.0', - x: 5.8333, - y: 105.3081, - }, - { - l: '2.0', - x: 5.9167, - y: 105.7662, - }, - { - l: '2.0', - x: 6.0, - y: 106.2151, - }, - { - l: '2.0', - x: 6.0833, - y: 106.6753, - }, - { - l: '2.0', - x: 6.1667, - y: 107.1241, - }, - { - l: '2.0', - x: 6.25, - y: 107.575, - }, - { - l: '2.0', - x: 6.3333, - y: 108.026, - }, - { - l: '2.0', - x: 6.4167, - y: 108.4677, - }, - { - l: '2.0', - x: 6.5, - y: 108.9185, - }, - { - l: '2.0', - x: 6.5833, - y: 109.3601, - }, - { - l: '2.0', - x: 6.6667, - y: 109.7992, - }, - { - l: '2.0', - x: 6.75, - y: 110.2498, - }, - { - l: '2.0', - x: 6.8333, - y: 110.6888, - }, - { - l: '2.0', - x: 6.9167, - y: 111.1368, - }, - { - l: '2.0', - x: 7.0, - y: 111.5848, - }, - { - l: '2.0', - x: 7.0833, - y: 112.0303, - }, - { - l: '2.0', - x: 7.1667, - y: 112.4781, - }, - { - l: '2.0', - x: 7.25, - y: 112.9233, - }, - { - l: '2.0', - x: 7.3333, - y: 113.371, - }, - { - l: '2.0', - x: 7.4167, - y: 113.816, - }, - { - l: '2.0', - x: 7.5, - y: 114.261, - }, - { - l: '2.0', - x: 7.5833, - y: 114.7084, - }, - { - l: '2.0', - x: 7.6667, - y: 115.1465, - }, - { - l: '2.0', - x: 7.75, - y: 115.5912, - }, - { - l: '2.0', - x: 7.8333, - y: 116.0201, - }, - { - l: '2.0', - x: 7.9167, - y: 116.458, - }, - { - l: '2.0', - x: 8.0, - y: 116.8958, - }, - { - l: '2.0', - x: 8.0833, - y: 117.3219, - }, - { - l: '2.0', - x: 8.1667, - y: 117.7412, - }, - { - l: '2.0', - x: 8.25, - y: 118.1605, - }, - { - l: '2.0', - x: 8.3333, - y: 118.5772, - }, - { - l: '2.0', - x: 8.4167, - y: 118.9754, - }, - { - l: '2.0', - x: 8.5, - y: 119.3736, - }, - { - l: '2.0', - x: 8.5833, - y: 119.7691, - }, - { - l: '2.0', - x: 8.6667, - y: 120.1644, - }, - { - l: '2.0', - x: 8.75, - y: 120.5414, - }, - { - l: '2.0', - x: 8.8333, - y: 120.9248, - }, - { - l: '2.0', - x: 8.9167, - y: 121.2989, - }, - { - l: '2.0', - x: 9.0, - y: 121.682, - }, - { - l: '2.0', - x: 9.0833, - y: 122.0532, - }, - { - l: '2.0', - x: 9.1667, - y: 122.4242, - }, - { - l: '2.0', - x: 9.25, - y: 122.7924, - }, - { - l: '2.0', - x: 9.3333, - y: 123.1541, - }, - { - l: '2.0', - x: 9.4167, - y: 123.5193, - }, - { - l: '2.0', - x: 9.5, - y: 123.8779, - }, - { - l: '2.0', - x: 9.5833, - y: 124.2337, - }, - { - l: '2.0', - x: 9.6667, - y: 124.5893, - }, - { - l: '2.0', - x: 9.75, - y: 124.9447, - }, - { - l: '2.0', - x: 9.8333, - y: 125.3063, - }, - { - l: '2.0', - x: 9.9167, - y: 125.665, - }, - { - l: '2.0', - x: 10.0, - y: 126.0235, - }, - { - l: '2.0', - x: 10.0833, - y: 126.3817, - }, - { - l: '2.0', - x: 10.1667, - y: 126.7461, - }, - { - l: '2.0', - x: 10.25, - y: 127.1011, - }, - { - l: '2.0', - x: 10.3333, - y: 127.4532, - }, - { - l: '2.0', - x: 10.4167, - y: 127.7958, - }, - { - l: '2.0', - x: 10.5, - y: 128.1383, - }, - { - l: '2.0', - x: 10.5833, - y: 128.4714, - }, - { - l: '2.0', - x: 10.6667, - y: 128.8015, - }, - { - l: '2.0', - x: 10.75, - y: 129.1222, - }, - { - l: '2.0', - x: 10.8333, - y: 129.4427, - }, - { - l: '2.0', - x: 10.9167, - y: 129.7601, - }, - { - l: '2.0', - x: 11.0, - y: 130.071, - }, - { - l: '2.0', - x: 11.0833, - y: 130.3879, - }, - { - l: '2.0', - x: 11.1667, - y: 130.6955, - }, - { - l: '2.0', - x: 11.25, - y: 130.9999, - }, - { - l: '2.0', - x: 11.3333, - y: 131.3131, - }, - { - l: '2.0', - x: 11.4167, - y: 131.617, - }, - { - l: '2.0', - x: 11.5, - y: 131.9387, - }, - { - l: '2.0', - x: 11.5833, - y: 132.2602, - }, - { - l: '2.0', - x: 11.6667, - y: 132.5845, - }, - { - l: '2.0', - x: 11.75, - y: 132.9296, - }, - { - l: '2.0', - x: 11.8333, - y: 133.2743, - }, - { - l: '2.0', - x: 11.9167, - y: 133.6249, - }, - { - l: '2.0', - x: 12.0, - y: 133.975, - }, - { - l: '2.0', - x: 12.0833, - y: 134.3399, - }, - { - l: '2.0', - x: 12.1667, - y: 134.7164, - }, - { - l: '2.0', - x: 12.25, - y: 135.1106, - }, - { - l: '2.0', - x: 12.3333, - y: 135.5015, - }, - { - l: '2.0', - x: 12.4167, - y: 135.9129, - }, - { - l: '2.0', - x: 12.5, - y: 136.324, - }, - { - l: '2.0', - x: 12.5833, - y: 136.7526, - }, - { - l: '2.0', - x: 12.6667, - y: 137.193, - }, - { - l: '2.0', - x: 12.75, - y: 137.6419, - }, - { - l: '2.0', - x: 12.8333, - y: 138.1084, - }, - { - l: '2.0', - x: 12.9167, - y: 138.5896, - }, - { - l: '2.0', - x: 13.0, - y: 139.0825, - }, - { - l: '2.0', - x: 13.0833, - y: 139.5841, - }, - { - l: '2.0', - x: 13.1667, - y: 140.1036, - }, - { - l: '2.0', - x: 13.25, - y: 140.6318, - }, - { - l: '2.0', - x: 13.3333, - y: 141.1781, - }, - { - l: '2.0', - x: 13.4167, - y: 141.7305, - }, - { - l: '2.0', - x: 13.5, - y: 142.2859, - }, - { - l: '2.0', - x: 13.5833, - y: 142.8597, - }, - { - l: '2.0', - x: 13.6667, - y: 143.4308, - }, - { - l: '2.0', - x: 13.75, - y: 144.0026, - }, - { - l: '2.0', - x: 13.8333, - y: 144.593, - }, - { - l: '2.0', - x: 13.9167, - y: 145.1778, - }, - { - l: '2.0', - x: 14.0, - y: 145.7668, - }, - { - l: '2.0', - x: 14.0833, - y: 146.3536, - }, - { - l: '2.0', - x: 14.1667, - y: 146.9505, - }, - { - l: '2.0', - x: 14.25, - y: 147.5396, - }, - { - l: '2.0', - x: 14.3333, - y: 148.1267, - }, - { - l: '2.0', - x: 14.4167, - y: 148.7209, - }, - { - l: '2.0', - x: 14.5, - y: 149.2986, - }, - { - l: '2.0', - x: 14.5833, - y: 149.8835, - }, - { - l: '2.0', - x: 14.6667, - y: 150.4577, - }, - { - l: '2.0', - x: 14.75, - y: 151.0268, - }, - { - l: '2.0', - x: 14.8333, - y: 151.5885, - }, - { - l: '2.0', - x: 14.9167, - y: 152.1419, - }, - { - l: '2.0', - x: 15.0, - y: 152.6846, - }, - { - l: '2.0', - x: 15.0833, - y: 153.2189, - }, - { - l: '2.0', - x: 15.1667, - y: 153.7392, - }, - { - l: '2.0', - x: 15.25, - y: 154.2453, - }, - { - l: '2.0', - x: 15.3333, - y: 154.7431, - }, - { - l: '2.0', - x: 15.4167, - y: 155.2198, - }, - { - l: '2.0', - x: 15.5, - y: 155.679, - }, - { - l: '2.0', - x: 15.5833, - y: 156.1296, - }, - { - l: '2.0', - x: 15.6667, - y: 156.5717, - }, - { - l: '2.0', - x: 15.75, - y: 156.9982, - }, - { - l: '2.0', - x: 15.8333, - y: 157.3979, - }, - { - l: '2.0', - x: 15.9167, - y: 157.7945, - }, - { - l: '2.0', - x: 16.0, - y: 158.1698, - }, - { - l: '2.0', - x: 16.0833, - y: 158.5238, - }, - { - l: '2.0', - x: 16.1667, - y: 158.8746, - }, - { - l: '2.0', - x: 16.25, - y: 159.2005, - }, - { - l: '2.0', - x: 16.3333, - y: 159.5141, - }, - { - l: '2.0', - x: 16.4167, - y: 159.8096, - }, - { - l: '2.0', - x: 16.5, - y: 160.0948, - }, - { - l: '2.0', - x: 16.5833, - y: 160.362, - }, - { - l: '2.0', - x: 16.6667, - y: 160.6166, - }, - { - l: '2.0', - x: 16.75, - y: 160.8553, - }, - { - l: '2.0', - x: 16.8333, - y: 161.0906, - }, - { - l: '2.0', - x: 16.9167, - y: 161.3076, - }, - { - l: '2.0', - x: 17.0, - y: 161.5086, - }, - { - l: '2.0', - x: 17.0833, - y: 161.7062, - }, - { - l: '2.0', - x: 17.1667, - y: 161.8912, - }, - { - l: '2.0', - x: 17.25, - y: 162.0578, - }, - { - l: '2.0', - x: 17.3333, - y: 162.2175, - }, - { - l: '2.0', - x: 17.4167, - y: 162.3738, - }, - { - l: '2.0', - x: 17.5, - y: 162.5081, - }, - { - l: '2.0', - x: 17.5833, - y: 162.6298, - }, - { - l: '2.0', - x: 17.6667, - y: 162.748, - }, - { - l: '2.0', - x: 17.75, - y: 162.8407, - }, - { - l: '2.0', - x: 17.8333, - y: 162.9335, - }, - { - l: '2.0', - x: 17.9167, - y: 163.0043, - }, - { - l: '2.0', - x: 18.0, - y: 163.0716, - }, - { - l: '2.0', - x: 18.0833, - y: 163.1261, - }, - { - l: '2.0', - x: 18.1667, - y: 163.1807, - }, - { - l: '2.0', - x: 18.25, - y: 163.2189, - }, - { - l: '2.0', - x: 18.3333, - y: 163.2572, - }, - { - l: '2.0', - x: 18.4167, - y: 163.2827, - }, - { - l: '2.0', - x: 18.5, - y: 163.299, - }, - { - l: '2.0', - x: 18.5833, - y: 163.3118, - }, - { - l: '2.0', - x: 18.6667, - y: 163.3153, - }, - { - l: '2.0', - x: 18.75, - y: 163.3245, - }, - { - l: '2.0', - x: 18.8333, - y: 163.3245, - }, - { - l: '2.0', - x: 18.9167, - y: 163.3245, - }, - { - l: '2.0', - x: 19.0, - y: 163.3281, - }, - { - l: '2.0', - x: 19.0833, - y: 163.3373, - }, - { - l: '2.0', - x: 19.1667, - y: 163.3408, - }, - { - l: '2.0', - x: 19.25, - y: 163.3408, - }, - { - l: '2.0', - x: 19.3333, - y: 163.35, - }, - { - l: '2.0', - x: 19.4167, - y: 163.35, - }, - { - l: '2.0', - x: 19.5, - y: 163.35, - }, - { - l: '2.0', - x: 19.5833, - y: 163.3536, - }, - { - l: '2.0', - x: 19.6667, - y: 163.3536, - }, - { - l: '2.0', - x: 19.75, - y: 163.3663, - }, - { - l: '2.0', - x: 19.8333, - y: 163.3791, - }, - { - l: '2.0', - x: 19.9167, - y: 163.3919, - }, - { - l: '2.0', - x: 20.0, - y: 163.4046, - }, - { - l: '2.0', - x: 20.0, - y: 163.4046, - }, + { l: 2.0, x: 4, y: 94.0538 }, + { l: 2.0, x: 4.083, y: 94.5474 }, + { l: 2.0, x: 4.167, y: 95.058 }, + { l: 2.0, x: 4.25, y: 95.5622 }, + { l: 2.0, x: 4.333, y: 96.0662 }, + { l: 2.0, x: 4.417, y: 96.5965 }, + { l: 2.0, x: 4.5, y: 97.1225 }, + { l: 2.0, x: 4.583, y: 97.6461 }, + { l: 2.0, x: 4.667, y: 98.1893 }, + { l: 2.0, x: 4.75, y: 98.7167 }, + { l: 2.0, x: 4.833, y: 99.2462 }, + { l: 2.0, x: 4.917, y: 99.7818 }, + { l: 2.0, x: 5, y: 100.2926 }, + { l: 2.0, x: 5.083, y: 100.7986 }, + { l: 2.0, x: 5.167, y: 101.3083 }, + { l: 2.0, x: 5.25, y: 101.7981 }, + { l: 2.0, x: 5.333, y: 102.2672 }, + { l: 2.0, x: 5.417, y: 102.7534 }, + { l: 2.0, x: 5.5, y: 103.2155 }, + { l: 2.0, x: 5.583, y: 103.6684 }, + { l: 2.0, x: 5.667, y: 104.1382 }, + { l: 2.0, x: 5.75, y: 104.5932 }, + { l: 2.0, x: 5.833, y: 105.0482 }, + { l: 2.0, x: 5.917, y: 105.5085 }, + { l: 2.0, x: 6, y: 105.9542 }, + { l: 2.0, x: 6.083, y: 106.4113 }, + { l: 2.0, x: 6.167, y: 106.8623 }, + { l: 2.0, x: 6.25, y: 107.3102 }, + { l: 2.0, x: 6.333, y: 107.758 }, + { l: 2.0, x: 6.417, y: 108.202 }, + { l: 2.0, x: 6.5, y: 108.6497 }, + { l: 2.0, x: 6.583, y: 109.0882 }, + { l: 2.0, x: 6.667, y: 109.5295 }, + { l: 2.0, x: 6.75, y: 109.977 }, + { l: 2.0, x: 6.833, y: 110.4129 }, + { l: 2.0, x: 6.917, y: 110.8631 }, + { l: 2.0, x: 7, y: 111.3079 }, + { l: 2.0, x: 7.083, y: 111.7501 }, + { l: 2.0, x: 7.167, y: 112.2 }, + { l: 2.0, x: 7.25, y: 112.642 }, + { l: 2.0, x: 7.333, y: 113.0865 }, + { l: 2.0, x: 7.417, y: 113.5336 }, + { l: 2.0, x: 7.5, y: 113.9754 }, + { l: 2.0, x: 7.583, y: 114.4196 }, + { l: 2.0, x: 7.667, y: 114.8599 }, + { l: 2.0, x: 7.75, y: 115.3013 }, + { l: 2.0, x: 7.833, y: 115.727 }, + { l: 2.0, x: 7.917, y: 116.167 }, + { l: 2.0, x: 8, y: 116.6017 }, + { l: 2.0, x: 8.083, y: 117.0246 }, + { l: 2.0, x: 8.167, y: 117.446 }, + { l: 2.0, x: 8.25, y: 117.8622 }, + { l: 2.0, x: 8.333, y: 118.2758 }, + { l: 2.0, x: 8.417, y: 118.6759 }, + { l: 2.0, x: 8.5, y: 119.0711 }, + { l: 2.0, x: 8.583, y: 119.4635 }, + { l: 2.0, x: 8.667, y: 119.8605 }, + { l: 2.0, x: 8.75, y: 120.2345 }, + { l: 2.0, x: 8.833, y: 120.6149 }, + { l: 2.0, x: 8.917, y: 120.9905 }, + { l: 2.0, x: 9, y: 121.3706 }, + { l: 2.0, x: 9.083, y: 121.7387 }, + { l: 2.0, x: 9.167, y: 122.1111 }, + { l: 2.0, x: 9.25, y: 122.4762 }, + { l: 2.0, x: 9.333, y: 122.8348 }, + { l: 2.0, x: 9.417, y: 123.2012 }, + { l: 2.0, x: 9.5, y: 123.5567 }, + { l: 2.0, x: 9.583, y: 123.9094 }, + { l: 2.0, x: 9.667, y: 124.2661 }, + { l: 2.0, x: 9.75, y: 124.6183 }, + { l: 2.0, x: 9.833, y: 124.9767 }, + { l: 2.0, x: 9.917, y: 125.3363 }, + { l: 2.0, x: 10, y: 125.6914 }, + { l: 2.0, x: 10.083, y: 126.0463 }, + { l: 2.0, x: 10.167, y: 126.4115 }, + { l: 2.0, x: 10.25, y: 126.7631 }, + { l: 2.0, x: 10.333, y: 127.1117 }, + { l: 2.0, x: 10.417, y: 127.455 }, + { l: 2.0, x: 10.5, y: 127.794 }, + { l: 2.0, x: 10.583, y: 128.1238 }, + { l: 2.0, x: 10.667, y: 128.4543 }, + { l: 2.0, x: 10.75, y: 128.7716 }, + { l: 2.0, x: 10.833, y: 129.0887 }, + { l: 2.0, x: 10.917, y: 129.4064 }, + { l: 2.0, x: 11, y: 129.7139 }, + { l: 2.0, x: 11.083, y: 130.0273 }, + { l: 2.0, x: 11.167, y: 130.3351 }, + { l: 2.0, x: 11.25, y: 130.6361 }, + { l: 2.0, x: 11.333, y: 130.9457 }, + { l: 2.0, x: 11.417, y: 131.2498 }, + { l: 2.0, x: 11.5, y: 131.5679 }, + { l: 2.0, x: 11.583, y: 131.8857 }, + { l: 2.0, x: 11.667, y: 132.2101 }, + { l: 2.0, x: 11.75, y: 132.5513 }, + { l: 2.0, x: 11.833, y: 132.8921 }, + { l: 2.0, x: 11.917, y: 133.2427 }, + { l: 2.0, x: 12, y: 133.5888 }, + { l: 2.0, x: 12.083, y: 133.9494 }, + { l: 2.0, x: 12.167, y: 134.3261 }, + { l: 2.0, x: 12.25, y: 134.716 }, + { l: 2.0, x: 12.333, y: 135.1023 }, + { l: 2.0, x: 12.417, y: 135.514 }, + { l: 2.0, x: 12.5, y: 135.9205 }, + { l: 2.0, x: 12.583, y: 136.3445 }, + { l: 2.0, x: 12.667, y: 136.7853 }, + { l: 2.0, x: 12.75, y: 137.2295 }, + { l: 2.0, x: 12.833, y: 137.6911 }, + { l: 2.0, x: 12.917, y: 138.1732 }, + { l: 2.0, x: 13, y: 138.6613 }, + { l: 2.0, x: 13.083, y: 139.1579 }, + { l: 2.0, x: 13.167, y: 139.6789 }, + { l: 2.0, x: 13.25, y: 140.2023 }, + { l: 2.0, x: 13.333, y: 140.7439 }, + { l: 2.0, x: 13.417, y: 141.2983 }, + { l: 2.0, x: 13.5, y: 141.8493 }, + { l: 2.0, x: 13.583, y: 142.4187 }, + { l: 2.0, x: 13.667, y: 142.9925 }, + { l: 2.0, x: 13.75, y: 143.5604 }, + { l: 2.0, x: 13.833, y: 144.1472 }, + { l: 2.0, x: 13.917, y: 144.7355 }, + { l: 2.0, x: 14, y: 145.3213 }, + { l: 2.0, x: 14.083, y: 145.9051 }, + { l: 2.0, x: 14.167, y: 146.5063 }, + { l: 2.0, x: 14.25, y: 147.0931 }, + { l: 2.0, x: 14.333, y: 147.678 }, + { l: 2.0, x: 14.417, y: 148.2773 }, + { l: 2.0, x: 14.5, y: 148.8534 }, + { l: 2.0, x: 14.583, y: 149.4369 }, + { l: 2.0, x: 14.667, y: 150.0169 }, + { l: 2.0, x: 14.75, y: 150.585 }, + { l: 2.0, x: 14.833, y: 151.1462 }, + { l: 2.0, x: 14.917, y: 151.7057 }, + { l: 2.0, x: 15, y: 152.2481 }, + { l: 2.0, x: 15.083, y: 152.7823 }, + { l: 2.0, x: 15.167, y: 153.3089 }, + { l: 2.0, x: 15.25, y: 153.8154 }, + { l: 2.0, x: 15.333, y: 154.3135 }, + { l: 2.0, x: 15.417, y: 154.7964 }, + { l: 2.0, x: 15.5, y: 155.2561 }, + { l: 2.0, x: 15.583, y: 155.7073 }, + { l: 2.0, x: 15.667, y: 156.1554 }, + { l: 2.0, x: 15.75, y: 156.5825 }, + { l: 2.0, x: 15.833, y: 156.983 }, + { l: 2.0, x: 15.917, y: 157.3851 }, + { l: 2.0, x: 16, y: 157.7612 }, + { l: 2.0, x: 16.083, y: 158.116 }, + { l: 2.0, x: 16.167, y: 158.4717 }, + { l: 2.0, x: 16.25, y: 158.7983 }, + { l: 2.0, x: 16.333, y: 159.1126 }, + { l: 2.0, x: 16.417, y: 159.4125 }, + { l: 2.0, x: 16.5, y: 159.6984 }, + { l: 2.0, x: 16.583, y: 159.9663 }, + { l: 2.0, x: 16.667, y: 160.2247 }, + { l: 2.0, x: 16.75, y: 160.4639 }, + { l: 2.0, x: 16.833, y: 160.6998 }, + { l: 2.0, x: 16.917, y: 160.9202 }, + { l: 2.0, x: 17, y: 161.1217 }, + { l: 2.0, x: 17.083, y: 161.3198 }, + { l: 2.0, x: 17.167, y: 161.5074 }, + { l: 2.0, x: 17.25, y: 161.6746 }, + { l: 2.0, x: 17.333, y: 161.8348 }, + { l: 2.0, x: 17.417, y: 161.9932 }, + { l: 2.0, x: 17.5, y: 162.1279 }, + { l: 2.0, x: 17.583, y: 162.2499 }, + { l: 2.0, x: 17.667, y: 162.3697 }, + { l: 2.0, x: 17.75, y: 162.4627 }, + { l: 2.0, x: 17.833, y: 162.5557 }, + { l: 2.0, x: 17.917, y: 162.6277 }, + { l: 2.0, x: 18, y: 162.6952 }, + { l: 2.0, x: 18.083, y: 162.7499 }, + { l: 2.0, x: 18.167, y: 162.8052 }, + { l: 2.0, x: 18.25, y: 162.8435 }, + { l: 2.0, x: 18.333, y: 162.8819 }, + { l: 2.0, x: 18.417, y: 162.9078 }, + { l: 2.0, x: 18.5, y: 162.9241 }, + { l: 2.0, x: 18.583, y: 162.9369 }, + { l: 2.0, x: 18.667, y: 162.9407 }, + { l: 2.0, x: 18.75, y: 162.9498 }, + { l: 2.0, x: 18.833, y: 162.9498 }, + { l: 2.0, x: 18.917, y: 162.9498 }, + { l: 2.0, x: 19, y: 162.9535 }, + { l: 2.0, x: 19.083, y: 162.9626 }, + { l: 2.0, x: 19.167, y: 162.9663 }, + { l: 2.0, x: 19.25, y: 162.9663 }, + { l: 2.0, x: 19.333, y: 162.9754 }, + { l: 2.0, x: 19.417, y: 162.9755 }, + { l: 2.0, x: 19.5, y: 162.9755 }, + { l: 2.0, x: 19.583, y: 162.9791 }, + { l: 2.0, x: 19.667, y: 162.9792 }, + { l: 2.0, x: 19.75, y: 162.992 }, + { l: 2.0, x: 19.833, y: 163.0047 }, + { l: 2.0, x: 19.917, y: 163.0177 }, ], }, { - sds: -1.33, + sds: -1.34, centile: 9.0, data: [ - { - l: '9.0', - x: 4.0, - y: 97.0129, - }, - { - l: '9.0', - x: 4.0833, - y: 97.5346, - }, - { - l: '9.0', - x: 4.1667, - y: 98.0669, - }, - { - l: '9.0', - x: 4.25, - y: 98.5991, - }, - { - l: '9.0', - x: 4.3333, - y: 99.131, - }, - { - l: '9.0', - x: 4.4167, - y: 99.6831, - }, - { - l: '9.0', - x: 4.5, - y: 100.2364, - }, - { - l: '9.0', - x: 4.5833, - y: 100.7882, - }, - { - l: '9.0', - x: 4.6667, - y: 101.352, - }, - { - l: '9.0', - x: 4.75, - y: 101.9063, - }, - { - l: '9.0', - x: 4.8333, - y: 102.4619, - }, - { - l: '9.0', - x: 4.9167, - y: 103.0174, - }, - { - l: '9.0', - x: 5.0, - y: 103.5538, - }, - { - l: '9.0', - x: 5.0833, - y: 104.0836, - }, - { - l: '9.0', - x: 5.1667, - y: 104.6118, - }, - { - l: '9.0', - x: 5.25, - y: 105.124, - }, - { - l: '9.0', - x: 5.3333, - y: 105.6157, - }, - { - l: '9.0', - x: 5.4167, - y: 106.1183, - }, - { - l: '9.0', - x: 5.5, - y: 106.602, - }, - { - l: '9.0', - x: 5.5833, - y: 107.0761, - }, - { - l: '9.0', - x: 5.6667, - y: 107.5611, - }, - { - l: '9.0', - x: 5.75, - y: 108.0366, - }, - { - l: '9.0', - x: 5.8333, - y: 108.5121, - }, - { - l: '9.0', - x: 5.9167, - y: 108.9875, - }, - { - l: '9.0', - x: 6.0, - y: 109.4534, - }, - { - l: '9.0', - x: 6.0833, - y: 109.9302, - }, - { - l: '9.0', - x: 6.1667, - y: 110.396, - }, - { - l: '9.0', - x: 6.25, - y: 110.8634, - }, - { - l: '9.0', - x: 6.3333, - y: 111.3306, - }, - { - l: '9.0', - x: 6.4167, - y: 111.7884, - }, - { - l: '9.0', - x: 6.5, - y: 112.2556, - }, - { - l: '9.0', - x: 6.5833, - y: 112.7134, - }, - { - l: '9.0', - x: 6.6667, - y: 113.1695, - }, - { - l: '9.0', - x: 6.75, - y: 113.6365, - }, - { - l: '9.0', - x: 6.8333, - y: 114.0925, - }, - { - l: '9.0', - x: 6.9167, - y: 114.5579, - }, - { - l: '9.0', - x: 7.0, - y: 115.0232, - }, - { - l: '9.0', - x: 7.0833, - y: 115.4868, - }, - { - l: '9.0', - x: 7.1667, - y: 115.9521, - }, - { - l: '9.0', - x: 7.25, - y: 116.4156, - }, - { - l: '9.0', - x: 7.3333, - y: 116.8807, - }, - { - l: '9.0', - x: 7.4167, - y: 117.344, - }, - { - l: '9.0', - x: 7.5, - y: 117.8073, - }, - { - l: '9.0', - x: 7.5833, - y: 118.2723, - }, - { - l: '9.0', - x: 7.6667, - y: 118.7277, - }, - { - l: '9.0', - x: 7.75, - y: 119.1908, - }, - { - l: '9.0', - x: 7.8333, - y: 119.6367, - }, - { - l: '9.0', - x: 7.9167, - y: 120.092, - }, - { - l: '9.0', - x: 8.0, - y: 120.5472, - }, - { - l: '9.0', - x: 8.0833, - y: 120.9912, - }, - { - l: '9.0', - x: 8.1667, - y: 121.4275, - }, - { - l: '9.0', - x: 8.25, - y: 121.8637, - }, - { - l: '9.0', - x: 8.3333, - y: 122.2981, - }, - { - l: '9.0', - x: 8.4167, - y: 122.7136, - }, - { - l: '9.0', - x: 8.5, - y: 123.1291, - }, - { - l: '9.0', - x: 8.5833, - y: 123.5427, - }, - { - l: '9.0', - x: 8.6667, - y: 123.9563, - }, - { - l: '9.0', - x: 8.75, - y: 124.3509, - }, - { - l: '9.0', - x: 8.8333, - y: 124.7532, - }, - { - l: '9.0', - x: 8.9167, - y: 125.1459, - }, - { - l: '9.0', - x: 9.0, - y: 125.548, - }, - { - l: '9.0', - x: 9.0833, - y: 125.9388, - }, - { - l: '9.0', - x: 9.1667, - y: 126.3295, - }, - { - l: '9.0', - x: 9.25, - y: 126.7183, - }, - { - l: '9.0', - x: 9.3333, - y: 127.0994, - }, - { - l: '9.0', - x: 9.4167, - y: 127.4862, - }, - { - l: '9.0', - x: 9.5, - y: 127.8653, - }, - { - l: '9.0', - x: 9.5833, - y: 128.2425, - }, - { - l: '9.0', - x: 9.6667, - y: 128.6195, - }, - { - l: '9.0', - x: 9.75, - y: 128.9965, - }, - { - l: '9.0', - x: 9.8333, - y: 129.3809, - }, - { - l: '9.0', - x: 9.9167, - y: 129.7633, - }, - { - l: '9.0', - x: 10.0, - y: 130.1456, - }, - { - l: '9.0', - x: 10.0833, - y: 130.5278, - }, - { - l: '9.0', - x: 10.1667, - y: 130.9174, - }, - { - l: '9.0', - x: 10.25, - y: 131.2974, - }, - { - l: '9.0', - x: 10.3333, - y: 131.6754, - }, - { - l: '9.0', - x: 10.4167, - y: 132.0439, - }, - { - l: '9.0', - x: 10.5, - y: 132.4122, - }, - { - l: '9.0', - x: 10.5833, - y: 132.7709, - }, - { - l: '9.0', - x: 10.6667, - y: 133.1276, - }, - { - l: '9.0', - x: 10.75, - y: 133.4748, - }, - { - l: '9.0', - x: 10.8333, - y: 133.8218, - }, - { - l: '9.0', - x: 10.9167, - y: 134.1667, - }, - { - l: '9.0', - x: 11.0, - y: 134.504, - }, - { - l: '9.0', - x: 11.0833, - y: 134.8486, - }, - { - l: '9.0', - x: 11.1667, - y: 135.1836, - }, - { - l: '9.0', - x: 11.25, - y: 135.5166, - }, - { - l: '9.0', - x: 11.3333, - y: 135.8587, - }, - { - l: '9.0', - x: 11.4167, - y: 136.1913, - }, - { - l: '9.0', - x: 11.5, - y: 136.5425, - }, - { - l: '9.0', - x: 11.5833, - y: 136.8935, - }, - { - l: '9.0', - x: 11.6667, - y: 137.2497, - }, - { - l: '9.0', - x: 11.75, - y: 137.6264, - }, - { - l: '9.0', - x: 11.8333, - y: 138.0029, - }, - { - l: '9.0', - x: 11.9167, - y: 138.3866, - }, - { - l: '9.0', - x: 12.0, - y: 138.77, - }, - { - l: '9.0', - x: 12.0833, - y: 139.1699, - }, - { - l: '9.0', - x: 12.1667, - y: 139.581, - }, - { - l: '9.0', - x: 12.25, - y: 140.0104, - }, - { - l: '9.0', - x: 12.3333, - y: 140.4376, - }, - { - l: '9.0', - x: 12.4167, - y: 140.8853, - }, - { - l: '9.0', - x: 12.5, - y: 141.3326, - }, - { - l: '9.0', - x: 12.5833, - y: 141.7984, - }, - { - l: '9.0', - x: 12.6667, - y: 142.2753, - }, - { - l: '9.0', - x: 12.75, - y: 142.7612, - }, - { - l: '9.0', - x: 12.8333, - y: 143.2656, - }, - { - l: '9.0', - x: 12.9167, - y: 143.7831, - }, - { - l: '9.0', - x: 13.0, - y: 144.3117, - }, - { - l: '9.0', - x: 13.0833, - y: 144.8494, - }, - { - l: '9.0', - x: 13.1667, - y: 145.4024, - }, - { - l: '9.0', - x: 13.25, - y: 145.9645, - }, - { - l: '9.0', - x: 13.3333, - y: 146.5421, - }, - { - l: '9.0', - x: 13.4167, - y: 147.1237, - }, - { - l: '9.0', - x: 13.5, - y: 147.7073, - }, - { - l: '9.0', - x: 13.5833, - y: 148.3065, - }, - { - l: '9.0', - x: 13.6667, - y: 148.9006, - }, - { - l: '9.0', - x: 13.75, - y: 149.4917, - }, - { - l: '9.0', - x: 13.8333, - y: 150.0987, - }, - { - l: '9.0', - x: 13.9167, - y: 150.6985, - }, - { - l: '9.0', - x: 14.0, - y: 151.2979, - }, - { - l: '9.0', - x: 14.0833, - y: 151.8924, - }, - { - l: '9.0', - x: 14.1667, - y: 152.4936, - }, - { - l: '9.0', - x: 14.25, - y: 153.0831, - }, - { - l: '9.0', - x: 14.3333, - y: 153.6678, - }, - { - l: '9.0', - x: 14.4167, - y: 154.2573, - }, - { - l: '9.0', - x: 14.5, - y: 154.8258, - }, - { - l: '9.0', - x: 14.5833, - y: 155.399, - }, - { - l: '9.0', - x: 14.6667, - y: 155.9584, - }, - { - l: '9.0', - x: 14.75, - y: 156.5112, - }, - { - l: '9.0', - x: 14.8333, - y: 157.0523, - }, - { - l: '9.0', - x: 14.9167, - y: 157.5846, - }, - { - l: '9.0', - x: 15.0, - y: 158.1031, - }, - { - l: '9.0', - x: 15.0833, - y: 158.6126, - }, - { - l: '9.0', - x: 15.1667, - y: 159.1061, - }, - { - l: '9.0', - x: 15.25, - y: 159.5836, - }, - { - l: '9.0', - x: 15.3333, - y: 160.0521, - }, - { - l: '9.0', - x: 15.4167, - y: 160.4999, - }, - { - l: '9.0', - x: 15.5, - y: 160.9293, - }, - { - l: '9.0', - x: 15.5833, - y: 161.3497, - }, - { - l: '9.0', - x: 15.6667, - y: 161.7611, - }, - { - l: '9.0', - x: 15.75, - y: 162.1588, - }, - { - l: '9.0', - x: 15.8333, - y: 162.5286, - }, - { - l: '9.0', - x: 15.9167, - y: 162.8963, - }, - { - l: '9.0', - x: 16.0, - y: 163.2432, - }, - { - l: '9.0', - x: 16.0833, - y: 163.5692, - }, - { - l: '9.0', - x: 16.1667, - y: 163.8931, - }, - { - l: '9.0', - x: 16.25, - y: 164.1937, - }, - { - l: '9.0', - x: 16.3333, - y: 164.4827, - }, - { - l: '9.0', - x: 16.4167, - y: 164.753, - }, - { - l: '9.0', - x: 16.5, - y: 165.0165, - }, - { - l: '9.0', - x: 16.5833, - y: 165.2613, - }, - { - l: '9.0', - x: 16.6667, - y: 165.4944, - }, - { - l: '9.0', - x: 16.75, - y: 165.7135, - }, - { - l: '9.0', - x: 16.8333, - y: 165.9304, - }, - { - l: '9.0', - x: 16.9167, - y: 166.1284, - }, - { - l: '9.0', - x: 17.0, - y: 166.3124, - }, - { - l: '9.0', - x: 17.0833, - y: 166.4941, - }, - { - l: '9.0', - x: 17.1667, - y: 166.6641, - }, - { - l: '9.0', - x: 17.25, - y: 166.8152, - }, - { - l: '9.0', - x: 17.3333, - y: 166.9617, - }, - { - l: '9.0', - x: 17.4167, - y: 167.1058, - }, - { - l: '9.0', - x: 17.5, - y: 167.2288, - }, - { - l: '9.0', - x: 17.5833, - y: 167.3399, - }, - { - l: '9.0', - x: 17.6667, - y: 167.4487, - }, - { - l: '9.0', - x: 17.75, - y: 167.5338, - }, - { - l: '9.0', - x: 17.8333, - y: 167.619, - }, - { - l: '9.0', - x: 17.9167, - y: 167.6828, - }, - { - l: '9.0', - x: 18.0, - y: 167.7444, - }, - { - l: '9.0', - x: 18.0833, - y: 167.7941, - }, - { - l: '9.0', - x: 18.1667, - y: 167.8438, - }, - { - l: '9.0', - x: 18.25, - y: 167.8793, - }, - { - l: '9.0', - x: 18.3333, - y: 167.9148, - }, - { - l: '9.0', - x: 18.4167, - y: 167.9385, - }, - { - l: '9.0', - x: 18.5, - y: 167.9527, - }, - { - l: '9.0', - x: 18.5833, - y: 167.9645, - }, - { - l: '9.0', - x: 18.6667, - y: 167.9669, - }, - { - l: '9.0', - x: 18.75, - y: 167.9763, - }, - { - l: '9.0', - x: 18.8333, - y: 167.9763, - }, - { - l: '9.0', - x: 18.9167, - y: 167.9763, - }, - { - l: '9.0', - x: 19.0, - y: 167.9787, - }, - { - l: '9.0', - x: 19.0833, - y: 167.9882, - }, - { - l: '9.0', - x: 19.1667, - y: 167.9905, - }, - { - l: '9.0', - x: 19.25, - y: 167.9905, - }, - { - l: '9.0', - x: 19.3333, - y: 168.0, - }, - { - l: '9.0', - x: 19.4167, - y: 168.0, - }, - { - l: '9.0', - x: 19.5, - y: 168.0, - }, - { - l: '9.0', - x: 19.5833, - y: 168.0024, - }, - { - l: '9.0', - x: 19.6667, - y: 168.0024, - }, - { - l: '9.0', - x: 19.75, - y: 168.0142, - }, - { - l: '9.0', - x: 19.8333, - y: 168.0261, - }, - { - l: '9.0', - x: 19.9167, - y: 168.0379, - }, - { - l: '9.0', - x: 20.0, - y: 168.0497, - }, - { - l: '9.0', - x: 20.0, - y: 168.0497, - }, + { l: 9.0, x: 4, y: 96.9823 }, + { l: 9.0, x: 4.083, y: 97.5016 }, + { l: 9.0, x: 4.167, y: 98.0379 }, + { l: 9.0, x: 4.25, y: 98.5676 }, + { l: 9.0, x: 4.333, y: 99.0971 }, + { l: 9.0, x: 4.417, y: 99.6533 }, + { l: 9.0, x: 4.5, y: 100.2042 }, + { l: 9.0, x: 4.583, y: 100.7534 }, + { l: 9.0, x: 4.667, y: 101.3215 }, + { l: 9.0, x: 4.75, y: 101.8733 }, + { l: 9.0, x: 4.833, y: 102.4264 }, + { l: 9.0, x: 4.917, y: 102.986 }, + { l: 9.0, x: 5, y: 103.52 }, + { l: 9.0, x: 5.083, y: 104.0474 }, + { l: 9.0, x: 5.167, y: 104.5796 }, + { l: 9.0, x: 5.25, y: 105.0895 }, + { l: 9.0, x: 5.333, y: 105.5791 }, + { l: 9.0, x: 5.417, y: 106.0854 }, + { l: 9.0, x: 5.5, y: 106.5669 }, + { l: 9.0, x: 5.583, y: 107.0389 }, + { l: 9.0, x: 5.667, y: 107.5275 }, + { l: 9.0, x: 5.75, y: 108.0009 }, + { l: 9.0, x: 5.833, y: 108.4743 }, + { l: 9.0, x: 5.917, y: 108.9533 }, + { l: 9.0, x: 6, y: 109.4171 }, + { l: 9.0, x: 6.083, y: 109.8919 }, + { l: 9.0, x: 6.167, y: 110.3613 }, + { l: 9.0, x: 6.25, y: 110.8265 }, + { l: 9.0, x: 6.333, y: 111.2918 }, + { l: 9.0, x: 6.417, y: 111.7531 }, + { l: 9.0, x: 6.5, y: 112.2183 }, + { l: 9.0, x: 6.583, y: 112.674 }, + { l: 9.0, x: 6.667, y: 113.1336 }, + { l: 9.0, x: 6.75, y: 113.5986 }, + { l: 9.0, x: 6.833, y: 114.0526 }, + { l: 9.0, x: 6.917, y: 114.5214 }, + { l: 9.0, x: 7, y: 114.9847 }, + { l: 9.0, x: 7.083, y: 115.4463 }, + { l: 9.0, x: 7.167, y: 115.915 }, + { l: 9.0, x: 7.25, y: 116.3764 }, + { l: 9.0, x: 7.333, y: 116.8395 }, + { l: 9.0, x: 7.417, y: 117.3064 }, + { l: 9.0, x: 7.5, y: 117.7676 }, + { l: 9.0, x: 7.583, y: 118.2305 }, + { l: 9.0, x: 7.667, y: 118.6894 }, + { l: 9.0, x: 7.75, y: 119.1505 }, + { l: 9.0, x: 7.833, y: 119.5944 }, + { l: 9.0, x: 7.917, y: 120.0531 }, + { l: 9.0, x: 8, y: 120.5063 }, + { l: 9.0, x: 8.083, y: 120.9484 }, + { l: 9.0, x: 8.167, y: 121.3879 }, + { l: 9.0, x: 8.25, y: 121.8222 }, + { l: 9.0, x: 8.333, y: 122.2547 }, + { l: 9.0, x: 8.417, y: 122.6734 }, + { l: 9.0, x: 8.5, y: 123.087 }, + { l: 9.0, x: 8.583, y: 123.4988 }, + { l: 9.0, x: 8.667, y: 123.9154 }, + { l: 9.0, x: 8.75, y: 124.3083 }, + { l: 9.0, x: 8.833, y: 124.7087 }, + { l: 9.0, x: 8.917, y: 125.1044 }, + { l: 9.0, x: 9, y: 125.5047 }, + { l: 9.0, x: 9.083, y: 125.8937 }, + { l: 9.0, x: 9.167, y: 126.2873 }, + { l: 9.0, x: 9.25, y: 126.6743 }, + { l: 9.0, x: 9.333, y: 127.0537 }, + { l: 9.0, x: 9.417, y: 127.4433 }, + { l: 9.0, x: 9.5, y: 127.8206 }, + { l: 9.0, x: 9.583, y: 128.1961 }, + { l: 9.0, x: 9.667, y: 128.5759 }, + { l: 9.0, x: 9.75, y: 128.9511 }, + { l: 9.0, x: 9.833, y: 129.3337 }, + { l: 9.0, x: 9.917, y: 129.719 }, + { l: 9.0, x: 10, y: 130.0995 }, + { l: 9.0, x: 10.083, y: 130.4798 }, + { l: 9.0, x: 10.167, y: 130.8722 }, + { l: 9.0, x: 10.25, y: 131.2504 }, + { l: 9.0, x: 10.333, y: 131.6266 }, + { l: 9.0, x: 10.417, y: 131.9978 }, + { l: 9.0, x: 10.5, y: 132.3643 }, + { l: 9.0, x: 10.583, y: 132.7214 }, + { l: 9.0, x: 10.667, y: 133.0806 }, + { l: 9.0, x: 10.75, y: 133.426 }, + { l: 9.0, x: 10.833, y: 133.7714 }, + { l: 9.0, x: 10.917, y: 134.1187 }, + { l: 9.0, x: 11, y: 134.4543 }, + { l: 9.0, x: 11.083, y: 134.7973 }, + { l: 9.0, x: 11.167, y: 135.1347 }, + { l: 9.0, x: 11.25, y: 135.466 }, + { l: 9.0, x: 11.333, y: 135.8065 }, + { l: 9.0, x: 11.417, y: 136.1415 }, + { l: 9.0, x: 11.5, y: 136.4909 }, + { l: 9.0, x: 11.583, y: 136.8402 }, + { l: 9.0, x: 11.667, y: 137.1989 }, + { l: 9.0, x: 11.75, y: 137.5738 }, + { l: 9.0, x: 11.833, y: 137.9484 }, + { l: 9.0, x: 11.917, y: 138.3348 }, + { l: 9.0, x: 12, y: 138.7163 }, + { l: 9.0, x: 12.083, y: 139.1142 }, + { l: 9.0, x: 12.167, y: 139.5282 }, + { l: 9.0, x: 12.25, y: 139.9556 }, + { l: 9.0, x: 12.333, y: 140.3806 }, + { l: 9.0, x: 12.417, y: 140.8314 }, + { l: 9.0, x: 12.5, y: 141.2766 }, + { l: 9.0, x: 12.583, y: 141.74 }, + { l: 9.0, x: 12.667, y: 142.2203 }, + { l: 9.0, x: 12.75, y: 142.7039 }, + { l: 9.0, x: 12.833, y: 143.2058 }, + { l: 9.0, x: 12.917, y: 143.727 }, + { l: 9.0, x: 13, y: 144.2531 }, + { l: 9.0, x: 13.083, y: 144.7882 }, + { l: 9.0, x: 13.167, y: 145.3453 }, + { l: 9.0, x: 13.25, y: 145.9048 }, + { l: 9.0, x: 13.333, y: 146.4797 }, + { l: 9.0, x: 13.417, y: 147.0656 }, + { l: 9.0, x: 13.5, y: 147.6466 }, + { l: 9.0, x: 13.583, y: 148.2431 }, + { l: 9.0, x: 13.667, y: 148.8416 }, + { l: 9.0, x: 13.75, y: 149.4302 }, + { l: 9.0, x: 13.833, y: 150.0346 }, + { l: 9.0, x: 13.917, y: 150.6391 }, + { l: 9.0, x: 14, y: 151.2359 }, + { l: 9.0, x: 14.083, y: 151.828 }, + { l: 9.0, x: 14.167, y: 152.4339 }, + { l: 9.0, x: 14.25, y: 153.021 }, + { l: 9.0, x: 14.333, y: 153.6034 }, + { l: 9.0, x: 14.417, y: 154.1976 }, + { l: 9.0, x: 14.5, y: 154.7639 }, + { l: 9.0, x: 14.583, y: 155.335 }, + { l: 9.0, x: 14.667, y: 155.8991 }, + { l: 9.0, x: 14.75, y: 156.4498 }, + { l: 9.0, x: 14.833, y: 156.989 }, + { l: 9.0, x: 14.917, y: 157.5257 }, + { l: 9.0, x: 15, y: 158.0424 }, + { l: 9.0, x: 15.083, y: 158.5502 }, + { l: 9.0, x: 15.167, y: 159.0479 }, + { l: 9.0, x: 15.25, y: 159.5238 }, + { l: 9.0, x: 15.333, y: 159.9907 }, + { l: 9.0, x: 15.417, y: 160.4425 }, + { l: 9.0, x: 15.5, y: 160.8705 }, + { l: 9.0, x: 15.583, y: 161.2896 }, + { l: 9.0, x: 15.667, y: 161.7046 }, + { l: 9.0, x: 15.75, y: 162.101 }, + { l: 9.0, x: 15.833, y: 162.4697 }, + { l: 9.0, x: 15.917, y: 162.8406 }, + { l: 9.0, x: 16, y: 163.1864 }, + { l: 9.0, x: 16.083, y: 163.5114 }, + { l: 9.0, x: 16.167, y: 163.8381 }, + { l: 9.0, x: 16.25, y: 164.1378 }, + { l: 9.0, x: 16.333, y: 164.4259 }, + { l: 9.0, x: 16.417, y: 164.6988 }, + { l: 9.0, x: 16.5, y: 164.9614 }, + { l: 9.0, x: 16.583, y: 165.2055 }, + { l: 9.0, x: 16.667, y: 165.4407 }, + { l: 9.0, x: 16.75, y: 165.6591 }, + { l: 9.0, x: 16.833, y: 165.8753 }, + { l: 9.0, x: 16.917, y: 166.0752 }, + { l: 9.0, x: 17, y: 166.2586 }, + { l: 9.0, x: 17.083, y: 166.4398 }, + { l: 9.0, x: 17.167, y: 166.6113 }, + { l: 9.0, x: 17.25, y: 166.762 }, + { l: 9.0, x: 17.333, y: 166.908 }, + { l: 9.0, x: 17.417, y: 167.0534 }, + { l: 9.0, x: 17.5, y: 167.1759 }, + { l: 9.0, x: 17.583, y: 167.2867 }, + { l: 9.0, x: 17.667, y: 167.3964 }, + { l: 9.0, x: 17.75, y: 167.4812 }, + { l: 9.0, x: 17.833, y: 167.5662 }, + { l: 9.0, x: 17.917, y: 167.6307 }, + { l: 9.0, x: 18, y: 167.692 }, + { l: 9.0, x: 18.083, y: 167.7416 }, + { l: 9.0, x: 18.167, y: 167.7917 }, + { l: 9.0, x: 18.25, y: 167.8271 }, + { l: 9.0, x: 18.333, y: 167.8625 }, + { l: 9.0, x: 18.417, y: 167.8864 }, + { l: 9.0, x: 18.5, y: 167.9005 }, + { l: 9.0, x: 18.583, y: 167.9124 }, + { l: 9.0, x: 18.667, y: 167.9148 }, + { l: 9.0, x: 18.75, y: 167.9242 }, + { l: 9.0, x: 18.833, y: 167.9243 }, + { l: 9.0, x: 18.917, y: 167.9242 }, + { l: 9.0, x: 19, y: 167.9266 }, + { l: 9.0, x: 19.083, y: 167.9361 }, + { l: 9.0, x: 19.167, y: 167.9385 }, + { l: 9.0, x: 19.25, y: 167.9385 }, + { l: 9.0, x: 19.333, y: 167.9479 }, + { l: 9.0, x: 19.417, y: 167.9479 }, + { l: 9.0, x: 19.5, y: 167.9479 }, + { l: 9.0, x: 19.583, y: 167.9503 }, + { l: 9.0, x: 19.667, y: 167.9504 }, + { l: 9.0, x: 19.75, y: 167.9622 }, + { l: 9.0, x: 19.833, y: 167.974 }, + { l: 9.0, x: 19.917, y: 167.9859 }, ], }, { sds: -0.67, centile: 25.0, data: [ - { - l: '25.0', - x: 4.0, - y: 99.7515, - }, - { - l: '25.0', - x: 4.0833, - y: 100.2973, - }, - { - l: '25.0', - x: 4.1667, - y: 100.8535, - }, - { - l: '25.0', - x: 4.25, - y: 101.4095, - }, - { - l: '25.0', - x: 4.3333, - y: 101.9655, - }, - { - l: '25.0', - x: 4.4167, - y: 102.5416, - }, - { - l: '25.0', - x: 4.5, - y: 103.1182, - }, - { - l: '25.0', - x: 4.5833, - y: 103.6941, - }, - { - l: '25.0', - x: 4.6667, - y: 104.281, - }, - { - l: '25.0', - x: 4.75, - y: 104.8582, - }, - { - l: '25.0', - x: 4.8333, - y: 105.436, - }, - { - l: '25.0', - x: 4.9167, - y: 106.0137, - }, - { - l: '25.0', - x: 5.0, - y: 106.5719, - }, - { - l: '25.0', - x: 5.0833, - y: 107.1218, - }, - { - l: '25.0', - x: 5.1667, - y: 107.6709, - }, - { - l: '25.0', - x: 5.25, - y: 108.202, - }, - { - l: '25.0', - x: 5.3333, - y: 108.7129, - }, - { - l: '25.0', - x: 5.4167, - y: 109.2342, - }, - { - l: '25.0', - x: 5.5, - y: 109.736, - }, - { - l: '25.0', - x: 5.5833, - y: 110.228, - }, - { - l: '25.0', - x: 5.6667, - y: 110.7305, - }, - { - l: '25.0', - x: 5.75, - y: 111.2233, - }, - { - l: '25.0', - x: 5.8333, - y: 111.716, - }, - { - l: '25.0', - x: 5.9167, - y: 112.2087, - }, - { - l: '25.0', - x: 6.0, - y: 112.6917, - }, - { - l: '25.0', - x: 6.0833, - y: 113.1851, - }, - { - l: '25.0', - x: 6.1667, - y: 113.668, - }, - { - l: '25.0', - x: 6.25, - y: 114.1517, - }, - { - l: '25.0', - x: 6.3333, - y: 114.6353, - }, - { - l: '25.0', - x: 6.4167, - y: 115.1092, - }, - { - l: '25.0', - x: 6.5, - y: 115.5928, - }, - { - l: '25.0', - x: 6.5833, - y: 116.0667, - }, - { - l: '25.0', - x: 6.6667, - y: 116.5397, - }, - { - l: '25.0', - x: 6.75, - y: 117.0233, - }, - { - l: '25.0', - x: 6.8333, - y: 117.4963, - }, - { - l: '25.0', - x: 6.9167, - y: 117.9789, - }, - { - l: '25.0', - x: 7.0, - y: 118.4616, - }, - { - l: '25.0', - x: 7.0833, - y: 118.9434, - }, - { - l: '25.0', - x: 7.1667, - y: 119.426, - }, - { - l: '25.0', - x: 7.25, - y: 119.9078, - }, - { - l: '25.0', - x: 7.3333, - y: 120.3903, - }, - { - l: '25.0', - x: 7.4167, - y: 120.872, - }, - { - l: '25.0', - x: 7.5, - y: 121.3537, - }, - { - l: '25.0', - x: 7.5833, - y: 121.8361, - }, - { - l: '25.0', - x: 7.6667, - y: 122.3088, - }, - { - l: '25.0', - x: 7.75, - y: 122.7904, - }, - { - l: '25.0', - x: 7.8333, - y: 123.2534, - }, - { - l: '25.0', - x: 7.9167, - y: 123.726, - }, - { - l: '25.0', - x: 8.0, - y: 124.1986, - }, - { - l: '25.0', - x: 8.0833, - y: 124.6606, - }, - { - l: '25.0', - x: 8.1667, - y: 125.1137, - }, - { - l: '25.0', - x: 8.25, - y: 125.5668, - }, - { - l: '25.0', - x: 8.3333, - y: 126.0191, - }, - { - l: '25.0', - x: 8.4167, - y: 126.4518, - }, - { - l: '25.0', - x: 8.5, - y: 126.8845, - }, - { - l: '25.0', - x: 8.5833, - y: 127.3164, - }, - { - l: '25.0', - x: 8.6667, - y: 127.7481, - }, - { - l: '25.0', - x: 8.75, - y: 128.1605, - }, - { - l: '25.0', - x: 8.8333, - y: 128.5816, - }, - { - l: '25.0', - x: 8.9167, - y: 128.993, - }, - { - l: '25.0', - x: 9.0, - y: 129.414, - }, - { - l: '25.0', - x: 9.0833, - y: 129.8244, - }, - { - l: '25.0', - x: 9.1667, - y: 130.2347, - }, - { - l: '25.0', - x: 9.25, - y: 130.6441, - }, - { - l: '25.0', - x: 9.3333, - y: 131.0447, - }, - { - l: '25.0', - x: 9.4167, - y: 131.4531, - }, - { - l: '25.0', - x: 9.5, - y: 131.8526, - }, - { - l: '25.0', - x: 9.5833, - y: 132.2512, - }, - { - l: '25.0', - x: 9.6667, - y: 132.6498, - }, - { - l: '25.0', - x: 9.75, - y: 133.0482, - }, - { - l: '25.0', - x: 9.8333, - y: 133.4554, - }, - { - l: '25.0', - x: 9.9167, - y: 133.8617, - }, - { - l: '25.0', - x: 10.0, - y: 134.2678, - }, - { - l: '25.0', - x: 10.0833, - y: 134.6739, - }, - { - l: '25.0', - x: 10.1667, - y: 135.0887, - }, - { - l: '25.0', - x: 10.25, - y: 135.4937, - }, - { - l: '25.0', - x: 10.3333, - y: 135.8977, - }, - { - l: '25.0', - x: 10.4167, - y: 136.2919, - }, - { - l: '25.0', - x: 10.5, - y: 136.6861, - }, - { - l: '25.0', - x: 10.5833, - y: 137.0705, - }, - { - l: '25.0', - x: 10.6667, - y: 137.4538, - }, - { - l: '25.0', - x: 10.75, - y: 137.8274, - }, - { - l: '25.0', - x: 10.8333, - y: 138.2009, - }, - { - l: '25.0', - x: 10.9167, - y: 138.5734, - }, - { - l: '25.0', - x: 11.0, - y: 138.937, - }, - { - l: '25.0', - x: 11.0833, - y: 139.3093, - }, - { - l: '25.0', - x: 11.1667, - y: 139.6718, - }, - { - l: '25.0', - x: 11.25, - y: 140.0333, - }, - { - l: '25.0', - x: 11.3333, - y: 140.4044, - }, - { - l: '25.0', - x: 11.4167, - y: 140.7657, - }, - { - l: '25.0', - x: 11.5, - y: 141.1462, - }, - { - l: '25.0', - x: 11.5833, - y: 141.5267, - }, - { - l: '25.0', - x: 11.6667, - y: 141.9148, - }, - { - l: '25.0', - x: 11.75, - y: 142.3232, - }, - { - l: '25.0', - x: 11.8333, - y: 142.7314, - }, - { - l: '25.0', - x: 11.9167, - y: 143.1483, - }, - { - l: '25.0', - x: 12.0, - y: 143.565, - }, - { - l: '25.0', - x: 12.0833, - y: 144.0, - }, - { - l: '25.0', - x: 12.1667, - y: 144.4455, - }, - { - l: '25.0', - x: 12.25, - y: 144.9102, - }, - { - l: '25.0', - x: 12.3333, - y: 145.3738, - }, - { - l: '25.0', - x: 12.4167, - y: 145.8576, - }, - { - l: '25.0', - x: 12.5, - y: 146.3413, - }, - { - l: '25.0', - x: 12.5833, - y: 146.8442, - }, - { - l: '25.0', - x: 12.6667, - y: 147.3577, - }, - { - l: '25.0', - x: 12.75, - y: 147.8806, - }, - { - l: '25.0', - x: 12.8333, - y: 148.4228, - }, - { - l: '25.0', - x: 12.9167, - y: 148.9765, - }, - { - l: '25.0', - x: 13.0, - y: 149.5408, - }, - { - l: '25.0', - x: 13.0833, - y: 150.1147, - }, - { - l: '25.0', - x: 13.1667, - y: 150.7012, - }, - { - l: '25.0', - x: 13.25, - y: 151.2973, - }, - { - l: '25.0', - x: 13.3333, - y: 151.906, - }, - { - l: '25.0', - x: 13.4167, - y: 152.5168, - }, - { - l: '25.0', - x: 13.5, - y: 153.1286, - }, - { - l: '25.0', - x: 13.5833, - y: 153.7532, - }, - { - l: '25.0', - x: 13.6667, - y: 154.3703, - }, - { - l: '25.0', - x: 13.75, - y: 154.9809, - }, - { - l: '25.0', - x: 13.8333, - y: 155.6043, - }, - { - l: '25.0', - x: 13.9167, - y: 156.2193, - }, - { - l: '25.0', - x: 14.0, - y: 156.8289, - }, - { - l: '25.0', - x: 14.0833, - y: 157.4312, - }, - { - l: '25.0', - x: 14.1667, - y: 158.0368, - }, - { - l: '25.0', - x: 14.25, - y: 158.6265, - }, - { - l: '25.0', - x: 14.3333, - y: 159.2089, - }, - { - l: '25.0', - x: 14.4167, - y: 159.7936, - }, - { - l: '25.0', - x: 14.5, - y: 160.3529, - }, - { - l: '25.0', - x: 14.5833, - y: 160.9145, - }, - { - l: '25.0', - x: 14.6667, - y: 161.4592, - }, - { - l: '25.0', - x: 14.75, - y: 161.9956, - }, - { - l: '25.0', - x: 14.8333, - y: 162.5162, - }, - { - l: '25.0', - x: 14.9167, - y: 163.0273, - }, - { - l: '25.0', - x: 15.0, - y: 163.5215, - }, - { - l: '25.0', - x: 15.0833, - y: 164.0063, - }, - { - l: '25.0', - x: 15.1667, - y: 164.4731, - }, - { - l: '25.0', - x: 15.25, - y: 164.9218, - }, - { - l: '25.0', - x: 15.3333, - y: 165.361, - }, - { - l: '25.0', - x: 15.4167, - y: 165.7799, - }, - { - l: '25.0', - x: 15.5, - y: 166.1797, - }, - { - l: '25.0', - x: 15.5833, - y: 166.5699, - }, - { - l: '25.0', - x: 15.6667, - y: 166.9506, - }, - { - l: '25.0', - x: 15.75, - y: 167.3194, - }, - { - l: '25.0', - x: 15.8333, - y: 167.6593, - }, - { - l: '25.0', - x: 15.9167, - y: 167.9982, - }, - { - l: '25.0', - x: 16.0, - y: 168.3166, - }, - { - l: '25.0', - x: 16.0833, - y: 168.6146, - }, - { - l: '25.0', - x: 16.1667, - y: 168.9115, - }, - { - l: '25.0', - x: 16.25, - y: 169.1868, - }, - { - l: '25.0', - x: 16.3333, - y: 169.4514, - }, - { - l: '25.0', - x: 16.4167, - y: 169.6965, - }, - { - l: '25.0', - x: 16.5, - y: 169.9383, - }, - { - l: '25.0', - x: 16.5833, - y: 170.1607, - }, - { - l: '25.0', - x: 16.6667, - y: 170.3722, - }, - { - l: '25.0', - x: 16.75, - y: 170.5718, - }, - { - l: '25.0', - x: 16.8333, - y: 170.7702, - }, - { - l: '25.0', - x: 16.9167, - y: 170.9492, - }, - { - l: '25.0', - x: 17.0, - y: 171.1162, - }, - { - l: '25.0', - x: 17.0833, - y: 171.2821, - }, - { - l: '25.0', - x: 17.1667, - y: 171.4371, - }, - { - l: '25.0', - x: 17.25, - y: 171.5726, - }, - { - l: '25.0', - x: 17.3333, - y: 171.7058, - }, - { - l: '25.0', - x: 17.4167, - y: 171.8379, - }, - { - l: '25.0', - x: 17.5, - y: 171.9494, - }, - { - l: '25.0', - x: 17.5833, - y: 172.0499, - }, - { - l: '25.0', - x: 17.6667, - y: 172.1493, - }, - { - l: '25.0', - x: 17.75, - y: 172.2269, - }, - { - l: '25.0', - x: 17.8333, - y: 172.3045, - }, - { - l: '25.0', - x: 17.9167, - y: 172.3614, - }, - { - l: '25.0', - x: 18.0, - y: 172.4172, - }, - { - l: '25.0', - x: 18.0833, - y: 172.462, - }, - { - l: '25.0', - x: 18.1667, - y: 172.5069, - }, - { - l: '25.0', - x: 18.25, - y: 172.5396, - }, - { - l: '25.0', - x: 18.3333, - y: 172.5724, - }, - { - l: '25.0', - x: 18.4167, - y: 172.5942, - }, - { - l: '25.0', - x: 18.5, - y: 172.6063, - }, - { - l: '25.0', - x: 18.5833, - y: 172.6173, - }, - { - l: '25.0', - x: 18.6667, - y: 172.6184, - }, - { - l: '25.0', - x: 18.75, - y: 172.6282, - }, - { - l: '25.0', - x: 18.8333, - y: 172.6282, - }, - { - l: '25.0', - x: 18.9167, - y: 172.6282, - }, - { - l: '25.0', - x: 19.0, - y: 172.6294, - }, - { - l: '25.0', - x: 19.0833, - y: 172.6391, - }, - { - l: '25.0', - x: 19.1667, - y: 172.6403, - }, - { - l: '25.0', - x: 19.25, - y: 172.6403, - }, - { - l: '25.0', - x: 19.3333, - y: 172.65, - }, - { - l: '25.0', - x: 19.4167, - y: 172.65, - }, - { - l: '25.0', - x: 19.5, - y: 172.65, - }, - { - l: '25.0', - x: 19.5833, - y: 172.6512, - }, - { - l: '25.0', - x: 19.6667, - y: 172.6512, - }, - { - l: '25.0', - x: 19.75, - y: 172.6621, - }, - { - l: '25.0', - x: 19.8333, - y: 172.673, - }, - { - l: '25.0', - x: 19.9167, - y: 172.684, - }, - { - l: '25.0', - x: 20.0, - y: 172.6949, - }, - { - l: '25.0', - x: 20.0, - y: 172.6949, - }, + { l: 25.0, x: 4, y: 99.7193 }, + { l: 25.0, x: 4.083, y: 100.2627 }, + { l: 25.0, x: 4.167, y: 100.8229 }, + { l: 25.0, x: 4.25, y: 101.3765 }, + { l: 25.0, x: 4.333, y: 101.93 }, + { l: 25.0, x: 4.417, y: 102.5103 }, + { l: 25.0, x: 4.5, y: 103.0844 }, + { l: 25.0, x: 4.583, y: 103.6576 }, + { l: 25.0, x: 4.667, y: 104.2489 }, + { l: 25.0, x: 4.75, y: 104.8235 }, + { l: 25.0, x: 4.833, y: 105.3987 }, + { l: 25.0, x: 4.917, y: 105.9807 }, + { l: 25.0, x: 5, y: 106.5364 }, + { l: 25.0, x: 5.083, y: 107.0839 }, + { l: 25.0, x: 5.167, y: 107.6371 }, + { l: 25.0, x: 5.25, y: 108.1658 }, + { l: 25.0, x: 5.333, y: 108.6744 }, + { l: 25.0, x: 5.417, y: 109.1996 }, + { l: 25.0, x: 5.5, y: 109.6992 }, + { l: 25.0, x: 5.583, y: 110.189 }, + { l: 25.0, x: 5.667, y: 110.6953 }, + { l: 25.0, x: 5.75, y: 111.1859 }, + { l: 25.0, x: 5.833, y: 111.6764 }, + { l: 25.0, x: 5.917, y: 112.1728 }, + { l: 25.0, x: 6, y: 112.6536 }, + { l: 25.0, x: 6.083, y: 113.1449 }, + { l: 25.0, x: 6.167, y: 113.6315 }, + { l: 25.0, x: 6.25, y: 114.113 }, + { l: 25.0, x: 6.333, y: 114.5946 }, + { l: 25.0, x: 6.417, y: 115.0721 }, + { l: 25.0, x: 6.5, y: 115.5536 }, + { l: 25.0, x: 6.583, y: 116.0254 }, + { l: 25.0, x: 6.667, y: 116.5021 }, + { l: 25.0, x: 6.75, y: 116.9835 }, + { l: 25.0, x: 6.833, y: 117.4544 }, + { l: 25.0, x: 6.917, y: 117.9407 }, + { l: 25.0, x: 7, y: 118.4212 }, + { l: 25.0, x: 7.083, y: 118.9009 }, + { l: 25.0, x: 7.167, y: 119.3871 }, + { l: 25.0, x: 7.25, y: 119.8667 }, + { l: 25.0, x: 7.333, y: 120.3472 }, + { l: 25.0, x: 7.417, y: 120.8325 }, + { l: 25.0, x: 7.5, y: 121.312 }, + { l: 25.0, x: 7.583, y: 121.7923 }, + { l: 25.0, x: 7.667, y: 122.2687 }, + { l: 25.0, x: 7.75, y: 122.7481 }, + { l: 25.0, x: 7.833, y: 123.209 }, + { l: 25.0, x: 7.917, y: 123.6852 }, + { l: 25.0, x: 8, y: 124.1557 }, + { l: 25.0, x: 8.083, y: 124.6157 }, + { l: 25.0, x: 8.167, y: 125.0722 }, + { l: 25.0, x: 8.25, y: 125.5233 }, + { l: 25.0, x: 8.333, y: 125.9736 }, + { l: 25.0, x: 8.417, y: 126.4096 }, + { l: 25.0, x: 8.5, y: 126.8404 }, + { l: 25.0, x: 8.583, y: 127.2703 }, + { l: 25.0, x: 8.667, y: 127.7053 }, + { l: 25.0, x: 8.75, y: 128.1157 }, + { l: 25.0, x: 8.833, y: 128.5349 }, + { l: 25.0, x: 8.917, y: 128.9494 }, + { l: 25.0, x: 9, y: 129.3686 }, + { l: 25.0, x: 9.083, y: 129.7771 }, + { l: 25.0, x: 9.167, y: 130.1905 }, + { l: 25.0, x: 9.25, y: 130.598 }, + { l: 25.0, x: 9.333, y: 130.9967 }, + { l: 25.0, x: 9.417, y: 131.4081 }, + { l: 25.0, x: 9.5, y: 131.8058 }, + { l: 25.0, x: 9.583, y: 132.2025 }, + { l: 25.0, x: 9.667, y: 132.604 }, + { l: 25.0, x: 9.75, y: 133.0006 }, + { l: 25.0, x: 9.833, y: 133.4059 }, + { l: 25.0, x: 9.917, y: 133.8151 }, + { l: 25.0, x: 10, y: 134.2194 }, + { l: 25.0, x: 10.083, y: 134.6236 }, + { l: 25.0, x: 10.167, y: 135.0413 }, + { l: 25.0, x: 10.25, y: 135.4444 }, + { l: 25.0, x: 10.333, y: 135.8465 }, + { l: 25.0, x: 10.417, y: 136.2436 }, + { l: 25.0, x: 10.5, y: 136.6359 }, + { l: 25.0, x: 10.583, y: 137.0184 }, + { l: 25.0, x: 10.667, y: 137.4045 }, + { l: 25.0, x: 10.75, y: 137.7763 }, + { l: 25.0, x: 10.833, y: 138.1479 }, + { l: 25.0, x: 10.917, y: 138.523 }, + { l: 25.0, x: 11, y: 138.8849 }, + { l: 25.0, x: 11.083, y: 139.2554 }, + { l: 25.0, x: 11.167, y: 139.6205 }, + { l: 25.0, x: 11.25, y: 139.9802 }, + { l: 25.0, x: 11.333, y: 140.3495 }, + { l: 25.0, x: 11.417, y: 140.7134 }, + { l: 25.0, x: 11.5, y: 141.0921 }, + { l: 25.0, x: 11.583, y: 141.4708 }, + { l: 25.0, x: 11.667, y: 141.8616 }, + { l: 25.0, x: 11.75, y: 142.268 }, + { l: 25.0, x: 11.833, y: 142.6742 }, + { l: 25.0, x: 11.917, y: 143.094 }, + { l: 25.0, x: 12, y: 143.5087 }, + { l: 25.0, x: 12.083, y: 143.9415 }, + { l: 25.0, x: 12.167, y: 144.3902 }, + { l: 25.0, x: 12.25, y: 144.8526 }, + { l: 25.0, x: 12.333, y: 145.3139 }, + { l: 25.0, x: 12.417, y: 145.8011 }, + { l: 25.0, x: 12.5, y: 146.2825 }, + { l: 25.0, x: 12.583, y: 146.7829 }, + { l: 25.0, x: 12.667, y: 147.3 }, + { l: 25.0, x: 12.75, y: 147.8205 }, + { l: 25.0, x: 12.833, y: 148.36 }, + { l: 25.0, x: 12.917, y: 148.9177 }, + { l: 25.0, x: 13, y: 149.4794 }, + { l: 25.0, x: 13.083, y: 150.0505 }, + { l: 25.0, x: 13.167, y: 150.6413 }, + { l: 25.0, x: 13.25, y: 151.2346 }, + { l: 25.0, x: 13.333, y: 151.8406 }, + { l: 25.0, x: 13.417, y: 152.4559 }, + { l: 25.0, x: 13.5, y: 153.0649 }, + { l: 25.0, x: 13.583, y: 153.6867 }, + { l: 25.0, x: 13.667, y: 154.3084 }, + { l: 25.0, x: 13.75, y: 154.9164 }, + { l: 25.0, x: 13.833, y: 155.5372 }, + { l: 25.0, x: 13.917, y: 156.1569 }, + { l: 25.0, x: 14, y: 156.7639 }, + { l: 25.0, x: 14.083, y: 157.3637 }, + { l: 25.0, x: 14.167, y: 157.9741 }, + { l: 25.0, x: 14.25, y: 158.5614 }, + { l: 25.0, x: 14.333, y: 159.1415 }, + { l: 25.0, x: 14.417, y: 159.7309 }, + { l: 25.0, x: 14.5, y: 160.2879 }, + { l: 25.0, x: 14.583, y: 160.8475 }, + { l: 25.0, x: 14.667, y: 161.3968 }, + { l: 25.0, x: 14.75, y: 161.9311 }, + { l: 25.0, x: 14.833, y: 162.4499 }, + { l: 25.0, x: 14.917, y: 162.9654 }, + { l: 25.0, x: 15, y: 163.4579 }, + { l: 25.0, x: 15.083, y: 163.941 }, + { l: 25.0, x: 15.167, y: 164.4118 }, + { l: 25.0, x: 15.25, y: 164.8591 }, + { l: 25.0, x: 15.333, y: 165.2969 }, + { l: 25.0, x: 15.417, y: 165.7195 }, + { l: 25.0, x: 15.5, y: 166.118 }, + { l: 25.0, x: 15.583, y: 166.507 }, + { l: 25.0, x: 15.667, y: 166.8911 }, + { l: 25.0, x: 15.75, y: 167.2588 }, + { l: 25.0, x: 15.833, y: 167.5977 }, + { l: 25.0, x: 15.917, y: 167.9395 }, + { l: 25.0, x: 16, y: 168.257 }, + { l: 25.0, x: 16.083, y: 168.5541 }, + { l: 25.0, x: 16.167, y: 168.8537 }, + { l: 25.0, x: 16.25, y: 169.1282 }, + { l: 25.0, x: 16.333, y: 169.3919 }, + { l: 25.0, x: 16.417, y: 169.6394 }, + { l: 25.0, x: 16.5, y: 169.8804 }, + { l: 25.0, x: 16.583, y: 170.1022 }, + { l: 25.0, x: 16.667, y: 170.3157 }, + { l: 25.0, x: 16.75, y: 170.5147 }, + { l: 25.0, x: 16.833, y: 170.7126 }, + { l: 25.0, x: 16.917, y: 170.8933 }, + { l: 25.0, x: 17, y: 171.0598 }, + { l: 25.0, x: 17.083, y: 171.2252 }, + { l: 25.0, x: 17.167, y: 171.3815 }, + { l: 25.0, x: 17.25, y: 171.5167 }, + { l: 25.0, x: 17.333, y: 171.6496 }, + { l: 25.0, x: 17.417, y: 171.7828 }, + { l: 25.0, x: 17.5, y: 171.8939 }, + { l: 25.0, x: 17.583, y: 171.9942 }, + { l: 25.0, x: 17.667, y: 172.0944 }, + { l: 25.0, x: 17.75, y: 172.1718 }, + { l: 25.0, x: 17.833, y: 172.2491 }, + { l: 25.0, x: 17.917, y: 172.3067 }, + { l: 25.0, x: 18, y: 172.3623 }, + { l: 25.0, x: 18.083, y: 172.407 }, + { l: 25.0, x: 18.167, y: 172.4522 }, + { l: 25.0, x: 18.25, y: 172.4849 }, + { l: 25.0, x: 18.333, y: 172.5176 }, + { l: 25.0, x: 18.417, y: 172.5396 }, + { l: 25.0, x: 18.5, y: 172.5517 }, + { l: 25.0, x: 18.583, y: 172.5626 }, + { l: 25.0, x: 18.667, y: 172.5638 }, + { l: 25.0, x: 18.75, y: 172.5735 }, + { l: 25.0, x: 18.833, y: 172.5735 }, + { l: 25.0, x: 18.917, y: 172.5735 }, + { l: 25.0, x: 19, y: 172.5747 }, + { l: 25.0, x: 19.083, y: 172.5844 }, + { l: 25.0, x: 19.167, y: 172.5856 }, + { l: 25.0, x: 19.25, y: 172.5856 }, + { l: 25.0, x: 19.333, y: 172.5953 }, + { l: 25.0, x: 19.417, y: 172.5954 }, + { l: 25.0, x: 19.5, y: 172.5954 }, + { l: 25.0, x: 19.583, y: 172.5966 }, + { l: 25.0, x: 19.667, y: 172.5966 }, + { l: 25.0, x: 19.75, y: 172.6075 }, + { l: 25.0, x: 19.833, y: 172.6184 }, + { l: 25.0, x: 19.917, y: 172.6294 }, ], }, { sds: 0.0, centile: 50.0, data: [ - { - l: '50.0', - x: 4.0, - y: 102.49, - }, - { - l: '50.0', - x: 4.0833, - y: 103.06, - }, - { - l: '50.0', - x: 4.1667, - y: 103.64, - }, - { - l: '50.0', - x: 4.25, - y: 104.22, - }, - { - l: '50.0', - x: 4.3333, - y: 104.8, - }, - { - l: '50.0', - x: 4.4167, - y: 105.4, - }, - { - l: '50.0', - x: 4.5, - y: 106.0, - }, - { - l: '50.0', - x: 4.5833, - y: 106.6, - }, - { - l: '50.0', - x: 4.6667, - y: 107.21, - }, - { - l: '50.0', - x: 4.75, - y: 107.81, - }, - { - l: '50.0', - x: 4.8333, - y: 108.41, - }, - { - l: '50.0', - x: 4.9167, - y: 109.01, - }, - { - l: '50.0', - x: 5.0, - y: 109.59, - }, - { - l: '50.0', - x: 5.0833, - y: 110.16, - }, - { - l: '50.0', - x: 5.1667, - y: 110.73, - }, - { - l: '50.0', - x: 5.25, - y: 111.28, - }, - { - l: '50.0', - x: 5.3333, - y: 111.81, - }, - { - l: '50.0', - x: 5.4167, - y: 112.35, - }, - { - l: '50.0', - x: 5.5, - y: 112.87, - }, - { - l: '50.0', - x: 5.5833, - y: 113.38, - }, - { - l: '50.0', - x: 5.6667, - y: 113.9, - }, - { - l: '50.0', - x: 5.75, - y: 114.41, - }, - { - l: '50.0', - x: 5.8333, - y: 114.92, - }, - { - l: '50.0', - x: 5.9167, - y: 115.43, - }, - { - l: '50.0', - x: 6.0, - y: 115.93, - }, - { - l: '50.0', - x: 6.0833, - y: 116.44, - }, - { - l: '50.0', - x: 6.1667, - y: 116.94, - }, - { - l: '50.0', - x: 6.25, - y: 117.44, - }, - { - l: '50.0', - x: 6.3333, - y: 117.94, - }, - { - l: '50.0', - x: 6.4167, - y: 118.43, - }, - { - l: '50.0', - x: 6.5, - y: 118.93, - }, - { - l: '50.0', - x: 6.5833, - y: 119.42, - }, - { - l: '50.0', - x: 6.6667, - y: 119.91, - }, - { - l: '50.0', - x: 6.75, - y: 120.41, - }, - { - l: '50.0', - x: 6.8333, - y: 120.9, - }, - { - l: '50.0', - x: 6.9167, - y: 121.4, - }, - { - l: '50.0', - x: 7.0, - y: 121.9, - }, - { - l: '50.0', - x: 7.0833, - y: 122.4, - }, - { - l: '50.0', - x: 7.1667, - y: 122.9, - }, - { - l: '50.0', - x: 7.25, - y: 123.4, - }, - { - l: '50.0', - x: 7.3333, - y: 123.9, - }, - { - l: '50.0', - x: 7.4167, - y: 124.4, - }, - { - l: '50.0', - x: 7.5, - y: 124.9, - }, - { - l: '50.0', - x: 7.5833, - y: 125.4, - }, - { - l: '50.0', - x: 7.6667, - y: 125.89, - }, - { - l: '50.0', - x: 7.75, - y: 126.39, - }, - { - l: '50.0', - x: 7.8333, - y: 126.87, - }, - { - l: '50.0', - x: 7.9167, - y: 127.36, - }, - { - l: '50.0', - x: 8.0, - y: 127.85, - }, - { - l: '50.0', - x: 8.0833, - y: 128.33, - }, - { - l: '50.0', - x: 8.1667, - y: 128.8, - }, - { - l: '50.0', - x: 8.25, - y: 129.27, - }, - { - l: '50.0', - x: 8.3333, - y: 129.74, - }, - { - l: '50.0', - x: 8.4167, - y: 130.19, - }, - { - l: '50.0', - x: 8.5, - y: 130.64, - }, - { - l: '50.0', - x: 8.5833, - y: 131.09, - }, - { - l: '50.0', - x: 8.6667, - y: 131.54, - }, - { - l: '50.0', - x: 8.75, - y: 131.97, - }, - { - l: '50.0', - x: 8.8333, - y: 132.41, - }, - { - l: '50.0', - x: 8.9167, - y: 132.84, - }, - { - l: '50.0', - x: 9.0, - y: 133.28, - }, - { - l: '50.0', - x: 9.0833, - y: 133.71, - }, - { - l: '50.0', - x: 9.1667, - y: 134.14, - }, - { - l: '50.0', - x: 9.25, - y: 134.57, - }, - { - l: '50.0', - x: 9.3333, - y: 134.99, - }, - { - l: '50.0', - x: 9.4167, - y: 135.42, - }, - { - l: '50.0', - x: 9.5, - y: 135.84, - }, - { - l: '50.0', - x: 9.5833, - y: 136.26, - }, - { - l: '50.0', - x: 9.6667, - y: 136.68, - }, - { - l: '50.0', - x: 9.75, - y: 137.1, - }, - { - l: '50.0', - x: 9.8333, - y: 137.53, - }, - { - l: '50.0', - x: 9.9167, - y: 137.96, - }, - { - l: '50.0', - x: 10.0, - y: 138.39, - }, - { - l: '50.0', - x: 10.0833, - y: 138.82, - }, - { - l: '50.0', - x: 10.1667, - y: 139.26, - }, - { - l: '50.0', - x: 10.25, - y: 139.69, - }, - { - l: '50.0', - x: 10.3333, - y: 140.12, - }, - { - l: '50.0', - x: 10.4167, - y: 140.54, - }, - { - l: '50.0', - x: 10.5, - y: 140.96, - }, - { - l: '50.0', - x: 10.5833, - y: 141.37, - }, - { - l: '50.0', - x: 10.6667, - y: 141.78, - }, - { - l: '50.0', - x: 10.75, - y: 142.18, - }, - { - l: '50.0', - x: 10.8333, - y: 142.58, - }, - { - l: '50.0', - x: 10.9167, - y: 142.98, - }, - { - l: '50.0', - x: 11.0, - y: 143.37, - }, - { - l: '50.0', - x: 11.0833, - y: 143.77, - }, - { - l: '50.0', - x: 11.1667, - y: 144.16, - }, - { - l: '50.0', - x: 11.25, - y: 144.55, - }, - { - l: '50.0', - x: 11.3333, - y: 144.95, - }, - { - l: '50.0', - x: 11.4167, - y: 145.34, - }, - { - l: '50.0', - x: 11.5, - y: 145.75, - }, - { - l: '50.0', - x: 11.5833, - y: 146.16, - }, - { - l: '50.0', - x: 11.6667, - y: 146.58, - }, - { - l: '50.0', - x: 11.75, - y: 147.02, - }, - { - l: '50.0', - x: 11.8333, - y: 147.46, - }, - { - l: '50.0', - x: 11.9167, - y: 147.91, - }, - { - l: '50.0', - x: 12.0, - y: 148.36, - }, - { - l: '50.0', - x: 12.0833, - y: 148.83, - }, - { - l: '50.0', - x: 12.1667, - y: 149.31, - }, - { - l: '50.0', - x: 12.25, - y: 149.81, - }, - { - l: '50.0', - x: 12.3333, - y: 150.31, - }, - { - l: '50.0', - x: 12.4167, - y: 150.83, - }, - { - l: '50.0', - x: 12.5, - y: 151.35, - }, - { - l: '50.0', - x: 12.5833, - y: 151.89, - }, - { - l: '50.0', - x: 12.6667, - y: 152.44, - }, - { - l: '50.0', - x: 12.75, - y: 153.0, - }, - { - l: '50.0', - x: 12.8333, - y: 153.58, - }, - { - l: '50.0', - x: 12.9167, - y: 154.17, - }, - { - l: '50.0', - x: 13.0, - y: 154.77, - }, - { - l: '50.0', - x: 13.0833, - y: 155.38, - }, - { - l: '50.0', - x: 13.1667, - y: 156.0, - }, - { - l: '50.0', - x: 13.25, - y: 156.63, - }, - { - l: '50.0', - x: 13.3333, - y: 157.27, - }, - { - l: '50.0', - x: 13.4167, - y: 157.91, - }, - { - l: '50.0', - x: 13.5, - y: 158.55, - }, - { - l: '50.0', - x: 13.5833, - y: 159.2, - }, - { - l: '50.0', - x: 13.6667, - y: 159.84, - }, - { - l: '50.0', - x: 13.75, - y: 160.47, - }, - { - l: '50.0', - x: 13.8333, - y: 161.11, - }, - { - l: '50.0', - x: 13.9167, - y: 161.74, - }, - { - l: '50.0', - x: 14.0, - y: 162.36, - }, - { - l: '50.0', - x: 14.0833, - y: 162.97, - }, - { - l: '50.0', - x: 14.1667, - y: 163.58, - }, - { - l: '50.0', - x: 14.25, - y: 164.17, - }, - { - l: '50.0', - x: 14.3333, - y: 164.75, - }, - { - l: '50.0', - x: 14.4167, - y: 165.33, - }, - { - l: '50.0', - x: 14.5, - y: 165.88, - }, - { - l: '50.0', - x: 14.5833, - y: 166.43, - }, - { - l: '50.0', - x: 14.6667, - y: 166.96, - }, - { - l: '50.0', - x: 14.75, - y: 167.48, - }, - { - l: '50.0', - x: 14.8333, - y: 167.98, - }, - { - l: '50.0', - x: 14.9167, - y: 168.47, - }, - { - l: '50.0', - x: 15.0, - y: 168.94, - }, - { - l: '50.0', - x: 15.0833, - y: 169.4, - }, - { - l: '50.0', - x: 15.1667, - y: 169.84, - }, - { - l: '50.0', - x: 15.25, - y: 170.26, - }, - { - l: '50.0', - x: 15.3333, - y: 170.67, - }, - { - l: '50.0', - x: 15.4167, - y: 171.06, - }, - { - l: '50.0', - x: 15.5, - y: 171.43, - }, - { - l: '50.0', - x: 15.5833, - y: 171.79, - }, - { - l: '50.0', - x: 15.6667, - y: 172.14, - }, - { - l: '50.0', - x: 15.75, - y: 172.48, - }, - { - l: '50.0', - x: 15.8333, - y: 172.79, - }, - { - l: '50.0', - x: 15.9167, - y: 173.1, - }, - { - l: '50.0', - x: 16.0, - y: 173.39, - }, - { - l: '50.0', - x: 16.0833, - y: 173.66, - }, - { - l: '50.0', - x: 16.1667, - y: 173.93, - }, - { - l: '50.0', - x: 16.25, - y: 174.18, - }, - { - l: '50.0', - x: 16.3333, - y: 174.42, - }, - { - l: '50.0', - x: 16.4167, - y: 174.64, - }, - { - l: '50.0', - x: 16.5, - y: 174.86, - }, - { - l: '50.0', - x: 16.5833, - y: 175.06, - }, - { - l: '50.0', - x: 16.6667, - y: 175.25, - }, - { - l: '50.0', - x: 16.75, - y: 175.43, - }, - { - l: '50.0', - x: 16.8333, - y: 175.61, - }, - { - l: '50.0', - x: 16.9167, - y: 175.77, - }, - { - l: '50.0', - x: 17.0, - y: 175.92, - }, - { - l: '50.0', - x: 17.0833, - y: 176.07, - }, - { - l: '50.0', - x: 17.1667, - y: 176.21, - }, - { - l: '50.0', - x: 17.25, - y: 176.33, - }, - { - l: '50.0', - x: 17.3333, - y: 176.45, - }, - { - l: '50.0', - x: 17.4167, - y: 176.57, - }, - { - l: '50.0', - x: 17.5, - y: 176.67, - }, - { - l: '50.0', - x: 17.5833, - y: 176.76, - }, - { - l: '50.0', - x: 17.6667, - y: 176.85, - }, - { - l: '50.0', - x: 17.75, - y: 176.92, - }, - { - l: '50.0', - x: 17.8333, - y: 176.99, - }, - { - l: '50.0', - x: 17.9167, - y: 177.04, - }, - { - l: '50.0', - x: 18.0, - y: 177.09, - }, - { - l: '50.0', - x: 18.0833, - y: 177.13, - }, - { - l: '50.0', - x: 18.1667, - y: 177.17, - }, - { - l: '50.0', - x: 18.25, - y: 177.2, - }, - { - l: '50.0', - x: 18.3333, - y: 177.23, - }, - { - l: '50.0', - x: 18.4167, - y: 177.25, - }, - { - l: '50.0', - x: 18.5, - y: 177.26, - }, - { - l: '50.0', - x: 18.5833, - y: 177.27, - }, - { - l: '50.0', - x: 18.6667, - y: 177.27, - }, - { - l: '50.0', - x: 18.75, - y: 177.28, - }, - { - l: '50.0', - x: 18.8333, - y: 177.28, - }, - { - l: '50.0', - x: 18.9167, - y: 177.28, - }, - { - l: '50.0', - x: 19.0, - y: 177.28, - }, - { - l: '50.0', - x: 19.0833, - y: 177.29, - }, - { - l: '50.0', - x: 19.1667, - y: 177.29, - }, - { - l: '50.0', - x: 19.25, - y: 177.29, - }, - { - l: '50.0', - x: 19.3333, - y: 177.3, - }, - { - l: '50.0', - x: 19.4167, - y: 177.3, - }, - { - l: '50.0', - x: 19.5, - y: 177.3, - }, - { - l: '50.0', - x: 19.5833, - y: 177.3, - }, - { - l: '50.0', - x: 19.6667, - y: 177.3, - }, - { - l: '50.0', - x: 19.75, - y: 177.31, - }, - { - l: '50.0', - x: 19.8333, - y: 177.32, - }, - { - l: '50.0', - x: 19.9167, - y: 177.33, - }, - { - l: '50.0', - x: 20.0, - y: 177.34, - }, - { - l: '50.0', - x: 20.0, - y: 177.34, - }, + { l: 50.0, x: 4, y: 102.49 }, + { l: 50.0, x: 4.083, y: 103.0577 }, + { l: 50.0, x: 4.167, y: 103.6423 }, + { l: 50.0, x: 4.25, y: 104.22 }, + { l: 50.0, x: 4.333, y: 104.7977 }, + { l: 50.0, x: 4.417, y: 105.4024 }, + { l: 50.0, x: 4.5, y: 106.0 }, + { l: 50.0, x: 4.583, y: 106.5976 }, + { l: 50.0, x: 4.667, y: 107.2124 }, + { l: 50.0, x: 4.75, y: 107.81 }, + { l: 50.0, x: 4.833, y: 108.4076 }, + { l: 50.0, x: 4.917, y: 109.0124 }, + { l: 50.0, x: 5, y: 109.59 }, + { l: 50.0, x: 5.083, y: 110.1577 }, + { l: 50.0, x: 5.167, y: 110.7322 }, + { l: 50.0, x: 5.25, y: 111.28 }, + { l: 50.0, x: 5.333, y: 111.8079 }, + { l: 50.0, x: 5.417, y: 112.3521 }, + { l: 50.0, x: 5.5, y: 112.87 }, + { l: 50.0, x: 5.583, y: 113.378 }, + { l: 50.0, x: 5.667, y: 113.9021 }, + { l: 50.0, x: 5.75, y: 114.41 }, + { l: 50.0, x: 5.833, y: 114.918 }, + { l: 50.0, x: 5.917, y: 115.432 }, + { l: 50.0, x: 6, y: 115.93 }, + { l: 50.0, x: 6.083, y: 116.438 }, + { l: 50.0, x: 6.167, y: 116.942 }, + { l: 50.0, x: 6.25, y: 117.44 }, + { l: 50.0, x: 6.333, y: 117.938 }, + { l: 50.0, x: 6.417, y: 118.432 }, + { l: 50.0, x: 6.5, y: 118.93 }, + { l: 50.0, x: 6.583, y: 119.418 }, + { l: 50.0, x: 6.667, y: 119.912 }, + { l: 50.0, x: 6.75, y: 120.41 }, + { l: 50.0, x: 6.833, y: 120.898 }, + { l: 50.0, x: 6.917, y: 121.402 }, + { l: 50.0, x: 7, y: 121.9 }, + { l: 50.0, x: 7.083, y: 122.398 }, + { l: 50.0, x: 7.167, y: 122.902 }, + { l: 50.0, x: 7.25, y: 123.4 }, + { l: 50.0, x: 7.333, y: 123.898 }, + { l: 50.0, x: 7.417, y: 124.402 }, + { l: 50.0, x: 7.5, y: 124.9 }, + { l: 50.0, x: 7.583, y: 125.398 }, + { l: 50.0, x: 7.667, y: 125.892 }, + { l: 50.0, x: 7.75, y: 126.39 }, + { l: 50.0, x: 7.833, y: 126.8681 }, + { l: 50.0, x: 7.917, y: 127.362 }, + { l: 50.0, x: 8, y: 127.85 }, + { l: 50.0, x: 8.083, y: 128.3281 }, + { l: 50.0, x: 8.167, y: 128.8019 }, + { l: 50.0, x: 8.25, y: 129.27 }, + { l: 50.0, x: 8.333, y: 129.7381 }, + { l: 50.0, x: 8.417, y: 130.1918 }, + { l: 50.0, x: 8.5, y: 130.64 }, + { l: 50.0, x: 8.583, y: 131.0882 }, + { l: 50.0, x: 8.667, y: 131.5417 }, + { l: 50.0, x: 8.75, y: 131.97 }, + { l: 50.0, x: 8.833, y: 132.4082 }, + { l: 50.0, x: 8.917, y: 132.8418 }, + { l: 50.0, x: 9, y: 133.28 }, + { l: 50.0, x: 9.083, y: 133.7083 }, + { l: 50.0, x: 9.167, y: 134.1417 }, + { l: 50.0, x: 9.25, y: 134.57 }, + { l: 50.0, x: 9.333, y: 134.9883 }, + { l: 50.0, x: 9.417, y: 135.4217 }, + { l: 50.0, x: 9.5, y: 135.84 }, + { l: 50.0, x: 9.583, y: 136.2583 }, + { l: 50.0, x: 9.667, y: 136.6817 }, + { l: 50.0, x: 9.75, y: 137.1 }, + { l: 50.0, x: 9.833, y: 137.5283 }, + { l: 50.0, x: 9.917, y: 137.9617 }, + { l: 50.0, x: 10, y: 138.39 }, + { l: 50.0, x: 10.083, y: 138.8183 }, + { l: 50.0, x: 10.167, y: 139.2617 }, + { l: 50.0, x: 10.25, y: 139.69 }, + { l: 50.0, x: 10.333, y: 140.1183 }, + { l: 50.0, x: 10.417, y: 140.5417 }, + { l: 50.0, x: 10.5, y: 140.96 }, + { l: 50.0, x: 10.583, y: 141.3684 }, + { l: 50.0, x: 10.667, y: 141.7816 }, + { l: 50.0, x: 10.75, y: 142.18 }, + { l: 50.0, x: 10.833, y: 142.5784 }, + { l: 50.0, x: 10.917, y: 142.9816 }, + { l: 50.0, x: 11, y: 143.37 }, + { l: 50.0, x: 11.083, y: 143.7684 }, + { l: 50.0, x: 11.167, y: 144.1616 }, + { l: 50.0, x: 11.25, y: 144.55 }, + { l: 50.0, x: 11.333, y: 144.9484 }, + { l: 50.0, x: 11.417, y: 145.3416 }, + { l: 50.0, x: 11.5, y: 145.75 }, + { l: 50.0, x: 11.583, y: 146.1583 }, + { l: 50.0, x: 11.667, y: 146.5817 }, + { l: 50.0, x: 11.75, y: 147.02 }, + { l: 50.0, x: 11.833, y: 147.4582 }, + { l: 50.0, x: 11.917, y: 147.9118 }, + { l: 50.0, x: 12, y: 148.36 }, + { l: 50.0, x: 12.083, y: 148.8281 }, + { l: 50.0, x: 12.167, y: 149.312 }, + { l: 50.0, x: 12.25, y: 149.81 }, + { l: 50.0, x: 12.333, y: 150.308 }, + { l: 50.0, x: 12.417, y: 150.8321 }, + { l: 50.0, x: 12.5, y: 151.35 }, + { l: 50.0, x: 12.583, y: 151.8878 }, + { l: 50.0, x: 12.667, y: 152.4422 }, + { l: 50.0, x: 12.75, y: 153.0 }, + { l: 50.0, x: 12.833, y: 153.5777 }, + { l: 50.0, x: 12.917, y: 154.1724 }, + { l: 50.0, x: 13, y: 154.77 }, + { l: 50.0, x: 13.083, y: 155.3775 }, + { l: 50.0, x: 13.167, y: 156.0025 }, + { l: 50.0, x: 13.25, y: 156.63 }, + { l: 50.0, x: 13.333, y: 157.2674 }, + { l: 50.0, x: 13.417, y: 157.9126 }, + { l: 50.0, x: 13.5, y: 158.55 }, + { l: 50.0, x: 13.583, y: 159.1974 }, + { l: 50.0, x: 13.667, y: 159.8425 }, + { l: 50.0, x: 13.75, y: 160.47 }, + { l: 50.0, x: 13.833, y: 161.1074 }, + { l: 50.0, x: 13.917, y: 161.7425 }, + { l: 50.0, x: 14, y: 162.36 }, + { l: 50.0, x: 14.083, y: 162.9676 }, + { l: 50.0, x: 14.167, y: 163.5824 }, + { l: 50.0, x: 14.25, y: 164.17 }, + { l: 50.0, x: 14.333, y: 164.7477 }, + { l: 50.0, x: 14.417, y: 165.3322 }, + { l: 50.0, x: 14.5, y: 165.88 }, + { l: 50.0, x: 14.583, y: 166.4278 }, + { l: 50.0, x: 14.667, y: 166.9621 }, + { l: 50.0, x: 14.75, y: 167.48 }, + { l: 50.0, x: 14.833, y: 167.978 }, + { l: 50.0, x: 14.917, y: 168.4719 }, + { l: 50.0, x: 15, y: 168.94 }, + { l: 50.0, x: 15.083, y: 169.3982 }, + { l: 50.0, x: 15.167, y: 169.8417 }, + { l: 50.0, x: 15.25, y: 170.26 }, + { l: 50.0, x: 15.333, y: 170.6684 }, + { l: 50.0, x: 15.417, y: 171.0615 }, + { l: 50.0, x: 15.5, y: 171.43 }, + { l: 50.0, x: 15.583, y: 171.7886 }, + { l: 50.0, x: 15.667, y: 172.1414 }, + { l: 50.0, x: 15.75, y: 172.48 }, + { l: 50.0, x: 15.833, y: 172.7888 }, + { l: 50.0, x: 15.917, y: 173.1012 }, + { l: 50.0, x: 16, y: 173.39 }, + { l: 50.0, x: 16.083, y: 173.6589 }, + { l: 50.0, x: 16.167, y: 173.931 }, + { l: 50.0, x: 16.25, y: 174.18 }, + { l: 50.0, x: 16.333, y: 174.4191 }, + { l: 50.0, x: 16.417, y: 174.6409 }, + { l: 50.0, x: 16.5, y: 174.86 }, + { l: 50.0, x: 16.583, y: 175.0592 }, + { l: 50.0, x: 16.667, y: 175.2507 }, + { l: 50.0, x: 16.75, y: 175.43 }, + { l: 50.0, x: 16.833, y: 175.6093 }, + { l: 50.0, x: 16.917, y: 175.7706 }, + { l: 50.0, x: 17, y: 175.92 }, + { l: 50.0, x: 17.083, y: 176.0694 }, + { l: 50.0, x: 17.167, y: 176.2105 }, + { l: 50.0, x: 17.25, y: 176.33 }, + { l: 50.0, x: 17.333, y: 176.4495 }, + { l: 50.0, x: 17.417, y: 176.5704 }, + { l: 50.0, x: 17.5, y: 176.67 }, + { l: 50.0, x: 17.583, y: 176.7596 }, + { l: 50.0, x: 17.667, y: 176.8503 }, + { l: 50.0, x: 17.75, y: 176.92 }, + { l: 50.0, x: 17.833, y: 176.9897 }, + { l: 50.0, x: 17.917, y: 177.0402 }, + { l: 50.0, x: 18, y: 177.09 }, + { l: 50.0, x: 18.083, y: 177.1298 }, + { l: 50.0, x: 18.167, y: 177.1701 }, + { l: 50.0, x: 18.25, y: 177.2 }, + { l: 50.0, x: 18.333, y: 177.2299 }, + { l: 50.0, x: 18.417, y: 177.2501 }, + { l: 50.0, x: 18.5, y: 177.26 }, + { l: 50.0, x: 18.583, y: 177.27 }, + { l: 50.0, x: 18.667, y: 177.27 }, + { l: 50.0, x: 18.75, y: 177.28 }, + { l: 50.0, x: 18.833, y: 177.28 }, + { l: 50.0, x: 18.917, y: 177.28 }, + { l: 50.0, x: 19, y: 177.28 }, + { l: 50.0, x: 19.083, y: 177.29 }, + { l: 50.0, x: 19.167, y: 177.29 }, + { l: 50.0, x: 19.25, y: 177.29 }, + { l: 50.0, x: 19.333, y: 177.3 }, + { l: 50.0, x: 19.417, y: 177.3 }, + { l: 50.0, x: 19.5, y: 177.3 }, + { l: 50.0, x: 19.583, y: 177.3 }, + { l: 50.0, x: 19.667, y: 177.3 }, + { l: 50.0, x: 19.75, y: 177.31 }, + { l: 50.0, x: 19.833, y: 177.32 }, + { l: 50.0, x: 19.917, y: 177.33 }, ], }, { sds: 0.67, centile: 75.0, data: [ - { - l: '75.0', - x: 4.0, - y: 105.2285, - }, - { - l: '75.0', - x: 4.0833, - y: 105.8227, - }, - { - l: '75.0', - x: 4.1667, - y: 106.4265, - }, - { - l: '75.0', - x: 4.25, - y: 107.0305, - }, - { - l: '75.0', - x: 4.3333, - y: 107.6345, - }, - { - l: '75.0', - x: 4.4167, - y: 108.2584, - }, - { - l: '75.0', - x: 4.5, - y: 108.8818, - }, - { - l: '75.0', - x: 4.5833, - y: 109.5059, - }, - { - l: '75.0', - x: 4.6667, - y: 110.139, - }, - { - l: '75.0', - x: 4.75, - y: 110.7618, - }, - { - l: '75.0', - x: 4.8333, - y: 111.384, - }, - { - l: '75.0', - x: 4.9167, - y: 112.0063, - }, - { - l: '75.0', - x: 5.0, - y: 112.6081, - }, - { - l: '75.0', - x: 5.0833, - y: 113.1982, - }, - { - l: '75.0', - x: 5.1667, - y: 113.7891, - }, - { - l: '75.0', - x: 5.25, - y: 114.358, - }, - { - l: '75.0', - x: 5.3333, - y: 114.9071, - }, - { - l: '75.0', - x: 5.4167, - y: 115.4658, - }, - { - l: '75.0', - x: 5.5, - y: 116.004, - }, - { - l: '75.0', - x: 5.5833, - y: 116.532, - }, - { - l: '75.0', - x: 5.6667, - y: 117.0695, - }, - { - l: '75.0', - x: 5.75, - y: 117.5967, - }, - { - l: '75.0', - x: 5.8333, - y: 118.124, - }, - { - l: '75.0', - x: 5.9167, - y: 118.6513, - }, - { - l: '75.0', - x: 6.0, - y: 119.1683, - }, - { - l: '75.0', - x: 6.0833, - y: 119.6949, - }, - { - l: '75.0', - x: 6.1667, - y: 120.212, - }, - { - l: '75.0', - x: 6.25, - y: 120.7283, - }, - { - l: '75.0', - x: 6.3333, - y: 121.2447, - }, - { - l: '75.0', - x: 6.4167, - y: 121.7508, - }, - { - l: '75.0', - x: 6.5, - y: 122.2672, - }, - { - l: '75.0', - x: 6.5833, - y: 122.7733, - }, - { - l: '75.0', - x: 6.6667, - y: 123.2803, - }, - { - l: '75.0', - x: 6.75, - y: 123.7967, - }, - { - l: '75.0', - x: 6.8333, - y: 124.3037, - }, - { - l: '75.0', - x: 6.9167, - y: 124.8211, - }, - { - l: '75.0', - x: 7.0, - y: 125.3384, - }, - { - l: '75.0', - x: 7.0833, - y: 125.8566, - }, - { - l: '75.0', - x: 7.1667, - y: 126.374, - }, - { - l: '75.0', - x: 7.25, - y: 126.8922, - }, - { - l: '75.0', - x: 7.3333, - y: 127.4097, - }, - { - l: '75.0', - x: 7.4167, - y: 127.928, - }, - { - l: '75.0', - x: 7.5, - y: 128.4463, - }, - { - l: '75.0', - x: 7.5833, - y: 128.9639, - }, - { - l: '75.0', - x: 7.6667, - y: 129.4712, - }, - { - l: '75.0', - x: 7.75, - y: 129.9896, - }, - { - l: '75.0', - x: 7.8333, - y: 130.4866, - }, - { - l: '75.0', - x: 7.9167, - y: 130.994, - }, - { - l: '75.0', - x: 8.0, - y: 131.5014, - }, - { - l: '75.0', - x: 8.0833, - y: 131.9994, - }, - { - l: '75.0', - x: 8.1667, - y: 132.4863, - }, - { - l: '75.0', - x: 8.25, - y: 132.9732, - }, - { - l: '75.0', - x: 8.3333, - y: 133.4609, - }, - { - l: '75.0', - x: 8.4167, - y: 133.9282, - }, - { - l: '75.0', - x: 8.5, - y: 134.3955, - }, - { - l: '75.0', - x: 8.5833, - y: 134.8636, - }, - { - l: '75.0', - x: 8.6667, - y: 135.3319, - }, - { - l: '75.0', - x: 8.75, - y: 135.7795, - }, - { - l: '75.0', - x: 8.8333, - y: 136.2384, - }, - { - l: '75.0', - x: 8.9167, - y: 136.687, - }, - { - l: '75.0', - x: 9.0, - y: 137.146, - }, - { - l: '75.0', - x: 9.0833, - y: 137.5956, - }, - { - l: '75.0', - x: 9.1667, - y: 138.0453, - }, - { - l: '75.0', - x: 9.25, - y: 138.4959, - }, - { - l: '75.0', - x: 9.3333, - y: 138.9353, - }, - { - l: '75.0', - x: 9.4167, - y: 139.3869, - }, - { - l: '75.0', - x: 9.5, - y: 139.8274, - }, - { - l: '75.0', - x: 9.5833, - y: 140.2688, - }, - { - l: '75.0', - x: 9.6667, - y: 140.7102, - }, - { - l: '75.0', - x: 9.75, - y: 141.1518, - }, - { - l: '75.0', - x: 9.8333, - y: 141.6046, - }, - { - l: '75.0', - x: 9.9167, - y: 142.0583, - }, - { - l: '75.0', - x: 10.0, - y: 142.5122, - }, - { - l: '75.0', - x: 10.0833, - y: 142.9661, - }, - { - l: '75.0', - x: 10.1667, - y: 143.4313, - }, - { - l: '75.0', - x: 10.25, - y: 143.8863, - }, - { - l: '75.0', - x: 10.3333, - y: 144.3423, - }, - { - l: '75.0', - x: 10.4167, - y: 144.7881, - }, - { - l: '75.0', - x: 10.5, - y: 145.2339, - }, - { - l: '75.0', - x: 10.5833, - y: 145.6695, - }, - { - l: '75.0', - x: 10.6667, - y: 146.1062, - }, - { - l: '75.0', - x: 10.75, - y: 146.5326, - }, - { - l: '75.0', - x: 10.8333, - y: 146.9591, - }, - { - l: '75.0', - x: 10.9167, - y: 147.3866, - }, - { - l: '75.0', - x: 11.0, - y: 147.803, - }, - { - l: '75.0', - x: 11.0833, - y: 148.2307, - }, - { - l: '75.0', - x: 11.1667, - y: 148.6482, - }, - { - l: '75.0', - x: 11.25, - y: 149.0667, - }, - { - l: '75.0', - x: 11.3333, - y: 149.4956, - }, - { - l: '75.0', - x: 11.4167, - y: 149.9143, - }, - { - l: '75.0', - x: 11.5, - y: 150.3538, - }, - { - l: '75.0', - x: 11.5833, - y: 150.7933, - }, - { - l: '75.0', - x: 11.6667, - y: 151.2452, - }, - { - l: '75.0', - x: 11.75, - y: 151.7168, - }, - { - l: '75.0', - x: 11.8333, - y: 152.1886, - }, - { - l: '75.0', - x: 11.9167, - y: 152.6717, - }, - { - l: '75.0', - x: 12.0, - y: 153.155, - }, - { - l: '75.0', - x: 12.0833, - y: 153.66, - }, - { - l: '75.0', - x: 12.1667, - y: 154.1745, - }, - { - l: '75.0', - x: 12.25, - y: 154.7098, - }, - { - l: '75.0', - x: 12.3333, - y: 155.2462, - }, - { - l: '75.0', - x: 12.4167, - y: 155.8024, - }, - { - l: '75.0', - x: 12.5, - y: 156.3587, - }, - { - l: '75.0', - x: 12.5833, - y: 156.9358, - }, - { - l: '75.0', - x: 12.6667, - y: 157.5223, - }, - { - l: '75.0', - x: 12.75, - y: 158.1194, - }, - { - l: '75.0', - x: 12.8333, - y: 158.7372, - }, - { - l: '75.0', - x: 12.9167, - y: 159.3635, - }, - { - l: '75.0', - x: 13.0, - y: 159.9992, - }, - { - l: '75.0', - x: 13.0833, - y: 160.6453, - }, - { - l: '75.0', - x: 13.1667, - y: 161.2988, - }, - { - l: '75.0', - x: 13.25, - y: 161.9627, - }, - { - l: '75.0', - x: 13.3333, - y: 162.634, - }, - { - l: '75.0', - x: 13.4167, - y: 163.3032, - }, - { - l: '75.0', - x: 13.5, - y: 163.9714, - }, - { - l: '75.0', - x: 13.5833, - y: 164.6468, - }, - { - l: '75.0', - x: 13.6667, - y: 165.3097, - }, - { - l: '75.0', - x: 13.75, - y: 165.9591, - }, - { - l: '75.0', - x: 13.8333, - y: 166.6157, - }, - { - l: '75.0', - x: 13.9167, - y: 167.2607, - }, - { - l: '75.0', - x: 14.0, - y: 167.8911, - }, - { - l: '75.0', - x: 14.0833, - y: 168.5088, - }, - { - l: '75.0', - x: 14.1667, - y: 169.1232, - }, - { - l: '75.0', - x: 14.25, - y: 169.7135, - }, - { - l: '75.0', - x: 14.3333, - y: 170.2911, - }, - { - l: '75.0', - x: 14.4167, - y: 170.8664, - }, - { - l: '75.0', - x: 14.5, - y: 171.4071, - }, - { - l: '75.0', - x: 14.5833, - y: 171.9455, - }, - { - l: '75.0', - x: 14.6667, - y: 172.4608, - }, - { - l: '75.0', - x: 14.75, - y: 172.9644, - }, - { - l: '75.0', - x: 14.8333, - y: 173.4438, - }, - { - l: '75.0', - x: 14.9167, - y: 173.9127, - }, - { - l: '75.0', - x: 15.0, - y: 174.3585, - }, - { - l: '75.0', - x: 15.0833, - y: 174.7937, - }, - { - l: '75.0', - x: 15.1667, - y: 175.2069, - }, - { - l: '75.0', - x: 15.25, - y: 175.5982, - }, - { - l: '75.0', - x: 15.3333, - y: 175.979, - }, - { - l: '75.0', - x: 15.4167, - y: 176.3401, - }, - { - l: '75.0', - x: 15.5, - y: 176.6803, - }, - { - l: '75.0', - x: 15.5833, - y: 177.0101, - }, - { - l: '75.0', - x: 15.6667, - y: 177.3294, - }, - { - l: '75.0', - x: 15.75, - y: 177.6406, - }, - { - l: '75.0', - x: 15.8333, - y: 177.9207, - }, - { - l: '75.0', - x: 15.9167, - y: 178.2018, - }, - { - l: '75.0', - x: 16.0, - y: 178.4634, - }, - { - l: '75.0', - x: 16.0833, - y: 178.7054, - }, - { - l: '75.0', - x: 16.1667, - y: 178.9485, - }, - { - l: '75.0', - x: 16.25, - y: 179.1732, - }, - { - l: '75.0', - x: 16.3333, - y: 179.3886, - }, - { - l: '75.0', - x: 16.4167, - y: 179.5835, - }, - { - l: '75.0', - x: 16.5, - y: 179.7817, - }, - { - l: '75.0', - x: 16.5833, - y: 179.9593, - }, - { - l: '75.0', - x: 16.6667, - y: 180.1278, - }, - { - l: '75.0', - x: 16.75, - y: 180.2882, - }, - { - l: '75.0', - x: 16.8333, - y: 180.4498, - }, - { - l: '75.0', - x: 16.9167, - y: 180.5908, - }, - { - l: '75.0', - x: 17.0, - y: 180.7238, - }, - { - l: '75.0', - x: 17.0833, - y: 180.8579, - }, - { - l: '75.0', - x: 17.1667, - y: 180.9829, - }, - { - l: '75.0', - x: 17.25, - y: 181.0874, - }, - { - l: '75.0', - x: 17.3333, - y: 181.1942, - }, - { - l: '75.0', - x: 17.4167, - y: 181.3021, - }, - { - l: '75.0', - x: 17.5, - y: 181.3906, - }, - { - l: '75.0', - x: 17.5833, - y: 181.4701, - }, - { - l: '75.0', - x: 17.6667, - y: 181.5507, - }, - { - l: '75.0', - x: 17.75, - y: 181.6131, - }, - { - l: '75.0', - x: 17.8333, - y: 181.6755, - }, - { - l: '75.0', - x: 17.9167, - y: 181.7186, - }, - { - l: '75.0', - x: 18.0, - y: 181.7628, - }, - { - l: '75.0', - x: 18.0833, - y: 181.798, - }, - { - l: '75.0', - x: 18.1667, - y: 181.8331, - }, - { - l: '75.0', - x: 18.25, - y: 181.8604, - }, - { - l: '75.0', - x: 18.3333, - y: 181.8876, - }, - { - l: '75.0', - x: 18.4167, - y: 181.9058, - }, - { - l: '75.0', - x: 18.5, - y: 181.9137, - }, - { - l: '75.0', - x: 18.5833, - y: 181.9227, - }, - { - l: '75.0', - x: 18.6667, - y: 181.9216, - }, - { - l: '75.0', - x: 18.75, - y: 181.9318, - }, - { - l: '75.0', - x: 18.8333, - y: 181.9318, - }, - { - l: '75.0', - x: 18.9167, - y: 181.9318, - }, - { - l: '75.0', - x: 19.0, - y: 181.9306, - }, - { - l: '75.0', - x: 19.0833, - y: 181.9409, - }, - { - l: '75.0', - x: 19.1667, - y: 181.9397, - }, - { - l: '75.0', - x: 19.25, - y: 181.9397, - }, - { - l: '75.0', - x: 19.3333, - y: 181.95, - }, - { - l: '75.0', - x: 19.4167, - y: 181.95, - }, - { - l: '75.0', - x: 19.5, - y: 181.95, - }, - { - l: '75.0', - x: 19.5833, - y: 181.9488, - }, - { - l: '75.0', - x: 19.6667, - y: 181.9488, - }, - { - l: '75.0', - x: 19.75, - y: 181.9579, - }, - { - l: '75.0', - x: 19.8333, - y: 181.967, - }, - { - l: '75.0', - x: 19.9167, - y: 181.976, - }, - { - l: '75.0', - x: 20.0, - y: 181.9851, - }, - { - l: '75.0', - x: 20.0, - y: 181.9851, - }, + { l: 75.0, x: 4, y: 105.2607 }, + { l: 75.0, x: 4.083, y: 105.8528 }, + { l: 75.0, x: 4.167, y: 106.4617 }, + { l: 75.0, x: 4.25, y: 107.0635 }, + { l: 75.0, x: 4.333, y: 107.6654 }, + { l: 75.0, x: 4.417, y: 108.2945 }, + { l: 75.0, x: 4.5, y: 108.9156 }, + { l: 75.0, x: 4.583, y: 109.5376 }, + { l: 75.0, x: 4.667, y: 110.1759 }, + { l: 75.0, x: 4.75, y: 110.7965 }, + { l: 75.0, x: 4.833, y: 111.4165 }, + { l: 75.0, x: 4.917, y: 112.044 }, + { l: 75.0, x: 5, y: 112.6436 }, + { l: 75.0, x: 5.083, y: 113.2316 }, + { l: 75.0, x: 5.167, y: 113.8274 }, + { l: 75.0, x: 5.25, y: 114.3942 }, + { l: 75.0, x: 5.333, y: 114.9413 }, + { l: 75.0, x: 5.417, y: 115.5046 }, + { l: 75.0, x: 5.5, y: 116.0408 }, + { l: 75.0, x: 5.583, y: 116.5669 }, + { l: 75.0, x: 5.667, y: 117.1088 }, + { l: 75.0, x: 5.75, y: 117.6341 }, + { l: 75.0, x: 5.833, y: 118.1595 }, + { l: 75.0, x: 5.917, y: 118.6912 }, + { l: 75.0, x: 6, y: 119.2064 }, + { l: 75.0, x: 6.083, y: 119.731 }, + { l: 75.0, x: 6.167, y: 120.2525 }, + { l: 75.0, x: 6.25, y: 120.767 }, + { l: 75.0, x: 6.333, y: 121.2815 }, + { l: 75.0, x: 6.417, y: 121.7919 }, + { l: 75.0, x: 6.5, y: 122.3064 }, + { l: 75.0, x: 6.583, y: 122.8107 }, + { l: 75.0, x: 6.667, y: 123.3219 }, + { l: 75.0, x: 6.75, y: 123.8365 }, + { l: 75.0, x: 6.833, y: 124.3417 }, + { l: 75.0, x: 6.917, y: 124.8633 }, + { l: 75.0, x: 7, y: 125.3788 }, + { l: 75.0, x: 7.083, y: 125.8951 }, + { l: 75.0, x: 7.167, y: 126.4169 }, + { l: 75.0, x: 7.25, y: 126.9333 }, + { l: 75.0, x: 7.333, y: 127.4488 }, + { l: 75.0, x: 7.417, y: 127.9715 }, + { l: 75.0, x: 7.5, y: 128.488 }, + { l: 75.0, x: 7.583, y: 129.0037 }, + { l: 75.0, x: 7.667, y: 129.5153 }, + { l: 75.0, x: 7.75, y: 130.0319 }, + { l: 75.0, x: 7.833, y: 130.5271 }, + { l: 75.0, x: 7.917, y: 131.0387 }, + { l: 75.0, x: 8, y: 131.5443 }, + { l: 75.0, x: 8.083, y: 132.0405 }, + { l: 75.0, x: 8.167, y: 132.5315 }, + { l: 75.0, x: 8.25, y: 133.0167 }, + { l: 75.0, x: 8.333, y: 133.5027 }, + { l: 75.0, x: 8.417, y: 133.974 }, + { l: 75.0, x: 8.5, y: 134.4396 }, + { l: 75.0, x: 8.583, y: 134.9061 }, + { l: 75.0, x: 8.667, y: 135.3782 }, + { l: 75.0, x: 8.75, y: 135.8243 }, + { l: 75.0, x: 8.833, y: 136.2816 }, + { l: 75.0, x: 8.917, y: 136.7341 }, + { l: 75.0, x: 9, y: 137.1914 }, + { l: 75.0, x: 9.083, y: 137.6395 }, + { l: 75.0, x: 9.167, y: 138.093 }, + { l: 75.0, x: 9.25, y: 138.542 }, + { l: 75.0, x: 9.333, y: 138.9799 }, + { l: 75.0, x: 9.417, y: 139.4353 }, + { l: 75.0, x: 9.5, y: 139.8742 }, + { l: 75.0, x: 9.583, y: 140.3141 }, + { l: 75.0, x: 9.667, y: 140.7594 }, + { l: 75.0, x: 9.75, y: 141.1994 }, + { l: 75.0, x: 9.833, y: 141.6506 }, + { l: 75.0, x: 9.917, y: 142.1083 }, + { l: 75.0, x: 10, y: 142.5606 }, + { l: 75.0, x: 10.083, y: 143.013 }, + { l: 75.0, x: 10.167, y: 143.4821 }, + { l: 75.0, x: 10.25, y: 143.9356 }, + { l: 75.0, x: 10.333, y: 144.3901 }, + { l: 75.0, x: 10.417, y: 144.8398 }, + { l: 75.0, x: 10.5, y: 145.2841 }, + { l: 75.0, x: 10.583, y: 145.7183 }, + { l: 75.0, x: 10.667, y: 146.1587 }, + { l: 75.0, x: 10.75, y: 146.5837 }, + { l: 75.0, x: 10.833, y: 147.0089 }, + { l: 75.0, x: 10.917, y: 147.4401 }, + { l: 75.0, x: 11, y: 147.8551 }, + { l: 75.0, x: 11.083, y: 148.2814 }, + { l: 75.0, x: 11.167, y: 148.7026 }, + { l: 75.0, x: 11.25, y: 149.1198 }, + { l: 75.0, x: 11.333, y: 149.5473 }, + { l: 75.0, x: 11.417, y: 149.9698 }, + { l: 75.0, x: 11.5, y: 150.4079 }, + { l: 75.0, x: 11.583, y: 150.8459 }, + { l: 75.0, x: 11.667, y: 151.3018 }, + { l: 75.0, x: 11.75, y: 151.772 }, + { l: 75.0, x: 11.833, y: 152.2422 }, + { l: 75.0, x: 11.917, y: 152.7296 }, + { l: 75.0, x: 12, y: 153.2113 }, + { l: 75.0, x: 12.083, y: 153.7147 }, + { l: 75.0, x: 12.167, y: 154.2338 }, + { l: 75.0, x: 12.25, y: 154.7674 }, + { l: 75.0, x: 12.333, y: 155.302 }, + { l: 75.0, x: 12.417, y: 155.863 }, + { l: 75.0, x: 12.5, y: 156.4175 }, + { l: 75.0, x: 12.583, y: 156.9927 }, + { l: 75.0, x: 12.667, y: 157.5844 }, + { l: 75.0, x: 12.75, y: 158.1795 }, + { l: 75.0, x: 12.833, y: 158.7953 }, + { l: 75.0, x: 12.917, y: 159.427 }, + { l: 75.0, x: 13, y: 160.0606 }, + { l: 75.0, x: 13.083, y: 160.7046 }, + { l: 75.0, x: 13.167, y: 161.3637 }, + { l: 75.0, x: 13.25, y: 162.0254 }, + { l: 75.0, x: 13.333, y: 162.6943 }, + { l: 75.0, x: 13.417, y: 163.3692 }, + { l: 75.0, x: 13.5, y: 164.0351 }, + { l: 75.0, x: 13.583, y: 164.7081 }, + { l: 75.0, x: 13.667, y: 165.3766 }, + { l: 75.0, x: 13.75, y: 166.0236 }, + { l: 75.0, x: 13.833, y: 166.6777 }, + { l: 75.0, x: 13.917, y: 167.3281 }, + { l: 75.0, x: 14, y: 167.9561 }, + { l: 75.0, x: 14.083, y: 168.5714 }, + { l: 75.0, x: 14.167, y: 169.1907 }, + { l: 75.0, x: 14.25, y: 169.7786 }, + { l: 75.0, x: 14.333, y: 170.3539 }, + { l: 75.0, x: 14.417, y: 170.9336 }, + { l: 75.0, x: 14.5, y: 171.4721 }, + { l: 75.0, x: 14.583, y: 172.0082 }, + { l: 75.0, x: 14.667, y: 172.5275 }, + { l: 75.0, x: 14.75, y: 173.0289 }, + { l: 75.0, x: 14.833, y: 173.5061 }, + { l: 75.0, x: 14.917, y: 173.9785 }, + { l: 75.0, x: 15, y: 174.4221 }, + { l: 75.0, x: 15.083, y: 174.8554 }, + { l: 75.0, x: 15.167, y: 175.2716 }, + { l: 75.0, x: 15.25, y: 175.6609 }, + { l: 75.0, x: 15.333, y: 176.0399 }, + { l: 75.0, x: 15.417, y: 176.4035 }, + { l: 75.0, x: 15.5, y: 176.742 }, + { l: 75.0, x: 15.583, y: 177.0702 }, + { l: 75.0, x: 15.667, y: 177.3917 }, + { l: 75.0, x: 15.75, y: 177.7012 }, + { l: 75.0, x: 15.833, y: 177.9799 }, + { l: 75.0, x: 15.917, y: 178.2629 }, + { l: 75.0, x: 16, y: 178.523 }, + { l: 75.0, x: 16.083, y: 178.7637 }, + { l: 75.0, x: 16.167, y: 179.0084 }, + { l: 75.0, x: 16.25, y: 179.2318 }, + { l: 75.0, x: 16.333, y: 179.4462 }, + { l: 75.0, x: 16.417, y: 179.6424 }, + { l: 75.0, x: 16.5, y: 179.8396 }, + { l: 75.0, x: 16.583, y: 180.0162 }, + { l: 75.0, x: 16.667, y: 180.1858 }, + { l: 75.0, x: 16.75, y: 180.3453 }, + { l: 75.0, x: 16.833, y: 180.5061 }, + { l: 75.0, x: 16.917, y: 180.648 }, + { l: 75.0, x: 17, y: 180.7802 }, + { l: 75.0, x: 17.083, y: 180.9137 }, + { l: 75.0, x: 17.167, y: 181.0395 }, + { l: 75.0, x: 17.25, y: 181.1433 }, + { l: 75.0, x: 17.333, y: 181.2495 }, + { l: 75.0, x: 17.417, y: 181.3581 }, + { l: 75.0, x: 17.5, y: 181.4461 }, + { l: 75.0, x: 17.583, y: 181.5251 }, + { l: 75.0, x: 17.667, y: 181.6062 }, + { l: 75.0, x: 17.75, y: 181.6682 }, + { l: 75.0, x: 17.833, y: 181.7303 }, + { l: 75.0, x: 17.917, y: 181.7737 }, + { l: 75.0, x: 18, y: 181.8177 }, + { l: 75.0, x: 18.083, y: 181.8527 }, + { l: 75.0, x: 18.167, y: 181.888 }, + { l: 75.0, x: 18.25, y: 181.9151 }, + { l: 75.0, x: 18.333, y: 181.9422 }, + { l: 75.0, x: 18.417, y: 181.9605 }, + { l: 75.0, x: 18.5, y: 181.9683 }, + { l: 75.0, x: 18.583, y: 181.9774 }, + { l: 75.0, x: 18.667, y: 181.9763 }, + { l: 75.0, x: 18.75, y: 181.9865 }, + { l: 75.0, x: 18.833, y: 181.9865 }, + { l: 75.0, x: 18.917, y: 181.9865 }, + { l: 75.0, x: 19, y: 181.9853 }, + { l: 75.0, x: 19.083, y: 181.9955 }, + { l: 75.0, x: 19.167, y: 181.9944 }, + { l: 75.0, x: 19.25, y: 181.9944 }, + { l: 75.0, x: 19.333, y: 182.0046 }, + { l: 75.0, x: 19.417, y: 182.0046 }, + { l: 75.0, x: 19.5, y: 182.0046 }, + { l: 75.0, x: 19.583, y: 182.0034 }, + { l: 75.0, x: 19.667, y: 182.0035 }, + { l: 75.0, x: 19.75, y: 182.0125 }, + { l: 75.0, x: 19.833, y: 182.0215 }, + { l: 75.0, x: 19.917, y: 182.0307 }, ], }, { - sds: 1.33, + sds: 1.34, centile: 91.0, data: [ - { - l: '91.0', - x: 4.0, - y: 107.9671, - }, - { - l: '91.0', - x: 4.0833, - y: 108.5854, - }, - { - l: '91.0', - x: 4.1667, - y: 109.2131, - }, - { - l: '91.0', - x: 4.25, - y: 109.8409, - }, - { - l: '91.0', - x: 4.3333, - y: 110.469, - }, - { - l: '91.0', - x: 4.4167, - y: 111.1169, - }, - { - l: '91.0', - x: 4.5, - y: 111.7636, - }, - { - l: '91.0', - x: 4.5833, - y: 112.4118, - }, - { - l: '91.0', - x: 4.6667, - y: 113.068, - }, - { - l: '91.0', - x: 4.75, - y: 113.7137, - }, - { - l: '91.0', - x: 4.8333, - y: 114.3581, - }, - { - l: '91.0', - x: 4.9167, - y: 115.0026, - }, - { - l: '91.0', - x: 5.0, - y: 115.6262, - }, - { - l: '91.0', - x: 5.0833, - y: 116.2364, - }, - { - l: '91.0', - x: 5.1667, - y: 116.8482, - }, - { - l: '91.0', - x: 5.25, - y: 117.436, - }, - { - l: '91.0', - x: 5.3333, - y: 118.0043, - }, - { - l: '91.0', - x: 5.4167, - y: 118.5817, - }, - { - l: '91.0', - x: 5.5, - y: 119.138, - }, - { - l: '91.0', - x: 5.5833, - y: 119.6839, - }, - { - l: '91.0', - x: 5.6667, - y: 120.2389, - }, - { - l: '91.0', - x: 5.75, - y: 120.7834, - }, - { - l: '91.0', - x: 5.8333, - y: 121.3279, - }, - { - l: '91.0', - x: 5.9167, - y: 121.8725, - }, - { - l: '91.0', - x: 6.0, - y: 122.4066, - }, - { - l: '91.0', - x: 6.0833, - y: 122.9498, - }, - { - l: '91.0', - x: 6.1667, - y: 123.484, - }, - { - l: '91.0', - x: 6.25, - y: 124.0166, - }, - { - l: '91.0', - x: 6.3333, - y: 124.5494, - }, - { - l: '91.0', - x: 6.4167, - y: 125.0716, - }, - { - l: '91.0', - x: 6.5, - y: 125.6044, - }, - { - l: '91.0', - x: 6.5833, - y: 126.1266, - }, - { - l: '91.0', - x: 6.6667, - y: 126.6505, - }, - { - l: '91.0', - x: 6.75, - y: 127.1835, - }, - { - l: '91.0', - x: 6.8333, - y: 127.7075, - }, - { - l: '91.0', - x: 6.9167, - y: 128.2421, - }, - { - l: '91.0', - x: 7.0, - y: 128.7768, - }, - { - l: '91.0', - x: 7.0833, - y: 129.3132, - }, - { - l: '91.0', - x: 7.1667, - y: 129.8479, - }, - { - l: '91.0', - x: 7.25, - y: 130.3844, - }, - { - l: '91.0', - x: 7.3333, - y: 130.9193, - }, - { - l: '91.0', - x: 7.4167, - y: 131.456, - }, - { - l: '91.0', - x: 7.5, - y: 131.9927, - }, - { - l: '91.0', - x: 7.5833, - y: 132.5277, - }, - { - l: '91.0', - x: 7.6667, - y: 133.0523, - }, - { - l: '91.0', - x: 7.75, - y: 133.5892, - }, - { - l: '91.0', - x: 7.8333, - y: 134.1033, - }, - { - l: '91.0', - x: 7.9167, - y: 134.628, - }, - { - l: '91.0', - x: 8.0, - y: 135.1528, - }, - { - l: '91.0', - x: 8.0833, - y: 135.6688, - }, - { - l: '91.0', - x: 8.1667, - y: 136.1725, - }, - { - l: '91.0', - x: 8.25, - y: 136.6763, - }, - { - l: '91.0', - x: 8.3333, - y: 137.1819, - }, - { - l: '91.0', - x: 8.4167, - y: 137.6664, - }, - { - l: '91.0', - x: 8.5, - y: 138.1509, - }, - { - l: '91.0', - x: 8.5833, - y: 138.6373, - }, - { - l: '91.0', - x: 8.6667, - y: 139.1237, - }, - { - l: '91.0', - x: 8.75, - y: 139.5891, - }, - { - l: '91.0', - x: 8.8333, - y: 140.0668, - }, - { - l: '91.0', - x: 8.9167, - y: 140.5341, - }, - { - l: '91.0', - x: 9.0, - y: 141.012, - }, - { - l: '91.0', - x: 9.0833, - y: 141.4812, - }, - { - l: '91.0', - x: 9.1667, - y: 141.9505, - }, - { - l: '91.0', - x: 9.25, - y: 142.4217, - }, - { - l: '91.0', - x: 9.3333, - y: 142.8806, - }, - { - l: '91.0', - x: 9.4167, - y: 143.3538, - }, - { - l: '91.0', - x: 9.5, - y: 143.8147, - }, - { - l: '91.0', - x: 9.5833, - y: 144.2775, - }, - { - l: '91.0', - x: 9.6667, - y: 144.7405, - }, - { - l: '91.0', - x: 9.75, - y: 145.2035, - }, - { - l: '91.0', - x: 9.8333, - y: 145.6791, - }, - { - l: '91.0', - x: 9.9167, - y: 146.1567, - }, - { - l: '91.0', - x: 10.0, - y: 146.6344, - }, - { - l: '91.0', - x: 10.0833, - y: 147.1122, - }, - { - l: '91.0', - x: 10.1667, - y: 147.6026, - }, - { - l: '91.0', - x: 10.25, - y: 148.0826, - }, - { - l: '91.0', - x: 10.3333, - y: 148.5646, - }, - { - l: '91.0', - x: 10.4167, - y: 149.0361, - }, - { - l: '91.0', - x: 10.5, - y: 149.5078, - }, - { - l: '91.0', - x: 10.5833, - y: 149.9691, - }, - { - l: '91.0', - x: 10.6667, - y: 150.4324, - }, - { - l: '91.0', - x: 10.75, - y: 150.8852, - }, - { - l: '91.0', - x: 10.8333, - y: 151.3382, - }, - { - l: '91.0', - x: 10.9167, - y: 151.7933, - }, - { - l: '91.0', - x: 11.0, - y: 152.236, - }, - { - l: '91.0', - x: 11.0833, - y: 152.6914, - }, - { - l: '91.0', - x: 11.1667, - y: 153.1364, - }, - { - l: '91.0', - x: 11.25, - y: 153.5834, - }, - { - l: '91.0', - x: 11.3333, - y: 154.0413, - }, - { - l: '91.0', - x: 11.4167, - y: 154.4887, - }, - { - l: '91.0', - x: 11.5, - y: 154.9575, - }, - { - l: '91.0', - x: 11.5833, - y: 155.4265, - }, - { - l: '91.0', - x: 11.6667, - y: 155.9103, - }, - { - l: '91.0', - x: 11.75, - y: 156.4136, - }, - { - l: '91.0', - x: 11.8333, - y: 156.9171, - }, - { - l: '91.0', - x: 11.9167, - y: 157.4334, - }, - { - l: '91.0', - x: 12.0, - y: 157.95, - }, - { - l: '91.0', - x: 12.0833, - y: 158.4901, - }, - { - l: '91.0', - x: 12.1667, - y: 159.039, - }, - { - l: '91.0', - x: 12.25, - y: 159.6096, - }, - { - l: '91.0', - x: 12.3333, - y: 160.1824, - }, - { - l: '91.0', - x: 12.4167, - y: 160.7747, - }, - { - l: '91.0', - x: 12.5, - y: 161.3674, - }, - { - l: '91.0', - x: 12.5833, - y: 161.9816, - }, - { - l: '91.0', - x: 12.6667, - y: 162.6047, - }, - { - l: '91.0', - x: 12.75, - y: 163.2388, - }, - { - l: '91.0', - x: 12.8333, - y: 163.8944, - }, - { - l: '91.0', - x: 12.9167, - y: 164.5569, - }, - { - l: '91.0', - x: 13.0, - y: 165.2283, - }, - { - l: '91.0', - x: 13.0833, - y: 165.9106, - }, - { - l: '91.0', - x: 13.1667, - y: 166.5976, - }, - { - l: '91.0', - x: 13.25, - y: 167.2955, - }, - { - l: '91.0', - x: 13.3333, - y: 167.9979, - }, - { - l: '91.0', - x: 13.4167, - y: 168.6963, - }, - { - l: '91.0', - x: 13.5, - y: 169.3927, - }, - { - l: '91.0', - x: 13.5833, - y: 170.0935, - }, - { - l: '91.0', - x: 13.6667, - y: 170.7794, - }, - { - l: '91.0', - x: 13.75, - y: 171.4483, - }, - { - l: '91.0', - x: 13.8333, - y: 172.1213, - }, - { - l: '91.0', - x: 13.9167, - y: 172.7815, - }, - { - l: '91.0', - x: 14.0, - y: 173.4221, - }, - { - l: '91.0', - x: 14.0833, - y: 174.0476, - }, - { - l: '91.0', - x: 14.1667, - y: 174.6664, - }, - { - l: '91.0', - x: 14.25, - y: 175.2569, - }, - { - l: '91.0', - x: 14.3333, - y: 175.8322, - }, - { - l: '91.0', - x: 14.4167, - y: 176.4027, - }, - { - l: '91.0', - x: 14.5, - y: 176.9342, - }, - { - l: '91.0', - x: 14.5833, - y: 177.461, - }, - { - l: '91.0', - x: 14.6667, - y: 177.9616, - }, - { - l: '91.0', - x: 14.75, - y: 178.4488, - }, - { - l: '91.0', - x: 14.8333, - y: 178.9077, - }, - { - l: '91.0', - x: 14.9167, - y: 179.3554, - }, - { - l: '91.0', - x: 15.0, - y: 179.7769, - }, - { - l: '91.0', - x: 15.0833, - y: 180.1874, - }, - { - l: '91.0', - x: 15.1667, - y: 180.5739, - }, - { - l: '91.0', - x: 15.25, - y: 180.9364, - }, - { - l: '91.0', - x: 15.3333, - y: 181.2879, - }, - { - l: '91.0', - x: 15.4167, - y: 181.6201, - }, - { - l: '91.0', - x: 15.5, - y: 181.9307, - }, - { - l: '91.0', - x: 15.5833, - y: 182.2303, - }, - { - l: '91.0', - x: 15.6667, - y: 182.5189, - }, - { - l: '91.0', - x: 15.75, - y: 182.8012, - }, - { - l: '91.0', - x: 15.8333, - y: 183.0514, - }, - { - l: '91.0', - x: 15.9167, - y: 183.3037, - }, - { - l: '91.0', - x: 16.0, - y: 183.5368, - }, - { - l: '91.0', - x: 16.0833, - y: 183.7508, - }, - { - l: '91.0', - x: 16.1667, - y: 183.9669, - }, - { - l: '91.0', - x: 16.25, - y: 184.1663, - }, - { - l: '91.0', - x: 16.3333, - y: 184.3573, - }, - { - l: '91.0', - x: 16.4167, - y: 184.527, - }, - { - l: '91.0', - x: 16.5, - y: 184.7035, - }, - { - l: '91.0', - x: 16.5833, - y: 184.8587, - }, - { - l: '91.0', - x: 16.6667, - y: 185.0056, - }, - { - l: '91.0', - x: 16.75, - y: 185.1465, - }, - { - l: '91.0', - x: 16.8333, - y: 185.2896, - }, - { - l: '91.0', - x: 16.9167, - y: 185.4116, - }, - { - l: '91.0', - x: 17.0, - y: 185.5276, - }, - { - l: '91.0', - x: 17.0833, - y: 185.6459, - }, - { - l: '91.0', - x: 17.1667, - y: 185.7559, - }, - { - l: '91.0', - x: 17.25, - y: 185.8448, - }, - { - l: '91.0', - x: 17.3333, - y: 185.9383, - }, - { - l: '91.0', - x: 17.4167, - y: 186.0342, - }, - { - l: '91.0', - x: 17.5, - y: 186.1112, - }, - { - l: '91.0', - x: 17.5833, - y: 186.1801, - }, - { - l: '91.0', - x: 17.6667, - y: 186.2513, - }, - { - l: '91.0', - x: 17.75, - y: 186.3062, - }, - { - l: '91.0', - x: 17.8333, - y: 186.361, - }, - { - l: '91.0', - x: 17.9167, - y: 186.3972, - }, - { - l: '91.0', - x: 18.0, - y: 186.4356, - }, - { - l: '91.0', - x: 18.0833, - y: 186.4659, - }, - { - l: '91.0', - x: 18.1667, - y: 186.4962, - }, - { - l: '91.0', - x: 18.25, - y: 186.5207, - }, - { - l: '91.0', - x: 18.3333, - y: 186.5452, - }, - { - l: '91.0', - x: 18.4167, - y: 186.5615, - }, - { - l: '91.0', - x: 18.5, - y: 186.5673, - }, - { - l: '91.0', - x: 18.5833, - y: 186.5755, - }, - { - l: '91.0', - x: 18.6667, - y: 186.5731, - }, - { - l: '91.0', - x: 18.75, - y: 186.5837, - }, - { - l: '91.0', - x: 18.8333, - y: 186.5837, - }, - { - l: '91.0', - x: 18.9167, - y: 186.5837, - }, - { - l: '91.0', - x: 19.0, - y: 186.5813, - }, - { - l: '91.0', - x: 19.0833, - y: 186.5918, - }, - { - l: '91.0', - x: 19.1667, - y: 186.5895, - }, - { - l: '91.0', - x: 19.25, - y: 186.5895, - }, - { - l: '91.0', - x: 19.3333, - y: 186.6, - }, - { - l: '91.0', - x: 19.4167, - y: 186.6, - }, - { - l: '91.0', - x: 19.5, - y: 186.6, - }, - { - l: '91.0', - x: 19.5833, - y: 186.5976, - }, - { - l: '91.0', - x: 19.6667, - y: 186.5976, - }, - { - l: '91.0', - x: 19.75, - y: 186.6058, - }, - { - l: '91.0', - x: 19.8333, - y: 186.6139, - }, - { - l: '91.0', - x: 19.9167, - y: 186.6221, - }, - { - l: '91.0', - x: 20.0, - y: 186.6303, - }, - { - l: '91.0', - x: 20.0, - y: 186.6303, - }, + { l: 91.0, x: 4, y: 107.9977 }, + { l: 91.0, x: 4.083, y: 108.6139 }, + { l: 91.0, x: 4.167, y: 109.2468 }, + { l: 91.0, x: 4.25, y: 109.8724 }, + { l: 91.0, x: 4.333, y: 110.4982 }, + { l: 91.0, x: 4.417, y: 111.1515 }, + { l: 91.0, x: 4.5, y: 111.7958 }, + { l: 91.0, x: 4.583, y: 112.4418 }, + { l: 91.0, x: 4.667, y: 113.1034 }, + { l: 91.0, x: 4.75, y: 113.7467 }, + { l: 91.0, x: 4.833, y: 114.3888 }, + { l: 91.0, x: 4.917, y: 115.0387 }, + { l: 91.0, x: 5, y: 115.66 }, + { l: 91.0, x: 5.083, y: 116.268 }, + { l: 91.0, x: 5.167, y: 116.8849 }, + { l: 91.0, x: 5.25, y: 117.4705 }, + { l: 91.0, x: 5.333, y: 118.0367 }, + { l: 91.0, x: 5.417, y: 118.6188 }, + { l: 91.0, x: 5.5, y: 119.1731 }, + { l: 91.0, x: 5.583, y: 119.717 }, + { l: 91.0, x: 5.667, y: 120.2766 }, + { l: 91.0, x: 5.75, y: 120.8191 }, + { l: 91.0, x: 5.833, y: 121.3616 }, + { l: 91.0, x: 5.917, y: 121.9108 }, + { l: 91.0, x: 6, y: 122.4429 }, + { l: 91.0, x: 6.083, y: 122.9841 }, + { l: 91.0, x: 6.167, y: 123.5227 }, + { l: 91.0, x: 6.25, y: 124.0535 }, + { l: 91.0, x: 6.333, y: 124.5843 }, + { l: 91.0, x: 6.417, y: 125.1109 }, + { l: 91.0, x: 6.5, y: 125.6417 }, + { l: 91.0, x: 6.583, y: 126.1621 }, + { l: 91.0, x: 6.667, y: 126.6904 }, + { l: 91.0, x: 6.75, y: 127.2214 }, + { l: 91.0, x: 6.833, y: 127.7435 }, + { l: 91.0, x: 6.917, y: 128.2826 }, + { l: 91.0, x: 7, y: 128.8153 }, + { l: 91.0, x: 7.083, y: 129.3497 }, + { l: 91.0, x: 7.167, y: 129.889 }, + { l: 91.0, x: 7.25, y: 130.4236 }, + { l: 91.0, x: 7.333, y: 130.9565 }, + { l: 91.0, x: 7.417, y: 131.4976 }, + { l: 91.0, x: 7.5, y: 132.0324 }, + { l: 91.0, x: 7.583, y: 132.5655 }, + { l: 91.0, x: 7.667, y: 133.0946 }, + { l: 91.0, x: 7.75, y: 133.6295 }, + { l: 91.0, x: 7.833, y: 134.1417 }, + { l: 91.0, x: 7.917, y: 134.6708 }, + { l: 91.0, x: 8, y: 135.1937 }, + { l: 91.0, x: 8.083, y: 135.7078 }, + { l: 91.0, x: 8.167, y: 136.2158 }, + { l: 91.0, x: 8.25, y: 136.7178 }, + { l: 91.0, x: 8.333, y: 137.2216 }, + { l: 91.0, x: 8.417, y: 137.7102 }, + { l: 91.0, x: 8.5, y: 138.193 }, + { l: 91.0, x: 8.583, y: 138.6776 }, + { l: 91.0, x: 8.667, y: 139.1681 }, + { l: 91.0, x: 8.75, y: 139.6317 }, + { l: 91.0, x: 8.833, y: 140.1078 }, + { l: 91.0, x: 8.917, y: 140.5791 }, + { l: 91.0, x: 9, y: 141.0553 }, + { l: 91.0, x: 9.083, y: 141.5229 }, + { l: 91.0, x: 9.167, y: 141.9962 }, + { l: 91.0, x: 9.25, y: 142.4657 }, + { l: 91.0, x: 9.333, y: 142.923 }, + { l: 91.0, x: 9.417, y: 143.4001 }, + { l: 91.0, x: 9.5, y: 143.8594 }, + { l: 91.0, x: 9.583, y: 144.3206 }, + { l: 91.0, x: 9.667, y: 144.7875 }, + { l: 91.0, x: 9.75, y: 145.2489 }, + { l: 91.0, x: 9.833, y: 145.7228 }, + { l: 91.0, x: 9.917, y: 146.2045 }, + { l: 91.0, x: 10, y: 146.6805 }, + { l: 91.0, x: 10.083, y: 147.1567 }, + { l: 91.0, x: 10.167, y: 147.6513 }, + { l: 91.0, x: 10.25, y: 148.1296 }, + { l: 91.0, x: 10.333, y: 148.6099 }, + { l: 91.0, x: 10.417, y: 149.0856 }, + { l: 91.0, x: 10.5, y: 149.5557 }, + { l: 91.0, x: 10.583, y: 150.0154 }, + { l: 91.0, x: 10.667, y: 150.4826 }, + { l: 91.0, x: 10.75, y: 150.934 }, + { l: 91.0, x: 10.833, y: 151.3854 }, + { l: 91.0, x: 10.917, y: 151.8444 }, + { l: 91.0, x: 11, y: 152.2857 }, + { l: 91.0, x: 11.083, y: 152.7396 }, + { l: 91.0, x: 11.167, y: 153.1884 }, + { l: 91.0, x: 11.25, y: 153.634 }, + { l: 91.0, x: 11.333, y: 154.0903 }, + { l: 91.0, x: 11.417, y: 154.5417 }, + { l: 91.0, x: 11.5, y: 155.0091 }, + { l: 91.0, x: 11.583, y: 155.4765 }, + { l: 91.0, x: 11.667, y: 155.9645 }, + { l: 91.0, x: 11.75, y: 156.4662 }, + { l: 91.0, x: 11.833, y: 156.968 }, + { l: 91.0, x: 11.917, y: 157.4888 }, + { l: 91.0, x: 12, y: 158.0037 }, + { l: 91.0, x: 12.083, y: 158.542 }, + { l: 91.0, x: 12.167, y: 159.0958 }, + { l: 91.0, x: 12.25, y: 159.6644 }, + { l: 91.0, x: 12.333, y: 160.2353 }, + { l: 91.0, x: 12.417, y: 160.8328 }, + { l: 91.0, x: 12.5, y: 161.4234 }, + { l: 91.0, x: 12.583, y: 162.0356 }, + { l: 91.0, x: 12.667, y: 162.6641 }, + { l: 91.0, x: 12.75, y: 163.2961 }, + { l: 91.0, x: 12.833, y: 163.9495 }, + { l: 91.0, x: 12.917, y: 164.6178 }, + { l: 91.0, x: 13, y: 165.2869 }, + { l: 91.0, x: 13.083, y: 165.9668 }, + { l: 91.0, x: 13.167, y: 166.6597 }, + { l: 91.0, x: 13.25, y: 167.3552 }, + { l: 91.0, x: 13.333, y: 168.0552 }, + { l: 91.0, x: 13.417, y: 168.7595 }, + { l: 91.0, x: 13.5, y: 169.4534 }, + { l: 91.0, x: 13.583, y: 170.1517 }, + { l: 91.0, x: 13.667, y: 170.8434 }, + { l: 91.0, x: 13.75, y: 171.5098 }, + { l: 91.0, x: 13.833, y: 172.1803 }, + { l: 91.0, x: 13.917, y: 172.8459 }, + { l: 91.0, x: 14, y: 173.4841 }, + { l: 91.0, x: 14.083, y: 174.1072 }, + { l: 91.0, x: 14.167, y: 174.7309 }, + { l: 91.0, x: 14.25, y: 175.319 }, + { l: 91.0, x: 14.333, y: 175.892 }, + { l: 91.0, x: 14.417, y: 176.4669 }, + { l: 91.0, x: 14.5, y: 176.9961 }, + { l: 91.0, x: 14.583, y: 177.5207 }, + { l: 91.0, x: 14.667, y: 178.0251 }, + { l: 91.0, x: 14.75, y: 178.5102 }, + { l: 91.0, x: 14.833, y: 178.9671 }, + { l: 91.0, x: 14.917, y: 179.4181 }, + { l: 91.0, x: 15, y: 179.8376 }, + { l: 91.0, x: 15.083, y: 180.2462 }, + { l: 91.0, x: 15.167, y: 180.6355 }, + { l: 91.0, x: 15.25, y: 180.9962 }, + { l: 91.0, x: 15.333, y: 181.346 }, + { l: 91.0, x: 15.417, y: 181.6805 }, + { l: 91.0, x: 15.5, y: 181.9895 }, + { l: 91.0, x: 15.583, y: 182.2875 }, + { l: 91.0, x: 15.667, y: 182.5782 }, + { l: 91.0, x: 15.75, y: 182.859 }, + { l: 91.0, x: 15.833, y: 183.1079 }, + { l: 91.0, x: 15.917, y: 183.3618 }, + { l: 91.0, x: 16, y: 183.5936 }, + { l: 91.0, x: 16.083, y: 183.8065 }, + { l: 91.0, x: 16.167, y: 184.024 }, + { l: 91.0, x: 16.25, y: 184.2222 }, + { l: 91.0, x: 16.333, y: 184.4122 }, + { l: 91.0, x: 16.417, y: 184.583 }, + { l: 91.0, x: 16.5, y: 184.7586 }, + { l: 91.0, x: 16.583, y: 184.913 }, + { l: 91.0, x: 16.667, y: 185.0608 }, + { l: 91.0, x: 16.75, y: 185.2009 }, + { l: 91.0, x: 16.833, y: 185.3433 }, + { l: 91.0, x: 16.917, y: 185.466 }, + { l: 91.0, x: 17, y: 185.5814 }, + { l: 91.0, x: 17.083, y: 185.699 }, + { l: 91.0, x: 17.167, y: 185.8097 }, + { l: 91.0, x: 17.25, y: 185.898 }, + { l: 91.0, x: 17.333, y: 185.9911 }, + { l: 91.0, x: 17.417, y: 186.0875 }, + { l: 91.0, x: 17.5, y: 186.1641 }, + { l: 91.0, x: 17.583, y: 186.2326 }, + { l: 91.0, x: 17.667, y: 186.3042 }, + { l: 91.0, x: 17.75, y: 186.3588 }, + { l: 91.0, x: 17.833, y: 186.4133 }, + { l: 91.0, x: 17.917, y: 186.4497 }, + { l: 91.0, x: 18, y: 186.488 }, + { l: 91.0, x: 18.083, y: 186.5181 }, + { l: 91.0, x: 18.167, y: 186.5486 }, + { l: 91.0, x: 18.25, y: 186.5729 }, + { l: 91.0, x: 18.333, y: 186.5973 }, + { l: 91.0, x: 18.417, y: 186.6137 }, + { l: 91.0, x: 18.5, y: 186.6195 }, + { l: 91.0, x: 18.583, y: 186.6276 }, + { l: 91.0, x: 18.667, y: 186.6253 }, + { l: 91.0, x: 18.75, y: 186.6358 }, + { l: 91.0, x: 18.833, y: 186.6358 }, + { l: 91.0, x: 18.917, y: 186.6357 }, + { l: 91.0, x: 19, y: 186.6334 }, + { l: 91.0, x: 19.083, y: 186.6439 }, + { l: 91.0, x: 19.167, y: 186.6415 }, + { l: 91.0, x: 19.25, y: 186.6415 }, + { l: 91.0, x: 19.333, y: 186.652 }, + { l: 91.0, x: 19.417, y: 186.6521 }, + { l: 91.0, x: 19.5, y: 186.6521 }, + { l: 91.0, x: 19.583, y: 186.6497 }, + { l: 91.0, x: 19.667, y: 186.6497 }, + { l: 91.0, x: 19.75, y: 186.6578 }, + { l: 91.0, x: 19.833, y: 186.6659 }, + { l: 91.0, x: 19.917, y: 186.6742 }, ], }, { - sds: 2.0, + sds: 2.05, centile: 98.0, data: [ - { - l: '98.0', - x: 4.0, - y: 110.7056, - }, - { - l: '98.0', - x: 4.0833, - y: 111.3481, - }, - { - l: '98.0', - x: 4.1667, - y: 111.9996, - }, - { - l: '98.0', - x: 4.25, - y: 112.6514, - }, - { - l: '98.0', - x: 4.3333, - y: 113.3035, - }, - { - l: '98.0', - x: 4.4167, - y: 113.9753, - }, - { - l: '98.0', - x: 4.5, - y: 114.6454, - }, - { - l: '98.0', - x: 4.5833, - y: 115.3177, - }, - { - l: '98.0', - x: 4.6667, - y: 115.9969, - }, - { - l: '98.0', - x: 4.75, - y: 116.6655, - }, - { - l: '98.0', - x: 4.8333, - y: 117.3321, - }, - { - l: '98.0', - x: 4.9167, - y: 117.999, - }, - { - l: '98.0', - x: 5.0, - y: 118.6443, - }, - { - l: '98.0', - x: 5.0833, - y: 119.2746, - }, - { - l: '98.0', - x: 5.1667, - y: 119.9073, - }, - { - l: '98.0', - x: 5.25, - y: 120.514, - }, - { - l: '98.0', - x: 5.3333, - y: 121.1014, - }, - { - l: '98.0', - x: 5.4167, - y: 121.6975, - }, - { - l: '98.0', - x: 5.5, - y: 122.2721, - }, - { - l: '98.0', - x: 5.5833, - y: 122.8359, - }, - { - l: '98.0', - x: 5.6667, - y: 123.4084, - }, - { - l: '98.0', - x: 5.75, - y: 123.9701, - }, - { - l: '98.0', - x: 5.8333, - y: 124.5319, - }, - { - l: '98.0', - x: 5.9167, - y: 125.0938, - }, - { - l: '98.0', - x: 6.0, - y: 125.6449, - }, - { - l: '98.0', - x: 6.0833, - y: 126.2047, - }, - { - l: '98.0', - x: 6.1667, - y: 126.7559, - }, - { - l: '98.0', - x: 6.25, - y: 127.305, - }, - { - l: '98.0', - x: 6.3333, - y: 127.854, - }, - { - l: '98.0', - x: 6.4167, - y: 128.3923, - }, - { - l: '98.0', - x: 6.5, - y: 128.9415, - }, - { - l: '98.0', - x: 6.5833, - y: 129.4799, - }, - { - l: '98.0', - x: 6.6667, - y: 130.0208, - }, - { - l: '98.0', - x: 6.75, - y: 130.5702, - }, - { - l: '98.0', - x: 6.8333, - y: 131.1112, - }, - { - l: '98.0', - x: 6.9167, - y: 131.6632, - }, - { - l: '98.0', - x: 7.0, - y: 132.2152, - }, - { - l: '98.0', - x: 7.0833, - y: 132.7697, - }, - { - l: '98.0', - x: 7.1667, - y: 133.3219, - }, - { - l: '98.0', - x: 7.25, - y: 133.8767, - }, - { - l: '98.0', - x: 7.3333, - y: 134.429, - }, - { - l: '98.0', - x: 7.4167, - y: 134.984, - }, - { - l: '98.0', - x: 7.5, - y: 135.539, - }, - { - l: '98.0', - x: 7.5833, - y: 136.0916, - }, - { - l: '98.0', - x: 7.6667, - y: 136.6335, - }, - { - l: '98.0', - x: 7.75, - y: 137.1888, - }, - { - l: '98.0', - x: 7.8333, - y: 137.7199, - }, - { - l: '98.0', - x: 7.9167, - y: 138.262, - }, - { - l: '98.0', - x: 8.0, - y: 138.8042, - }, - { - l: '98.0', - x: 8.0833, - y: 139.3381, - }, - { - l: '98.0', - x: 8.1667, - y: 139.8588, - }, - { - l: '98.0', - x: 8.25, - y: 140.3795, - }, - { - l: '98.0', - x: 8.3333, - y: 140.9028, - }, - { - l: '98.0', - x: 8.4167, - y: 141.4046, - }, - { - l: '98.0', - x: 8.5, - y: 141.9064, - }, - { - l: '98.0', - x: 8.5833, - y: 142.4109, - }, - { - l: '98.0', - x: 8.6667, - y: 142.9156, - }, - { - l: '98.0', - x: 8.75, - y: 143.3986, - }, - { - l: '98.0', - x: 8.8333, - y: 143.8952, - }, - { - l: '98.0', - x: 8.9167, - y: 144.3811, - }, - { - l: '98.0', - x: 9.0, - y: 144.878, - }, - { - l: '98.0', - x: 9.0833, - y: 145.3668, - }, - { - l: '98.0', - x: 9.1667, - y: 145.8558, - }, - { - l: '98.0', - x: 9.25, - y: 146.3476, - }, - { - l: '98.0', - x: 9.3333, - y: 146.8259, - }, - { - l: '98.0', - x: 9.4167, - y: 147.3207, - }, - { - l: '98.0', - x: 9.5, - y: 147.8021, - }, - { - l: '98.0', - x: 9.5833, - y: 148.2863, - }, - { - l: '98.0', - x: 9.6667, - y: 148.7707, - }, - { - l: '98.0', - x: 9.75, - y: 149.2553, - }, - { - l: '98.0', - x: 9.8333, - y: 149.7537, - }, - { - l: '98.0', - x: 9.9167, - y: 150.255, - }, - { - l: '98.0', - x: 10.0, - y: 150.7565, - }, - { - l: '98.0', - x: 10.0833, - y: 151.2583, - }, - { - l: '98.0', - x: 10.1667, - y: 151.7739, - }, - { - l: '98.0', - x: 10.25, - y: 152.2789, - }, - { - l: '98.0', - x: 10.3333, - y: 152.7868, - }, - { - l: '98.0', - x: 10.4167, - y: 153.2842, - }, - { - l: '98.0', - x: 10.5, - y: 153.7817, - }, - { - l: '98.0', - x: 10.5833, - y: 154.2686, - }, - { - l: '98.0', - x: 10.6667, - y: 154.7585, - }, - { - l: '98.0', - x: 10.75, - y: 155.2378, - }, - { - l: '98.0', - x: 10.8333, - y: 155.7173, - }, - { - l: '98.0', - x: 10.9167, - y: 156.1999, - }, - { - l: '98.0', - x: 11.0, - y: 156.669, - }, - { - l: '98.0', - x: 11.0833, - y: 157.1521, - }, - { - l: '98.0', - x: 11.1667, - y: 157.6245, - }, - { - l: '98.0', - x: 11.25, - y: 158.1001, - }, - { - l: '98.0', - x: 11.3333, - y: 158.5869, - }, - { - l: '98.0', - x: 11.4167, - y: 159.063, - }, - { - l: '98.0', - x: 11.5, - y: 159.5613, - }, - { - l: '98.0', - x: 11.5833, - y: 160.0598, - }, - { - l: '98.0', - x: 11.6667, - y: 160.5755, - }, - { - l: '98.0', - x: 11.75, - y: 161.1104, - }, - { - l: '98.0', - x: 11.8333, - y: 161.6457, - }, - { - l: '98.0', - x: 11.9167, - y: 162.1951, - }, - { - l: '98.0', - x: 12.0, - y: 162.745, - }, - { - l: '98.0', - x: 12.0833, - y: 163.3201, - }, - { - l: '98.0', - x: 12.1667, - y: 163.9036, - }, - { - l: '98.0', - x: 12.25, - y: 164.5094, - }, - { - l: '98.0', - x: 12.3333, - y: 165.1185, - }, - { - l: '98.0', - x: 12.4167, - y: 165.7471, - }, - { - l: '98.0', - x: 12.5, - y: 166.376, - }, - { - l: '98.0', - x: 12.5833, - y: 167.0274, - }, - { - l: '98.0', - x: 12.6667, - y: 167.687, - }, - { - l: '98.0', - x: 12.75, - y: 168.3581, - }, - { - l: '98.0', - x: 12.8333, - y: 169.0516, - }, - { - l: '98.0', - x: 12.9167, - y: 169.7504, - }, - { - l: '98.0', - x: 13.0, - y: 170.4575, - }, - { - l: '98.0', - x: 13.0833, - y: 171.1759, - }, - { - l: '98.0', - x: 13.1667, - y: 171.8964, - }, - { - l: '98.0', - x: 13.25, - y: 172.6282, - }, - { - l: '98.0', - x: 13.3333, - y: 173.3619, - }, - { - l: '98.0', - x: 13.4167, - y: 174.0895, - }, - { - l: '98.0', - x: 13.5, - y: 174.8141, - }, - { - l: '98.0', - x: 13.5833, - y: 175.5403, - }, - { - l: '98.0', - x: 13.6667, - y: 176.2492, - }, - { - l: '98.0', - x: 13.75, - y: 176.9374, - }, - { - l: '98.0', - x: 13.8333, - y: 177.627, - }, - { - l: '98.0', - x: 13.9167, - y: 178.3022, - }, - { - l: '98.0', - x: 14.0, - y: 178.9532, - }, - { - l: '98.0', - x: 14.0833, - y: 179.5864, - }, - { - l: '98.0', - x: 14.1667, - y: 180.2095, - }, - { - l: '98.0', - x: 14.25, - y: 180.8004, - }, - { - l: '98.0', - x: 14.3333, - y: 181.3733, - }, - { - l: '98.0', - x: 14.4167, - y: 181.9391, - }, - { - l: '98.0', - x: 14.5, - y: 182.4614, - }, - { - l: '98.0', - x: 14.5833, - y: 182.9765, - }, - { - l: '98.0', - x: 14.6667, - y: 183.4623, - }, - { - l: '98.0', - x: 14.75, - y: 183.9332, - }, - { - l: '98.0', - x: 14.8333, - y: 184.3715, - }, - { - l: '98.0', - x: 14.9167, - y: 184.7981, - }, - { - l: '98.0', - x: 15.0, - y: 185.1954, - }, - { - l: '98.0', - x: 15.0833, - y: 185.5811, - }, - { - l: '98.0', - x: 15.1667, - y: 185.9408, - }, - { - l: '98.0', - x: 15.25, - y: 186.2747, - }, - { - l: '98.0', - x: 15.3333, - y: 186.5969, - }, - { - l: '98.0', - x: 15.4167, - y: 186.9002, - }, - { - l: '98.0', - x: 15.5, - y: 187.181, - }, - { - l: '98.0', - x: 15.5833, - y: 187.4504, - }, - { - l: '98.0', - x: 15.6667, - y: 187.7083, - }, - { - l: '98.0', - x: 15.75, - y: 187.9618, - }, - { - l: '98.0', - x: 15.8333, - y: 188.1821, - }, - { - l: '98.0', - x: 15.9167, - y: 188.4055, - }, - { - l: '98.0', - x: 16.0, - y: 188.6102, - }, - { - l: '98.0', - x: 16.0833, - y: 188.7962, - }, - { - l: '98.0', - x: 16.1667, - y: 188.9854, - }, - { - l: '98.0', - x: 16.25, - y: 189.1595, - }, - { - l: '98.0', - x: 16.3333, - y: 189.3259, - }, - { - l: '98.0', - x: 16.4167, - y: 189.4704, - }, - { - l: '98.0', - x: 16.5, - y: 189.6252, - }, - { - l: '98.0', - x: 16.5833, - y: 189.758, - }, - { - l: '98.0', - x: 16.6667, - y: 189.8834, - }, - { - l: '98.0', - x: 16.75, - y: 190.0047, - }, - { - l: '98.0', - x: 16.8333, - y: 190.1294, - }, - { - l: '98.0', - x: 16.9167, - y: 190.2324, - }, - { - l: '98.0', - x: 17.0, - y: 190.3314, - }, - { - l: '98.0', - x: 17.0833, - y: 190.4338, - }, - { - l: '98.0', - x: 17.1667, - y: 190.5288, - }, - { - l: '98.0', - x: 17.25, - y: 190.6022, - }, - { - l: '98.0', - x: 17.3333, - y: 190.6825, - }, - { - l: '98.0', - x: 17.4167, - y: 190.7662, - }, - { - l: '98.0', - x: 17.5, - y: 190.8319, - }, - { - l: '98.0', - x: 17.5833, - y: 190.8902, - }, - { - l: '98.0', - x: 17.6667, - y: 190.952, - }, - { - l: '98.0', - x: 17.75, - y: 190.9993, - }, - { - l: '98.0', - x: 17.8333, - y: 191.0465, - }, - { - l: '98.0', - x: 17.9167, - y: 191.0757, - }, - { - l: '98.0', - x: 18.0, - y: 191.1084, - }, - { - l: '98.0', - x: 18.0833, - y: 191.1339, - }, - { - l: '98.0', - x: 18.1667, - y: 191.1593, - }, - { - l: '98.0', - x: 18.25, - y: 191.1811, - }, - { - l: '98.0', - x: 18.3333, - y: 191.2028, - }, - { - l: '98.0', - x: 18.4167, - y: 191.2173, - }, - { - l: '98.0', - x: 18.5, - y: 191.221, - }, - { - l: '98.0', - x: 18.5833, - y: 191.2282, - }, - { - l: '98.0', - x: 18.6667, - y: 191.2247, - }, - { - l: '98.0', - x: 18.75, - y: 191.2355, - }, - { - l: '98.0', - x: 18.8333, - y: 191.2355, - }, - { - l: '98.0', - x: 18.9167, - y: 191.2355, - }, - { - l: '98.0', - x: 19.0, - y: 191.2319, - }, - { - l: '98.0', - x: 19.0833, - y: 191.2427, - }, - { - l: '98.0', - x: 19.1667, - y: 191.2392, - }, - { - l: '98.0', - x: 19.25, - y: 191.2392, - }, - { - l: '98.0', - x: 19.3333, - y: 191.25, - }, - { - l: '98.0', - x: 19.4167, - y: 191.25, - }, - { - l: '98.0', - x: 19.5, - y: 191.25, - }, - { - l: '98.0', - x: 19.5833, - y: 191.2464, - }, - { - l: '98.0', - x: 19.6667, - y: 191.2464, - }, - { - l: '98.0', - x: 19.75, - y: 191.2537, - }, - { - l: '98.0', - x: 19.8333, - y: 191.2609, - }, - { - l: '98.0', - x: 19.9167, - y: 191.2681, - }, - { - l: '98.0', - x: 20.0, - y: 191.2754, - }, - { - l: '98.0', - x: 20.0, - y: 191.2754, - }, + { l: 98.0, x: 4, y: 110.9262 }, + { l: 98.0, x: 4.083, y: 111.568 }, + { l: 98.0, x: 4.167, y: 112.2267 }, + { l: 98.0, x: 4.25, y: 112.8778 }, + { l: 98.0, x: 4.333, y: 113.5291 }, + { l: 98.0, x: 4.417, y: 114.2083 }, + { l: 98.0, x: 4.5, y: 114.8775 }, + { l: 98.0, x: 4.583, y: 115.5491 }, + { l: 98.0, x: 4.667, y: 116.2356 }, + { l: 98.0, x: 4.75, y: 116.9033 }, + { l: 98.0, x: 4.833, y: 117.569 }, + { l: 98.0, x: 4.917, y: 118.2429 }, + { l: 98.0, x: 5, y: 118.8874 }, + { l: 98.0, x: 5.083, y: 119.5168 }, + { l: 98.0, x: 5.167, y: 120.1562 }, + { l: 98.0, x: 5.25, y: 120.7619 }, + { l: 98.0, x: 5.333, y: 121.3485 }, + { l: 98.0, x: 5.417, y: 121.9508 }, + { l: 98.0, x: 5.5, y: 122.5245 }, + { l: 98.0, x: 5.583, y: 123.0875 }, + { l: 98.0, x: 5.667, y: 123.6659 }, + { l: 98.0, x: 5.75, y: 124.2268 }, + { l: 98.0, x: 5.833, y: 124.7877 }, + { l: 98.0, x: 5.917, y: 125.3555 }, + { l: 98.0, x: 6, y: 125.9058 }, + { l: 98.0, x: 6.083, y: 126.4646 }, + { l: 98.0, x: 6.167, y: 127.0217 }, + { l: 98.0, x: 6.25, y: 127.5698 }, + { l: 98.0, x: 6.333, y: 128.118 }, + { l: 98.0, x: 6.417, y: 128.662 }, + { l: 98.0, x: 6.5, y: 129.2103 }, + { l: 98.0, x: 6.583, y: 129.7479 }, + { l: 98.0, x: 6.667, y: 130.2945 }, + { l: 98.0, x: 6.75, y: 130.843 }, + { l: 98.0, x: 6.833, y: 131.3832 }, + { l: 98.0, x: 6.917, y: 131.9409 }, + { l: 98.0, x: 7, y: 132.4921 }, + { l: 98.0, x: 7.083, y: 133.0459 }, + { l: 98.0, x: 7.167, y: 133.604 }, + { l: 98.0, x: 7.25, y: 134.158 }, + { l: 98.0, x: 7.333, y: 134.7095 }, + { l: 98.0, x: 7.417, y: 135.2704 }, + { l: 98.0, x: 7.5, y: 135.8246 }, + { l: 98.0, x: 7.583, y: 136.3765 }, + { l: 98.0, x: 7.667, y: 136.9241 }, + { l: 98.0, x: 7.75, y: 137.4787 }, + { l: 98.0, x: 7.833, y: 138.0091 }, + { l: 98.0, x: 7.917, y: 138.5569 }, + { l: 98.0, x: 8, y: 139.0983 }, + { l: 98.0, x: 8.083, y: 139.6316 }, + { l: 98.0, x: 8.167, y: 140.1578 }, + { l: 98.0, x: 8.25, y: 140.6778 }, + { l: 98.0, x: 8.333, y: 141.2005 }, + { l: 98.0, x: 8.417, y: 141.7077 }, + { l: 98.0, x: 8.5, y: 142.2089 }, + { l: 98.0, x: 8.583, y: 142.7129 }, + { l: 98.0, x: 8.667, y: 143.223 }, + { l: 98.0, x: 8.75, y: 143.7055 }, + { l: 98.0, x: 8.833, y: 144.2016 }, + { l: 98.0, x: 8.917, y: 144.693 }, + { l: 98.0, x: 9, y: 145.1894 }, + { l: 98.0, x: 9.083, y: 145.6779 }, + { l: 98.0, x: 9.167, y: 146.1723 }, + { l: 98.0, x: 9.25, y: 146.6638 }, + { l: 98.0, x: 9.333, y: 147.1418 }, + { l: 98.0, x: 9.417, y: 147.6422 }, + { l: 98.0, x: 9.5, y: 148.1233 }, + { l: 98.0, x: 9.583, y: 148.6073 }, + { l: 98.0, x: 9.667, y: 149.0973 }, + { l: 98.0, x: 9.75, y: 149.5817 }, + { l: 98.0, x: 9.833, y: 150.0799 }, + { l: 98.0, x: 9.917, y: 150.5871 }, + { l: 98.0, x: 10, y: 151.0886 }, + { l: 98.0, x: 10.083, y: 151.5902 }, + { l: 98.0, x: 10.167, y: 152.1119 }, + { l: 98.0, x: 10.25, y: 152.6169 }, + { l: 98.0, x: 10.333, y: 153.1249 }, + { l: 98.0, x: 10.417, y: 153.6284 }, + { l: 98.0, x: 10.5, y: 154.126 }, + { l: 98.0, x: 10.583, y: 154.613 }, + { l: 98.0, x: 10.667, y: 155.109 }, + { l: 98.0, x: 10.75, y: 155.5884 }, + { l: 98.0, x: 10.833, y: 156.0681 }, + { l: 98.0, x: 10.917, y: 156.5568 }, + { l: 98.0, x: 11, y: 157.0261 }, + { l: 98.0, x: 11.083, y: 157.5095 }, + { l: 98.0, x: 11.167, y: 157.988 }, + { l: 98.0, x: 11.25, y: 158.4639 }, + { l: 98.0, x: 11.333, y: 158.9511 }, + { l: 98.0, x: 11.417, y: 159.4334 }, + { l: 98.0, x: 11.5, y: 159.9321 }, + { l: 98.0, x: 11.583, y: 160.431 }, + { l: 98.0, x: 11.667, y: 160.9534 }, + { l: 98.0, x: 11.75, y: 161.4887 }, + { l: 98.0, x: 11.833, y: 162.0244 }, + { l: 98.0, x: 11.917, y: 162.5809 }, + { l: 98.0, x: 12, y: 163.1312 }, + { l: 98.0, x: 12.083, y: 163.7068 }, + { l: 98.0, x: 12.167, y: 164.2978 }, + { l: 98.0, x: 12.25, y: 164.904 }, + { l: 98.0, x: 12.333, y: 165.5137 }, + { l: 98.0, x: 12.417, y: 166.1501 }, + { l: 98.0, x: 12.5, y: 166.7795 }, + { l: 98.0, x: 12.583, y: 167.4312 }, + { l: 98.0, x: 12.667, y: 168.0991 }, + { l: 98.0, x: 12.75, y: 168.7705 }, + { l: 98.0, x: 12.833, y: 169.4643 }, + { l: 98.0, x: 12.917, y: 170.1716 }, + { l: 98.0, x: 13, y: 170.8787 }, + { l: 98.0, x: 13.083, y: 171.5972 }, + { l: 98.0, x: 13.167, y: 172.3261 }, + { l: 98.0, x: 13.25, y: 173.0577 }, + { l: 98.0, x: 13.333, y: 173.791 }, + { l: 98.0, x: 13.417, y: 174.5268 }, + { l: 98.0, x: 13.5, y: 175.2507 }, + { l: 98.0, x: 13.583, y: 175.9761 }, + { l: 98.0, x: 13.667, y: 176.6925 }, + { l: 98.0, x: 13.75, y: 177.3796 }, + { l: 98.0, x: 13.833, y: 178.0677 }, + { l: 98.0, x: 13.917, y: 178.7495 }, + { l: 98.0, x: 14, y: 179.3987 }, + { l: 98.0, x: 14.083, y: 180.0301 }, + { l: 98.0, x: 14.167, y: 180.6585 }, + { l: 98.0, x: 14.25, y: 181.2469 }, + { l: 98.0, x: 14.333, y: 181.8173 }, + { l: 98.0, x: 14.417, y: 182.3872 }, + { l: 98.0, x: 14.5, y: 182.9066 }, + { l: 98.0, x: 14.583, y: 183.4187 }, + { l: 98.0, x: 14.667, y: 183.9073 }, + { l: 98.0, x: 14.75, y: 184.375 }, + { l: 98.0, x: 14.833, y: 184.8099 }, + { l: 98.0, x: 14.917, y: 185.2382 }, + { l: 98.0, x: 15, y: 185.6319 }, + { l: 98.0, x: 15.083, y: 186.0141 }, + { l: 98.0, x: 15.167, y: 186.3745 }, + { l: 98.0, x: 15.25, y: 186.7046 }, + { l: 98.0, x: 15.333, y: 187.0233 }, + { l: 98.0, x: 15.417, y: 187.3266 }, + { l: 98.0, x: 15.5, y: 187.6039 }, + { l: 98.0, x: 15.583, y: 187.8698 }, + { l: 98.0, x: 15.667, y: 188.1274 }, + { l: 98.0, x: 15.75, y: 188.3775 }, + { l: 98.0, x: 15.833, y: 188.5946 }, + { l: 98.0, x: 15.917, y: 188.8173 }, + { l: 98.0, x: 16, y: 189.0188 }, + { l: 98.0, x: 16.083, y: 189.2019 }, + { l: 98.0, x: 16.167, y: 189.3903 }, + { l: 98.0, x: 16.25, y: 189.5617 }, + { l: 98.0, x: 16.333, y: 189.7255 }, + { l: 98.0, x: 16.417, y: 189.8692 }, + { l: 98.0, x: 16.5, y: 190.0216 }, + { l: 98.0, x: 16.583, y: 190.1522 }, + { l: 98.0, x: 16.667, y: 190.2768 }, + { l: 98.0, x: 16.75, y: 190.3961 }, + { l: 98.0, x: 16.833, y: 190.5188 }, + { l: 98.0, x: 16.917, y: 190.6211 }, + { l: 98.0, x: 17, y: 190.7183 }, + { l: 98.0, x: 17.083, y: 190.8191 }, + { l: 98.0, x: 17.167, y: 190.9136 }, + { l: 98.0, x: 17.25, y: 190.9854 }, + { l: 98.0, x: 17.333, y: 191.0643 }, + { l: 98.0, x: 17.417, y: 191.1477 }, + { l: 98.0, x: 17.5, y: 191.2121 }, + { l: 98.0, x: 17.583, y: 191.2694 }, + { l: 98.0, x: 17.667, y: 191.3309 }, + { l: 98.0, x: 17.75, y: 191.3773 }, + { l: 98.0, x: 17.833, y: 191.4238 }, + { l: 98.0, x: 17.917, y: 191.4527 }, + { l: 98.0, x: 18, y: 191.4848 }, + { l: 98.0, x: 18.083, y: 191.5098 }, + { l: 98.0, x: 18.167, y: 191.535 }, + { l: 98.0, x: 18.25, y: 191.5565 }, + { l: 98.0, x: 18.333, y: 191.5779 }, + { l: 98.0, x: 18.417, y: 191.5923 }, + { l: 98.0, x: 18.5, y: 191.5959 }, + { l: 98.0, x: 18.583, y: 191.603 }, + { l: 98.0, x: 18.667, y: 191.5994 }, + { l: 98.0, x: 18.75, y: 191.6102 }, + { l: 98.0, x: 18.833, y: 191.6102 }, + { l: 98.0, x: 18.917, y: 191.6102 }, + { l: 98.0, x: 19, y: 191.6065 }, + { l: 98.0, x: 19.083, y: 191.6173 }, + { l: 98.0, x: 19.167, y: 191.6137 }, + { l: 98.0, x: 19.25, y: 191.6137 }, + { l: 98.0, x: 19.333, y: 191.6245 }, + { l: 98.0, x: 19.417, y: 191.6245 }, + { l: 98.0, x: 19.5, y: 191.6245 }, + { l: 98.0, x: 19.583, y: 191.6209 }, + { l: 98.0, x: 19.667, y: 191.6209 }, + { l: 98.0, x: 19.75, y: 191.628 }, + { l: 98.0, x: 19.833, y: 191.6352 }, + { l: 98.0, x: 19.917, y: 191.6424 }, ], }, { - sds: 2.67, + sds: 2.65, centile: 99.6, data: [ - { - l: '99.6', - x: 4.0, - y: 113.4441, - }, - { - l: '99.6', - x: 4.0833, - y: 114.1108, - }, - { - l: '99.6', - x: 4.1667, - y: 114.7861, - }, - { - l: '99.6', - x: 4.25, - y: 115.4619, - }, - { - l: '99.6', - x: 4.3333, - y: 116.138, - }, - { - l: '99.6', - x: 4.4167, - y: 116.8338, - }, - { - l: '99.6', - x: 4.5, - y: 117.5271, - }, - { - l: '99.6', - x: 4.5833, - y: 118.2237, - }, - { - l: '99.6', - x: 4.6667, - y: 118.9259, - }, - { - l: '99.6', - x: 4.75, - y: 119.6174, - }, - { - l: '99.6', - x: 4.8333, - y: 120.3062, - }, - { - l: '99.6', - x: 4.9167, - y: 120.9953, - }, - { - l: '99.6', - x: 5.0, - y: 121.6624, - }, - { - l: '99.6', - x: 5.0833, - y: 122.3129, - }, - { - l: '99.6', - x: 5.1667, - y: 122.9664, - }, - { - l: '99.6', - x: 5.25, - y: 123.592, - }, - { - l: '99.6', - x: 5.3333, - y: 124.1985, - }, - { - l: '99.6', - x: 5.4167, - y: 124.8134, - }, - { - l: '99.6', - x: 5.5, - y: 125.4061, - }, - { - l: '99.6', - x: 5.5833, - y: 125.9879, - }, - { - l: '99.6', - x: 5.6667, - y: 126.5778, - }, - { - l: '99.6', - x: 5.75, - y: 127.1568, - }, - { - l: '99.6', - x: 5.8333, - y: 127.7359, - }, - { - l: '99.6', - x: 5.9167, - y: 128.3151, - }, - { - l: '99.6', - x: 6.0, - y: 128.8832, - }, - { - l: '99.6', - x: 6.0833, - y: 129.4595, - }, - { - l: '99.6', - x: 6.1667, - y: 130.0279, - }, - { - l: '99.6', - x: 6.25, - y: 130.5933, - }, - { - l: '99.6', - x: 6.3333, - y: 131.1587, - }, - { - l: '99.6', - x: 6.4167, - y: 131.7131, - }, - { - l: '99.6', - x: 6.5, - y: 132.2787, - }, - { - l: '99.6', - x: 6.5833, - y: 132.8333, - }, - { - l: '99.6', - x: 6.6667, - y: 133.3911, - }, - { - l: '99.6', - x: 6.75, - y: 133.9569, - }, - { - l: '99.6', - x: 6.8333, - y: 134.515, - }, - { - l: '99.6', - x: 6.9167, - y: 135.0842, - }, - { - l: '99.6', - x: 7.0, - y: 135.6536, - }, - { - l: '99.6', - x: 7.0833, - y: 136.2263, - }, - { - l: '99.6', - x: 7.1667, - y: 136.7959, - }, - { - l: '99.6', - x: 7.25, - y: 137.3689, - }, - { - l: '99.6', - x: 7.3333, - y: 137.9387, - }, - { - l: '99.6', - x: 7.4167, - y: 138.5119, - }, - { - l: '99.6', - x: 7.5, - y: 139.0853, - }, - { - l: '99.6', - x: 7.5833, - y: 139.6555, - }, - { - l: '99.6', - x: 7.6667, - y: 140.2146, - }, - { - l: '99.6', - x: 7.75, - y: 140.7883, - }, - { - l: '99.6', - x: 7.8333, - y: 141.3366, - }, - { - l: '99.6', - x: 7.9167, - y: 141.896, - }, - { - l: '99.6', - x: 8.0, - y: 142.4556, - }, - { - l: '99.6', - x: 8.0833, - y: 143.0075, - }, - { - l: '99.6', - x: 8.1667, - y: 143.545, - }, - { - l: '99.6', - x: 8.25, - y: 144.0826, - }, - { - l: '99.6', - x: 8.3333, - y: 144.6238, - }, - { - l: '99.6', - x: 8.4167, - y: 145.1428, - }, - { - l: '99.6', - x: 8.5, - y: 145.6619, - }, - { - l: '99.6', - x: 8.5833, - y: 146.1846, - }, - { - l: '99.6', - x: 8.6667, - y: 146.7074, - }, - { - l: '99.6', - x: 8.75, - y: 147.2081, - }, - { - l: '99.6', - x: 8.8333, - y: 147.7237, - }, - { - l: '99.6', - x: 8.9167, - y: 148.2282, - }, - { - l: '99.6', - x: 9.0, - y: 148.744, - }, - { - l: '99.6', - x: 9.0833, - y: 149.2525, - }, - { - l: '99.6', - x: 9.1667, - y: 149.7611, - }, - { - l: '99.6', - x: 9.25, - y: 150.2734, - }, - { - l: '99.6', - x: 9.3333, - y: 150.7712, - }, - { - l: '99.6', - x: 9.4167, - y: 151.2876, - }, - { - l: '99.6', - x: 9.5, - y: 151.7894, - }, - { - l: '99.6', - x: 9.5833, - y: 152.2951, - }, - { - l: '99.6', - x: 9.6667, - y: 152.801, - }, - { - l: '99.6', - x: 9.75, - y: 153.307, - }, - { - l: '99.6', - x: 9.8333, - y: 153.8282, - }, - { - l: '99.6', - x: 9.9167, - y: 154.3533, - }, - { - l: '99.6', - x: 10.0, - y: 154.8787, - }, - { - l: '99.6', - x: 10.0833, - y: 155.4044, - }, - { - l: '99.6', - x: 10.1667, - y: 155.9452, - }, - { - l: '99.6', - x: 10.25, - y: 156.4752, - }, - { - l: '99.6', - x: 10.3333, - y: 157.0091, - }, - { - l: '99.6', - x: 10.4167, - y: 157.5322, - }, - { - l: '99.6', - x: 10.5, - y: 158.0556, - }, - { - l: '99.6', - x: 10.5833, - y: 158.5681, - }, - { - l: '99.6', - x: 10.6667, - y: 159.0847, - }, - { - l: '99.6', - x: 10.75, - y: 159.5904, - }, - { - l: '99.6', - x: 10.8333, - y: 160.0964, - }, - { - l: '99.6', - x: 10.9167, - y: 160.6066, - }, - { - l: '99.6', - x: 11.0, - y: 161.102, - }, - { - l: '99.6', - x: 11.0833, - y: 161.6128, - }, - { - l: '99.6', - x: 11.1667, - y: 162.1127, - }, - { - l: '99.6', - x: 11.25, - y: 162.6168, - }, - { - l: '99.6', - x: 11.3333, - y: 163.1325, - }, - { - l: '99.6', - x: 11.4167, - y: 163.6373, - }, - { - l: '99.6', - x: 11.5, - y: 164.165, - }, - { - l: '99.6', - x: 11.5833, - y: 164.6931, - }, - { - l: '99.6', - x: 11.6667, - y: 165.2406, - }, - { - l: '99.6', - x: 11.75, - y: 165.8072, - }, - { - l: '99.6', - x: 11.8333, - y: 166.3742, - }, - { - l: '99.6', - x: 11.9167, - y: 166.9569, - }, - { - l: '99.6', - x: 12.0, - y: 167.54, - }, - { - l: '99.6', - x: 12.0833, - y: 168.1501, - }, - { - l: '99.6', - x: 12.1667, - y: 168.7681, - }, - { - l: '99.6', - x: 12.25, - y: 169.4091, - }, - { - l: '99.6', - x: 12.3333, - y: 170.0547, - }, - { - l: '99.6', - x: 12.4167, - y: 170.7194, - }, - { - l: '99.6', - x: 12.5, - y: 171.3847, - }, - { - l: '99.6', - x: 12.5833, - y: 172.0731, - }, - { - l: '99.6', - x: 12.6667, - y: 172.7694, - }, - { - l: '99.6', - x: 12.75, - y: 173.4775, - }, - { - l: '99.6', - x: 12.8333, - y: 174.2089, - }, - { - l: '99.6', - x: 12.9167, - y: 174.9439, - }, - { - l: '99.6', - x: 13.0, - y: 175.6866, - }, - { - l: '99.6', - x: 13.0833, - y: 176.4412, - }, - { - l: '99.6', - x: 13.1667, - y: 177.1952, - }, - { - l: '99.6', - x: 13.25, - y: 177.9609, - }, - { - l: '99.6', - x: 13.3333, - y: 178.7258, - }, - { - l: '99.6', - x: 13.4167, - y: 179.4826, - }, - { - l: '99.6', - x: 13.5, - y: 180.2354, - }, - { - l: '99.6', - x: 13.5833, - y: 180.9871, - }, - { - l: '99.6', - x: 13.6667, - y: 181.7189, - }, - { - l: '99.6', - x: 13.75, - y: 182.4266, - }, - { - l: '99.6', - x: 13.8333, - y: 183.1327, - }, - { - l: '99.6', - x: 13.9167, - y: 183.8229, - }, - { - l: '99.6', - x: 14.0, - y: 184.4843, - }, - { - l: '99.6', - x: 14.0833, - y: 185.1252, - }, - { - l: '99.6', - x: 14.1667, - y: 185.7527, - }, - { - l: '99.6', - x: 14.25, - y: 186.3439, - }, - { - l: '99.6', - x: 14.3333, - y: 186.9144, - }, - { - l: '99.6', - x: 14.4167, - y: 187.4754, - }, - { - l: '99.6', - x: 14.5, - y: 187.9885, - }, - { - l: '99.6', - x: 14.5833, - y: 188.492, - }, - { - l: '99.6', - x: 14.6667, - y: 188.9631, - }, - { - l: '99.6', - x: 14.75, - y: 189.4176, - }, - { - l: '99.6', - x: 14.8333, - y: 189.8353, - }, - { - l: '99.6', - x: 14.9167, - y: 190.2408, - }, - { - l: '99.6', - x: 15.0, - y: 190.6139, - }, - { - l: '99.6', - x: 15.0833, - y: 190.9748, - }, - { - l: '99.6', - x: 15.1667, - y: 191.3078, - }, - { - l: '99.6', - x: 15.25, - y: 191.6129, - }, - { - l: '99.6', - x: 15.3333, - y: 191.9059, - }, - { - l: '99.6', - x: 15.4167, - y: 192.1802, - }, - { - l: '99.6', - x: 15.5, - y: 192.4313, - }, - { - l: '99.6', - x: 15.5833, - y: 192.6705, - }, - { - l: '99.6', - x: 15.6667, - y: 192.8978, - }, - { - l: '99.6', - x: 15.75, - y: 193.1224, - }, - { - l: '99.6', - x: 15.8333, - y: 193.3128, - }, - { - l: '99.6', - x: 15.9167, - y: 193.5073, - }, - { - l: '99.6', - x: 16.0, - y: 193.6836, - }, - { - l: '99.6', - x: 16.0833, - y: 193.8416, - }, - { - l: '99.6', - x: 16.1667, - y: 194.0038, - }, - { - l: '99.6', - x: 16.25, - y: 194.1526, - }, - { - l: '99.6', - x: 16.3333, - y: 194.2946, - }, - { - l: '99.6', - x: 16.4167, - y: 194.4139, - }, - { - l: '99.6', - x: 16.5, - y: 194.5469, - }, - { - l: '99.6', - x: 16.5833, - y: 194.6574, - }, - { - l: '99.6', - x: 16.6667, - y: 194.7612, - }, - { - l: '99.6', - x: 16.75, - y: 194.863, - }, - { - l: '99.6', - x: 16.8333, - y: 194.9692, - }, - { - l: '99.6', - x: 16.9167, - y: 195.0531, - }, - { - l: '99.6', - x: 17.0, - y: 195.1352, - }, - { - l: '99.6', - x: 17.0833, - y: 195.2217, - }, - { - l: '99.6', - x: 17.1667, - y: 195.3018, - }, - { - l: '99.6', - x: 17.25, - y: 195.3595, - }, - { - l: '99.6', - x: 17.3333, - y: 195.4266, - }, - { - l: '99.6', - x: 17.4167, - y: 195.4983, - }, - { - l: '99.6', - x: 17.5, - y: 195.5525, - }, - { - l: '99.6', - x: 17.5833, - y: 195.6003, - }, - { - l: '99.6', - x: 17.6667, - y: 195.6527, - }, - { - l: '99.6', - x: 17.75, - y: 195.6924, - }, - { - l: '99.6', - x: 17.8333, - y: 195.7321, - }, - { - l: '99.6', - x: 17.9167, - y: 195.7543, - }, - { - l: '99.6', - x: 18.0, - y: 195.7813, - }, - { - l: '99.6', - x: 18.0833, - y: 195.8019, - }, - { - l: '99.6', - x: 18.1667, - y: 195.8225, - }, - { - l: '99.6', - x: 18.25, - y: 195.8414, - }, - { - l: '99.6', - x: 18.3333, - y: 195.8604, - }, - { - l: '99.6', - x: 18.4167, - y: 195.8731, - }, - { - l: '99.6', - x: 18.5, - y: 195.8747, - }, - { - l: '99.6', - x: 18.5833, - y: 195.881, - }, - { - l: '99.6', - x: 18.6667, - y: 195.8763, - }, - { - l: '99.6', - x: 18.75, - y: 195.8873, - }, - { - l: '99.6', - x: 18.8333, - y: 195.8873, - }, - { - l: '99.6', - x: 18.9167, - y: 195.8873, - }, - { - l: '99.6', - x: 19.0, - y: 195.8826, - }, - { - l: '99.6', - x: 19.0833, - y: 195.8936, - }, - { - l: '99.6', - x: 19.1667, - y: 195.8889, - }, - { - l: '99.6', - x: 19.25, - y: 195.8889, - }, - { - l: '99.6', - x: 19.3333, - y: 195.9, - }, - { - l: '99.6', - x: 19.4167, - y: 195.9, - }, - { - l: '99.6', - x: 19.5, - y: 195.9, - }, - { - l: '99.6', - x: 19.5833, - y: 195.8952, - }, - { - l: '99.6', - x: 19.6667, - y: 195.8952, - }, - { - l: '99.6', - x: 19.75, - y: 195.9015, - }, - { - l: '99.6', - x: 19.8333, - y: 195.9079, - }, - { - l: '99.6', - x: 19.9167, - y: 195.9142, - }, - { - l: '99.6', - x: 20.0, - y: 195.9205, - }, - { - l: '99.6', - x: 20.0, - y: 195.9205, - }, + { l: 99.6, x: 4, y: 113.3843 }, + { l: 99.6, x: 4.083, y: 114.0478 }, + { l: 99.6, x: 4.167, y: 114.728 }, + { l: 99.6, x: 4.25, y: 115.4005 }, + { l: 99.6, x: 4.333, y: 116.0733 }, + { l: 99.6, x: 4.417, y: 116.7741 }, + { l: 99.6, x: 4.5, y: 117.4642 }, + { l: 99.6, x: 4.583, y: 118.1574 }, + { l: 99.6, x: 4.667, y: 118.8647 }, + { l: 99.6, x: 4.75, y: 119.5529 }, + { l: 99.6, x: 4.833, y: 120.2385 }, + { l: 99.6, x: 4.917, y: 120.9325 }, + { l: 99.6, x: 5, y: 121.5965 }, + { l: 99.6, x: 5.083, y: 122.2439 }, + { l: 99.6, x: 5.167, y: 122.9021 }, + { l: 99.6, x: 5.25, y: 123.5248 }, + { l: 99.6, x: 5.333, y: 124.1285 }, + { l: 99.6, x: 5.417, y: 124.7477 }, + { l: 99.6, x: 5.5, y: 125.3376 }, + { l: 99.6, x: 5.583, y: 125.9167 }, + { l: 99.6, x: 5.667, y: 126.5109 }, + { l: 99.6, x: 5.75, y: 127.0872 }, + { l: 99.6, x: 5.833, y: 127.6636 }, + { l: 99.6, x: 5.917, y: 128.247 }, + { l: 99.6, x: 6, y: 128.8125 }, + { l: 99.6, x: 6.083, y: 129.3861 }, + { l: 99.6, x: 6.167, y: 129.9587 }, + { l: 99.6, x: 6.25, y: 130.5214 }, + { l: 99.6, x: 6.333, y: 131.0843 }, + { l: 99.6, x: 6.417, y: 131.6428 }, + { l: 99.6, x: 6.5, y: 132.2058 }, + { l: 99.6, x: 6.583, y: 132.7578 }, + { l: 99.6, x: 6.667, y: 133.3197 }, + { l: 99.6, x: 6.75, y: 133.8829 }, + { l: 99.6, x: 6.833, y: 134.4383 }, + { l: 99.6, x: 6.917, y: 135.0117 }, + { l: 99.6, x: 7, y: 135.5784 }, + { l: 99.6, x: 7.083, y: 136.1485 }, + { l: 99.6, x: 7.167, y: 136.7223 }, + { l: 99.6, x: 7.25, y: 137.2926 }, + { l: 99.6, x: 7.333, y: 137.8597 }, + { l: 99.6, x: 7.417, y: 138.4371 }, + { l: 99.6, x: 7.5, y: 139.0078 }, + { l: 99.6, x: 7.583, y: 139.5753 }, + { l: 99.6, x: 7.667, y: 140.1386 }, + { l: 99.6, x: 7.75, y: 140.7097 }, + { l: 99.6, x: 7.833, y: 141.2554 }, + { l: 99.6, x: 7.917, y: 141.8189 }, + { l: 99.6, x: 8, y: 142.3758 }, + { l: 99.6, x: 8.083, y: 142.9252 }, + { l: 99.6, x: 8.167, y: 143.4666 }, + { l: 99.6, x: 8.25, y: 144.0017 }, + { l: 99.6, x: 8.333, y: 144.5403 }, + { l: 99.6, x: 8.417, y: 145.0631 }, + { l: 99.6, x: 8.5, y: 145.5798 }, + { l: 99.6, x: 8.583, y: 146.1 }, + { l: 99.6, x: 8.667, y: 146.6266 }, + { l: 99.6, x: 8.75, y: 147.1249 }, + { l: 99.6, x: 8.833, y: 147.638 }, + { l: 99.6, x: 8.917, y: 148.1462 }, + { l: 99.6, x: 9, y: 148.6596 }, + { l: 99.6, x: 9.083, y: 149.1655 }, + { l: 99.6, x: 9.167, y: 149.6778 }, + { l: 99.6, x: 9.25, y: 150.1876 }, + { l: 99.6, x: 9.333, y: 150.683 }, + { l: 99.6, x: 9.417, y: 151.203 }, + { l: 99.6, x: 9.5, y: 151.7023 }, + { l: 99.6, x: 9.583, y: 152.2055 }, + { l: 99.6, x: 9.667, y: 152.7149 }, + { l: 99.6, x: 9.75, y: 153.2185 }, + { l: 99.6, x: 9.833, y: 153.7371 }, + { l: 99.6, x: 9.917, y: 154.2659 }, + { l: 99.6, x: 10, y: 154.7886 }, + { l: 99.6, x: 10.083, y: 155.3116 }, + { l: 99.6, x: 10.167, y: 155.8562 }, + { l: 99.6, x: 10.25, y: 156.3835 }, + { l: 99.6, x: 10.333, y: 156.9148 }, + { l: 99.6, x: 10.417, y: 157.4415 }, + { l: 99.6, x: 10.5, y: 157.9622 }, + { l: 99.6, x: 10.583, y: 158.4721 }, + { l: 99.6, x: 10.667, y: 158.9922 }, + { l: 99.6, x: 10.75, y: 159.4953 }, + { l: 99.6, x: 10.833, y: 159.9987 }, + { l: 99.6, x: 10.917, y: 160.5123 }, + { l: 99.6, x: 11, y: 161.0051 }, + { l: 99.6, x: 11.083, y: 161.5133 }, + { l: 99.6, x: 11.167, y: 162.0167 }, + { l: 99.6, x: 11.25, y: 162.5181 }, + { l: 99.6, x: 11.333, y: 163.0312 }, + { l: 99.6, x: 11.417, y: 163.5395 }, + { l: 99.6, x: 11.5, y: 164.0644 }, + { l: 99.6, x: 11.583, y: 164.5897 }, + { l: 99.6, x: 11.667, y: 165.1409 }, + { l: 99.6, x: 11.75, y: 165.7046 }, + { l: 99.6, x: 11.833, y: 166.2686 }, + { l: 99.6, x: 11.917, y: 166.8551 }, + { l: 99.6, x: 12, y: 167.4352 }, + { l: 99.6, x: 12.083, y: 168.0421 }, + { l: 99.6, x: 12.167, y: 168.6643 }, + { l: 99.6, x: 12.25, y: 169.3021 }, + { l: 99.6, x: 12.333, y: 169.9443 }, + { l: 99.6, x: 12.417, y: 170.6134 }, + { l: 99.6, x: 12.5, y: 171.2753 }, + { l: 99.6, x: 12.583, y: 171.9601 }, + { l: 99.6, x: 12.667, y: 172.6611 }, + { l: 99.6, x: 12.75, y: 173.3657 }, + { l: 99.6, x: 12.833, y: 174.0932 }, + { l: 99.6, x: 12.917, y: 174.8334 }, + { l: 99.6, x: 13, y: 175.5724 }, + { l: 99.6, x: 13.083, y: 176.3232 }, + { l: 99.6, x: 13.167, y: 177.0825 }, + { l: 99.6, x: 13.25, y: 177.8444 }, + { l: 99.6, x: 13.333, y: 178.6056 }, + { l: 99.6, x: 13.417, y: 179.3678 }, + { l: 99.6, x: 13.5, y: 180.117 }, + { l: 99.6, x: 13.583, y: 180.8651 }, + { l: 99.6, x: 13.667, y: 181.6022 }, + { l: 99.6, x: 13.75, y: 182.3066 }, + { l: 99.6, x: 13.833, y: 183.0096 }, + { l: 99.6, x: 13.917, y: 183.705 }, + { l: 99.6, x: 14, y: 184.3634 }, + { l: 99.6, x: 14.083, y: 185.0017 }, + { l: 99.6, x: 14.167, y: 185.634 }, + { l: 99.6, x: 14.25, y: 186.2228 }, + { l: 99.6, x: 14.333, y: 186.791 }, + { l: 99.6, x: 14.417, y: 187.3566 }, + { l: 99.6, x: 14.5, y: 187.8677 }, + { l: 99.6, x: 14.583, y: 188.3695 }, + { l: 99.6, x: 14.667, y: 188.8448 }, + { l: 99.6, x: 14.75, y: 189.2978 }, + { l: 99.6, x: 14.833, y: 189.7143 }, + { l: 99.6, x: 14.917, y: 190.1234 }, + { l: 99.6, x: 15, y: 190.4955 }, + { l: 99.6, x: 15.083, y: 190.8555 }, + { l: 99.6, x: 15.167, y: 191.1918 }, + { l: 99.6, x: 15.25, y: 191.4962 }, + { l: 99.6, x: 15.333, y: 191.7888 }, + { l: 99.6, x: 15.417, y: 192.0659 }, + { l: 99.6, x: 15.5, y: 192.3166 }, + { l: 99.6, x: 15.583, y: 192.5555 }, + { l: 99.6, x: 15.667, y: 192.7853 }, + { l: 99.6, x: 15.75, y: 193.0096 }, + { l: 99.6, x: 15.833, y: 193.2 }, + { l: 99.6, x: 15.917, y: 193.3966 }, + { l: 99.6, x: 16, y: 193.5727 }, + { l: 99.6, x: 16.083, y: 193.7307 }, + { l: 99.6, x: 16.167, y: 193.8948 }, + { l: 99.6, x: 16.25, y: 194.0435 }, + { l: 99.6, x: 16.333, y: 194.1855 }, + { l: 99.6, x: 16.417, y: 194.3064 }, + { l: 99.6, x: 16.5, y: 194.4394 }, + { l: 99.6, x: 16.583, y: 194.5499 }, + { l: 99.6, x: 16.667, y: 194.655 }, + { l: 99.6, x: 16.75, y: 194.7568 }, + { l: 99.6, x: 16.833, y: 194.8631 }, + { l: 99.6, x: 16.917, y: 194.9481 }, + { l: 99.6, x: 17, y: 195.0302 }, + { l: 99.6, x: 17.083, y: 195.1168 }, + { l: 99.6, x: 17.167, y: 195.1977 }, + { l: 99.6, x: 17.25, y: 195.2556 }, + { l: 99.6, x: 17.333, y: 195.3227 }, + { l: 99.6, x: 17.417, y: 195.3952 }, + { l: 99.6, x: 17.5, y: 195.4493 }, + { l: 99.6, x: 17.583, y: 195.4972 }, + { l: 99.6, x: 17.667, y: 195.5502 }, + { l: 99.6, x: 17.75, y: 195.5898 }, + { l: 99.6, x: 17.833, y: 195.6295 }, + { l: 99.6, x: 17.917, y: 195.6522 }, + { l: 99.6, x: 18, y: 195.6792 }, + { l: 99.6, x: 18.083, y: 195.6998 }, + { l: 99.6, x: 18.167, y: 195.7206 }, + { l: 99.6, x: 18.25, y: 195.7396 }, + { l: 99.6, x: 18.333, y: 195.7586 }, + { l: 99.6, x: 18.417, y: 195.7714 }, + { l: 99.6, x: 18.5, y: 195.773 }, + { l: 99.6, x: 18.583, y: 195.7793 }, + { l: 99.6, x: 18.667, y: 195.7747 }, + { l: 99.6, x: 18.75, y: 195.7857 }, + { l: 99.6, x: 18.833, y: 195.7857 }, + { l: 99.6, x: 18.917, y: 195.7856 }, + { l: 99.6, x: 19, y: 195.781 }, + { l: 99.6, x: 19.083, y: 195.792 }, + { l: 99.6, x: 19.167, y: 195.7873 }, + { l: 99.6, x: 19.25, y: 195.7873 }, + { l: 99.6, x: 19.333, y: 195.7983 }, + { l: 99.6, x: 19.417, y: 195.7984 }, + { l: 99.6, x: 19.5, y: 195.7983 }, + { l: 99.6, x: 19.583, y: 195.7937 }, + { l: 99.6, x: 19.667, y: 195.7937 }, + { l: 99.6, x: 19.75, y: 195.8 }, + { l: 99.6, x: 19.833, y: 195.8063 }, + { l: 99.6, x: 19.917, y: 195.8127 }, ], }, ], - weight: null, - ofc: null, - bmi: null, }, - female: null, }, }, ], diff --git a/src/chartdata/who_bmi_female_centile_data.ts b/src/chartdata/who_bmi_female_centile_data.ts new file mode 100644 index 0000000..6de82f2 --- /dev/null +++ b/src/chartdata/who_bmi_female_centile_data.ts @@ -0,0 +1,2879 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoBMIFemaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + female: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 10.5723 }, + { l: 1, x: 0.0575, y: 11.019 }, + { l: 1, x: 0.0767, y: 11.4311 }, + { l: 1, x: 0.0833, y: 11.5598 }, + { l: 1, x: 0.0958, y: 11.7775 }, + { l: 1, x: 0.115, y: 12.0621 }, + { l: 1, x: 0.1342, y: 12.3005 }, + { l: 1, x: 0.1533, y: 12.5021 }, + { l: 1, x: 0.1667, y: 12.6254 }, + { l: 1, x: 0.1725, y: 12.6757 }, + { l: 1, x: 0.1916, y: 12.825 }, + { l: 1, x: 0.2108, y: 12.9544 }, + { l: 1, x: 0.23, y: 13.0668 }, + { l: 1, x: 0.2491, y: 13.1654 }, + { l: 1, x: 0.25, y: 13.1695 }, + { l: 1, x: 0.3333, y: 13.475 }, + { l: 1, x: 0.4167, y: 13.6533 }, + { l: 1, x: 0.5, y: 13.7453 }, + { l: 1, x: 0.5833, y: 13.7703 }, + { l: 1, x: 0.6667, y: 13.7459 }, + { l: 1, x: 0.75, y: 13.6873 }, + { l: 1, x: 0.8333, y: 13.6077 }, + { l: 1, x: 0.9167, y: 13.5184 }, + { l: 1, x: 1, y: 13.4276 }, + { l: 1, x: 1.0833, y: 13.3395 }, + { l: 1, x: 1.1667, y: 13.256 }, + { l: 1, x: 1.25, y: 13.1781 }, + { l: 1, x: 1.3333, y: 13.1064 }, + { l: 1, x: 1.4167, y: 13.0414 }, + { l: 1, x: 1.5, y: 12.9829 }, + { l: 1, x: 1.5833, y: 12.9309 }, + { l: 1, x: 1.6667, y: 12.885 }, + { l: 1, x: 1.75, y: 12.8459 }, + { l: 1, x: 1.8333, y: 12.8133 }, + { l: 1, x: 1.9167, y: 12.7874 }, + { l: 1, x: 2, y: 12.7674 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 11.0971 }, + { l: 3, x: 0.0575, y: 11.5499 }, + { l: 3, x: 0.0767, y: 11.9697 }, + { l: 3, x: 0.0833, y: 12.1009 }, + { l: 3, x: 0.0958, y: 12.3226 }, + { l: 3, x: 0.115, y: 12.612 }, + { l: 3, x: 0.1342, y: 12.8542 }, + { l: 3, x: 0.1533, y: 13.0585 }, + { l: 3, x: 0.1667, y: 13.1833 }, + { l: 3, x: 0.1725, y: 13.2341 }, + { l: 3, x: 0.1916, y: 13.3849 }, + { l: 3, x: 0.2108, y: 13.5152 }, + { l: 3, x: 0.23, y: 13.6281 }, + { l: 3, x: 0.2491, y: 13.7269 }, + { l: 3, x: 0.25, y: 13.7309 }, + { l: 3, x: 0.3333, y: 14.0345 }, + { l: 3, x: 0.4167, y: 14.2086 }, + { l: 3, x: 0.5, y: 14.2947 }, + { l: 3, x: 0.5833, y: 14.3126 }, + { l: 3, x: 0.6667, y: 14.2803 }, + { l: 3, x: 0.75, y: 14.2134 }, + { l: 3, x: 0.8333, y: 14.1254 }, + { l: 3, x: 0.9167, y: 14.028 }, + { l: 3, x: 1, y: 13.9296 }, + { l: 3, x: 1.0833, y: 13.8342 }, + { l: 3, x: 1.1667, y: 13.7441 }, + { l: 3, x: 1.25, y: 13.6602 }, + { l: 3, x: 1.3333, y: 13.5829 }, + { l: 3, x: 1.4167, y: 13.5127 }, + { l: 3, x: 1.5, y: 13.4495 }, + { l: 3, x: 1.5833, y: 13.3933 }, + { l: 3, x: 1.6667, y: 13.3435 }, + { l: 3, x: 1.75, y: 13.3008 }, + { l: 3, x: 1.8333, y: 13.2651 }, + { l: 3, x: 1.9167, y: 13.2364 }, + { l: 3, x: 2, y: 13.2138 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 11.38 }, + { l: 5, x: 0.0575, y: 11.8368 }, + { l: 5, x: 0.0767, y: 12.2613 }, + { l: 5, x: 0.0833, y: 12.394 }, + { l: 5, x: 0.0958, y: 12.6181 }, + { l: 5, x: 0.115, y: 12.9106 }, + { l: 5, x: 0.1342, y: 13.155 }, + { l: 5, x: 0.1533, y: 13.3611 }, + { l: 5, x: 0.1667, y: 13.4869 }, + { l: 5, x: 0.1725, y: 13.538 }, + { l: 5, x: 0.1916, y: 13.6898 }, + { l: 5, x: 0.2108, y: 13.8208 }, + { l: 5, x: 0.23, y: 13.9341 }, + { l: 5, x: 0.2491, y: 14.0331 }, + { l: 5, x: 0.25, y: 14.0372 }, + { l: 5, x: 0.3333, y: 14.3403 }, + { l: 5, x: 0.4167, y: 14.5125 }, + { l: 5, x: 0.5, y: 14.5957 }, + { l: 5, x: 0.5833, y: 14.61 }, + { l: 5, x: 0.6667, y: 14.5737 }, + { l: 5, x: 0.75, y: 14.5024 }, + { l: 5, x: 0.8333, y: 14.41 }, + { l: 5, x: 0.9167, y: 14.3083 }, + { l: 5, x: 1, y: 14.2058 }, + { l: 5, x: 1.0833, y: 14.1066 }, + { l: 5, x: 1.1667, y: 14.013 }, + { l: 5, x: 1.25, y: 13.9258 }, + { l: 5, x: 1.3333, y: 13.8455 }, + { l: 5, x: 1.4167, y: 13.7726 }, + { l: 5, x: 1.5, y: 13.7069 }, + { l: 5, x: 1.5833, y: 13.6484 }, + { l: 5, x: 1.6667, y: 13.5965 }, + { l: 5, x: 1.75, y: 13.5519 }, + { l: 5, x: 1.8333, y: 13.5145 }, + { l: 5, x: 1.9167, y: 13.4843 }, + { l: 5, x: 2, y: 13.4604 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 11.8226 }, + { l: 10, x: 0.0575, y: 12.2865 }, + { l: 10, x: 0.0767, y: 12.7192 }, + { l: 10, x: 0.0833, y: 12.8544 }, + { l: 10, x: 0.0958, y: 13.0827 }, + { l: 10, x: 0.115, y: 13.3804 }, + { l: 10, x: 0.1342, y: 13.6289 }, + { l: 10, x: 0.1533, y: 13.838 }, + { l: 10, x: 0.1667, y: 13.9656 }, + { l: 10, x: 0.1725, y: 14.0174 }, + { l: 10, x: 0.1916, y: 14.1711 }, + { l: 10, x: 0.2108, y: 14.3034 }, + { l: 10, x: 0.23, y: 14.4177 }, + { l: 10, x: 0.2491, y: 14.5173 }, + { l: 10, x: 0.25, y: 14.5214 }, + { l: 10, x: 0.3333, y: 14.8246 }, + { l: 10, x: 0.4167, y: 14.9945 }, + { l: 10, x: 0.5, y: 15.0736 }, + { l: 10, x: 0.5833, y: 15.0826 }, + { l: 10, x: 0.6667, y: 15.0402 }, + { l: 10, x: 0.75, y: 14.9623 }, + { l: 10, x: 0.8333, y: 14.8631 }, + { l: 10, x: 0.9167, y: 14.7549 }, + { l: 10, x: 1, y: 14.646 }, + { l: 10, x: 1.0833, y: 14.541 }, + { l: 10, x: 1.1667, y: 14.4419 }, + { l: 10, x: 1.25, y: 14.3496 }, + { l: 10, x: 1.3333, y: 14.2647 }, + { l: 10, x: 1.4167, y: 14.1876 }, + { l: 10, x: 1.5, y: 14.118 }, + { l: 10, x: 1.5833, y: 14.0559 }, + { l: 10, x: 1.6667, y: 14.0008 }, + { l: 10, x: 1.75, y: 13.9533 }, + { l: 10, x: 1.8333, y: 13.9133 }, + { l: 10, x: 1.9167, y: 13.8807 }, + { l: 10, x: 2, y: 13.8548 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 12.126 }, + { l: 15, x: 0.0575, y: 12.5955 }, + { l: 15, x: 0.0767, y: 13.0342 }, + { l: 15, x: 0.0833, y: 13.1714 }, + { l: 15, x: 0.0958, y: 13.4029 }, + { l: 15, x: 0.115, y: 13.7045 }, + { l: 15, x: 0.1342, y: 13.9561 }, + { l: 15, x: 0.1533, y: 14.1676 }, + { l: 15, x: 0.1667, y: 14.2966 }, + { l: 15, x: 0.1725, y: 14.3489 }, + { l: 15, x: 0.1916, y: 14.5041 }, + { l: 15, x: 0.2108, y: 14.6375 }, + { l: 15, x: 0.23, y: 14.7527 }, + { l: 15, x: 0.2491, y: 14.8529 }, + { l: 15, x: 0.25, y: 14.8571 }, + { l: 15, x: 0.3333, y: 15.1609 }, + { l: 15, x: 0.4167, y: 15.3296 }, + { l: 15, x: 0.5, y: 15.4063 }, + { l: 15, x: 0.5833, y: 15.4119 }, + { l: 15, x: 0.6667, y: 15.3656 }, + { l: 15, x: 0.75, y: 15.2833 }, + { l: 15, x: 0.8333, y: 15.1795 }, + { l: 15, x: 0.9167, y: 15.0668 }, + { l: 15, x: 1, y: 14.9538 }, + { l: 15, x: 1.0833, y: 14.8447 }, + { l: 15, x: 1.1667, y: 14.7419 }, + { l: 15, x: 1.25, y: 14.6462 }, + { l: 15, x: 1.3333, y: 14.5582 }, + { l: 15, x: 1.4167, y: 14.4782 }, + { l: 15, x: 1.5, y: 14.406 }, + { l: 15, x: 1.5833, y: 14.3415 }, + { l: 15, x: 1.6667, y: 14.2843 }, + { l: 15, x: 1.75, y: 14.2348 }, + { l: 15, x: 1.8333, y: 14.193 }, + { l: 15, x: 1.9167, y: 14.1589 }, + { l: 15, x: 2, y: 14.1316 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 13.4501 }, + { l: 50, x: 0.0575, y: 13.9505 }, + { l: 50, x: 0.0767, y: 14.4208 }, + { l: 50, x: 0.0833, y: 14.5679 }, + { l: 50, x: 0.0958, y: 14.8157 }, + { l: 50, x: 0.115, y: 15.138 }, + { l: 50, x: 0.1342, y: 15.4063 }, + { l: 50, x: 0.1533, y: 15.6311 }, + { l: 50, x: 0.1667, y: 15.7679 }, + { l: 50, x: 0.1725, y: 15.8232 }, + { l: 50, x: 0.1916, y: 15.9874 }, + { l: 50, x: 0.2108, y: 16.1277 }, + { l: 50, x: 0.23, y: 16.2485 }, + { l: 50, x: 0.2491, y: 16.3531 }, + { l: 50, x: 0.25, y: 16.3574 }, + { l: 50, x: 0.3333, y: 16.6703 }, + { l: 50, x: 0.4167, y: 16.8386 }, + { l: 50, x: 0.5, y: 16.9083 }, + { l: 50, x: 0.5833, y: 16.902 }, + { l: 50, x: 0.6667, y: 16.8404 }, + { l: 50, x: 0.75, y: 16.7406 }, + { l: 50, x: 0.8333, y: 16.6184 }, + { l: 50, x: 0.9167, y: 16.4875 }, + { l: 50, x: 1, y: 16.3568 }, + { l: 50, x: 1.0833, y: 16.2311 }, + { l: 50, x: 1.1667, y: 16.1128 }, + { l: 50, x: 1.25, y: 16.0028 }, + { l: 50, x: 1.3333, y: 15.9017 }, + { l: 50, x: 1.4167, y: 15.8096 }, + { l: 50, x: 1.5, y: 15.7263 }, + { l: 50, x: 1.5833, y: 15.6517 }, + { l: 50, x: 1.6667, y: 15.5855 }, + { l: 50, x: 1.75, y: 15.5278 }, + { l: 50, x: 1.8333, y: 15.4787 }, + { l: 50, x: 1.9167, y: 15.438 }, + { l: 50, x: 2, y: 15.4052 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 14.8417 }, + { l: 85, x: 0.0575, y: 15.3855 }, + { l: 85, x: 0.0767, y: 15.8978 }, + { l: 85, x: 0.0833, y: 16.058 }, + { l: 85, x: 0.0958, y: 16.3277 }, + { l: 85, x: 0.115, y: 16.6782 }, + { l: 85, x: 0.1342, y: 16.9698 }, + { l: 85, x: 0.1533, y: 17.2136 }, + { l: 85, x: 0.1667, y: 17.362 }, + { l: 85, x: 0.1725, y: 17.4218 }, + { l: 85, x: 0.1916, y: 17.5997 }, + { l: 85, x: 0.2108, y: 17.7511 }, + { l: 85, x: 0.23, y: 17.8815 }, + { l: 85, x: 0.2491, y: 17.994 }, + { l: 85, x: 0.25, y: 17.9986 }, + { l: 85, x: 0.3333, y: 18.3332 }, + { l: 85, x: 0.4167, y: 18.5104 }, + { l: 85, x: 0.5, y: 18.58 }, + { l: 85, x: 0.5833, y: 18.5669 }, + { l: 85, x: 0.6667, y: 18.494 }, + { l: 85, x: 0.75, y: 18.3795 }, + { l: 85, x: 0.8333, y: 18.2409 }, + { l: 85, x: 0.9167, y: 18.0933 }, + { l: 85, x: 1, y: 17.9461 }, + { l: 85, x: 1.0833, y: 17.8047 }, + { l: 85, x: 1.1667, y: 17.6717 }, + { l: 85, x: 1.25, y: 17.5481 }, + { l: 85, x: 1.3333, y: 17.4345 }, + { l: 85, x: 1.4167, y: 17.3309 }, + { l: 85, x: 1.5, y: 17.2371 }, + { l: 85, x: 1.5833, y: 17.1529 }, + { l: 85, x: 1.6667, y: 17.0783 }, + { l: 85, x: 1.75, y: 17.0129 }, + { l: 85, x: 1.8333, y: 16.9571 }, + { l: 85, x: 1.9167, y: 16.9104 }, + { l: 85, x: 2, y: 16.8728 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 15.1807 }, + { l: 90, x: 0.0575, y: 15.7368 }, + { l: 90, x: 0.0767, y: 16.2607 }, + { l: 90, x: 0.0833, y: 16.4245 }, + { l: 90, x: 0.0958, y: 16.7003 }, + { l: 90, x: 0.115, y: 17.0587 }, + { l: 90, x: 0.1342, y: 17.3569 }, + { l: 90, x: 0.1533, y: 17.6062 }, + { l: 90, x: 0.1667, y: 17.7579 }, + { l: 90, x: 0.1725, y: 17.8191 }, + { l: 90, x: 0.1916, y: 18.001 }, + { l: 90, x: 0.2108, y: 18.1558 }, + { l: 90, x: 0.23, y: 18.2891 }, + { l: 90, x: 0.2491, y: 18.4041 }, + { l: 90, x: 0.25, y: 18.4088 }, + { l: 90, x: 0.3333, y: 18.7507 }, + { l: 90, x: 0.4167, y: 18.9317 }, + { l: 90, x: 0.5, y: 19.0027 }, + { l: 90, x: 0.5833, y: 18.989 }, + { l: 90, x: 0.6667, y: 18.9141 }, + { l: 90, x: 0.75, y: 18.7967 }, + { l: 90, x: 0.8333, y: 18.6547 }, + { l: 90, x: 0.9167, y: 18.5036 }, + { l: 90, x: 1, y: 18.3528 }, + { l: 90, x: 1.0833, y: 18.2079 }, + { l: 90, x: 1.1667, y: 18.0716 }, + { l: 90, x: 1.25, y: 17.945 }, + { l: 90, x: 1.3333, y: 17.8287 }, + { l: 90, x: 1.4167, y: 17.7225 }, + { l: 90, x: 1.5, y: 17.6264 }, + { l: 90, x: 1.5833, y: 17.5401 }, + { l: 90, x: 1.6667, y: 17.4636 }, + { l: 90, x: 1.75, y: 17.3966 }, + { l: 90, x: 1.8333, y: 17.3394 }, + { l: 90, x: 1.9167, y: 17.2915 }, + { l: 90, x: 2, y: 17.2528 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 15.69 }, + { l: 95, x: 0.0575, y: 16.2658 }, + { l: 95, x: 0.0767, y: 16.808 }, + { l: 95, x: 0.0833, y: 16.9776 }, + { l: 95, x: 0.0958, y: 17.2631 }, + { l: 95, x: 0.115, y: 17.6342 }, + { l: 95, x: 0.1342, y: 17.9429 }, + { l: 95, x: 0.1533, y: 18.2011 }, + { l: 95, x: 0.1667, y: 18.3582 }, + { l: 95, x: 0.1725, y: 18.4216 }, + { l: 95, x: 0.1916, y: 18.6101 }, + { l: 95, x: 0.2108, y: 18.7705 }, + { l: 95, x: 0.23, y: 18.9086 }, + { l: 95, x: 0.2491, y: 19.0278 }, + { l: 95, x: 0.25, y: 19.0327 }, + { l: 95, x: 0.3333, y: 19.3873 }, + { l: 95, x: 0.4167, y: 19.5753 }, + { l: 95, x: 0.5, y: 19.6492 }, + { l: 95, x: 0.5833, y: 19.6356 }, + { l: 95, x: 0.6667, y: 19.5585 }, + { l: 95, x: 0.75, y: 19.4374 }, + { l: 95, x: 0.8333, y: 19.2907 }, + { l: 95, x: 0.9167, y: 19.1346 }, + { l: 95, x: 1, y: 18.9789 }, + { l: 95, x: 1.0833, y: 18.8291 }, + { l: 95, x: 1.1667, y: 18.6882 }, + { l: 95, x: 1.25, y: 18.5573 }, + { l: 95, x: 1.3333, y: 18.4371 }, + { l: 95, x: 1.4167, y: 18.3273 }, + { l: 95, x: 1.5, y: 18.2279 }, + { l: 95, x: 1.5833, y: 18.1387 }, + { l: 95, x: 1.6667, y: 18.0596 }, + { l: 95, x: 1.75, y: 17.9903 }, + { l: 95, x: 1.8333, y: 17.9311 }, + { l: 95, x: 1.9167, y: 17.8816 }, + { l: 95, x: 2, y: 17.8416 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 16.0252 }, + { l: 97, x: 0.0575, y: 16.6146 }, + { l: 97, x: 0.0767, y: 17.1696 }, + { l: 97, x: 0.0833, y: 17.3432 }, + { l: 97, x: 0.0958, y: 17.6355 }, + { l: 97, x: 0.115, y: 18.0153 }, + { l: 97, x: 0.1342, y: 18.3315 }, + { l: 97, x: 0.1533, y: 18.596 }, + { l: 97, x: 0.1667, y: 18.7569 }, + { l: 97, x: 0.1725, y: 18.8218 }, + { l: 97, x: 0.1916, y: 19.015 }, + { l: 97, x: 0.2108, y: 19.1794 }, + { l: 97, x: 0.23, y: 19.3211 }, + { l: 97, x: 0.2491, y: 19.4434 }, + { l: 97, x: 0.25, y: 19.4484 }, + { l: 97, x: 0.3333, y: 19.8124 }, + { l: 97, x: 0.4167, y: 20.0059 }, + { l: 97, x: 0.5, y: 20.0826 }, + { l: 97, x: 0.5833, y: 20.0694 }, + { l: 97, x: 0.6667, y: 19.9915 }, + { l: 97, x: 0.75, y: 19.8683 }, + { l: 97, x: 0.8333, y: 19.7189 }, + { l: 97, x: 0.9167, y: 19.5599 }, + { l: 97, x: 1, y: 19.4011 }, + { l: 97, x: 1.0833, y: 19.2484 }, + { l: 97, x: 1.1667, y: 19.1047 }, + { l: 97, x: 1.25, y: 18.9711 }, + { l: 97, x: 1.3333, y: 18.8485 }, + { l: 97, x: 1.4167, y: 18.7365 }, + { l: 97, x: 1.5, y: 18.6351 }, + { l: 97, x: 1.5833, y: 18.5441 }, + { l: 97, x: 1.6667, y: 18.4636 }, + { l: 97, x: 1.75, y: 18.3929 }, + { l: 97, x: 1.8333, y: 18.3326 }, + { l: 97, x: 1.9167, y: 18.282 }, + { l: 97, x: 2, y: 18.2413 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 16.6676 }, + { l: 99, x: 0.0575, y: 17.285 }, + { l: 99, x: 0.0767, y: 17.8659 }, + { l: 99, x: 0.0833, y: 18.0476 }, + { l: 99, x: 0.0958, y: 18.3536 }, + { l: 99, x: 0.115, y: 18.7516 }, + { l: 99, x: 0.1342, y: 19.083 }, + { l: 99, x: 0.1533, y: 19.3604 }, + { l: 99, x: 0.1667, y: 19.5294 }, + { l: 99, x: 0.1725, y: 19.5975 }, + { l: 99, x: 0.1916, y: 19.8005 }, + { l: 99, x: 0.2108, y: 19.9734 }, + { l: 99, x: 0.23, y: 20.1225 }, + { l: 99, x: 0.2491, y: 20.2513 }, + { l: 99, x: 0.25, y: 20.2566 }, + { l: 99, x: 0.3333, y: 20.6413 }, + { l: 99, x: 0.4167, y: 20.8475 }, + { l: 99, x: 0.5, y: 20.931 }, + { l: 99, x: 0.5833, y: 20.9204 }, + { l: 99, x: 0.6667, y: 20.8419 }, + { l: 99, x: 0.75, y: 20.7158 }, + { l: 99, x: 0.8333, y: 20.5621 }, + { l: 99, x: 0.9167, y: 20.3982 }, + { l: 99, x: 1, y: 20.2342 }, + { l: 99, x: 1.0833, y: 20.0764 }, + { l: 99, x: 1.1667, y: 19.9278 }, + { l: 99, x: 1.25, y: 19.7897 }, + { l: 99, x: 1.3333, y: 19.663 }, + { l: 99, x: 1.4167, y: 19.5472 }, + { l: 99, x: 1.5, y: 19.4424 }, + { l: 99, x: 1.5833, y: 19.3484 }, + { l: 99, x: 1.6667, y: 19.2653 }, + { l: 99, x: 1.75, y: 19.1923 }, + { l: 99, x: 1.8333, y: 19.1302 }, + { l: 99, x: 1.9167, y: 19.0781 }, + { l: 99, x: 2, y: 19.0364 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + female: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 13.0198 }, + { l: 1, x: 2.0833, y: 12.9962 }, + { l: 1, x: 2.1667, y: 12.9736 }, + { l: 1, x: 2.25, y: 12.9519 }, + { l: 1, x: 2.3333, y: 12.9309 }, + { l: 1, x: 2.4167, y: 12.9101 }, + { l: 1, x: 2.5, y: 12.8893 }, + { l: 1, x: 2.5833, y: 12.8682 }, + { l: 1, x: 2.6667, y: 12.8467 }, + { l: 1, x: 2.75, y: 12.8247 }, + { l: 1, x: 2.8333, y: 12.8022 }, + { l: 1, x: 2.9167, y: 12.7797 }, + { l: 1, x: 3, y: 12.7564 }, + { l: 1, x: 3.0833, y: 12.7331 }, + { l: 1, x: 3.1667, y: 12.7094 }, + { l: 1, x: 3.25, y: 12.6855 }, + { l: 1, x: 3.3333, y: 12.6611 }, + { l: 1, x: 3.4167, y: 12.6368 }, + { l: 1, x: 3.5, y: 12.6125 }, + { l: 1, x: 3.5833, y: 12.588 }, + { l: 1, x: 3.6667, y: 12.5642 }, + { l: 1, x: 3.75, y: 12.541 }, + { l: 1, x: 3.8333, y: 12.5187 }, + { l: 1, x: 3.9167, y: 12.4975 }, + { l: 1, x: 4, y: 12.4777 }, + { l: 1, x: 3.0833, y: 12.7331 }, + { l: 1, x: 4.1667, y: 12.4408 }, + { l: 1, x: 4.25, y: 12.4239 }, + { l: 1, x: 4.3333, y: 12.4085 }, + { l: 1, x: 4.4167, y: 12.3943 }, + { l: 1, x: 4.5, y: 12.3816 }, + { l: 1, x: 4.5833, y: 12.3701 }, + { l: 1, x: 4.6667, y: 12.3598 }, + { l: 1, x: 4.75, y: 12.3509 }, + { l: 1, x: 4.8333, y: 12.343 }, + { l: 1, x: 4.9167, y: 12.3362 }, + { l: 1, x: 5.0, y: 12.3302 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 13.4729 }, + { l: 3, x: 2.0833, y: 13.4484 }, + { l: 3, x: 2.1667, y: 13.4248 }, + { l: 3, x: 2.25, y: 13.4023 }, + { l: 3, x: 2.3333, y: 13.3804 }, + { l: 3, x: 2.4167, y: 13.3588 }, + { l: 3, x: 2.5, y: 13.3373 }, + { l: 3, x: 2.5833, y: 13.3156 }, + { l: 3, x: 2.6667, y: 13.2938 }, + { l: 3, x: 2.75, y: 13.2716 }, + { l: 3, x: 2.8333, y: 13.2492 }, + { l: 3, x: 2.9167, y: 13.2269 }, + { l: 3, x: 3, y: 13.2043 }, + { l: 3, x: 3.0833, y: 13.1818 }, + { l: 3, x: 3.1667, y: 13.1592 }, + { l: 3, x: 3.25, y: 13.1366 }, + { l: 3, x: 3.3333, y: 13.1137 }, + { l: 3, x: 3.4167, y: 13.0911 }, + { l: 3, x: 3.5, y: 13.0685 }, + { l: 3, x: 3.5833, y: 13.046 }, + { l: 3, x: 3.6667, y: 13.0241 }, + { l: 3, x: 3.75, y: 13.0029 }, + { l: 3, x: 3.8333, y: 12.9826 }, + { l: 3, x: 3.9167, y: 12.9634 }, + { l: 3, x: 4, y: 12.9455 }, + { l: 3, x: 3.0833, y: 13.1818 }, + { l: 3, x: 4.1667, y: 12.9127 }, + { l: 3, x: 4.25, y: 12.898 }, + { l: 3, x: 4.3333, y: 12.8846 }, + { l: 3, x: 4.4167, y: 12.8726 }, + { l: 3, x: 4.5, y: 12.862 }, + { l: 3, x: 4.5833, y: 12.8524 }, + { l: 3, x: 4.6667, y: 12.8441 }, + { l: 3, x: 4.75, y: 12.8369 }, + { l: 3, x: 4.8333, y: 12.8307 }, + { l: 3, x: 4.9167, y: 12.8256 }, + { l: 3, x: 5.0, y: 12.8212 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 13.7229 }, + { l: 5, x: 2.0833, y: 13.6978 }, + { l: 5, x: 2.1667, y: 13.6738 }, + { l: 5, x: 2.25, y: 13.6507 }, + { l: 5, x: 2.3333, y: 13.6284 }, + { l: 5, x: 2.4167, y: 13.6064 }, + { l: 5, x: 2.5, y: 13.5846 }, + { l: 5, x: 2.5833, y: 13.5626 }, + { l: 5, x: 2.6667, y: 13.5405 }, + { l: 5, x: 2.75, y: 13.5182 }, + { l: 5, x: 2.8333, y: 13.4958 }, + { l: 5, x: 2.9167, y: 13.4738 }, + { l: 5, x: 3, y: 13.4515 }, + { l: 5, x: 3.0833, y: 13.4295 }, + { l: 5, x: 3.1667, y: 13.4075 }, + { l: 5, x: 3.25, y: 13.3857 }, + { l: 5, x: 3.3333, y: 13.3637 }, + { l: 5, x: 3.4167, y: 13.3421 }, + { l: 5, x: 3.5, y: 13.3206 }, + { l: 5, x: 3.5833, y: 13.2992 }, + { l: 5, x: 3.6667, y: 13.2784 }, + { l: 5, x: 3.75, y: 13.2584 }, + { l: 5, x: 3.8333, y: 13.2392 }, + { l: 5, x: 3.9167, y: 13.2212 }, + { l: 5, x: 4, y: 13.2045 }, + { l: 5, x: 3.0833, y: 13.4295 }, + { l: 5, x: 4.1667, y: 13.1741 }, + { l: 5, x: 4.25, y: 13.1607 }, + { l: 5, x: 4.3333, y: 13.1485 }, + { l: 5, x: 4.4167, y: 13.1377 }, + { l: 5, x: 4.5, y: 13.1283 }, + { l: 5, x: 4.5833, y: 13.1199 }, + { l: 5, x: 4.6667, y: 13.1127 }, + { l: 5, x: 4.75, y: 13.1065 }, + { l: 5, x: 4.8333, y: 13.1014 }, + { l: 5, x: 4.9167, y: 13.0971 }, + { l: 5, x: 5.0, y: 13.0936 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 14.1224 }, + { l: 10, x: 2.0833, y: 14.0965 }, + { l: 10, x: 2.1667, y: 14.0717 }, + { l: 10, x: 2.25, y: 14.0478 }, + { l: 10, x: 2.3333, y: 14.0247 }, + { l: 10, x: 2.4167, y: 14.002 }, + { l: 10, x: 2.5, y: 13.9796 }, + { l: 10, x: 2.5833, y: 13.9571 }, + { l: 10, x: 2.6667, y: 13.9347 }, + { l: 10, x: 2.75, y: 13.9123 }, + { l: 10, x: 2.8333, y: 13.8901 }, + { l: 10, x: 2.9167, y: 13.8683 }, + { l: 10, x: 3, y: 13.8466 }, + { l: 10, x: 3.0833, y: 13.8255 }, + { l: 10, x: 3.1667, y: 13.8046 }, + { l: 10, x: 3.25, y: 13.7841 }, + { l: 10, x: 3.3333, y: 13.7637 }, + { l: 10, x: 3.4167, y: 13.7437 }, + { l: 10, x: 3.5, y: 13.7239 }, + { l: 10, x: 3.5833, y: 13.7044 }, + { l: 10, x: 3.6667, y: 13.6856 }, + { l: 10, x: 3.75, y: 13.6675 }, + { l: 10, x: 3.8333, y: 13.6504 }, + { l: 10, x: 3.9167, y: 13.6343 }, + { l: 10, x: 4, y: 13.6196 }, + { l: 10, x: 3.0833, y: 13.8255 }, + { l: 10, x: 4.1667, y: 13.5932 }, + { l: 10, x: 4.25, y: 13.5818 }, + { l: 10, x: 4.3333, y: 13.5718 }, + { l: 10, x: 4.4167, y: 13.563 }, + { l: 10, x: 4.5, y: 13.5556 }, + { l: 10, x: 4.5833, y: 13.5492 }, + { l: 10, x: 4.6667, y: 13.5439 }, + { l: 10, x: 4.75, y: 13.5395 }, + { l: 10, x: 4.8333, y: 13.536 }, + { l: 10, x: 4.9167, y: 13.5334 }, + { l: 10, x: 5.0, y: 13.5314 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 14.4024 }, + { l: 15, x: 2.0833, y: 14.376 }, + { l: 15, x: 2.1667, y: 14.3505 }, + { l: 15, x: 2.25, y: 14.3261 }, + { l: 15, x: 2.3333, y: 14.3025 }, + { l: 15, x: 2.4167, y: 14.2793 }, + { l: 15, x: 2.5, y: 14.2565 }, + { l: 15, x: 2.5833, y: 14.2337 }, + { l: 15, x: 2.6667, y: 14.2111 }, + { l: 15, x: 2.75, y: 14.1886 }, + { l: 15, x: 2.8333, y: 14.1664 }, + { l: 15, x: 2.9167, y: 14.1449 }, + { l: 15, x: 3, y: 14.1237 }, + { l: 15, x: 3.0833, y: 14.1032 }, + { l: 15, x: 3.1667, y: 14.0832 }, + { l: 15, x: 3.25, y: 14.0636 }, + { l: 15, x: 3.3333, y: 14.0443 }, + { l: 15, x: 3.4167, y: 14.0255 }, + { l: 15, x: 3.5, y: 14.0071 }, + { l: 15, x: 3.5833, y: 13.989 }, + { l: 15, x: 3.6667, y: 13.9716 }, + { l: 15, x: 3.75, y: 13.955 }, + { l: 15, x: 3.8333, y: 13.9393 }, + { l: 15, x: 3.9167, y: 13.9247 }, + { l: 15, x: 4, y: 13.9114 }, + { l: 15, x: 3.0833, y: 14.1032 }, + { l: 15, x: 4.1667, y: 13.8881 }, + { l: 15, x: 4.25, y: 13.8782 }, + { l: 15, x: 4.3333, y: 13.8697 }, + { l: 15, x: 4.4167, y: 13.8624 }, + { l: 15, x: 4.5, y: 13.8565 }, + { l: 15, x: 4.5833, y: 13.8516 }, + { l: 15, x: 4.6667, y: 13.8476 }, + { l: 15, x: 4.75, y: 13.8446 }, + { l: 15, x: 4.8333, y: 13.8423 }, + { l: 15, x: 4.9167, y: 13.8408 }, + { l: 15, x: 5.0, y: 13.84 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 15.6881 }, + { l: 50, x: 2.0833, y: 15.659 }, + { l: 50, x: 2.1667, y: 15.6308 }, + { l: 50, x: 2.25, y: 15.6037 }, + { l: 50, x: 2.3333, y: 15.5777 }, + { l: 50, x: 2.4167, y: 15.5523 }, + { l: 50, x: 2.5, y: 15.5276 }, + { l: 50, x: 2.5833, y: 15.5034 }, + { l: 50, x: 2.6667, y: 15.4798 }, + { l: 50, x: 2.75, y: 15.4572 }, + { l: 50, x: 2.8333, y: 15.4356 }, + { l: 50, x: 2.9167, y: 15.4155 }, + { l: 50, x: 3, y: 15.3968 }, + { l: 50, x: 3.0833, y: 15.3796 }, + { l: 50, x: 3.1667, y: 15.3638 }, + { l: 50, x: 3.25, y: 15.3493 }, + { l: 50, x: 3.3333, y: 15.3358 }, + { l: 50, x: 3.4167, y: 15.3233 }, + { l: 50, x: 3.5, y: 15.3116 }, + { l: 50, x: 3.5833, y: 15.3007 }, + { l: 50, x: 3.6667, y: 15.2905 }, + { l: 50, x: 3.75, y: 15.2814 }, + { l: 50, x: 3.8333, y: 15.2732 }, + { l: 50, x: 3.9167, y: 15.2661 }, + { l: 50, x: 4, y: 15.2602 }, + { l: 50, x: 3.0833, y: 15.3796 }, + { l: 50, x: 4.1667, y: 15.2523 }, + { l: 50, x: 4.25, y: 15.2503 }, + { l: 50, x: 4.3333, y: 15.2496 }, + { l: 50, x: 4.4167, y: 15.2502 }, + { l: 50, x: 4.5, y: 15.2519 }, + { l: 50, x: 4.5833, y: 15.2544 }, + { l: 50, x: 4.6667, y: 15.2575 }, + { l: 50, x: 4.75, y: 15.2612 }, + { l: 50, x: 4.8333, y: 15.2653 }, + { l: 50, x: 4.9167, y: 15.2698 }, + { l: 50, x: 5.0, y: 15.2747 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 17.1634 }, + { l: 85, x: 2.0833, y: 17.1311 }, + { l: 85, x: 2.1667, y: 17.0997 }, + { l: 85, x: 2.25, y: 17.0695 }, + { l: 85, x: 2.3333, y: 17.0407 }, + { l: 85, x: 2.4167, y: 17.0127 }, + { l: 85, x: 2.5, y: 16.9859 }, + { l: 85, x: 2.5833, y: 16.9602 }, + { l: 85, x: 2.6667, y: 16.9357 }, + { l: 85, x: 2.75, y: 16.9131 }, + { l: 85, x: 2.8333, y: 16.8926 }, + { l: 85, x: 2.9167, y: 16.8747 }, + { l: 85, x: 3, y: 16.8596 }, + { l: 85, x: 3.0833, y: 16.847 }, + { l: 85, x: 3.1667, y: 16.837 }, + { l: 85, x: 3.25, y: 16.8294 }, + { l: 85, x: 3.3333, y: 16.8238 }, + { l: 85, x: 3.4167, y: 16.8198 }, + { l: 85, x: 3.5, y: 16.8172 }, + { l: 85, x: 3.5833, y: 16.8161 }, + { l: 85, x: 3.6667, y: 16.8158 }, + { l: 85, x: 3.75, y: 16.8168 }, + { l: 85, x: 3.8333, y: 16.8188 }, + { l: 85, x: 3.9167, y: 16.8219 }, + { l: 85, x: 4, y: 16.826 }, + { l: 85, x: 3.0833, y: 16.847 }, + { l: 85, x: 4.1667, y: 16.8391 }, + { l: 85, x: 4.25, y: 16.8478 }, + { l: 85, x: 4.3333, y: 16.8577 }, + { l: 85, x: 4.4167, y: 16.8689 }, + { l: 85, x: 4.5, y: 16.881 }, + { l: 85, x: 4.5833, y: 16.8936 }, + { l: 85, x: 4.6667, y: 16.9063 }, + { l: 85, x: 4.75, y: 16.9192 }, + { l: 85, x: 4.8333, y: 16.9319 }, + { l: 85, x: 4.9167, y: 16.9445 }, + { l: 85, x: 5.0, y: 16.9572 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 17.5443 }, + { l: 90, x: 2.0833, y: 17.5113 }, + { l: 90, x: 2.1667, y: 17.479 }, + { l: 90, x: 2.25, y: 17.448 }, + { l: 90, x: 2.3333, y: 17.4185 }, + { l: 90, x: 2.4167, y: 17.3898 }, + { l: 90, x: 2.5, y: 17.3624 }, + { l: 90, x: 2.5833, y: 17.3363 }, + { l: 90, x: 2.6667, y: 17.3116 }, + { l: 90, x: 2.75, y: 17.2891 }, + { l: 90, x: 2.8333, y: 17.269 }, + { l: 90, x: 2.9167, y: 17.2517 }, + { l: 90, x: 3, y: 17.2376 }, + { l: 90, x: 3.0833, y: 17.2263 }, + { l: 90, x: 3.1667, y: 17.2181 }, + { l: 90, x: 3.25, y: 17.2124 }, + { l: 90, x: 3.3333, y: 17.209 }, + { l: 90, x: 3.4167, y: 17.2075 }, + { l: 90, x: 3.5, y: 17.2075 }, + { l: 90, x: 3.5833, y: 17.2092 }, + { l: 90, x: 3.6667, y: 17.2116 }, + { l: 90, x: 3.75, y: 17.2155 }, + { l: 90, x: 3.8333, y: 17.2205 }, + { l: 90, x: 3.9167, y: 17.2264 }, + { l: 90, x: 4, y: 17.2335 }, + { l: 90, x: 3.0833, y: 17.2263 }, + { l: 90, x: 4.1667, y: 17.2525 }, + { l: 90, x: 4.25, y: 17.2642 }, + { l: 90, x: 4.3333, y: 17.2772 }, + { l: 90, x: 4.4167, y: 17.2914 }, + { l: 90, x: 4.5, y: 17.3065 }, + { l: 90, x: 4.5833, y: 17.3219 }, + { l: 90, x: 4.6667, y: 17.3374 }, + { l: 90, x: 4.75, y: 17.3529 }, + { l: 90, x: 4.8333, y: 17.368 }, + { l: 90, x: 4.9167, y: 17.383 }, + { l: 90, x: 5.0, y: 17.3979 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 18.1336 }, + { l: 95, x: 2.0833, y: 18.0993 }, + { l: 95, x: 2.1667, y: 18.0657 }, + { l: 95, x: 2.25, y: 18.0335 }, + { l: 95, x: 2.3333, y: 18.0028 }, + { l: 95, x: 2.4167, y: 17.9731 }, + { l: 95, x: 2.5, y: 17.9449 }, + { l: 95, x: 2.5833, y: 17.9182 }, + { l: 95, x: 2.6667, y: 17.8931 }, + { l: 95, x: 2.75, y: 17.8708 }, + { l: 95, x: 2.8333, y: 17.8513 }, + { l: 95, x: 2.9167, y: 17.8351 }, + { l: 95, x: 3, y: 17.8227 }, + { l: 95, x: 3.0833, y: 17.8136 }, + { l: 95, x: 3.1667, y: 17.808 }, + { l: 95, x: 3.25, y: 17.8055 }, + { l: 95, x: 3.3333, y: 17.8058 }, + { l: 95, x: 3.4167, y: 17.8082 }, + { l: 95, x: 3.5, y: 17.8125 }, + { l: 95, x: 3.5833, y: 17.8186 }, + { l: 95, x: 3.6667, y: 17.8256 }, + { l: 95, x: 3.75, y: 17.8342 }, + { l: 95, x: 3.8333, y: 17.8438 }, + { l: 95, x: 3.9167, y: 17.8545 }, + { l: 95, x: 4, y: 17.8662 }, + { l: 95, x: 3.0833, y: 17.8136 }, + { l: 95, x: 4.1667, y: 17.8949 }, + { l: 95, x: 4.25, y: 17.9116 }, + { l: 95, x: 4.3333, y: 17.9295 }, + { l: 95, x: 4.4167, y: 17.9487 }, + { l: 95, x: 4.5, y: 17.9685 }, + { l: 95, x: 4.5833, y: 17.9887 }, + { l: 95, x: 4.6667, y: 18.0086 }, + { l: 95, x: 4.75, y: 18.0283 }, + { l: 95, x: 4.8333, y: 18.0475 }, + { l: 95, x: 4.9167, y: 18.0662 }, + { l: 95, x: 5.0, y: 18.0847 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 18.533 }, + { l: 97, x: 2.0833, y: 18.4979 }, + { l: 97, x: 2.1667, y: 18.4634 }, + { l: 97, x: 2.25, y: 18.4303 }, + { l: 97, x: 2.3333, y: 18.3988 }, + { l: 97, x: 2.4167, y: 18.3684 }, + { l: 97, x: 2.5, y: 18.3396 }, + { l: 97, x: 2.5833, y: 18.3126 }, + { l: 97, x: 2.6667, y: 18.2873 }, + { l: 97, x: 2.75, y: 18.2652 }, + { l: 97, x: 2.8333, y: 18.2461 }, + { l: 97, x: 2.9167, y: 18.2306 }, + { l: 97, x: 3, y: 18.2194 }, + { l: 97, x: 3.0833, y: 18.2119 }, + { l: 97, x: 3.1667, y: 18.2082 }, + { l: 97, x: 3.25, y: 18.208 }, + { l: 97, x: 3.3333, y: 18.2109 }, + { l: 97, x: 3.4167, y: 18.2161 }, + { l: 97, x: 3.5, y: 18.2233 }, + { l: 97, x: 3.5833, y: 18.2327 }, + { l: 97, x: 3.6667, y: 18.2429 }, + { l: 97, x: 3.75, y: 18.2548 }, + { l: 97, x: 3.8333, y: 18.2678 }, + { l: 97, x: 3.9167, y: 18.2818 }, + { l: 97, x: 4, y: 18.2968 }, + { l: 97, x: 3.0833, y: 18.2119 }, + { l: 97, x: 4.1667, y: 18.3324 }, + { l: 97, x: 4.25, y: 18.3526 }, + { l: 97, x: 4.3333, y: 18.374 }, + { l: 97, x: 4.4167, y: 18.3967 }, + { l: 97, x: 4.5, y: 18.4199 }, + { l: 97, x: 4.5833, y: 18.4434 }, + { l: 97, x: 4.6667, y: 18.4665 }, + { l: 97, x: 4.75, y: 18.4892 }, + { l: 97, x: 4.8333, y: 18.5112 }, + { l: 97, x: 4.9167, y: 18.5326 }, + { l: 97, x: 5.0, y: 18.5538 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 19.3261 }, + { l: 99, x: 2.0833, y: 19.2892 }, + { l: 99, x: 2.1667, y: 19.253 }, + { l: 99, x: 2.25, y: 19.2181 }, + { l: 99, x: 2.3333, y: 19.185 }, + { l: 99, x: 2.4167, y: 19.1533 }, + { l: 99, x: 2.5, y: 19.1233 }, + { l: 99, x: 2.5833, y: 19.0955 }, + { l: 99, x: 2.6667, y: 19.07 }, + { l: 99, x: 2.75, y: 19.0481 }, + { l: 99, x: 2.8333, y: 19.03 }, + { l: 99, x: 2.9167, y: 19.0161 }, + { l: 99, x: 3, y: 19.0075 }, + { l: 99, x: 3.0833, y: 19.0032 }, + { l: 99, x: 3.1667, y: 19.0036 }, + { l: 99, x: 3.25, y: 19.0082 }, + { l: 99, x: 3.3333, y: 19.0164 }, + { l: 99, x: 3.4167, y: 19.0274 }, + { l: 99, x: 3.5, y: 19.0409 }, + { l: 99, x: 3.5833, y: 19.057 }, + { l: 99, x: 3.6667, y: 19.0739 }, + { l: 99, x: 3.75, y: 19.0928 }, + { l: 99, x: 3.8333, y: 19.1128 }, + { l: 99, x: 3.9167, y: 19.1337 }, + { l: 99, x: 4, y: 19.1557 }, + { l: 99, x: 3.0833, y: 19.0032 }, + { l: 99, x: 4.1667, y: 19.2057 }, + { l: 99, x: 4.25, y: 19.2333 }, + { l: 99, x: 4.3333, y: 19.2621 }, + { l: 99, x: 4.4167, y: 19.292 }, + { l: 99, x: 4.5, y: 19.3224 }, + { l: 99, x: 4.5833, y: 19.3529 }, + { l: 99, x: 4.6667, y: 19.3826 }, + { l: 99, x: 4.75, y: 19.4116 }, + { l: 99, x: 4.8333, y: 19.4396 }, + { l: 99, x: 4.9167, y: 19.4667 }, + { l: 99, x: 5.0, y: 19.4932 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + female: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 12.4123 }, + { l: 1, x: 5.17, y: 12.4052 }, + { l: 1, x: 5.25, y: 12.3988 }, + { l: 1, x: 5.33, y: 12.3927 }, + { l: 1, x: 5.42, y: 12.3871 }, + { l: 1, x: 5.5, y: 12.3822 }, + { l: 1, x: 5.58, y: 12.3777 }, + { l: 1, x: 5.67, y: 12.3736 }, + { l: 1, x: 5.75, y: 12.37 }, + { l: 1, x: 5.83, y: 12.367 }, + { l: 1, x: 5.92, y: 12.3648 }, + { l: 1, x: 6, y: 12.363 }, + { l: 1, x: 6.08, y: 12.3617 }, + { l: 1, x: 6.17, y: 12.3611 }, + { l: 1, x: 6.25, y: 12.3612 }, + { l: 1, x: 6.33, y: 12.3618 }, + { l: 1, x: 6.42, y: 12.3633 }, + { l: 1, x: 6.5, y: 12.3653 }, + { l: 1, x: 6.58, y: 12.3681 }, + { l: 1, x: 6.67, y: 12.372 }, + { l: 1, x: 6.75, y: 12.3762 }, + { l: 1, x: 6.83, y: 12.3814 }, + { l: 1, x: 6.92, y: 12.3872 }, + { l: 1, x: 7, y: 12.3939 }, + { l: 1, x: 7.08, y: 12.4014 }, + { l: 1, x: 7.17, y: 12.4099 }, + { l: 1, x: 7.25, y: 12.4189 }, + { l: 1, x: 7.33, y: 12.4286 }, + { l: 1, x: 7.42, y: 12.4394 }, + { l: 1, x: 7.5, y: 12.4506 }, + { l: 1, x: 7.58, y: 12.4628 }, + { l: 1, x: 7.67, y: 12.4758 }, + { l: 1, x: 7.75, y: 12.4892 }, + { l: 1, x: 7.83, y: 12.5037 }, + { l: 1, x: 7.92, y: 12.5188 }, + { l: 1, x: 8, y: 12.5347 }, + { l: 1, x: 8.08, y: 12.5515 }, + { l: 1, x: 8.17, y: 12.5688 }, + { l: 1, x: 8.25, y: 12.587 }, + { l: 1, x: 8.33, y: 12.6055 }, + { l: 1, x: 8.42, y: 12.6251 }, + { l: 1, x: 8.5, y: 12.6451 }, + { l: 1, x: 8.58, y: 12.6656 }, + { l: 1, x: 8.67, y: 12.6869 }, + { l: 1, x: 8.75, y: 12.7084 }, + { l: 1, x: 8.83, y: 12.7307 }, + { l: 1, x: 8.92, y: 12.7532 }, + { l: 1, x: 9, y: 12.7765 }, + { l: 1, x: 9.08, y: 12.7998 }, + { l: 1, x: 9.17, y: 12.8238 }, + { l: 1, x: 9.25, y: 12.8481 }, + { l: 1, x: 9.33, y: 12.8728 }, + { l: 1, x: 9.42, y: 12.898 }, + { l: 1, x: 9.5, y: 12.9237 }, + { l: 1, x: 9.58, y: 12.9497 }, + { l: 1, x: 9.67, y: 12.9763 }, + { l: 1, x: 9.75, y: 13.0035 }, + { l: 1, x: 9.83, y: 13.0309 }, + { l: 1, x: 9.92, y: 13.059 }, + { l: 1, x: 10, y: 13.0876 }, + { l: 1, x: 10.08, y: 13.1169 }, + { l: 1, x: 10.17, y: 13.1469 }, + { l: 1, x: 10.25, y: 13.1772 }, + { l: 1, x: 10.33, y: 13.2083 }, + { l: 1, x: 10.42, y: 13.2401 }, + { l: 1, x: 10.5, y: 13.2724 }, + { l: 1, x: 10.58, y: 13.3052 }, + { l: 1, x: 10.67, y: 13.3389 }, + { l: 1, x: 10.75, y: 13.3731 }, + { l: 1, x: 10.83, y: 13.4082 }, + { l: 1, x: 10.92, y: 13.4436 }, + { l: 1, x: 11, y: 13.4797 }, + { l: 1, x: 11.08, y: 13.5165 }, + { l: 1, x: 11.17, y: 13.5539 }, + { l: 1, x: 11.25, y: 13.5919 }, + { l: 1, x: 11.33, y: 13.6303 }, + { l: 1, x: 11.42, y: 13.6695 }, + { l: 1, x: 11.5, y: 13.7091 }, + { l: 1, x: 11.58, y: 13.7491 }, + { l: 1, x: 11.67, y: 13.7898 }, + { l: 1, x: 11.75, y: 13.8307 }, + { l: 1, x: 11.83, y: 13.8722 }, + { l: 1, x: 11.92, y: 13.9142 }, + { l: 1, x: 12, y: 13.9562 }, + { l: 1, x: 12.08, y: 13.9986 }, + { l: 1, x: 12.17, y: 14.0414 }, + { l: 1, x: 12.25, y: 14.0842 }, + { l: 1, x: 12.33, y: 14.1273 }, + { l: 1, x: 12.42, y: 14.1704 }, + { l: 1, x: 12.5, y: 14.2133 }, + { l: 1, x: 12.58, y: 14.2564 }, + { l: 1, x: 12.67, y: 14.2993 }, + { l: 1, x: 12.75, y: 14.3423 }, + { l: 1, x: 12.83, y: 14.385 }, + { l: 1, x: 12.92, y: 14.4277 }, + { l: 1, x: 13, y: 14.47 }, + { l: 1, x: 13.08, y: 14.512 }, + { l: 1, x: 13.17, y: 14.5538 }, + { l: 1, x: 13.25, y: 14.5955 }, + { l: 1, x: 13.33, y: 14.6365 }, + { l: 1, x: 13.42, y: 14.6772 }, + { l: 1, x: 13.5, y: 14.7178 }, + { l: 1, x: 13.58, y: 14.7578 }, + { l: 1, x: 13.67, y: 14.7972 }, + { l: 1, x: 13.75, y: 14.8362 }, + { l: 1, x: 13.83, y: 14.8747 }, + { l: 1, x: 13.92, y: 14.9127 }, + { l: 1, x: 14, y: 14.9501 }, + { l: 1, x: 14.08, y: 14.9867 }, + { l: 1, x: 14.17, y: 15.0227 }, + { l: 1, x: 14.25, y: 15.0581 }, + { l: 1, x: 14.33, y: 15.0927 }, + { l: 1, x: 14.42, y: 15.1268 }, + { l: 1, x: 14.5, y: 15.1602 }, + { l: 1, x: 14.58, y: 15.1926 }, + { l: 1, x: 14.67, y: 15.2245 }, + { l: 1, x: 14.75, y: 15.2552 }, + { l: 1, x: 14.83, y: 15.2855 }, + { l: 1, x: 14.92, y: 15.3145 }, + { l: 1, x: 15, y: 15.343 }, + { l: 1, x: 15.08, y: 15.3703 }, + { l: 1, x: 15.17, y: 15.3972 }, + { l: 1, x: 15.25, y: 15.4228 }, + { l: 1, x: 15.33, y: 15.4479 }, + { l: 1, x: 15.42, y: 15.4719 }, + { l: 1, x: 15.5, y: 15.4951 }, + { l: 1, x: 15.58, y: 15.5174 }, + { l: 1, x: 15.67, y: 15.5391 }, + { l: 1, x: 15.75, y: 15.5598 }, + { l: 1, x: 15.83, y: 15.5798 }, + { l: 1, x: 15.92, y: 15.5988 }, + { l: 1, x: 16, y: 15.6169 }, + { l: 1, x: 16.08, y: 15.6346 }, + { l: 1, x: 16.17, y: 15.6513 }, + { l: 1, x: 16.25, y: 15.6672 }, + { l: 1, x: 16.33, y: 15.6823 }, + { l: 1, x: 16.42, y: 15.6966 }, + { l: 1, x: 16.5, y: 15.7101 }, + { l: 1, x: 16.58, y: 15.723 }, + { l: 1, x: 16.67, y: 15.7352 }, + { l: 1, x: 16.75, y: 15.7464 }, + { l: 1, x: 16.83, y: 15.757 }, + { l: 1, x: 16.92, y: 15.7671 }, + { l: 1, x: 17, y: 15.7767 }, + { l: 1, x: 17.08, y: 15.7854 }, + { l: 1, x: 17.17, y: 15.7935 }, + { l: 1, x: 17.25, y: 15.8013 }, + { l: 1, x: 17.33, y: 15.8085 }, + { l: 1, x: 17.42, y: 15.8149 }, + { l: 1, x: 17.5, y: 15.8212 }, + { l: 1, x: 17.58, y: 15.827 }, + { l: 1, x: 17.67, y: 15.8323 }, + { l: 1, x: 17.75, y: 15.8374 }, + { l: 1, x: 17.83, y: 15.8419 }, + { l: 1, x: 17.92, y: 15.8463 }, + { l: 1, x: 18, y: 15.8503 }, + { l: 1, x: 18.08, y: 15.8538 }, + { l: 1, x: 18.17, y: 15.8573 }, + { l: 1, x: 18.25, y: 15.8603 }, + { l: 1, x: 18.33, y: 15.8633 }, + { l: 1, x: 18.42, y: 15.866 }, + { l: 1, x: 18.5, y: 15.8686 }, + { l: 1, x: 18.58, y: 15.8706 }, + { l: 1, x: 18.67, y: 15.8728 }, + { l: 1, x: 18.75, y: 15.8747 }, + { l: 1, x: 18.83, y: 15.8765 }, + { l: 1, x: 18.92, y: 15.878 }, + { l: 1, x: 19, y: 15.8794 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 12.8745 }, + { l: 3, x: 5.17, y: 12.8675 }, + { l: 3, x: 5.25, y: 12.8613 }, + { l: 3, x: 5.33, y: 12.8554 }, + { l: 3, x: 5.42, y: 12.8499 }, + { l: 3, x: 5.5, y: 12.8452 }, + { l: 3, x: 5.58, y: 12.8408 }, + { l: 3, x: 5.67, y: 12.837 }, + { l: 3, x: 5.75, y: 12.8337 }, + { l: 3, x: 5.83, y: 12.8309 }, + { l: 3, x: 5.92, y: 12.829 }, + { l: 3, x: 6, y: 12.8275 }, + { l: 3, x: 6.08, y: 12.8266 }, + { l: 3, x: 6.17, y: 12.8264 }, + { l: 3, x: 6.25, y: 12.8269 }, + { l: 3, x: 6.33, y: 12.8279 }, + { l: 3, x: 6.42, y: 12.8299 }, + { l: 3, x: 6.5, y: 12.8324 }, + { l: 3, x: 6.58, y: 12.8357 }, + { l: 3, x: 6.67, y: 12.8401 }, + { l: 3, x: 6.75, y: 12.845 }, + { l: 3, x: 6.83, y: 12.8508 }, + { l: 3, x: 6.92, y: 12.8574 }, + { l: 3, x: 7, y: 12.8648 }, + { l: 3, x: 7.08, y: 12.8731 }, + { l: 3, x: 7.17, y: 12.8824 }, + { l: 3, x: 7.25, y: 12.8923 }, + { l: 3, x: 7.33, y: 12.9029 }, + { l: 3, x: 7.42, y: 12.9146 }, + { l: 3, x: 7.5, y: 12.9269 }, + { l: 3, x: 7.58, y: 12.9401 }, + { l: 3, x: 7.67, y: 12.9542 }, + { l: 3, x: 7.75, y: 12.9688 }, + { l: 3, x: 7.83, y: 12.9845 }, + { l: 3, x: 7.92, y: 13.0009 }, + { l: 3, x: 8, y: 13.0181 }, + { l: 3, x: 8.08, y: 13.0362 }, + { l: 3, x: 8.17, y: 13.0549 }, + { l: 3, x: 8.25, y: 13.0746 }, + { l: 3, x: 8.33, y: 13.0946 }, + { l: 3, x: 8.42, y: 13.1157 }, + { l: 3, x: 8.5, y: 13.1373 }, + { l: 3, x: 8.58, y: 13.1595 }, + { l: 3, x: 8.67, y: 13.1825 }, + { l: 3, x: 8.75, y: 13.2057 }, + { l: 3, x: 8.83, y: 13.2298 }, + { l: 3, x: 8.92, y: 13.2542 }, + { l: 3, x: 9, y: 13.2793 }, + { l: 3, x: 9.08, y: 13.3046 }, + { l: 3, x: 9.17, y: 13.3305 }, + { l: 3, x: 9.25, y: 13.3568 }, + { l: 3, x: 9.33, y: 13.3836 }, + { l: 3, x: 9.42, y: 13.4109 }, + { l: 3, x: 9.5, y: 13.4386 }, + { l: 3, x: 9.58, y: 13.4668 }, + { l: 3, x: 9.67, y: 13.4957 }, + { l: 3, x: 9.75, y: 13.5251 }, + { l: 3, x: 9.83, y: 13.5549 }, + { l: 3, x: 9.92, y: 13.5853 }, + { l: 3, x: 10, y: 13.6164 }, + { l: 3, x: 10.08, y: 13.648 }, + { l: 3, x: 10.17, y: 13.6805 }, + { l: 3, x: 10.25, y: 13.7135 }, + { l: 3, x: 10.33, y: 13.7472 }, + { l: 3, x: 10.42, y: 13.7816 }, + { l: 3, x: 10.5, y: 13.8166 }, + { l: 3, x: 10.58, y: 13.8523 }, + { l: 3, x: 10.67, y: 13.8888 }, + { l: 3, x: 10.75, y: 13.9258 }, + { l: 3, x: 10.83, y: 13.9638 }, + { l: 3, x: 10.92, y: 14.0022 }, + { l: 3, x: 11, y: 14.0413 }, + { l: 3, x: 11.08, y: 14.0813 }, + { l: 3, x: 11.17, y: 14.1217 }, + { l: 3, x: 11.25, y: 14.1629 }, + { l: 3, x: 11.33, y: 14.2045 }, + { l: 3, x: 11.42, y: 14.247 }, + { l: 3, x: 11.5, y: 14.2899 }, + { l: 3, x: 11.58, y: 14.3332 }, + { l: 3, x: 11.67, y: 14.3772 }, + { l: 3, x: 11.75, y: 14.4216 }, + { l: 3, x: 11.83, y: 14.4666 }, + { l: 3, x: 11.92, y: 14.512 }, + { l: 3, x: 12, y: 14.5576 }, + { l: 3, x: 12.08, y: 14.6036 }, + { l: 3, x: 12.17, y: 14.6499 }, + { l: 3, x: 12.25, y: 14.6963 }, + { l: 3, x: 12.33, y: 14.743 }, + { l: 3, x: 12.42, y: 14.7897 }, + { l: 3, x: 12.5, y: 14.8364 }, + { l: 3, x: 12.58, y: 14.8832 }, + { l: 3, x: 12.67, y: 14.9297 }, + { l: 3, x: 12.75, y: 14.9764 }, + { l: 3, x: 12.83, y: 15.0229 }, + { l: 3, x: 12.92, y: 15.0693 }, + { l: 3, x: 13, y: 15.1153 }, + { l: 3, x: 13.08, y: 15.161 }, + { l: 3, x: 13.17, y: 15.2066 }, + { l: 3, x: 13.25, y: 15.252 }, + { l: 3, x: 13.33, y: 15.2967 }, + { l: 3, x: 13.42, y: 15.3412 }, + { l: 3, x: 13.5, y: 15.3855 }, + { l: 3, x: 13.58, y: 15.4292 }, + { l: 3, x: 13.67, y: 15.4723 }, + { l: 3, x: 13.75, y: 15.515 }, + { l: 3, x: 13.83, y: 15.5572 }, + { l: 3, x: 13.92, y: 15.5988 }, + { l: 3, x: 14, y: 15.6399 }, + { l: 3, x: 14.08, y: 15.6801 }, + { l: 3, x: 14.17, y: 15.7196 }, + { l: 3, x: 14.25, y: 15.7587 }, + { l: 3, x: 14.33, y: 15.7968 }, + { l: 3, x: 14.42, y: 15.8344 }, + { l: 3, x: 14.5, y: 15.8712 }, + { l: 3, x: 14.58, y: 15.9071 }, + { l: 3, x: 14.67, y: 15.9424 }, + { l: 3, x: 14.75, y: 15.9765 }, + { l: 3, x: 14.83, y: 16.0101 }, + { l: 3, x: 14.92, y: 16.0425 }, + { l: 3, x: 15, y: 16.0742 }, + { l: 3, x: 15.08, y: 16.1047 }, + { l: 3, x: 15.17, y: 16.1348 }, + { l: 3, x: 15.25, y: 16.1636 }, + { l: 3, x: 15.33, y: 16.1917 }, + { l: 3, x: 15.42, y: 16.2188 }, + { l: 3, x: 15.5, y: 16.245 }, + { l: 3, x: 15.58, y: 16.2704 }, + { l: 3, x: 15.67, y: 16.295 }, + { l: 3, x: 15.75, y: 16.3187 }, + { l: 3, x: 15.83, y: 16.3415 }, + { l: 3, x: 15.92, y: 16.3635 }, + { l: 3, x: 16, y: 16.3844 }, + { l: 3, x: 16.08, y: 16.4048 }, + { l: 3, x: 16.17, y: 16.4243 }, + { l: 3, x: 16.25, y: 16.4429 }, + { l: 3, x: 16.33, y: 16.4607 }, + { l: 3, x: 16.42, y: 16.4777 }, + { l: 3, x: 16.5, y: 16.4938 }, + { l: 3, x: 16.58, y: 16.5093 }, + { l: 3, x: 16.67, y: 16.524 }, + { l: 3, x: 16.75, y: 16.5378 }, + { l: 3, x: 16.83, y: 16.551 }, + { l: 3, x: 16.92, y: 16.5635 }, + { l: 3, x: 17, y: 16.5756 }, + { l: 3, x: 17.08, y: 16.5867 }, + { l: 3, x: 17.17, y: 16.5973 }, + { l: 3, x: 17.25, y: 16.6074 }, + { l: 3, x: 17.33, y: 16.617 }, + { l: 3, x: 17.42, y: 16.6259 }, + { l: 3, x: 17.5, y: 16.6345 }, + { l: 3, x: 17.58, y: 16.6426 }, + { l: 3, x: 17.67, y: 16.6503 }, + { l: 3, x: 17.75, y: 16.6577 }, + { l: 3, x: 17.83, y: 16.6645 }, + { l: 3, x: 17.92, y: 16.6712 }, + { l: 3, x: 18, y: 16.6775 }, + { l: 3, x: 18.08, y: 16.6833 }, + { l: 3, x: 18.17, y: 16.6891 }, + { l: 3, x: 18.25, y: 16.6944 }, + { l: 3, x: 18.33, y: 16.6996 }, + { l: 3, x: 18.42, y: 16.7046 }, + { l: 3, x: 18.5, y: 16.7094 }, + { l: 3, x: 18.58, y: 16.7137 }, + { l: 3, x: 18.67, y: 16.7182 }, + { l: 3, x: 18.75, y: 16.7223 }, + { l: 3, x: 18.83, y: 16.7263 }, + { l: 3, x: 18.92, y: 16.7302 }, + { l: 3, x: 19, y: 16.7338 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 13.1326 }, + { l: 5, x: 5.17, y: 13.1258 }, + { l: 5, x: 5.25, y: 13.1198 }, + { l: 5, x: 5.33, y: 13.1142 }, + { l: 5, x: 5.42, y: 13.1089 }, + { l: 5, x: 5.5, y: 13.1044 }, + { l: 5, x: 5.58, y: 13.1004 }, + { l: 5, x: 5.67, y: 13.0968 }, + { l: 5, x: 5.75, y: 13.0938 }, + { l: 5, x: 5.83, y: 13.0913 }, + { l: 5, x: 5.92, y: 13.0897 }, + { l: 5, x: 6, y: 13.0885 }, + { l: 5, x: 6.08, y: 13.0879 }, + { l: 5, x: 6.17, y: 13.088 }, + { l: 5, x: 6.25, y: 13.0889 }, + { l: 5, x: 6.33, y: 13.0904 }, + { l: 5, x: 6.42, y: 13.0927 }, + { l: 5, x: 6.5, y: 13.0957 }, + { l: 5, x: 6.58, y: 13.0994 }, + { l: 5, x: 6.67, y: 13.1042 }, + { l: 5, x: 6.75, y: 13.1096 }, + { l: 5, x: 6.83, y: 13.1159 }, + { l: 5, x: 6.92, y: 13.123 }, + { l: 5, x: 7, y: 13.131 }, + { l: 5, x: 7.08, y: 13.1398 }, + { l: 5, x: 7.17, y: 13.1497 }, + { l: 5, x: 7.25, y: 13.1602 }, + { l: 5, x: 7.33, y: 13.1715 }, + { l: 5, x: 7.42, y: 13.1838 }, + { l: 5, x: 7.5, y: 13.1968 }, + { l: 5, x: 7.58, y: 13.2108 }, + { l: 5, x: 7.67, y: 13.2256 }, + { l: 5, x: 7.75, y: 13.241 }, + { l: 5, x: 7.83, y: 13.2574 }, + { l: 5, x: 7.92, y: 13.2746 }, + { l: 5, x: 8, y: 13.2926 }, + { l: 5, x: 8.08, y: 13.3116 }, + { l: 5, x: 8.17, y: 13.3313 }, + { l: 5, x: 8.25, y: 13.3518 }, + { l: 5, x: 8.33, y: 13.3728 }, + { l: 5, x: 8.42, y: 13.3949 }, + { l: 5, x: 8.5, y: 13.4175 }, + { l: 5, x: 8.58, y: 13.4407 }, + { l: 5, x: 8.67, y: 13.4647 }, + { l: 5, x: 8.75, y: 13.4891 }, + { l: 5, x: 8.83, y: 13.5142 }, + { l: 5, x: 8.92, y: 13.5397 }, + { l: 5, x: 9, y: 13.566 }, + { l: 5, x: 9.08, y: 13.5924 }, + { l: 5, x: 9.17, y: 13.6196 }, + { l: 5, x: 9.25, y: 13.6471 }, + { l: 5, x: 9.33, y: 13.6751 }, + { l: 5, x: 9.42, y: 13.7036 }, + { l: 5, x: 9.5, y: 13.7327 }, + { l: 5, x: 9.58, y: 13.7622 }, + { l: 5, x: 9.67, y: 13.7923 }, + { l: 5, x: 9.75, y: 13.8231 }, + { l: 5, x: 9.83, y: 13.8543 }, + { l: 5, x: 9.92, y: 13.8861 }, + { l: 5, x: 10, y: 13.9186 }, + { l: 5, x: 10.08, y: 13.9518 }, + { l: 5, x: 10.17, y: 13.9857 }, + { l: 5, x: 10.25, y: 14.0202 }, + { l: 5, x: 10.33, y: 14.0554 }, + { l: 5, x: 10.42, y: 14.0914 }, + { l: 5, x: 10.5, y: 14.1281 }, + { l: 5, x: 10.58, y: 14.1653 }, + { l: 5, x: 10.67, y: 14.2035 }, + { l: 5, x: 10.75, y: 14.2422 }, + { l: 5, x: 10.83, y: 14.2819 }, + { l: 5, x: 10.92, y: 14.322 }, + { l: 5, x: 11, y: 14.3629 }, + { l: 5, x: 11.08, y: 14.4046 }, + { l: 5, x: 11.17, y: 14.4469 }, + { l: 5, x: 11.25, y: 14.4899 }, + { l: 5, x: 11.33, y: 14.5334 }, + { l: 5, x: 11.42, y: 14.5777 }, + { l: 5, x: 11.5, y: 14.6225 }, + { l: 5, x: 11.58, y: 14.6678 }, + { l: 5, x: 11.67, y: 14.7138 }, + { l: 5, x: 11.75, y: 14.7601 }, + { l: 5, x: 11.83, y: 14.8071 }, + { l: 5, x: 11.92, y: 14.8545 }, + { l: 5, x: 12, y: 14.9021 }, + { l: 5, x: 12.08, y: 14.9501 }, + { l: 5, x: 12.17, y: 14.9985 }, + { l: 5, x: 12.25, y: 15.047 }, + { l: 5, x: 12.33, y: 15.0958 }, + { l: 5, x: 12.42, y: 15.1446 }, + { l: 5, x: 12.5, y: 15.1933 }, + { l: 5, x: 12.58, y: 15.2422 }, + { l: 5, x: 12.67, y: 15.2909 }, + { l: 5, x: 12.75, y: 15.3397 }, + { l: 5, x: 12.83, y: 15.3883 }, + { l: 5, x: 12.92, y: 15.4368 }, + { l: 5, x: 13, y: 15.485 }, + { l: 5, x: 13.08, y: 15.5328 }, + { l: 5, x: 13.17, y: 15.5806 }, + { l: 5, x: 13.25, y: 15.6281 }, + { l: 5, x: 13.33, y: 15.6749 }, + { l: 5, x: 13.42, y: 15.7215 }, + { l: 5, x: 13.5, y: 15.7679 }, + { l: 5, x: 13.58, y: 15.8137 }, + { l: 5, x: 13.67, y: 15.8589 }, + { l: 5, x: 13.75, y: 15.9037 }, + { l: 5, x: 13.83, y: 15.948 }, + { l: 5, x: 13.92, y: 15.9916 }, + { l: 5, x: 14, y: 16.0347 }, + { l: 5, x: 14.08, y: 16.077 }, + { l: 5, x: 14.17, y: 16.1186 }, + { l: 5, x: 14.25, y: 16.1596 }, + { l: 5, x: 14.33, y: 16.1998 }, + { l: 5, x: 14.42, y: 16.2393 }, + { l: 5, x: 14.5, y: 16.2781 }, + { l: 5, x: 14.58, y: 16.316 }, + { l: 5, x: 14.67, y: 16.3531 }, + { l: 5, x: 14.75, y: 16.3891 }, + { l: 5, x: 14.83, y: 16.4246 }, + { l: 5, x: 14.92, y: 16.4588 }, + { l: 5, x: 15, y: 16.4923 }, + { l: 5, x: 15.08, y: 16.5247 }, + { l: 5, x: 15.17, y: 16.5565 }, + { l: 5, x: 15.25, y: 16.5871 }, + { l: 5, x: 15.33, y: 16.617 }, + { l: 5, x: 15.42, y: 16.6458 }, + { l: 5, x: 15.5, y: 16.6737 }, + { l: 5, x: 15.58, y: 16.7007 }, + { l: 5, x: 15.67, y: 16.727 }, + { l: 5, x: 15.75, y: 16.7523 }, + { l: 5, x: 15.83, y: 16.7767 }, + { l: 5, x: 15.92, y: 16.8003 }, + { l: 5, x: 16, y: 16.8227 }, + { l: 5, x: 16.08, y: 16.8447 }, + { l: 5, x: 16.17, y: 16.8657 }, + { l: 5, x: 16.25, y: 16.8858 }, + { l: 5, x: 16.33, y: 16.9051 }, + { l: 5, x: 16.42, y: 16.9236 }, + { l: 5, x: 16.5, y: 16.9411 }, + { l: 5, x: 16.58, y: 16.9581 }, + { l: 5, x: 16.67, y: 16.9742 }, + { l: 5, x: 16.75, y: 16.9894 }, + { l: 5, x: 16.83, y: 17.0039 }, + { l: 5, x: 16.92, y: 17.0178 }, + { l: 5, x: 17, y: 17.0312 }, + { l: 5, x: 17.08, y: 17.0437 }, + { l: 5, x: 17.17, y: 17.0556 }, + { l: 5, x: 17.25, y: 17.0671 }, + { l: 5, x: 17.33, y: 17.078 }, + { l: 5, x: 17.42, y: 17.0881 }, + { l: 5, x: 17.5, y: 17.098 }, + { l: 5, x: 17.58, y: 17.1074 }, + { l: 5, x: 17.67, y: 17.1164 }, + { l: 5, x: 17.75, y: 17.125 }, + { l: 5, x: 17.83, y: 17.1331 }, + { l: 5, x: 17.92, y: 17.141 }, + { l: 5, x: 18, y: 17.1485 }, + { l: 5, x: 18.08, y: 17.1556 }, + { l: 5, x: 18.17, y: 17.1626 }, + { l: 5, x: 18.25, y: 17.1691 }, + { l: 5, x: 18.33, y: 17.1756 }, + { l: 5, x: 18.42, y: 17.1818 }, + { l: 5, x: 18.5, y: 17.1878 }, + { l: 5, x: 18.58, y: 17.1933 }, + { l: 5, x: 18.67, y: 17.199 }, + { l: 5, x: 18.75, y: 17.2043 }, + { l: 5, x: 18.83, y: 17.2095 }, + { l: 5, x: 18.92, y: 17.2146 }, + { l: 5, x: 19, y: 17.2194 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 13.5498 }, + { l: 10, x: 5.17, y: 13.5436 }, + { l: 10, x: 5.25, y: 13.5382 }, + { l: 10, x: 5.33, y: 13.5331 }, + { l: 10, x: 5.42, y: 13.5285 }, + { l: 10, x: 5.5, y: 13.5246 }, + { l: 10, x: 5.58, y: 13.5212 }, + { l: 10, x: 5.67, y: 13.5184 }, + { l: 10, x: 5.75, y: 13.516 }, + { l: 10, x: 5.83, y: 13.5142 }, + { l: 10, x: 5.92, y: 13.5133 }, + { l: 10, x: 6, y: 13.5129 }, + { l: 10, x: 6.08, y: 13.513 }, + { l: 10, x: 6.17, y: 13.5139 }, + { l: 10, x: 6.25, y: 13.5156 }, + { l: 10, x: 6.33, y: 13.5179 }, + { l: 10, x: 6.42, y: 13.521 }, + { l: 10, x: 6.5, y: 13.5249 }, + { l: 10, x: 6.58, y: 13.5295 }, + { l: 10, x: 6.67, y: 13.5353 }, + { l: 10, x: 6.75, y: 13.5416 }, + { l: 10, x: 6.83, y: 13.549 }, + { l: 10, x: 6.92, y: 13.5571 }, + { l: 10, x: 7, y: 13.5662 }, + { l: 10, x: 7.08, y: 13.5761 }, + { l: 10, x: 7.17, y: 13.5871 }, + { l: 10, x: 7.25, y: 13.5989 }, + { l: 10, x: 7.33, y: 13.6114 }, + { l: 10, x: 7.42, y: 13.625 }, + { l: 10, x: 7.5, y: 13.6392 }, + { l: 10, x: 7.58, y: 13.6545 }, + { l: 10, x: 7.67, y: 13.6707 }, + { l: 10, x: 7.75, y: 13.6876 }, + { l: 10, x: 7.83, y: 13.7054 }, + { l: 10, x: 7.92, y: 13.7242 }, + { l: 10, x: 8, y: 13.7437 }, + { l: 10, x: 8.08, y: 13.7643 }, + { l: 10, x: 8.17, y: 13.7856 }, + { l: 10, x: 8.25, y: 13.8078 }, + { l: 10, x: 8.33, y: 13.8306 }, + { l: 10, x: 8.42, y: 13.8543 }, + { l: 10, x: 8.5, y: 13.8787 }, + { l: 10, x: 8.58, y: 13.9038 }, + { l: 10, x: 8.67, y: 13.9297 }, + { l: 10, x: 8.75, y: 13.9559 }, + { l: 10, x: 8.83, y: 13.9831 }, + { l: 10, x: 8.92, y: 14.0105 }, + { l: 10, x: 9, y: 14.0388 }, + { l: 10, x: 9.08, y: 14.0673 }, + { l: 10, x: 9.17, y: 14.0965 }, + { l: 10, x: 9.25, y: 14.1261 }, + { l: 10, x: 9.33, y: 14.1563 }, + { l: 10, x: 9.42, y: 14.187 }, + { l: 10, x: 9.5, y: 14.2183 }, + { l: 10, x: 9.58, y: 14.2501 }, + { l: 10, x: 9.67, y: 14.2825 }, + { l: 10, x: 9.75, y: 14.3156 }, + { l: 10, x: 9.83, y: 14.3492 }, + { l: 10, x: 9.92, y: 14.3835 }, + { l: 10, x: 10, y: 14.4184 }, + { l: 10, x: 10.08, y: 14.454 }, + { l: 10, x: 10.17, y: 14.4906 }, + { l: 10, x: 10.25, y: 14.5276 }, + { l: 10, x: 10.33, y: 14.5654 }, + { l: 10, x: 10.42, y: 14.6041 }, + { l: 10, x: 10.5, y: 14.6434 }, + { l: 10, x: 10.58, y: 14.6834 }, + { l: 10, x: 10.67, y: 14.7244 }, + { l: 10, x: 10.75, y: 14.766 }, + { l: 10, x: 10.83, y: 14.8085 }, + { l: 10, x: 10.92, y: 14.8516 }, + { l: 10, x: 11, y: 14.8954 }, + { l: 10, x: 11.08, y: 14.9401 }, + { l: 10, x: 11.17, y: 14.9854 }, + { l: 10, x: 11.25, y: 15.0315 }, + { l: 10, x: 11.33, y: 15.0782 }, + { l: 10, x: 11.42, y: 15.1256 }, + { l: 10, x: 11.5, y: 15.1736 }, + { l: 10, x: 11.58, y: 15.2221 }, + { l: 10, x: 11.67, y: 15.2714 }, + { l: 10, x: 11.75, y: 15.321 }, + { l: 10, x: 11.83, y: 15.3713 }, + { l: 10, x: 11.92, y: 15.422 }, + { l: 10, x: 12, y: 15.473 }, + { l: 10, x: 12.08, y: 15.5244 }, + { l: 10, x: 12.17, y: 15.5762 }, + { l: 10, x: 12.25, y: 15.6281 }, + { l: 10, x: 12.33, y: 15.6803 }, + { l: 10, x: 12.42, y: 15.7326 }, + { l: 10, x: 12.5, y: 15.7848 }, + { l: 10, x: 12.58, y: 15.8372 }, + { l: 10, x: 12.67, y: 15.8894 }, + { l: 10, x: 12.75, y: 15.9417 }, + { l: 10, x: 12.83, y: 15.9937 }, + { l: 10, x: 12.92, y: 16.0457 }, + { l: 10, x: 13, y: 16.0974 }, + { l: 10, x: 13.08, y: 16.1488 }, + { l: 10, x: 13.17, y: 16.2 }, + { l: 10, x: 13.25, y: 16.251 }, + { l: 10, x: 13.33, y: 16.3013 }, + { l: 10, x: 13.42, y: 16.3514 }, + { l: 10, x: 13.5, y: 16.4012 }, + { l: 10, x: 13.58, y: 16.4504 }, + { l: 10, x: 13.67, y: 16.4991 }, + { l: 10, x: 13.75, y: 16.5473 }, + { l: 10, x: 13.83, y: 16.595 }, + { l: 10, x: 13.92, y: 16.6419 }, + { l: 10, x: 14, y: 16.6884 }, + { l: 10, x: 14.08, y: 16.734 }, + { l: 10, x: 14.17, y: 16.7789 }, + { l: 10, x: 14.25, y: 16.8232 }, + { l: 10, x: 14.33, y: 16.8666 }, + { l: 10, x: 14.42, y: 16.9094 }, + { l: 10, x: 14.5, y: 16.9513 }, + { l: 10, x: 14.58, y: 16.9923 }, + { l: 10, x: 14.67, y: 17.0325 }, + { l: 10, x: 14.75, y: 17.0716 }, + { l: 10, x: 14.83, y: 17.1101 }, + { l: 10, x: 14.92, y: 17.1473 }, + { l: 10, x: 15, y: 17.1838 }, + { l: 10, x: 15.08, y: 17.2191 }, + { l: 10, x: 15.17, y: 17.2538 }, + { l: 10, x: 15.25, y: 17.2872 }, + { l: 10, x: 15.33, y: 17.3198 }, + { l: 10, x: 15.42, y: 17.3514 }, + { l: 10, x: 15.5, y: 17.3821 }, + { l: 10, x: 15.58, y: 17.4118 }, + { l: 10, x: 15.67, y: 17.4407 }, + { l: 10, x: 15.75, y: 17.4686 }, + { l: 10, x: 15.83, y: 17.4956 }, + { l: 10, x: 15.92, y: 17.5216 }, + { l: 10, x: 16, y: 17.5466 }, + { l: 10, x: 16.08, y: 17.5711 }, + { l: 10, x: 16.17, y: 17.5945 }, + { l: 10, x: 16.25, y: 17.617 }, + { l: 10, x: 16.33, y: 17.6386 }, + { l: 10, x: 16.42, y: 17.6594 }, + { l: 10, x: 16.5, y: 17.6792 }, + { l: 10, x: 16.58, y: 17.6985 }, + { l: 10, x: 16.67, y: 17.7168 }, + { l: 10, x: 16.75, y: 17.7342 }, + { l: 10, x: 16.83, y: 17.751 }, + { l: 10, x: 16.92, y: 17.767 }, + { l: 10, x: 17, y: 17.7825 }, + { l: 10, x: 17.08, y: 17.7971 }, + { l: 10, x: 17.17, y: 17.8111 }, + { l: 10, x: 17.25, y: 17.8246 }, + { l: 10, x: 17.33, y: 17.8375 }, + { l: 10, x: 17.42, y: 17.8497 }, + { l: 10, x: 17.5, y: 17.8616 }, + { l: 10, x: 17.58, y: 17.873 }, + { l: 10, x: 17.67, y: 17.884 }, + { l: 10, x: 17.75, y: 17.8945 }, + { l: 10, x: 17.83, y: 17.9046 }, + { l: 10, x: 17.92, y: 17.9144 }, + { l: 10, x: 18, y: 17.9239 }, + { l: 10, x: 18.08, y: 17.9329 }, + { l: 10, x: 18.17, y: 17.9418 }, + { l: 10, x: 18.25, y: 17.9502 }, + { l: 10, x: 18.33, y: 17.9585 }, + { l: 10, x: 18.42, y: 17.9666 }, + { l: 10, x: 18.5, y: 17.9744 }, + { l: 10, x: 18.58, y: 17.9819 }, + { l: 10, x: 18.67, y: 17.9894 }, + { l: 10, x: 18.75, y: 17.9966 }, + { l: 10, x: 18.83, y: 18.0037 }, + { l: 10, x: 18.92, y: 18.0106 }, + { l: 10, x: 19, y: 18.0173 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 13.8457 }, + { l: 15, x: 5.17, y: 13.8402 }, + { l: 15, x: 5.25, y: 13.8353 }, + { l: 15, x: 5.33, y: 13.8309 }, + { l: 15, x: 5.42, y: 13.8269 }, + { l: 15, x: 5.5, y: 13.8236 }, + { l: 15, x: 5.58, y: 13.8208 }, + { l: 15, x: 5.67, y: 13.8186 }, + { l: 15, x: 5.75, y: 13.817 }, + { l: 15, x: 5.83, y: 13.8158 }, + { l: 15, x: 5.92, y: 13.8156 }, + { l: 15, x: 6, y: 13.8158 }, + { l: 15, x: 6.08, y: 13.8167 }, + { l: 15, x: 6.17, y: 13.8183 }, + { l: 15, x: 6.25, y: 13.8207 }, + { l: 15, x: 6.33, y: 13.8237 }, + { l: 15, x: 6.42, y: 13.8277 }, + { l: 15, x: 6.5, y: 13.8323 }, + { l: 15, x: 6.58, y: 13.8378 }, + { l: 15, x: 6.67, y: 13.8444 }, + { l: 15, x: 6.75, y: 13.8515 }, + { l: 15, x: 6.83, y: 13.8598 }, + { l: 15, x: 6.92, y: 13.8688 }, + { l: 15, x: 7, y: 13.8788 }, + { l: 15, x: 7.08, y: 13.8897 }, + { l: 15, x: 7.17, y: 13.9017 }, + { l: 15, x: 7.25, y: 13.9145 }, + { l: 15, x: 7.33, y: 13.928 }, + { l: 15, x: 7.42, y: 13.9426 }, + { l: 15, x: 7.5, y: 13.958 }, + { l: 15, x: 7.58, y: 13.9744 }, + { l: 15, x: 7.67, y: 13.9917 }, + { l: 15, x: 7.75, y: 14.0097 }, + { l: 15, x: 7.83, y: 14.0288 }, + { l: 15, x: 7.92, y: 14.0488 }, + { l: 15, x: 8, y: 14.0696 }, + { l: 15, x: 8.08, y: 14.0914 }, + { l: 15, x: 8.17, y: 14.114 }, + { l: 15, x: 8.25, y: 14.1375 }, + { l: 15, x: 8.33, y: 14.1617 }, + { l: 15, x: 8.42, y: 14.1868 }, + { l: 15, x: 8.5, y: 14.2127 }, + { l: 15, x: 8.58, y: 14.2391 }, + { l: 15, x: 8.67, y: 14.2665 }, + { l: 15, x: 8.75, y: 14.2943 }, + { l: 15, x: 8.83, y: 14.3229 }, + { l: 15, x: 8.92, y: 14.3519 }, + { l: 15, x: 9, y: 14.3818 }, + { l: 15, x: 9.08, y: 14.4118 }, + { l: 15, x: 9.17, y: 14.4426 }, + { l: 15, x: 9.25, y: 14.4739 }, + { l: 15, x: 9.33, y: 14.5058 }, + { l: 15, x: 9.42, y: 14.5381 }, + { l: 15, x: 9.5, y: 14.5711 }, + { l: 15, x: 9.58, y: 14.6046 }, + { l: 15, x: 9.67, y: 14.6388 }, + { l: 15, x: 9.75, y: 14.6737 }, + { l: 15, x: 9.83, y: 14.709 }, + { l: 15, x: 9.92, y: 14.7451 }, + { l: 15, x: 10, y: 14.7819 }, + { l: 15, x: 10.08, y: 14.8195 }, + { l: 15, x: 10.17, y: 14.8579 }, + { l: 15, x: 10.25, y: 14.8968 }, + { l: 15, x: 10.33, y: 14.9367 }, + { l: 15, x: 10.42, y: 14.9773 }, + { l: 15, x: 10.5, y: 15.0187 }, + { l: 15, x: 10.58, y: 15.0607 }, + { l: 15, x: 10.67, y: 15.1038 }, + { l: 15, x: 10.75, y: 15.1474 }, + { l: 15, x: 10.83, y: 15.1921 }, + { l: 15, x: 10.92, y: 15.2374 }, + { l: 15, x: 11, y: 15.2834 }, + { l: 15, x: 11.08, y: 15.3303 }, + { l: 15, x: 11.17, y: 15.3779 }, + { l: 15, x: 11.25, y: 15.4262 }, + { l: 15, x: 11.33, y: 15.4752 }, + { l: 15, x: 11.42, y: 15.525 }, + { l: 15, x: 11.5, y: 15.5753 }, + { l: 15, x: 11.58, y: 15.6262 }, + { l: 15, x: 11.67, y: 15.6778 }, + { l: 15, x: 11.75, y: 15.7298 }, + { l: 15, x: 11.83, y: 15.7825 }, + { l: 15, x: 11.92, y: 15.8357 }, + { l: 15, x: 12, y: 15.8892 }, + { l: 15, x: 12.08, y: 15.943 }, + { l: 15, x: 12.17, y: 15.9973 }, + { l: 15, x: 12.25, y: 16.0517 }, + { l: 15, x: 12.33, y: 16.1064 }, + { l: 15, x: 12.42, y: 16.1612 }, + { l: 15, x: 12.5, y: 16.216 }, + { l: 15, x: 12.58, y: 16.2708 }, + { l: 15, x: 12.67, y: 16.3256 }, + { l: 15, x: 12.75, y: 16.3804 }, + { l: 15, x: 12.83, y: 16.435 }, + { l: 15, x: 12.92, y: 16.4895 }, + { l: 15, x: 13, y: 16.5437 }, + { l: 15, x: 13.08, y: 16.5976 }, + { l: 15, x: 13.17, y: 16.6513 }, + { l: 15, x: 13.25, y: 16.7048 }, + { l: 15, x: 13.33, y: 16.7577 }, + { l: 15, x: 13.42, y: 16.8103 }, + { l: 15, x: 13.5, y: 16.8625 }, + { l: 15, x: 13.58, y: 16.9142 }, + { l: 15, x: 13.67, y: 16.9654 }, + { l: 15, x: 13.75, y: 17.016 }, + { l: 15, x: 13.83, y: 17.0661 }, + { l: 15, x: 13.92, y: 17.1155 }, + { l: 15, x: 14, y: 17.1643 }, + { l: 15, x: 14.08, y: 17.2123 }, + { l: 15, x: 14.17, y: 17.2596 }, + { l: 15, x: 14.25, y: 17.3062 }, + { l: 15, x: 14.33, y: 17.3519 }, + { l: 15, x: 14.42, y: 17.3969 }, + { l: 15, x: 14.5, y: 17.4411 }, + { l: 15, x: 14.58, y: 17.4844 }, + { l: 15, x: 14.67, y: 17.5268 }, + { l: 15, x: 14.75, y: 17.568 }, + { l: 15, x: 14.83, y: 17.6087 }, + { l: 15, x: 14.92, y: 17.648 }, + { l: 15, x: 15, y: 17.6866 }, + { l: 15, x: 15.08, y: 17.724 }, + { l: 15, x: 15.17, y: 17.7606 }, + { l: 15, x: 15.25, y: 17.7961 }, + { l: 15, x: 15.33, y: 17.8307 }, + { l: 15, x: 15.42, y: 17.8642 }, + { l: 15, x: 15.5, y: 17.8968 }, + { l: 15, x: 15.58, y: 17.9284 }, + { l: 15, x: 15.67, y: 17.9591 }, + { l: 15, x: 15.75, y: 17.9888 }, + { l: 15, x: 15.83, y: 18.0176 }, + { l: 15, x: 15.92, y: 18.0455 }, + { l: 15, x: 16, y: 18.0722 }, + { l: 15, x: 16.08, y: 18.0983 }, + { l: 15, x: 16.17, y: 18.1234 }, + { l: 15, x: 16.25, y: 18.1476 }, + { l: 15, x: 16.33, y: 18.1709 }, + { l: 15, x: 16.42, y: 18.1933 }, + { l: 15, x: 16.5, y: 18.2147 }, + { l: 15, x: 16.58, y: 18.2355 }, + { l: 15, x: 16.67, y: 18.2554 }, + { l: 15, x: 16.75, y: 18.2743 }, + { l: 15, x: 16.83, y: 18.2926 }, + { l: 15, x: 16.92, y: 18.3101 }, + { l: 15, x: 17, y: 18.327 }, + { l: 15, x: 17.08, y: 18.343 }, + { l: 15, x: 17.17, y: 18.3585 }, + { l: 15, x: 17.25, y: 18.3734 }, + { l: 15, x: 17.33, y: 18.3877 }, + { l: 15, x: 17.42, y: 18.4013 }, + { l: 15, x: 17.5, y: 18.4145 }, + { l: 15, x: 17.58, y: 18.4273 }, + { l: 15, x: 17.67, y: 18.4395 }, + { l: 15, x: 17.75, y: 18.4514 }, + { l: 15, x: 17.83, y: 18.4628 }, + { l: 15, x: 17.92, y: 18.474 }, + { l: 15, x: 18, y: 18.4847 }, + { l: 15, x: 18.08, y: 18.495 }, + { l: 15, x: 18.17, y: 18.5052 }, + { l: 15, x: 18.25, y: 18.5148 }, + { l: 15, x: 18.33, y: 18.5245 }, + { l: 15, x: 18.42, y: 18.5338 }, + { l: 15, x: 18.5, y: 18.5429 }, + { l: 15, x: 18.58, y: 18.5516 }, + { l: 15, x: 18.67, y: 18.5604 }, + { l: 15, x: 18.75, y: 18.5688 }, + { l: 15, x: 18.83, y: 18.5771 }, + { l: 15, x: 18.92, y: 18.5853 }, + { l: 15, x: 19, y: 18.5932 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 15.2441 }, + { l: 50, x: 5.17, y: 15.2434 }, + { l: 50, x: 5.25, y: 15.2433 }, + { l: 50, x: 5.33, y: 15.2438 }, + { l: 50, x: 5.42, y: 15.2448 }, + { l: 50, x: 5.5, y: 15.2464 }, + { l: 50, x: 5.58, y: 15.2487 }, + { l: 50, x: 5.67, y: 15.2516 }, + { l: 50, x: 5.75, y: 15.2551 }, + { l: 50, x: 5.83, y: 15.2592 }, + { l: 50, x: 5.92, y: 15.2641 }, + { l: 50, x: 6, y: 15.2697 }, + { l: 50, x: 6.08, y: 15.276 }, + { l: 50, x: 6.17, y: 15.2831 }, + { l: 50, x: 6.25, y: 15.2911 }, + { l: 50, x: 6.33, y: 15.2998 }, + { l: 50, x: 6.42, y: 15.3095 }, + { l: 50, x: 6.5, y: 15.32 }, + { l: 50, x: 6.58, y: 15.3314 }, + { l: 50, x: 6.67, y: 15.3439 }, + { l: 50, x: 6.75, y: 15.3572 }, + { l: 50, x: 6.83, y: 15.3717 }, + { l: 50, x: 6.92, y: 15.3871 }, + { l: 50, x: 7, y: 15.4036 }, + { l: 50, x: 7.08, y: 15.4211 }, + { l: 50, x: 7.17, y: 15.4397 }, + { l: 50, x: 7.25, y: 15.4593 }, + { l: 50, x: 7.33, y: 15.4798 }, + { l: 50, x: 7.42, y: 15.5014 }, + { l: 50, x: 7.5, y: 15.524 }, + { l: 50, x: 7.58, y: 15.5476 }, + { l: 50, x: 7.67, y: 15.5723 }, + { l: 50, x: 7.75, y: 15.5979 }, + { l: 50, x: 7.83, y: 15.6246 }, + { l: 50, x: 7.92, y: 15.6523 }, + { l: 50, x: 8, y: 15.681 }, + { l: 50, x: 8.08, y: 15.7107 }, + { l: 50, x: 8.17, y: 15.7415 }, + { l: 50, x: 8.25, y: 15.7732 }, + { l: 50, x: 8.33, y: 15.8058 }, + { l: 50, x: 8.42, y: 15.8394 }, + { l: 50, x: 8.5, y: 15.8738 }, + { l: 50, x: 8.58, y: 15.909 }, + { l: 50, x: 8.67, y: 15.9451 }, + { l: 50, x: 8.75, y: 15.9818 }, + { l: 50, x: 8.83, y: 16.0194 }, + { l: 50, x: 8.92, y: 16.0575 }, + { l: 50, x: 9, y: 16.0964 }, + { l: 50, x: 9.08, y: 16.1358 }, + { l: 50, x: 9.17, y: 16.1759 }, + { l: 50, x: 9.25, y: 16.2166 }, + { l: 50, x: 9.33, y: 16.258 }, + { l: 50, x: 9.42, y: 16.2999 }, + { l: 50, x: 9.5, y: 16.3425 }, + { l: 50, x: 9.58, y: 16.3858 }, + { l: 50, x: 9.67, y: 16.4298 }, + { l: 50, x: 9.75, y: 16.4746 }, + { l: 50, x: 9.83, y: 16.52 }, + { l: 50, x: 9.92, y: 16.5663 }, + { l: 50, x: 10, y: 16.6133 }, + { l: 50, x: 10.08, y: 16.6612 }, + { l: 50, x: 10.17, y: 16.71 }, + { l: 50, x: 10.25, y: 16.7595 }, + { l: 50, x: 10.33, y: 16.81 }, + { l: 50, x: 10.42, y: 16.8614 }, + { l: 50, x: 10.5, y: 16.9136 }, + { l: 50, x: 10.58, y: 16.9667 }, + { l: 50, x: 10.67, y: 17.0208 }, + { l: 50, x: 10.75, y: 17.0757 }, + { l: 50, x: 10.83, y: 17.1316 }, + { l: 50, x: 10.92, y: 17.1883 }, + { l: 50, x: 11, y: 17.2459 }, + { l: 50, x: 11.08, y: 17.3044 }, + { l: 50, x: 11.17, y: 17.3637 }, + { l: 50, x: 11.25, y: 17.4238 }, + { l: 50, x: 11.33, y: 17.4847 }, + { l: 50, x: 11.42, y: 17.5464 }, + { l: 50, x: 11.5, y: 17.6088 }, + { l: 50, x: 11.58, y: 17.6719 }, + { l: 50, x: 11.67, y: 17.7357 }, + { l: 50, x: 11.75, y: 17.8001 }, + { l: 50, x: 11.83, y: 17.8651 }, + { l: 50, x: 11.92, y: 17.9306 }, + { l: 50, x: 12, y: 17.9966 }, + { l: 50, x: 12.08, y: 18.063 }, + { l: 50, x: 12.17, y: 18.1297 }, + { l: 50, x: 12.25, y: 18.1967 }, + { l: 50, x: 12.33, y: 18.2639 }, + { l: 50, x: 12.42, y: 18.3312 }, + { l: 50, x: 12.5, y: 18.3986 }, + { l: 50, x: 12.58, y: 18.466 }, + { l: 50, x: 12.67, y: 18.5333 }, + { l: 50, x: 12.75, y: 18.6006 }, + { l: 50, x: 12.83, y: 18.6677 }, + { l: 50, x: 12.92, y: 18.7346 }, + { l: 50, x: 13, y: 18.8012 }, + { l: 50, x: 13.08, y: 18.8675 }, + { l: 50, x: 13.17, y: 18.9335 }, + { l: 50, x: 13.25, y: 18.9991 }, + { l: 50, x: 13.33, y: 19.0642 }, + { l: 50, x: 13.42, y: 19.1289 }, + { l: 50, x: 13.5, y: 19.1931 }, + { l: 50, x: 13.58, y: 19.2567 }, + { l: 50, x: 13.67, y: 19.3197 }, + { l: 50, x: 13.75, y: 19.382 }, + { l: 50, x: 13.83, y: 19.4437 }, + { l: 50, x: 13.92, y: 19.5045 }, + { l: 50, x: 14, y: 19.5647 }, + { l: 50, x: 14.08, y: 19.624 }, + { l: 50, x: 14.17, y: 19.6824 }, + { l: 50, x: 14.25, y: 19.74 }, + { l: 50, x: 14.33, y: 19.7966 }, + { l: 50, x: 14.42, y: 19.8523 }, + { l: 50, x: 14.5, y: 19.907 }, + { l: 50, x: 14.58, y: 19.9607 }, + { l: 50, x: 14.67, y: 20.0133 }, + { l: 50, x: 14.75, y: 20.0648 }, + { l: 50, x: 14.83, y: 20.1152 }, + { l: 50, x: 14.92, y: 20.1644 }, + { l: 50, x: 15, y: 20.2125 }, + { l: 50, x: 15.08, y: 20.2595 }, + { l: 50, x: 15.17, y: 20.3053 }, + { l: 50, x: 15.25, y: 20.3499 }, + { l: 50, x: 15.33, y: 20.3934 }, + { l: 50, x: 15.42, y: 20.4357 }, + { l: 50, x: 15.5, y: 20.4769 }, + { l: 50, x: 15.58, y: 20.517 }, + { l: 50, x: 15.67, y: 20.556 }, + { l: 50, x: 15.75, y: 20.5938 }, + { l: 50, x: 15.83, y: 20.6306 }, + { l: 50, x: 15.92, y: 20.6663 }, + { l: 50, x: 16, y: 20.7008 }, + { l: 50, x: 16.08, y: 20.7344 }, + { l: 50, x: 16.17, y: 20.7668 }, + { l: 50, x: 16.25, y: 20.7982 }, + { l: 50, x: 16.33, y: 20.8286 }, + { l: 50, x: 16.42, y: 20.858 }, + { l: 50, x: 16.5, y: 20.8863 }, + { l: 50, x: 16.58, y: 20.9137 }, + { l: 50, x: 16.67, y: 20.9401 }, + { l: 50, x: 16.75, y: 20.9656 }, + { l: 50, x: 16.83, y: 20.9901 }, + { l: 50, x: 16.92, y: 21.0138 }, + { l: 50, x: 17, y: 21.0367 }, + { l: 50, x: 17.08, y: 21.0587 }, + { l: 50, x: 17.17, y: 21.0801 }, + { l: 50, x: 17.25, y: 21.1007 }, + { l: 50, x: 17.33, y: 21.1206 }, + { l: 50, x: 17.42, y: 21.1399 }, + { l: 50, x: 17.5, y: 21.1586 }, + { l: 50, x: 17.58, y: 21.1768 }, + { l: 50, x: 17.67, y: 21.1944 }, + { l: 50, x: 17.75, y: 21.2116 }, + { l: 50, x: 17.83, y: 21.2282 }, + { l: 50, x: 17.92, y: 21.2444 }, + { l: 50, x: 18, y: 21.2603 }, + { l: 50, x: 18.08, y: 21.2757 }, + { l: 50, x: 18.17, y: 21.2908 }, + { l: 50, x: 18.25, y: 21.3055 }, + { l: 50, x: 18.33, y: 21.32 }, + { l: 50, x: 18.42, y: 21.3341 }, + { l: 50, x: 18.5, y: 21.348 }, + { l: 50, x: 18.58, y: 21.3617 }, + { l: 50, x: 18.67, y: 21.3752 }, + { l: 50, x: 18.75, y: 21.3884 }, + { l: 50, x: 18.83, y: 21.4014 }, + { l: 50, x: 18.92, y: 21.4143 }, + { l: 50, x: 19, y: 21.4269 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 16.9355 }, + { l: 85, x: 5.17, y: 16.9453 }, + { l: 85, x: 5.25, y: 16.9557 }, + { l: 85, x: 5.33, y: 16.967 }, + { l: 85, x: 5.42, y: 16.9789 }, + { l: 85, x: 5.5, y: 16.9912 }, + { l: 85, x: 5.58, y: 17.0046 }, + { l: 85, x: 5.67, y: 17.0187 }, + { l: 85, x: 5.75, y: 17.0335 }, + { l: 85, x: 5.83, y: 17.0491 }, + { l: 85, x: 5.92, y: 17.0653 }, + { l: 85, x: 6, y: 17.0826 }, + { l: 85, x: 6.08, y: 17.1006 }, + { l: 85, x: 6.17, y: 17.1197 }, + { l: 85, x: 6.25, y: 17.1397 }, + { l: 85, x: 6.33, y: 17.1606 }, + { l: 85, x: 6.42, y: 17.1826 }, + { l: 85, x: 6.5, y: 17.2056 }, + { l: 85, x: 6.58, y: 17.2296 }, + { l: 85, x: 6.67, y: 17.2547 }, + { l: 85, x: 6.75, y: 17.2809 }, + { l: 85, x: 6.83, y: 17.3085 }, + { l: 85, x: 6.92, y: 17.3372 }, + { l: 85, x: 7, y: 17.3671 }, + { l: 85, x: 7.08, y: 17.3982 }, + { l: 85, x: 7.17, y: 17.4303 }, + { l: 85, x: 7.25, y: 17.4639 }, + { l: 85, x: 7.33, y: 17.4984 }, + { l: 85, x: 7.42, y: 17.5341 }, + { l: 85, x: 7.5, y: 17.5711 }, + { l: 85, x: 7.58, y: 17.609 }, + { l: 85, x: 7.67, y: 17.6483 }, + { l: 85, x: 7.75, y: 17.6888 }, + { l: 85, x: 7.83, y: 17.7303 }, + { l: 85, x: 7.92, y: 17.773 }, + { l: 85, x: 8, y: 17.8169 }, + { l: 85, x: 8.08, y: 17.8617 }, + { l: 85, x: 8.17, y: 17.908 }, + { l: 85, x: 8.25, y: 17.9551 }, + { l: 85, x: 8.33, y: 18.0035 }, + { l: 85, x: 8.42, y: 18.0528 }, + { l: 85, x: 8.5, y: 18.1031 }, + { l: 85, x: 8.58, y: 18.1543 }, + { l: 85, x: 8.67, y: 18.2063 }, + { l: 85, x: 8.75, y: 18.2592 }, + { l: 85, x: 8.83, y: 18.313 }, + { l: 85, x: 8.92, y: 18.3673 }, + { l: 85, x: 9, y: 18.4223 }, + { l: 85, x: 9.08, y: 18.4781 }, + { l: 85, x: 9.17, y: 18.5345 }, + { l: 85, x: 9.25, y: 18.5916 }, + { l: 85, x: 9.33, y: 18.6495 }, + { l: 85, x: 9.42, y: 18.7078 }, + { l: 85, x: 9.5, y: 18.7668 }, + { l: 85, x: 9.58, y: 18.8267 }, + { l: 85, x: 9.67, y: 18.8871 }, + { l: 85, x: 9.75, y: 18.9484 }, + { l: 85, x: 9.83, y: 19.0104 }, + { l: 85, x: 9.92, y: 19.0735 }, + { l: 85, x: 10, y: 19.1371 }, + { l: 85, x: 10.08, y: 19.2018 }, + { l: 85, x: 10.17, y: 19.2672 }, + { l: 85, x: 10.25, y: 19.3334 }, + { l: 85, x: 10.33, y: 19.4008 }, + { l: 85, x: 10.42, y: 19.469 }, + { l: 85, x: 10.5, y: 19.5381 }, + { l: 85, x: 10.58, y: 19.6082 }, + { l: 85, x: 10.67, y: 19.6793 }, + { l: 85, x: 10.75, y: 19.7512 }, + { l: 85, x: 10.83, y: 19.8241 }, + { l: 85, x: 10.92, y: 19.8978 }, + { l: 85, x: 11, y: 19.9726 }, + { l: 85, x: 11.08, y: 20.0482 }, + { l: 85, x: 11.17, y: 20.1248 }, + { l: 85, x: 11.25, y: 20.2019 }, + { l: 85, x: 11.33, y: 20.28 }, + { l: 85, x: 11.42, y: 20.3588 }, + { l: 85, x: 11.5, y: 20.4384 }, + { l: 85, x: 11.58, y: 20.5188 }, + { l: 85, x: 11.67, y: 20.5998 }, + { l: 85, x: 11.75, y: 20.6814 }, + { l: 85, x: 11.83, y: 20.7635 }, + { l: 85, x: 11.92, y: 20.8459 }, + { l: 85, x: 12, y: 20.9292 }, + { l: 85, x: 12.08, y: 21.0126 }, + { l: 85, x: 12.17, y: 21.0961 }, + { l: 85, x: 12.25, y: 21.18 }, + { l: 85, x: 12.33, y: 21.2639 }, + { l: 85, x: 12.42, y: 21.3478 }, + { l: 85, x: 12.5, y: 21.4319 }, + { l: 85, x: 12.58, y: 21.5157 }, + { l: 85, x: 12.67, y: 21.5994 }, + { l: 85, x: 12.75, y: 21.6828 }, + { l: 85, x: 12.83, y: 21.766 }, + { l: 85, x: 12.92, y: 21.8487 }, + { l: 85, x: 13, y: 21.931 }, + { l: 85, x: 13.08, y: 22.0129 }, + { l: 85, x: 13.17, y: 22.0943 }, + { l: 85, x: 13.25, y: 22.1748 }, + { l: 85, x: 13.33, y: 22.2551 }, + { l: 85, x: 13.42, y: 22.3346 }, + { l: 85, x: 13.5, y: 22.4133 }, + { l: 85, x: 13.58, y: 22.4913 }, + { l: 85, x: 13.67, y: 22.5686 }, + { l: 85, x: 13.75, y: 22.6448 }, + { l: 85, x: 13.83, y: 22.7203 }, + { l: 85, x: 13.92, y: 22.7944 }, + { l: 85, x: 14, y: 22.8678 }, + { l: 85, x: 14.08, y: 22.9402 }, + { l: 85, x: 14.17, y: 23.0116 }, + { l: 85, x: 14.25, y: 23.0818 }, + { l: 85, x: 14.33, y: 23.1507 }, + { l: 85, x: 14.42, y: 23.2184 }, + { l: 85, x: 14.5, y: 23.2849 }, + { l: 85, x: 14.58, y: 23.3502 }, + { l: 85, x: 14.67, y: 23.414 }, + { l: 85, x: 14.75, y: 23.4767 }, + { l: 85, x: 14.83, y: 23.5376 }, + { l: 85, x: 14.92, y: 23.5974 }, + { l: 85, x: 15, y: 23.6556 }, + { l: 85, x: 15.08, y: 23.7129 }, + { l: 85, x: 15.17, y: 23.7681 }, + { l: 85, x: 15.25, y: 23.8223 }, + { l: 85, x: 15.33, y: 23.8749 }, + { l: 85, x: 15.42, y: 23.926 }, + { l: 85, x: 15.5, y: 23.9759 }, + { l: 85, x: 15.58, y: 24.0245 }, + { l: 85, x: 15.67, y: 24.0715 }, + { l: 85, x: 15.75, y: 24.1171 }, + { l: 85, x: 15.83, y: 24.1616 }, + { l: 85, x: 15.92, y: 24.2048 }, + { l: 85, x: 16, y: 24.2465 }, + { l: 85, x: 16.08, y: 24.2869 }, + { l: 85, x: 16.17, y: 24.3259 }, + { l: 85, x: 16.25, y: 24.3637 }, + { l: 85, x: 16.33, y: 24.4003 }, + { l: 85, x: 16.42, y: 24.4358 }, + { l: 85, x: 16.5, y: 24.47 }, + { l: 85, x: 16.58, y: 24.5028 }, + { l: 85, x: 16.67, y: 24.5344 }, + { l: 85, x: 16.75, y: 24.5653 }, + { l: 85, x: 16.83, y: 24.5947 }, + { l: 85, x: 16.92, y: 24.6232 }, + { l: 85, x: 17, y: 24.6504 }, + { l: 85, x: 17.08, y: 24.6768 }, + { l: 85, x: 17.17, y: 24.7026 }, + { l: 85, x: 17.25, y: 24.7271 }, + { l: 85, x: 17.33, y: 24.7507 }, + { l: 85, x: 17.42, y: 24.774 }, + { l: 85, x: 17.5, y: 24.7963 }, + { l: 85, x: 17.58, y: 24.8179 }, + { l: 85, x: 17.67, y: 24.8389 }, + { l: 85, x: 17.75, y: 24.8593 }, + { l: 85, x: 17.83, y: 24.8791 }, + { l: 85, x: 17.92, y: 24.8981 }, + { l: 85, x: 18, y: 24.9171 }, + { l: 85, x: 18.08, y: 24.9355 }, + { l: 85, x: 18.17, y: 24.9532 }, + { l: 85, x: 18.25, y: 24.9707 }, + { l: 85, x: 18.33, y: 24.9877 }, + { l: 85, x: 18.42, y: 25.0042 }, + { l: 85, x: 18.5, y: 25.0205 }, + { l: 85, x: 18.58, y: 25.0369 }, + { l: 85, x: 18.67, y: 25.0527 }, + { l: 85, x: 18.75, y: 25.0682 }, + { l: 85, x: 18.83, y: 25.0834 }, + { l: 85, x: 18.92, y: 25.0985 }, + { l: 85, x: 19, y: 25.1132 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 17.3885 }, + { l: 90, x: 5.17, y: 17.4021 }, + { l: 90, x: 5.25, y: 17.4162 }, + { l: 90, x: 5.33, y: 17.4314 }, + { l: 90, x: 5.42, y: 17.4471 }, + { l: 90, x: 5.5, y: 17.4634 }, + { l: 90, x: 5.58, y: 17.4807 }, + { l: 90, x: 5.67, y: 17.4988 }, + { l: 90, x: 5.75, y: 17.5177 }, + { l: 90, x: 5.83, y: 17.5373 }, + { l: 90, x: 5.92, y: 17.5577 }, + { l: 90, x: 6, y: 17.5791 }, + { l: 90, x: 6.08, y: 17.6015 }, + { l: 90, x: 6.17, y: 17.6248 }, + { l: 90, x: 6.25, y: 17.6492 }, + { l: 90, x: 6.33, y: 17.6745 }, + { l: 90, x: 6.42, y: 17.701 }, + { l: 90, x: 6.5, y: 17.7285 }, + { l: 90, x: 6.58, y: 17.7571 }, + { l: 90, x: 6.67, y: 17.7867 }, + { l: 90, x: 6.75, y: 17.8177 }, + { l: 90, x: 6.83, y: 17.85 }, + { l: 90, x: 6.92, y: 17.8835 }, + { l: 90, x: 7, y: 17.9183 }, + { l: 90, x: 7.08, y: 17.9542 }, + { l: 90, x: 7.17, y: 17.9913 }, + { l: 90, x: 7.25, y: 18.0299 }, + { l: 90, x: 7.33, y: 18.0695 }, + { l: 90, x: 7.42, y: 18.1102 }, + { l: 90, x: 7.5, y: 18.1524 }, + { l: 90, x: 7.58, y: 18.1955 }, + { l: 90, x: 7.67, y: 18.24 }, + { l: 90, x: 7.75, y: 18.2858 }, + { l: 90, x: 7.83, y: 18.3327 }, + { l: 90, x: 7.92, y: 18.3808 }, + { l: 90, x: 8, y: 18.4301 }, + { l: 90, x: 8.08, y: 18.4803 }, + { l: 90, x: 8.17, y: 18.5321 }, + { l: 90, x: 8.25, y: 18.5847 }, + { l: 90, x: 8.33, y: 18.6387 }, + { l: 90, x: 8.42, y: 18.6936 }, + { l: 90, x: 8.5, y: 18.7494 }, + { l: 90, x: 8.58, y: 18.8062 }, + { l: 90, x: 8.67, y: 18.8638 }, + { l: 90, x: 8.75, y: 18.9225 }, + { l: 90, x: 8.83, y: 18.9818 }, + { l: 90, x: 8.92, y: 19.0418 }, + { l: 90, x: 9, y: 19.1024 }, + { l: 90, x: 9.08, y: 19.1639 }, + { l: 90, x: 9.17, y: 19.226 }, + { l: 90, x: 9.25, y: 19.2887 }, + { l: 90, x: 9.33, y: 19.3523 }, + { l: 90, x: 9.42, y: 19.4161 }, + { l: 90, x: 9.5, y: 19.4807 }, + { l: 90, x: 9.58, y: 19.5462 }, + { l: 90, x: 9.67, y: 19.6121 }, + { l: 90, x: 9.75, y: 19.679 }, + { l: 90, x: 9.83, y: 19.7466 }, + { l: 90, x: 9.92, y: 19.8153 }, + { l: 90, x: 10, y: 19.8844 }, + { l: 90, x: 10.08, y: 19.9546 }, + { l: 90, x: 10.17, y: 20.0255 }, + { l: 90, x: 10.25, y: 20.0972 }, + { l: 90, x: 10.33, y: 20.1701 }, + { l: 90, x: 10.42, y: 20.2437 }, + { l: 90, x: 10.5, y: 20.3182 }, + { l: 90, x: 10.58, y: 20.3938 }, + { l: 90, x: 10.67, y: 20.4702 }, + { l: 90, x: 10.75, y: 20.5476 }, + { l: 90, x: 10.83, y: 20.6258 }, + { l: 90, x: 10.92, y: 20.7049 }, + { l: 90, x: 11, y: 20.7851 }, + { l: 90, x: 11.08, y: 20.866 }, + { l: 90, x: 11.17, y: 20.9478 }, + { l: 90, x: 11.25, y: 21.0302 }, + { l: 90, x: 11.33, y: 21.1135 }, + { l: 90, x: 11.42, y: 21.1975 }, + { l: 90, x: 11.5, y: 21.2822 }, + { l: 90, x: 11.58, y: 21.3678 }, + { l: 90, x: 11.67, y: 21.4539 }, + { l: 90, x: 11.75, y: 21.5407 }, + { l: 90, x: 11.83, y: 21.6278 }, + { l: 90, x: 11.92, y: 21.7151 }, + { l: 90, x: 12, y: 21.8034 }, + { l: 90, x: 12.08, y: 21.8918 }, + { l: 90, x: 12.17, y: 21.9802 }, + { l: 90, x: 12.25, y: 22.0689 }, + { l: 90, x: 12.33, y: 22.1575 }, + { l: 90, x: 12.42, y: 22.2462 }, + { l: 90, x: 12.5, y: 22.3349 }, + { l: 90, x: 12.58, y: 22.4233 }, + { l: 90, x: 12.67, y: 22.5115 }, + { l: 90, x: 12.75, y: 22.5994 }, + { l: 90, x: 12.83, y: 22.687 }, + { l: 90, x: 12.92, y: 22.7739 }, + { l: 90, x: 13, y: 22.8605 }, + { l: 90, x: 13.08, y: 22.9467 }, + { l: 90, x: 13.17, y: 23.0321 }, + { l: 90, x: 13.25, y: 23.1166 }, + { l: 90, x: 13.33, y: 23.201 }, + { l: 90, x: 13.42, y: 23.2843 }, + { l: 90, x: 13.5, y: 23.3668 }, + { l: 90, x: 13.58, y: 23.4484 }, + { l: 90, x: 13.67, y: 23.5294 }, + { l: 90, x: 13.75, y: 23.6091 }, + { l: 90, x: 13.83, y: 23.688 }, + { l: 90, x: 13.92, y: 23.7655 }, + { l: 90, x: 14, y: 23.8422 }, + { l: 90, x: 14.08, y: 23.9178 }, + { l: 90, x: 14.17, y: 23.9924 }, + { l: 90, x: 14.25, y: 24.0656 }, + { l: 90, x: 14.33, y: 24.1375 }, + { l: 90, x: 14.42, y: 24.208 }, + { l: 90, x: 14.5, y: 24.2773 }, + { l: 90, x: 14.58, y: 24.3453 }, + { l: 90, x: 14.67, y: 24.4117 }, + { l: 90, x: 14.75, y: 24.477 }, + { l: 90, x: 14.83, y: 24.5403 }, + { l: 90, x: 14.92, y: 24.6025 }, + { l: 90, x: 15, y: 24.6629 }, + { l: 90, x: 15.08, y: 24.7224 }, + { l: 90, x: 15.17, y: 24.7797 }, + { l: 90, x: 15.25, y: 24.8359 }, + { l: 90, x: 15.33, y: 24.8904 }, + { l: 90, x: 15.42, y: 24.9434 }, + { l: 90, x: 15.5, y: 24.995 }, + { l: 90, x: 15.58, y: 25.0454 }, + { l: 90, x: 15.67, y: 25.0939 }, + { l: 90, x: 15.75, y: 25.141 }, + { l: 90, x: 15.83, y: 25.1869 }, + { l: 90, x: 15.92, y: 25.2315 }, + { l: 90, x: 16, y: 25.2745 }, + { l: 90, x: 16.08, y: 25.3161 }, + { l: 90, x: 16.17, y: 25.3562 }, + { l: 90, x: 16.25, y: 25.3951 }, + { l: 90, x: 16.33, y: 25.4328 }, + { l: 90, x: 16.42, y: 25.4692 }, + { l: 90, x: 16.5, y: 25.5042 }, + { l: 90, x: 16.58, y: 25.5378 }, + { l: 90, x: 16.67, y: 25.5701 }, + { l: 90, x: 16.75, y: 25.6017 }, + { l: 90, x: 16.83, y: 25.6317 }, + { l: 90, x: 16.92, y: 25.6607 }, + { l: 90, x: 17, y: 25.6883 }, + { l: 90, x: 17.08, y: 25.7152 }, + { l: 90, x: 17.17, y: 25.7413 }, + { l: 90, x: 17.25, y: 25.766 }, + { l: 90, x: 17.33, y: 25.7899 }, + { l: 90, x: 17.42, y: 25.8135 }, + { l: 90, x: 17.5, y: 25.8359 }, + { l: 90, x: 17.58, y: 25.8576 }, + { l: 90, x: 17.67, y: 25.8787 }, + { l: 90, x: 17.75, y: 25.8993 }, + { l: 90, x: 17.83, y: 25.9191 }, + { l: 90, x: 17.92, y: 25.938 }, + { l: 90, x: 18, y: 25.957 }, + { l: 90, x: 18.08, y: 25.9753 }, + { l: 90, x: 18.17, y: 25.9929 }, + { l: 90, x: 18.25, y: 26.0104 }, + { l: 90, x: 18.33, y: 26.0272 }, + { l: 90, x: 18.42, y: 26.0436 }, + { l: 90, x: 18.5, y: 26.0597 }, + { l: 90, x: 18.58, y: 26.0759 }, + { l: 90, x: 18.67, y: 26.0915 }, + { l: 90, x: 18.75, y: 26.1067 }, + { l: 90, x: 18.83, y: 26.1217 }, + { l: 90, x: 18.92, y: 26.1365 }, + { l: 90, x: 19, y: 26.151 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 18.1035 }, + { l: 95, x: 5.17, y: 18.1238 }, + { l: 95, x: 5.25, y: 18.1446 }, + { l: 95, x: 5.33, y: 18.1666 }, + { l: 95, x: 5.42, y: 18.1894 }, + { l: 95, x: 5.5, y: 18.2126 }, + { l: 95, x: 5.58, y: 18.2371 }, + { l: 95, x: 5.67, y: 18.2625 }, + { l: 95, x: 5.75, y: 18.2887 }, + { l: 95, x: 5.83, y: 18.3158 }, + { l: 95, x: 5.92, y: 18.3436 }, + { l: 95, x: 6, y: 18.3727 }, + { l: 95, x: 6.08, y: 18.4029 }, + { l: 95, x: 6.17, y: 18.434 }, + { l: 95, x: 6.25, y: 18.4664 }, + { l: 95, x: 6.33, y: 18.4998 }, + { l: 95, x: 6.42, y: 18.5345 }, + { l: 95, x: 6.5, y: 18.5702 }, + { l: 95, x: 6.58, y: 18.6072 }, + { l: 95, x: 6.67, y: 18.6453 }, + { l: 95, x: 6.75, y: 18.6848 }, + { l: 95, x: 6.83, y: 18.7258 }, + { l: 95, x: 6.92, y: 18.7681 }, + { l: 95, x: 7, y: 18.8119 }, + { l: 95, x: 7.08, y: 18.8569 }, + { l: 95, x: 7.17, y: 18.903 }, + { l: 95, x: 7.25, y: 18.9508 }, + { l: 95, x: 7.33, y: 18.9999 }, + { l: 95, x: 7.42, y: 19.0499 }, + { l: 95, x: 7.5, y: 19.1017 }, + { l: 95, x: 7.58, y: 19.1543 }, + { l: 95, x: 7.67, y: 19.2084 }, + { l: 95, x: 7.75, y: 19.2641 }, + { l: 95, x: 7.83, y: 19.3208 }, + { l: 95, x: 7.92, y: 19.3788 }, + { l: 95, x: 8, y: 19.4381 }, + { l: 95, x: 8.08, y: 19.4982 }, + { l: 95, x: 8.17, y: 19.5602 }, + { l: 95, x: 8.25, y: 19.6229 }, + { l: 95, x: 8.33, y: 19.6872 }, + { l: 95, x: 8.42, y: 19.7523 }, + { l: 95, x: 8.5, y: 19.8185 }, + { l: 95, x: 8.58, y: 19.8856 }, + { l: 95, x: 8.67, y: 19.9535 }, + { l: 95, x: 8.75, y: 20.0226 }, + { l: 95, x: 8.83, y: 20.0923 }, + { l: 95, x: 8.92, y: 20.1626 }, + { l: 95, x: 9, y: 20.2335 }, + { l: 95, x: 9.08, y: 20.3054 }, + { l: 95, x: 9.17, y: 20.3777 }, + { l: 95, x: 9.25, y: 20.4507 }, + { l: 95, x: 9.33, y: 20.5246 }, + { l: 95, x: 9.42, y: 20.5985 }, + { l: 95, x: 9.5, y: 20.6734 }, + { l: 95, x: 9.58, y: 20.7489 }, + { l: 95, x: 9.67, y: 20.8249 }, + { l: 95, x: 9.75, y: 20.9018 }, + { l: 95, x: 9.83, y: 20.9795 }, + { l: 95, x: 9.92, y: 21.0582 }, + { l: 95, x: 10, y: 21.1371 }, + { l: 95, x: 10.08, y: 21.2172 }, + { l: 95, x: 10.17, y: 21.2979 }, + { l: 95, x: 10.25, y: 21.3792 }, + { l: 95, x: 10.33, y: 21.4619 }, + { l: 95, x: 10.42, y: 21.5451 }, + { l: 95, x: 10.5, y: 21.6292 }, + { l: 95, x: 10.58, y: 21.7143 }, + { l: 95, x: 10.67, y: 21.8002 }, + { l: 95, x: 10.75, y: 21.8869 }, + { l: 95, x: 10.83, y: 21.9744 }, + { l: 95, x: 10.92, y: 22.0627 }, + { l: 95, x: 11, y: 22.1522 }, + { l: 95, x: 11.08, y: 22.2422 }, + { l: 95, x: 11.17, y: 22.3331 }, + { l: 95, x: 11.25, y: 22.4244 }, + { l: 95, x: 11.33, y: 22.5167 }, + { l: 95, x: 11.42, y: 22.6094 }, + { l: 95, x: 11.5, y: 22.7029 }, + { l: 95, x: 11.58, y: 22.7972 }, + { l: 95, x: 11.67, y: 22.8918 }, + { l: 95, x: 11.75, y: 22.9871 }, + { l: 95, x: 11.83, y: 23.0826 }, + { l: 95, x: 11.92, y: 23.1781 }, + { l: 95, x: 12, y: 23.2747 }, + { l: 95, x: 12.08, y: 23.3712 }, + { l: 95, x: 12.17, y: 23.4675 }, + { l: 95, x: 12.25, y: 23.5641 }, + { l: 95, x: 12.33, y: 23.6604 }, + { l: 95, x: 12.42, y: 23.7567 }, + { l: 95, x: 12.5, y: 23.8529 }, + { l: 95, x: 12.58, y: 23.9487 }, + { l: 95, x: 12.67, y: 24.0442 }, + { l: 95, x: 12.75, y: 24.1391 }, + { l: 95, x: 12.83, y: 24.2336 }, + { l: 95, x: 12.92, y: 24.3273 }, + { l: 95, x: 13, y: 24.4205 }, + { l: 95, x: 13.08, y: 24.5133 }, + { l: 95, x: 13.17, y: 24.605 }, + { l: 95, x: 13.25, y: 24.6956 }, + { l: 95, x: 13.33, y: 24.7861 }, + { l: 95, x: 13.42, y: 24.8753 }, + { l: 95, x: 13.5, y: 24.9634 }, + { l: 95, x: 13.58, y: 25.0506 }, + { l: 95, x: 13.67, y: 25.1371 }, + { l: 95, x: 13.75, y: 25.222 }, + { l: 95, x: 13.83, y: 25.3061 }, + { l: 95, x: 13.92, y: 25.3883 }, + { l: 95, x: 14, y: 25.4699 }, + { l: 95, x: 14.08, y: 25.5501 }, + { l: 95, x: 14.17, y: 25.6293 }, + { l: 95, x: 14.25, y: 25.7068 }, + { l: 95, x: 14.33, y: 25.783 }, + { l: 95, x: 14.42, y: 25.8574 }, + { l: 95, x: 14.5, y: 25.9306 }, + { l: 95, x: 14.58, y: 26.0024 }, + { l: 95, x: 14.67, y: 26.0722 }, + { l: 95, x: 14.75, y: 26.1411 }, + { l: 95, x: 14.83, y: 26.2075 }, + { l: 95, x: 14.92, y: 26.2728 }, + { l: 95, x: 15, y: 26.3362 }, + { l: 95, x: 15.08, y: 26.3987 }, + { l: 95, x: 15.17, y: 26.4585 }, + { l: 95, x: 15.25, y: 26.5172 }, + { l: 95, x: 15.33, y: 26.5741 }, + { l: 95, x: 15.42, y: 26.6293 }, + { l: 95, x: 15.5, y: 26.683 }, + { l: 95, x: 15.58, y: 26.7354 }, + { l: 95, x: 15.67, y: 26.7857 }, + { l: 95, x: 15.75, y: 26.8344 }, + { l: 95, x: 15.83, y: 26.8819 }, + { l: 95, x: 15.92, y: 26.9279 }, + { l: 95, x: 16, y: 26.9723 }, + { l: 95, x: 16.08, y: 27.015 }, + { l: 95, x: 16.17, y: 27.0561 }, + { l: 95, x: 16.25, y: 27.0959 }, + { l: 95, x: 16.33, y: 27.1343 }, + { l: 95, x: 16.42, y: 27.1715 }, + { l: 95, x: 16.5, y: 27.2071 }, + { l: 95, x: 16.58, y: 27.241 }, + { l: 95, x: 16.67, y: 27.2735 }, + { l: 95, x: 16.75, y: 27.3055 }, + { l: 95, x: 16.83, y: 27.3356 }, + { l: 95, x: 16.92, y: 27.3646 }, + { l: 95, x: 17, y: 27.3919 }, + { l: 95, x: 17.08, y: 27.4187 }, + { l: 95, x: 17.17, y: 27.4446 }, + { l: 95, x: 17.25, y: 27.4689 }, + { l: 95, x: 17.33, y: 27.4922 }, + { l: 95, x: 17.42, y: 27.5154 }, + { l: 95, x: 17.5, y: 27.5371 }, + { l: 95, x: 17.58, y: 27.5582 }, + { l: 95, x: 17.67, y: 27.5785 }, + { l: 95, x: 17.75, y: 27.5983 }, + { l: 95, x: 17.83, y: 27.6174 }, + { l: 95, x: 17.92, y: 27.6352 }, + { l: 95, x: 18, y: 27.6533 }, + { l: 95, x: 18.08, y: 27.6708 }, + { l: 95, x: 18.17, y: 27.6872 }, + { l: 95, x: 18.25, y: 27.7038 }, + { l: 95, x: 18.33, y: 27.7194 }, + { l: 95, x: 18.42, y: 27.7346 }, + { l: 95, x: 18.5, y: 27.7495 }, + { l: 95, x: 18.58, y: 27.7647 }, + { l: 95, x: 18.67, y: 27.7791 }, + { l: 95, x: 18.75, y: 27.793 }, + { l: 95, x: 18.83, y: 27.8067 }, + { l: 95, x: 18.92, y: 27.8203 }, + { l: 95, x: 19, y: 27.8334 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 18.5981 }, + { l: 97, x: 5.17, y: 18.6237 }, + { l: 97, x: 5.25, y: 18.6497 }, + { l: 97, x: 5.33, y: 18.6772 }, + { l: 97, x: 5.42, y: 18.7054 }, + { l: 97, x: 5.5, y: 18.7341 }, + { l: 97, x: 5.58, y: 18.7643 }, + { l: 97, x: 5.67, y: 18.7954 }, + { l: 97, x: 5.75, y: 18.8274 }, + { l: 97, x: 5.83, y: 18.8604 }, + { l: 97, x: 5.92, y: 18.8941 }, + { l: 97, x: 6, y: 18.9293 }, + { l: 97, x: 6.08, y: 18.9655 }, + { l: 97, x: 6.17, y: 19.0029 }, + { l: 97, x: 6.25, y: 19.0417 }, + { l: 97, x: 6.33, y: 19.0815 }, + { l: 97, x: 6.42, y: 19.1227 }, + { l: 97, x: 6.5, y: 19.1651 }, + { l: 97, x: 6.58, y: 19.2088 }, + { l: 97, x: 6.67, y: 19.2535 }, + { l: 97, x: 6.75, y: 19.2999 }, + { l: 97, x: 6.83, y: 19.348 }, + { l: 97, x: 6.92, y: 19.3974 }, + { l: 97, x: 7, y: 19.4483 }, + { l: 97, x: 7.08, y: 19.5006 }, + { l: 97, x: 7.17, y: 19.554 }, + { l: 97, x: 7.25, y: 19.6093 }, + { l: 97, x: 7.33, y: 19.6659 }, + { l: 97, x: 7.42, y: 19.7235 }, + { l: 97, x: 7.5, y: 19.783 }, + { l: 97, x: 7.58, y: 19.8434 }, + { l: 97, x: 7.67, y: 19.9052 }, + { l: 97, x: 7.75, y: 19.9689 }, + { l: 97, x: 7.83, y: 20.0335 }, + { l: 97, x: 7.92, y: 20.0995 }, + { l: 97, x: 8, y: 20.1669 }, + { l: 97, x: 8.08, y: 20.2352 }, + { l: 97, x: 8.17, y: 20.3053 }, + { l: 97, x: 8.25, y: 20.3762 }, + { l: 97, x: 8.33, y: 20.4488 }, + { l: 97, x: 8.42, y: 20.5223 }, + { l: 97, x: 8.5, y: 20.5968 }, + { l: 97, x: 8.58, y: 20.6723 }, + { l: 97, x: 8.67, y: 20.7485 }, + { l: 97, x: 8.75, y: 20.826 }, + { l: 97, x: 8.83, y: 20.9041 }, + { l: 97, x: 8.92, y: 20.9827 }, + { l: 97, x: 9, y: 21.0619 }, + { l: 97, x: 9.08, y: 21.1422 }, + { l: 97, x: 9.17, y: 21.2228 }, + { l: 97, x: 9.25, y: 21.304 }, + { l: 97, x: 9.33, y: 21.3862 }, + { l: 97, x: 9.42, y: 21.4683 }, + { l: 97, x: 9.5, y: 21.5513 }, + { l: 97, x: 9.58, y: 21.635 }, + { l: 97, x: 9.67, y: 21.7189 }, + { l: 97, x: 9.75, y: 21.8039 }, + { l: 97, x: 9.83, y: 21.8894 }, + { l: 97, x: 9.92, y: 21.9761 }, + { l: 97, x: 10, y: 22.0629 }, + { l: 97, x: 10.08, y: 22.1508 }, + { l: 97, x: 10.17, y: 22.2391 }, + { l: 97, x: 10.25, y: 22.3281 }, + { l: 97, x: 10.33, y: 22.4184 }, + { l: 97, x: 10.42, y: 22.509 }, + { l: 97, x: 10.5, y: 22.6006 }, + { l: 97, x: 10.58, y: 22.6931 }, + { l: 97, x: 10.67, y: 22.7863 }, + { l: 97, x: 10.75, y: 22.8803 }, + { l: 97, x: 10.83, y: 22.9749 }, + { l: 97, x: 10.92, y: 23.0702 }, + { l: 97, x: 11, y: 23.1668 }, + { l: 97, x: 11.08, y: 23.2637 }, + { l: 97, x: 11.17, y: 23.3615 }, + { l: 97, x: 11.25, y: 23.4595 }, + { l: 97, x: 11.33, y: 23.5584 }, + { l: 97, x: 11.42, y: 23.6577 }, + { l: 97, x: 11.5, y: 23.7576 }, + { l: 97, x: 11.58, y: 23.8584 }, + { l: 97, x: 11.67, y: 23.9594 }, + { l: 97, x: 11.75, y: 24.0609 }, + { l: 97, x: 11.83, y: 24.1624 }, + { l: 97, x: 11.92, y: 24.2638 }, + { l: 97, x: 12, y: 24.3665 }, + { l: 97, x: 12.08, y: 24.4689 }, + { l: 97, x: 12.17, y: 24.5708 }, + { l: 97, x: 12.25, y: 24.673 }, + { l: 97, x: 12.33, y: 24.7747 }, + { l: 97, x: 12.42, y: 24.8764 }, + { l: 97, x: 12.5, y: 24.9779 }, + { l: 97, x: 12.58, y: 25.0788 }, + { l: 97, x: 12.67, y: 25.1793 }, + { l: 97, x: 12.75, y: 25.2791 }, + { l: 97, x: 12.83, y: 25.3784 }, + { l: 97, x: 12.92, y: 25.4767 }, + { l: 97, x: 13, y: 25.5743 }, + { l: 97, x: 13.08, y: 25.6715 }, + { l: 97, x: 13.17, y: 25.7674 }, + { l: 97, x: 13.25, y: 25.862 }, + { l: 97, x: 13.33, y: 25.9565 }, + { l: 97, x: 13.42, y: 26.0495 }, + { l: 97, x: 13.5, y: 26.1413 }, + { l: 97, x: 13.58, y: 26.2321 }, + { l: 97, x: 13.67, y: 26.322 }, + { l: 97, x: 13.75, y: 26.4101 }, + { l: 97, x: 13.83, y: 26.4974 }, + { l: 97, x: 13.92, y: 26.5826 }, + { l: 97, x: 14, y: 26.6671 }, + { l: 97, x: 14.08, y: 26.7502 }, + { l: 97, x: 14.17, y: 26.8322 }, + { l: 97, x: 14.25, y: 26.9122 }, + { l: 97, x: 14.33, y: 26.9908 }, + { l: 97, x: 14.42, y: 27.0675 }, + { l: 97, x: 14.5, y: 27.1429 }, + { l: 97, x: 14.58, y: 27.2167 }, + { l: 97, x: 14.67, y: 27.2885 }, + { l: 97, x: 14.75, y: 27.3594 }, + { l: 97, x: 14.83, y: 27.4274 }, + { l: 97, x: 14.92, y: 27.4943 }, + { l: 97, x: 15, y: 27.5591 }, + { l: 97, x: 15.08, y: 27.6232 }, + { l: 97, x: 15.17, y: 27.6841 }, + { l: 97, x: 15.25, y: 27.7441 }, + { l: 97, x: 15.33, y: 27.802 }, + { l: 97, x: 15.42, y: 27.8581 }, + { l: 97, x: 15.5, y: 27.9127 }, + { l: 97, x: 15.58, y: 27.9659 }, + { l: 97, x: 15.67, y: 28.0167 }, + { l: 97, x: 15.75, y: 28.066 }, + { l: 97, x: 15.83, y: 28.114 }, + { l: 97, x: 15.92, y: 28.1604 }, + { l: 97, x: 16, y: 28.205 }, + { l: 97, x: 16.08, y: 28.2478 }, + { l: 97, x: 16.17, y: 28.289 }, + { l: 97, x: 16.25, y: 28.3287 }, + { l: 97, x: 16.33, y: 28.367 }, + { l: 97, x: 16.42, y: 28.404 }, + { l: 97, x: 16.5, y: 28.4394 }, + { l: 97, x: 16.58, y: 28.4728 }, + { l: 97, x: 16.67, y: 28.5048 }, + { l: 97, x: 16.75, y: 28.5364 }, + { l: 97, x: 16.83, y: 28.5658 }, + { l: 97, x: 16.92, y: 28.5941 }, + { l: 97, x: 17, y: 28.6205 }, + { l: 97, x: 17.08, y: 28.6465 }, + { l: 97, x: 17.17, y: 28.6716 }, + { l: 97, x: 17.25, y: 28.6948 }, + { l: 97, x: 17.33, y: 28.7171 }, + { l: 97, x: 17.42, y: 28.7392 }, + { l: 97, x: 17.5, y: 28.7599 }, + { l: 97, x: 17.58, y: 28.7797 }, + { l: 97, x: 17.67, y: 28.7988 }, + { l: 97, x: 17.75, y: 28.8174 }, + { l: 97, x: 17.83, y: 28.8352 }, + { l: 97, x: 17.92, y: 28.8516 }, + { l: 97, x: 18, y: 28.8684 }, + { l: 97, x: 18.08, y: 28.8845 }, + { l: 97, x: 18.17, y: 28.8994 }, + { l: 97, x: 18.25, y: 28.9146 }, + { l: 97, x: 18.33, y: 28.9287 }, + { l: 97, x: 18.42, y: 28.9424 }, + { l: 97, x: 18.5, y: 28.9558 }, + { l: 97, x: 18.58, y: 28.9695 }, + { l: 97, x: 18.67, y: 28.9823 }, + { l: 97, x: 18.75, y: 28.9947 }, + { l: 97, x: 18.83, y: 29.0069 }, + { l: 97, x: 18.92, y: 29.0188 }, + { l: 97, x: 19, y: 29.0303 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 19.6053 }, + { l: 99, x: 5.17, y: 19.6431 }, + { l: 99, x: 5.25, y: 19.6813 }, + { l: 99, x: 5.33, y: 19.7214 }, + { l: 99, x: 5.42, y: 19.7624 }, + { l: 99, x: 5.5, y: 19.804 }, + { l: 99, x: 5.58, y: 19.8474 }, + { l: 99, x: 5.67, y: 19.8921 }, + { l: 99, x: 5.75, y: 19.9378 }, + { l: 99, x: 5.83, y: 19.9847 }, + { l: 99, x: 5.92, y: 20.0325 }, + { l: 99, x: 6, y: 20.0821 }, + { l: 99, x: 6.08, y: 20.1331 }, + { l: 99, x: 6.17, y: 20.1854 }, + { l: 99, x: 6.25, y: 20.2393 }, + { l: 99, x: 6.33, y: 20.2946 }, + { l: 99, x: 6.42, y: 20.3515 }, + { l: 99, x: 6.5, y: 20.4098 }, + { l: 99, x: 6.58, y: 20.4697 }, + { l: 99, x: 6.67, y: 20.5307 }, + { l: 99, x: 6.75, y: 20.5939 }, + { l: 99, x: 6.83, y: 20.6589 }, + { l: 99, x: 6.92, y: 20.7256 }, + { l: 99, x: 7, y: 20.794 }, + { l: 99, x: 7.08, y: 20.8641 }, + { l: 99, x: 7.17, y: 20.9353 }, + { l: 99, x: 7.25, y: 21.0089 }, + { l: 99, x: 7.33, y: 21.084 }, + { l: 99, x: 7.42, y: 21.1601 }, + { l: 99, x: 7.5, y: 21.2386 }, + { l: 99, x: 7.58, y: 21.318 }, + { l: 99, x: 7.67, y: 21.399 }, + { l: 99, x: 7.75, y: 21.4824 }, + { l: 99, x: 7.83, y: 21.5667 }, + { l: 99, x: 7.92, y: 21.6525 }, + { l: 99, x: 8, y: 21.74 }, + { l: 99, x: 8.08, y: 21.8282 }, + { l: 99, x: 8.17, y: 21.9187 }, + { l: 99, x: 8.25, y: 22.0098 }, + { l: 99, x: 8.33, y: 22.1032 }, + { l: 99, x: 8.42, y: 22.1973 }, + { l: 99, x: 8.5, y: 22.2925 }, + { l: 99, x: 8.58, y: 22.3888 }, + { l: 99, x: 8.67, y: 22.4855 }, + { l: 99, x: 8.75, y: 22.5841 }, + { l: 99, x: 8.83, y: 22.6829 }, + { l: 99, x: 8.92, y: 22.7823 }, + { l: 99, x: 9, y: 22.882 }, + { l: 99, x: 9.08, y: 22.9831 }, + { l: 99, x: 9.17, y: 23.0842 }, + { l: 99, x: 9.25, y: 23.1859 }, + { l: 99, x: 9.33, y: 23.2886 }, + { l: 99, x: 9.42, y: 23.3908 }, + { l: 99, x: 9.5, y: 23.4939 }, + { l: 99, x: 9.58, y: 23.5975 }, + { l: 99, x: 9.67, y: 23.7011 }, + { l: 99, x: 9.75, y: 23.8057 }, + { l: 99, x: 9.83, y: 23.9107 }, + { l: 99, x: 9.92, y: 24.0169 }, + { l: 99, x: 10, y: 24.1226 }, + { l: 99, x: 10.08, y: 24.2294 }, + { l: 99, x: 10.17, y: 24.3363 }, + { l: 99, x: 10.25, y: 24.4436 }, + { l: 99, x: 10.33, y: 24.5523 }, + { l: 99, x: 10.42, y: 24.6607 }, + { l: 99, x: 10.5, y: 24.7701 }, + { l: 99, x: 10.58, y: 24.8802 }, + { l: 99, x: 10.67, y: 24.9905 }, + { l: 99, x: 10.75, y: 25.1016 }, + { l: 99, x: 10.83, y: 25.2128 }, + { l: 99, x: 10.92, y: 25.3245 }, + { l: 99, x: 11, y: 25.4375 }, + { l: 99, x: 11.08, y: 25.5502 }, + { l: 99, x: 11.17, y: 25.6638 }, + { l: 99, x: 11.25, y: 25.7769 }, + { l: 99, x: 11.33, y: 25.8909 }, + { l: 99, x: 11.42, y: 26.0049 }, + { l: 99, x: 11.5, y: 26.1192 }, + { l: 99, x: 11.58, y: 26.2345 }, + { l: 99, x: 11.67, y: 26.3493 }, + { l: 99, x: 11.75, y: 26.4645 }, + { l: 99, x: 11.83, y: 26.5792 }, + { l: 99, x: 11.92, y: 26.6933 }, + { l: 99, x: 12, y: 26.809 }, + { l: 99, x: 12.08, y: 26.9238 }, + { l: 99, x: 12.17, y: 27.0376 }, + { l: 99, x: 12.25, y: 27.1515 }, + { l: 99, x: 12.33, y: 27.2645 }, + { l: 99, x: 12.42, y: 27.3772 }, + { l: 99, x: 12.5, y: 27.4895 }, + { l: 99, x: 12.58, y: 27.6007 }, + { l: 99, x: 12.67, y: 27.7112 }, + { l: 99, x: 12.75, y: 27.8206 }, + { l: 99, x: 12.83, y: 27.9291 }, + { l: 99, x: 12.92, y: 28.0362 }, + { l: 99, x: 13, y: 28.1422 }, + { l: 99, x: 13.08, y: 28.2478 }, + { l: 99, x: 13.17, y: 28.3515 }, + { l: 99, x: 13.25, y: 28.4532 }, + { l: 99, x: 13.33, y: 28.5552 }, + { l: 99, x: 13.42, y: 28.6549 }, + { l: 99, x: 13.5, y: 28.753 }, + { l: 99, x: 13.58, y: 28.8499 }, + { l: 99, x: 13.67, y: 28.9458 }, + { l: 99, x: 13.75, y: 29.0392 }, + { l: 99, x: 13.83, y: 29.1317 }, + { l: 99, x: 13.92, y: 29.2213 }, + { l: 99, x: 14, y: 29.3103 }, + { l: 99, x: 14.08, y: 29.3977 }, + { l: 99, x: 14.17, y: 29.4839 }, + { l: 99, x: 14.25, y: 29.5674 }, + { l: 99, x: 14.33, y: 29.6495 }, + { l: 99, x: 14.42, y: 29.729 }, + { l: 99, x: 14.5, y: 29.8073 }, + { l: 99, x: 14.58, y: 29.8837 }, + { l: 99, x: 14.67, y: 29.9576 }, + { l: 99, x: 14.75, y: 30.0307 }, + { l: 99, x: 14.83, y: 30.1001 }, + { l: 99, x: 14.92, y: 30.1686 }, + { l: 99, x: 15, y: 30.2345 }, + { l: 99, x: 15.08, y: 30.2999 }, + { l: 99, x: 15.17, y: 30.3612 }, + { l: 99, x: 15.25, y: 30.4218 }, + { l: 99, x: 15.33, y: 30.4799 }, + { l: 99, x: 15.42, y: 30.5359 }, + { l: 99, x: 15.5, y: 30.5902 }, + { l: 99, x: 15.58, y: 30.6432 }, + { l: 99, x: 15.67, y: 30.693 }, + { l: 99, x: 15.75, y: 30.7414 }, + { l: 99, x: 15.83, y: 30.7883 }, + { l: 99, x: 15.92, y: 30.8335 }, + { l: 99, x: 16, y: 30.8766 }, + { l: 99, x: 16.08, y: 30.9175 }, + { l: 99, x: 16.17, y: 30.9567 }, + { l: 99, x: 16.25, y: 30.9943 }, + { l: 99, x: 16.33, y: 31.0302 }, + { l: 99, x: 16.42, y: 31.0648 }, + { l: 99, x: 16.5, y: 31.0976 }, + { l: 99, x: 16.58, y: 31.1279 }, + { l: 99, x: 16.67, y: 31.1567 }, + { l: 99, x: 16.75, y: 31.1852 }, + { l: 99, x: 16.83, y: 31.2112 }, + { l: 99, x: 16.92, y: 31.236 }, + { l: 99, x: 17, y: 31.2583 }, + { l: 99, x: 17.08, y: 31.2806 }, + { l: 99, x: 17.17, y: 31.3017 }, + { l: 99, x: 17.25, y: 31.3206 }, + { l: 99, x: 17.33, y: 31.3385 }, + { l: 99, x: 17.42, y: 31.3566 }, + { l: 99, x: 17.5, y: 31.3727 }, + { l: 99, x: 17.58, y: 31.3878 }, + { l: 99, x: 17.67, y: 31.4024 }, + { l: 99, x: 17.75, y: 31.4163 }, + { l: 99, x: 17.83, y: 31.4294 }, + { l: 99, x: 17.92, y: 31.4406 }, + { l: 99, x: 18, y: 31.4527 }, + { l: 99, x: 18.08, y: 31.4641 }, + { l: 99, x: 18.17, y: 31.4737 }, + { l: 99, x: 18.25, y: 31.4841 }, + { l: 99, x: 18.33, y: 31.4929 }, + { l: 99, x: 18.42, y: 31.5014 }, + { l: 99, x: 18.5, y: 31.5097 }, + { l: 99, x: 18.58, y: 31.5184 }, + { l: 99, x: 18.67, y: 31.5261 }, + { l: 99, x: 18.75, y: 31.5332 }, + { l: 99, x: 18.83, y: 31.5402 }, + { l: 99, x: 18.92, y: 31.5469 }, + { l: 99, x: 19, y: 31.5531 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_bmi_male_centile_data.ts b/src/chartdata/who_bmi_male_centile_data.ts new file mode 100644 index 0000000..1c2865d --- /dev/null +++ b/src/chartdata/who_bmi_male_centile_data.ts @@ -0,0 +1,2879 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoBMIMaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + male: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 10.8281 }, + { l: 1, x: 0.0575, y: 11.38 }, + { l: 1, x: 0.0767, y: 11.8813 }, + { l: 1, x: 0.0833, y: 12.0386 }, + { l: 1, x: 0.0958, y: 12.3043 }, + { l: 1, x: 0.115, y: 12.648 }, + { l: 1, x: 0.1342, y: 12.9303 }, + { l: 1, x: 0.1533, y: 13.1654 }, + { l: 1, x: 0.1667, y: 13.3057 }, + { l: 1, x: 0.1725, y: 13.3615 }, + { l: 1, x: 0.1916, y: 13.5239 }, + { l: 1, x: 0.2108, y: 13.6579 }, + { l: 1, x: 0.23, y: 13.7693 }, + { l: 1, x: 0.2491, y: 13.863 }, + { l: 1, x: 0.25, y: 13.8666 }, + { l: 1, x: 0.3333, y: 14.1389 }, + { l: 1, x: 0.4167, y: 14.2928 }, + { l: 1, x: 0.5, y: 14.3683 }, + { l: 1, x: 0.5833, y: 14.3853 }, + { l: 1, x: 0.6667, y: 14.3558 }, + { l: 1, x: 0.75, y: 14.2947 }, + { l: 1, x: 0.8333, y: 14.2154 }, + { l: 1, x: 0.9167, y: 14.1279 }, + { l: 1, x: 1, y: 14.0377 }, + { l: 1, x: 1.0833, y: 13.9482 }, + { l: 1, x: 1.1667, y: 13.8607 }, + { l: 1, x: 1.25, y: 13.777 }, + { l: 1, x: 1.3333, y: 13.698 }, + { l: 1, x: 1.4167, y: 13.6239 }, + { l: 1, x: 1.5, y: 13.5546 }, + { l: 1, x: 1.5833, y: 13.4911 }, + { l: 1, x: 1.6667, y: 13.4337 }, + { l: 1, x: 1.75, y: 13.3828 }, + { l: 1, x: 1.8333, y: 13.3376 }, + { l: 1, x: 1.9167, y: 13.2978 }, + { l: 1, x: 2, y: 13.2629 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 11.3371 }, + { l: 3, x: 0.0575, y: 11.8927 }, + { l: 3, x: 0.0767, y: 12.4004 }, + { l: 3, x: 0.0833, y: 12.5599 }, + { l: 3, x: 0.0958, y: 12.8293 }, + { l: 3, x: 0.115, y: 13.1773 }, + { l: 3, x: 0.1342, y: 13.4627 }, + { l: 3, x: 0.1533, y: 13.6999 }, + { l: 3, x: 0.1667, y: 13.8413 }, + { l: 3, x: 0.1725, y: 13.8974 }, + { l: 3, x: 0.1916, y: 14.0604 }, + { l: 3, x: 0.2108, y: 14.1945 }, + { l: 3, x: 0.23, y: 14.3055 }, + { l: 3, x: 0.2491, y: 14.3985 }, + { l: 3, x: 0.25, y: 14.4021 }, + { l: 3, x: 0.3333, y: 14.6697 }, + { l: 3, x: 0.4167, y: 14.8181 }, + { l: 3, x: 0.5, y: 14.8876 }, + { l: 3, x: 0.5833, y: 14.8979 }, + { l: 3, x: 0.6667, y: 14.8613 }, + { l: 3, x: 0.75, y: 14.7927 }, + { l: 3, x: 0.8333, y: 14.7059 }, + { l: 3, x: 0.9167, y: 14.6111 }, + { l: 3, x: 1, y: 14.514 }, + { l: 3, x: 1.0833, y: 14.418 }, + { l: 3, x: 1.1667, y: 14.3243 }, + { l: 3, x: 1.25, y: 14.2349 }, + { l: 3, x: 1.3333, y: 14.1505 }, + { l: 3, x: 1.4167, y: 14.0714 }, + { l: 3, x: 1.5, y: 13.9975 }, + { l: 3, x: 1.5833, y: 13.9297 }, + { l: 3, x: 1.6667, y: 13.8683 }, + { l: 3, x: 1.75, y: 13.8138 }, + { l: 3, x: 1.8333, y: 13.7652 }, + { l: 3, x: 1.9167, y: 13.7224 }, + { l: 3, x: 2, y: 13.6847 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 11.6121 }, + { l: 5, x: 0.0575, y: 12.1702 }, + { l: 5, x: 0.0767, y: 12.6818 }, + { l: 5, x: 0.0833, y: 12.8425 }, + { l: 5, x: 0.0958, y: 13.1141 }, + { l: 5, x: 0.115, y: 13.4646 }, + { l: 5, x: 0.1342, y: 13.752 }, + { l: 5, x: 0.1533, y: 13.9905 }, + { l: 5, x: 0.1667, y: 14.1326 }, + { l: 5, x: 0.1725, y: 14.1889 }, + { l: 5, x: 0.1916, y: 14.3524 }, + { l: 5, x: 0.2108, y: 14.4867 }, + { l: 5, x: 0.23, y: 14.5976 }, + { l: 5, x: 0.2491, y: 14.6904 }, + { l: 5, x: 0.25, y: 14.694 }, + { l: 5, x: 0.3333, y: 14.9593 }, + { l: 5, x: 0.4167, y: 15.1052 }, + { l: 5, x: 0.5, y: 15.1716 }, + { l: 5, x: 0.5833, y: 15.1785 }, + { l: 5, x: 0.6667, y: 15.1382 }, + { l: 5, x: 0.75, y: 15.0656 }, + { l: 5, x: 0.8333, y: 14.9749 }, + { l: 5, x: 0.9167, y: 14.8762 }, + { l: 5, x: 1, y: 14.7755 }, + { l: 5, x: 1.0833, y: 14.676 }, + { l: 5, x: 1.1667, y: 14.5791 }, + { l: 5, x: 1.25, y: 14.4866 }, + { l: 5, x: 1.3333, y: 14.3993 }, + { l: 5, x: 1.4167, y: 14.3176 }, + { l: 5, x: 1.5, y: 14.2412 }, + { l: 5, x: 1.5833, y: 14.1711 }, + { l: 5, x: 1.6667, y: 14.1076 }, + { l: 5, x: 1.75, y: 14.051 }, + { l: 5, x: 1.8333, y: 14.0007 }, + { l: 5, x: 1.9167, y: 13.9562 }, + { l: 5, x: 2, y: 13.917 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 12.0432 }, + { l: 10, x: 0.0575, y: 12.6059 }, + { l: 10, x: 0.0767, y: 13.1239 }, + { l: 10, x: 0.0833, y: 13.2869 }, + { l: 10, x: 0.0958, y: 13.562 }, + { l: 10, x: 0.115, y: 13.917 }, + { l: 10, x: 0.1342, y: 14.2076 }, + { l: 10, x: 0.1533, y: 14.4485 }, + { l: 10, x: 0.1667, y: 14.5918 }, + { l: 10, x: 0.1725, y: 14.6486 }, + { l: 10, x: 0.1916, y: 14.8131 }, + { l: 10, x: 0.2108, y: 14.9478 }, + { l: 10, x: 0.23, y: 15.0589 }, + { l: 10, x: 0.2491, y: 15.1513 }, + { l: 10, x: 0.25, y: 15.1549 }, + { l: 10, x: 0.3333, y: 15.4175 }, + { l: 10, x: 0.4167, y: 15.5597 }, + { l: 10, x: 0.5, y: 15.6218 }, + { l: 10, x: 0.5833, y: 15.6237 }, + { l: 10, x: 0.6667, y: 15.5777 }, + { l: 10, x: 0.75, y: 15.4991 }, + { l: 10, x: 0.8333, y: 15.4023 }, + { l: 10, x: 0.9167, y: 15.2977 }, + { l: 10, x: 1, y: 15.1914 }, + { l: 10, x: 1.0833, y: 15.0865 }, + { l: 10, x: 1.1667, y: 14.9846 }, + { l: 10, x: 1.25, y: 14.8873 }, + { l: 10, x: 1.3333, y: 14.7956 }, + { l: 10, x: 1.4167, y: 14.7097 }, + { l: 10, x: 1.5, y: 14.6295 }, + { l: 10, x: 1.5833, y: 14.5559 }, + { l: 10, x: 1.6667, y: 14.489 }, + { l: 10, x: 1.75, y: 14.4295 }, + { l: 10, x: 1.8333, y: 14.3764 }, + { l: 10, x: 1.9167, y: 14.3294 }, + { l: 10, x: 2, y: 14.2879 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 12.3394 }, + { l: 15, x: 0.0575, y: 12.9056 }, + { l: 15, x: 0.0767, y: 13.4284 }, + { l: 15, x: 0.0833, y: 13.593 }, + { l: 15, x: 0.0958, y: 13.8708 }, + { l: 15, x: 0.115, y: 14.2291 }, + { l: 15, x: 0.1342, y: 14.5222 }, + { l: 15, x: 0.1533, y: 14.765 }, + { l: 15, x: 0.1667, y: 14.9092 }, + { l: 15, x: 0.1725, y: 14.9663 }, + { l: 15, x: 0.1916, y: 15.1316 }, + { l: 15, x: 0.2108, y: 15.2669 }, + { l: 15, x: 0.23, y: 15.3781 }, + { l: 15, x: 0.2491, y: 15.4705 }, + { l: 15, x: 0.25, y: 15.4741 }, + { l: 15, x: 0.3333, y: 15.7352 }, + { l: 15, x: 0.4167, y: 15.8752 }, + { l: 15, x: 0.5, y: 15.9346 }, + { l: 15, x: 0.5833, y: 15.9332 }, + { l: 15, x: 0.6667, y: 15.8835 }, + { l: 15, x: 0.75, y: 15.801 }, + { l: 15, x: 0.8333, y: 15.7001 }, + { l: 15, x: 0.9167, y: 15.5916 }, + { l: 15, x: 1, y: 15.4815 }, + { l: 15, x: 1.0833, y: 15.3729 }, + { l: 15, x: 1.1667, y: 15.2676 }, + { l: 15, x: 1.25, y: 15.1672 }, + { l: 15, x: 1.3333, y: 15.0725 }, + { l: 15, x: 1.4167, y: 14.9838 }, + { l: 15, x: 1.5, y: 14.901 }, + { l: 15, x: 1.5833, y: 14.8249 }, + { l: 15, x: 1.6667, y: 14.7558 }, + { l: 15, x: 1.75, y: 14.6942 }, + { l: 15, x: 1.8333, y: 14.6393 }, + { l: 15, x: 1.9167, y: 14.5905 }, + { l: 15, x: 2, y: 14.5475 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 13.6377 }, + { l: 50, x: 0.0575, y: 14.2241 }, + { l: 50, x: 0.0767, y: 14.7714 }, + { l: 50, x: 0.0833, y: 14.9441 }, + { l: 50, x: 0.0958, y: 15.2355 }, + { l: 50, x: 0.115, y: 15.6107 }, + { l: 50, x: 0.1342, y: 15.9169 }, + { l: 50, x: 0.1533, y: 16.1698 }, + { l: 50, x: 0.1667, y: 16.3195 }, + { l: 50, x: 0.1725, y: 16.3787 }, + { l: 50, x: 0.1916, y: 16.5494 }, + { l: 50, x: 0.2108, y: 16.6882 }, + { l: 50, x: 0.23, y: 16.8016 }, + { l: 50, x: 0.2491, y: 16.895 }, + { l: 50, x: 0.25, y: 16.8987 }, + { l: 50, x: 0.3333, y: 17.1579 }, + { l: 50, x: 0.4167, y: 17.2919 }, + { l: 50, x: 0.5, y: 17.3422 }, + { l: 50, x: 0.5833, y: 17.3288 }, + { l: 50, x: 0.6667, y: 17.2647 }, + { l: 50, x: 0.75, y: 17.1662 }, + { l: 50, x: 0.8333, y: 17.0488 }, + { l: 50, x: 0.9167, y: 16.9239 }, + { l: 50, x: 1, y: 16.7981 }, + { l: 50, x: 1.0833, y: 16.6743 }, + { l: 50, x: 1.1667, y: 16.5548 }, + { l: 50, x: 1.25, y: 16.4409 }, + { l: 50, x: 1.3333, y: 16.3335 }, + { l: 50, x: 1.4167, y: 16.2329 }, + { l: 50, x: 1.5, y: 16.1392 }, + { l: 50, x: 1.5833, y: 16.0528 }, + { l: 50, x: 1.6667, y: 15.9743 }, + { l: 50, x: 1.75, y: 15.9039 }, + { l: 50, x: 1.8333, y: 15.8412 }, + { l: 50, x: 1.9167, y: 15.7852 }, + { l: 50, x: 2, y: 15.7356 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 15.0123 }, + { l: 85, x: 0.0575, y: 15.6278 }, + { l: 85, x: 0.0767, y: 16.2073 }, + { l: 85, x: 0.0833, y: 16.3906 }, + { l: 85, x: 0.0958, y: 16.6998 }, + { l: 85, x: 0.115, y: 17.0976 }, + { l: 85, x: 0.1342, y: 17.4218 }, + { l: 85, x: 0.1533, y: 17.6892 }, + { l: 85, x: 0.1667, y: 17.8471 }, + { l: 85, x: 0.1725, y: 17.9095 }, + { l: 85, x: 0.1916, y: 18.0889 }, + { l: 85, x: 0.2108, y: 18.2343 }, + { l: 85, x: 0.23, y: 18.3527 }, + { l: 85, x: 0.2491, y: 18.4496 }, + { l: 85, x: 0.25, y: 18.4535 }, + { l: 85, x: 0.3333, y: 18.7195 }, + { l: 85, x: 0.4167, y: 18.8541 }, + { l: 85, x: 0.5, y: 18.9004 }, + { l: 85, x: 0.5833, y: 18.879 }, + { l: 85, x: 0.6667, y: 18.8034 }, + { l: 85, x: 0.75, y: 18.6912 }, + { l: 85, x: 0.8333, y: 18.5589 }, + { l: 85, x: 0.9167, y: 18.4189 }, + { l: 85, x: 1, y: 18.2784 }, + { l: 85, x: 1.0833, y: 18.1402 }, + { l: 85, x: 1.1667, y: 18.0071 }, + { l: 85, x: 1.25, y: 17.8803 }, + { l: 85, x: 1.3333, y: 17.7607 }, + { l: 85, x: 1.4167, y: 17.6486 }, + { l: 85, x: 1.5, y: 17.5443 }, + { l: 85, x: 1.5833, y: 17.4479 }, + { l: 85, x: 1.6667, y: 17.3603 }, + { l: 85, x: 1.75, y: 17.2814 }, + { l: 85, x: 1.8333, y: 17.2112 }, + { l: 85, x: 1.9167, y: 17.1483 }, + { l: 85, x: 2, y: 17.0925 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 15.3488 }, + { l: 90, x: 0.0575, y: 15.9727 }, + { l: 90, x: 0.0767, y: 16.5611 }, + { l: 90, x: 0.0833, y: 16.7472 }, + { l: 90, x: 0.0958, y: 17.0613 }, + { l: 90, x: 0.115, y: 17.4654 }, + { l: 90, x: 0.1342, y: 17.7947 }, + { l: 90, x: 0.1533, y: 18.0662 }, + { l: 90, x: 0.1667, y: 18.2266 }, + { l: 90, x: 0.1725, y: 18.2899 }, + { l: 90, x: 0.1916, y: 18.472 }, + { l: 90, x: 0.2108, y: 18.6195 }, + { l: 90, x: 0.23, y: 18.7395 }, + { l: 90, x: 0.2491, y: 18.8376 }, + { l: 90, x: 0.25, y: 18.8416 }, + { l: 90, x: 0.3333, y: 19.1108 }, + { l: 90, x: 0.4167, y: 19.2467 }, + { l: 90, x: 0.5, y: 19.2931 }, + { l: 90, x: 0.5833, y: 19.2705 }, + { l: 90, x: 0.6667, y: 19.1929 }, + { l: 90, x: 0.75, y: 19.0779 }, + { l: 90, x: 0.8333, y: 18.9425 }, + { l: 90, x: 0.9167, y: 18.7992 }, + { l: 90, x: 1, y: 18.6555 }, + { l: 90, x: 1.0833, y: 18.514 }, + { l: 90, x: 1.1667, y: 18.378 }, + { l: 90, x: 1.25, y: 18.2482 }, + { l: 90, x: 1.3333, y: 18.1258 }, + { l: 90, x: 1.4167, y: 18.0111 }, + { l: 90, x: 1.5, y: 17.9045 }, + { l: 90, x: 1.5833, y: 17.8058 }, + { l: 90, x: 1.6667, y: 17.7161 }, + { l: 90, x: 1.75, y: 17.6354 }, + { l: 90, x: 1.8333, y: 17.5635 }, + { l: 90, x: 1.9167, y: 17.4991 }, + { l: 90, x: 2, y: 17.4419 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 15.8553 }, + { l: 95, x: 0.0575, y: 16.4927 }, + { l: 95, x: 0.0767, y: 17.0952 }, + { l: 95, x: 0.0833, y: 17.286 }, + { l: 95, x: 0.0958, y: 17.6078 }, + { l: 95, x: 0.115, y: 18.022 }, + { l: 95, x: 0.1342, y: 18.3595 }, + { l: 95, x: 0.1533, y: 18.6377 }, + { l: 95, x: 0.1667, y: 18.802 }, + { l: 95, x: 0.1725, y: 18.8669 }, + { l: 95, x: 0.1916, y: 19.0534 }, + { l: 95, x: 0.2108, y: 19.2044 }, + { l: 95, x: 0.23, y: 19.3272 }, + { l: 95, x: 0.2491, y: 19.4276 }, + { l: 95, x: 0.25, y: 19.4317 }, + { l: 95, x: 0.3333, y: 19.7068 }, + { l: 95, x: 0.4167, y: 19.8458 }, + { l: 95, x: 0.5, y: 19.893 }, + { l: 95, x: 0.5833, y: 19.8694 }, + { l: 95, x: 0.6667, y: 19.7892 }, + { l: 95, x: 0.75, y: 19.6704 }, + { l: 95, x: 0.8333, y: 19.5307 }, + { l: 95, x: 0.9167, y: 19.3829 }, + { l: 95, x: 1, y: 19.2346 }, + { l: 95, x: 1.0833, y: 19.0886 }, + { l: 95, x: 1.1667, y: 18.9483 }, + { l: 95, x: 1.25, y: 18.8144 }, + { l: 95, x: 1.3333, y: 18.688 }, + { l: 95, x: 1.4167, y: 18.5696 }, + { l: 95, x: 1.5, y: 18.4596 }, + { l: 95, x: 1.5833, y: 18.3577 }, + { l: 95, x: 1.6667, y: 18.2651 }, + { l: 95, x: 1.75, y: 18.1816 }, + { l: 95, x: 1.8333, y: 18.1074 }, + { l: 95, x: 1.9167, y: 18.0407 }, + { l: 95, x: 2, y: 17.9816 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 16.1894 }, + { l: 97, x: 0.0575, y: 16.8363 }, + { l: 97, x: 0.0767, y: 17.4486 }, + { l: 97, x: 0.0833, y: 17.6425 }, + { l: 97, x: 0.0958, y: 17.9698 }, + { l: 97, x: 0.115, y: 18.3909 }, + { l: 97, x: 0.1342, y: 18.7342 }, + { l: 97, x: 0.1533, y: 19.0171 }, + { l: 97, x: 0.1667, y: 19.1842 }, + { l: 97, x: 0.1725, y: 19.2502 }, + { l: 97, x: 0.1916, y: 19.4399 }, + { l: 97, x: 0.2108, y: 19.5935 }, + { l: 97, x: 0.23, y: 19.7184 }, + { l: 97, x: 0.2491, y: 19.8204 }, + { l: 97, x: 0.25, y: 19.8246 }, + { l: 97, x: 0.3333, y: 20.1045 }, + { l: 97, x: 0.4167, y: 20.2461 }, + { l: 97, x: 0.5, y: 20.2945 }, + { l: 97, x: 0.5833, y: 20.2706 }, + { l: 97, x: 0.6667, y: 20.1891 }, + { l: 97, x: 0.75, y: 20.0682 }, + { l: 97, x: 0.8333, y: 19.9259 }, + { l: 97, x: 0.9167, y: 19.7754 }, + { l: 97, x: 1, y: 19.6243 }, + { l: 97, x: 1.0833, y: 19.4756 }, + { l: 97, x: 1.1667, y: 19.3325 }, + { l: 97, x: 1.25, y: 19.1961 }, + { l: 97, x: 1.3333, y: 19.0673 }, + { l: 97, x: 1.4167, y: 18.9466 }, + { l: 97, x: 1.5, y: 18.8344 }, + { l: 97, x: 1.5833, y: 18.7305 }, + { l: 97, x: 1.6667, y: 18.6361 }, + { l: 97, x: 1.75, y: 18.5509 }, + { l: 97, x: 1.8333, y: 18.4753 }, + { l: 97, x: 1.9167, y: 18.4073 }, + { l: 97, x: 2, y: 18.347 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 16.8314 }, + { l: 99, x: 0.0575, y: 17.4978 }, + { l: 99, x: 0.0767, y: 18.13 }, + { l: 99, x: 0.0833, y: 18.3303 }, + { l: 99, x: 0.0958, y: 18.6686 }, + { l: 99, x: 0.115, y: 19.1041 }, + { l: 99, x: 0.1342, y: 19.4592 }, + { l: 99, x: 0.1533, y: 19.752 }, + { l: 99, x: 0.1667, y: 19.9249 }, + { l: 99, x: 0.1725, y: 19.9933 }, + { l: 99, x: 0.1916, y: 20.1896 }, + { l: 99, x: 0.2108, y: 20.3487 }, + { l: 99, x: 0.23, y: 20.4782 }, + { l: 99, x: 0.2491, y: 20.5839 }, + { l: 99, x: 0.25, y: 20.5883 }, + { l: 99, x: 0.3333, y: 20.8791 }, + { l: 99, x: 0.4167, y: 21.0274 }, + { l: 99, x: 0.5, y: 21.0792 }, + { l: 99, x: 0.5833, y: 21.056 }, + { l: 99, x: 0.6667, y: 20.9729 }, + { l: 99, x: 0.75, y: 20.8488 }, + { l: 99, x: 0.8333, y: 20.7023 }, + { l: 99, x: 0.9167, y: 20.5471 }, + { l: 99, x: 1, y: 20.3913 }, + { l: 99, x: 1.0833, y: 20.2377 }, + { l: 99, x: 1.1667, y: 20.09 }, + { l: 99, x: 1.25, y: 19.949 }, + { l: 99, x: 1.3333, y: 19.8159 }, + { l: 99, x: 1.4167, y: 19.6911 }, + { l: 99, x: 1.5, y: 19.5752 }, + { l: 99, x: 1.5833, y: 19.4678 }, + { l: 99, x: 1.6667, y: 19.3702 }, + { l: 99, x: 1.75, y: 19.282 }, + { l: 99, x: 1.8333, y: 19.2039 }, + { l: 99, x: 1.9167, y: 19.1336 }, + { l: 99, x: 2, y: 19.0713 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + male: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 13.4922 }, + { l: 1, x: 2.0833, y: 13.4508 }, + { l: 1, x: 2.1667, y: 13.4094 }, + { l: 1, x: 2.25, y: 13.3689 }, + { l: 1, x: 2.3333, y: 13.3289 }, + { l: 1, x: 2.4167, y: 13.2895 }, + { l: 1, x: 2.5, y: 13.2509 }, + { l: 1, x: 2.5833, y: 13.213 }, + { l: 1, x: 2.6667, y: 13.1761 }, + { l: 1, x: 2.75, y: 13.1397 }, + { l: 1, x: 2.8333, y: 13.1045 }, + { l: 1, x: 2.9167, y: 13.07 }, + { l: 1, x: 3, y: 13.0368 }, + { l: 1, x: 3.0833, y: 13.0047 }, + { l: 1, x: 3.1667, y: 12.9741 }, + { l: 1, x: 3.25, y: 12.9446 }, + { l: 1, x: 3.3333, y: 12.9168 }, + { l: 1, x: 3.4167, y: 12.8902 }, + { l: 1, x: 3.5, y: 12.8651 }, + { l: 1, x: 3.5833, y: 12.8416 }, + { l: 1, x: 3.6667, y: 12.8191 }, + { l: 1, x: 3.75, y: 12.7977 }, + { l: 1, x: 3.8333, y: 12.7775 }, + { l: 1, x: 3.9167, y: 12.7581 }, + { l: 1, x: 4, y: 12.7394 }, + { l: 1, x: 3.0833, y: 13.0047 }, + { l: 1, x: 4.1667, y: 12.7042 }, + { l: 1, x: 4.25, y: 12.6878 }, + { l: 1, x: 4.3333, y: 12.672 }, + { l: 1, x: 4.4167, y: 12.6568 }, + { l: 1, x: 4.5, y: 12.6424 }, + { l: 1, x: 4.5833, y: 12.6286 }, + { l: 1, x: 4.6667, y: 12.6154 }, + { l: 1, x: 4.75, y: 12.6027 }, + { l: 1, x: 4.8333, y: 12.5911 }, + { l: 1, x: 4.9167, y: 12.5798 }, + { l: 1, x: 5.0, y: 12.5696 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 13.9239 }, + { l: 3, x: 2.0833, y: 13.8838 }, + { l: 3, x: 2.1667, y: 13.8437 }, + { l: 3, x: 2.25, y: 13.8045 }, + { l: 3, x: 2.3333, y: 13.7658 }, + { l: 3, x: 2.4167, y: 13.7278 }, + { l: 3, x: 2.5, y: 13.6905 }, + { l: 3, x: 2.5833, y: 13.6537 }, + { l: 3, x: 2.6667, y: 13.618 }, + { l: 3, x: 2.75, y: 13.5826 }, + { l: 3, x: 2.8333, y: 13.5483 }, + { l: 3, x: 2.9167, y: 13.5147 }, + { l: 3, x: 3, y: 13.4823 }, + { l: 3, x: 3.0833, y: 13.4507 }, + { l: 3, x: 3.1667, y: 13.4207 }, + { l: 3, x: 3.25, y: 13.3917 }, + { l: 3, x: 3.3333, y: 13.3641 }, + { l: 3, x: 3.4167, y: 13.3378 }, + { l: 3, x: 3.5, y: 13.313 }, + { l: 3, x: 3.5833, y: 13.2895 }, + { l: 3, x: 3.6667, y: 13.2671 }, + { l: 3, x: 3.75, y: 13.2458 }, + { l: 3, x: 3.8333, y: 13.2255 }, + { l: 3, x: 3.9167, y: 13.206 }, + { l: 3, x: 4, y: 13.187 }, + { l: 3, x: 3.0833, y: 13.4507 }, + { l: 3, x: 4.1667, y: 13.1512 }, + { l: 3, x: 4.25, y: 13.1343 }, + { l: 3, x: 4.3333, y: 13.1181 }, + { l: 3, x: 4.4167, y: 13.1024 }, + { l: 3, x: 4.5, y: 13.0873 }, + { l: 3, x: 4.5833, y: 13.0729 }, + { l: 3, x: 4.6667, y: 13.0589 }, + { l: 3, x: 4.75, y: 13.0455 }, + { l: 3, x: 4.8333, y: 13.033 }, + { l: 3, x: 4.9167, y: 13.0209 }, + { l: 3, x: 5.0, y: 13.0098 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 14.1616 }, + { l: 5, x: 2.0833, y: 14.1221 }, + { l: 5, x: 2.1667, y: 14.0826 }, + { l: 5, x: 2.25, y: 14.044 }, + { l: 5, x: 2.3333, y: 14.0059 }, + { l: 5, x: 2.4167, y: 13.9684 }, + { l: 5, x: 2.5, y: 13.9317 }, + { l: 5, x: 2.5833, y: 13.8955 }, + { l: 5, x: 2.6667, y: 13.8602 }, + { l: 5, x: 2.75, y: 13.8253 }, + { l: 5, x: 2.8333, y: 13.7915 }, + { l: 5, x: 2.9167, y: 13.7583 }, + { l: 5, x: 3, y: 13.7262 }, + { l: 5, x: 3.0833, y: 13.695 }, + { l: 5, x: 3.1667, y: 13.6652 }, + { l: 5, x: 3.25, y: 13.6364 }, + { l: 5, x: 3.3333, y: 13.6091 }, + { l: 5, x: 3.4167, y: 13.583 }, + { l: 5, x: 3.5, y: 13.5583 }, + { l: 5, x: 3.5833, y: 13.535 }, + { l: 5, x: 3.6667, y: 13.5127 }, + { l: 5, x: 3.75, y: 13.4914 }, + { l: 5, x: 3.8333, y: 13.4712 }, + { l: 5, x: 3.9167, y: 13.4517 }, + { l: 5, x: 4, y: 13.4327 }, + { l: 5, x: 3.0833, y: 13.695 }, + { l: 5, x: 4.1667, y: 13.3969 }, + { l: 5, x: 4.25, y: 13.3799 }, + { l: 5, x: 4.3333, y: 13.3635 }, + { l: 5, x: 4.4167, y: 13.3477 }, + { l: 5, x: 4.5, y: 13.3325 }, + { l: 5, x: 4.5833, y: 13.3179 }, + { l: 5, x: 4.6667, y: 13.3037 }, + { l: 5, x: 4.75, y: 13.2901 }, + { l: 5, x: 4.8333, y: 13.2773 }, + { l: 5, x: 4.9167, y: 13.2649 }, + { l: 5, x: 5.0, y: 13.2535 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 14.5407 }, + { l: 10, x: 2.0833, y: 14.5019 }, + { l: 10, x: 2.1667, y: 14.4632 }, + { l: 10, x: 2.25, y: 14.4252 }, + { l: 10, x: 2.3333, y: 14.3879 }, + { l: 10, x: 2.4167, y: 14.3512 }, + { l: 10, x: 2.5, y: 14.3152 }, + { l: 10, x: 2.5833, y: 14.2797 }, + { l: 10, x: 2.6667, y: 14.2451 }, + { l: 10, x: 2.75, y: 14.2108 }, + { l: 10, x: 2.8333, y: 14.1776 }, + { l: 10, x: 2.9167, y: 14.1449 }, + { l: 10, x: 3, y: 14.1133 }, + { l: 10, x: 3.0833, y: 14.0826 }, + { l: 10, x: 3.1667, y: 14.0532 }, + { l: 10, x: 3.25, y: 14.0248 }, + { l: 10, x: 3.3333, y: 13.9978 }, + { l: 10, x: 3.4167, y: 13.972 }, + { l: 10, x: 3.5, y: 13.9476 }, + { l: 10, x: 3.5833, y: 13.9246 }, + { l: 10, x: 3.6667, y: 13.9026 }, + { l: 10, x: 3.75, y: 13.8816 }, + { l: 10, x: 3.8333, y: 13.8616 }, + { l: 10, x: 3.9167, y: 13.8423 }, + { l: 10, x: 4, y: 13.8235 }, + { l: 10, x: 3.0833, y: 14.0826 }, + { l: 10, x: 4.1667, y: 13.7879 }, + { l: 10, x: 4.25, y: 13.7711 }, + { l: 10, x: 4.3333, y: 13.7548 }, + { l: 10, x: 4.4167, y: 13.739 }, + { l: 10, x: 4.5, y: 13.7238 }, + { l: 10, x: 4.5833, y: 13.7092 }, + { l: 10, x: 4.6667, y: 13.695 }, + { l: 10, x: 4.75, y: 13.6813 }, + { l: 10, x: 4.8333, y: 13.6684 }, + { l: 10, x: 4.9167, y: 13.6559 }, + { l: 10, x: 5.0, y: 13.6443 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 14.806 }, + { l: 15, x: 2.0833, y: 14.7675 }, + { l: 15, x: 2.1667, y: 14.7291 }, + { l: 15, x: 2.25, y: 14.6915 }, + { l: 15, x: 2.3333, y: 14.6545 }, + { l: 15, x: 2.4167, y: 14.6182 }, + { l: 15, x: 2.5, y: 14.5826 }, + { l: 15, x: 2.5833, y: 14.5475 }, + { l: 15, x: 2.6667, y: 14.5132 }, + { l: 15, x: 2.75, y: 14.4793 }, + { l: 15, x: 2.8333, y: 14.4464 }, + { l: 15, x: 2.9167, y: 14.414 }, + { l: 15, x: 3, y: 14.3827 }, + { l: 15, x: 3.0833, y: 14.3523 }, + { l: 15, x: 3.1667, y: 14.3231 }, + { l: 15, x: 3.25, y: 14.295 }, + { l: 15, x: 3.3333, y: 14.2682 }, + { l: 15, x: 3.4167, y: 14.2427 }, + { l: 15, x: 3.5, y: 14.2186 }, + { l: 15, x: 3.5833, y: 14.1958 }, + { l: 15, x: 3.6667, y: 14.1741 }, + { l: 15, x: 3.75, y: 14.1533 }, + { l: 15, x: 3.8333, y: 14.1336 }, + { l: 15, x: 3.9167, y: 14.1145 }, + { l: 15, x: 4, y: 14.0961 }, + { l: 15, x: 3.0833, y: 14.3523 }, + { l: 15, x: 4.1667, y: 14.061 }, + { l: 15, x: 4.25, y: 14.0444 }, + { l: 15, x: 4.3333, y: 14.0283 }, + { l: 15, x: 4.4167, y: 14.0127 }, + { l: 15, x: 4.5, y: 13.9977 }, + { l: 15, x: 4.5833, y: 13.9833 }, + { l: 15, x: 4.6667, y: 13.9693 }, + { l: 15, x: 4.75, y: 13.9558 }, + { l: 15, x: 4.8333, y: 13.943 }, + { l: 15, x: 4.9167, y: 13.9307 }, + { l: 15, x: 5.0, y: 13.9192 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 16.0189 }, + { l: 50, x: 2.0833, y: 15.98 }, + { l: 50, x: 2.1667, y: 15.9414 }, + { l: 50, x: 2.25, y: 15.9036 }, + { l: 50, x: 2.3333, y: 15.8667 }, + { l: 50, x: 2.4167, y: 15.8306 }, + { l: 50, x: 2.5, y: 15.7953 }, + { l: 50, x: 2.5833, y: 15.7606 }, + { l: 50, x: 2.6667, y: 15.7267 }, + { l: 50, x: 2.75, y: 15.6934 }, + { l: 50, x: 2.8333, y: 15.661 }, + { l: 50, x: 2.9167, y: 15.6294 }, + { l: 50, x: 3, y: 15.5988 }, + { l: 50, x: 3.0833, y: 15.5693 }, + { l: 50, x: 3.1667, y: 15.541 }, + { l: 50, x: 3.25, y: 15.514 }, + { l: 50, x: 3.3333, y: 15.4885 }, + { l: 50, x: 3.4167, y: 15.4645 }, + { l: 50, x: 3.5, y: 15.442 }, + { l: 50, x: 3.5833, y: 15.421 }, + { l: 50, x: 3.6667, y: 15.4013 }, + { l: 50, x: 3.75, y: 15.3827 }, + { l: 50, x: 3.8333, y: 15.3652 }, + { l: 50, x: 3.9167, y: 15.3485 }, + { l: 50, x: 4, y: 15.3326 }, + { l: 50, x: 3.0833, y: 15.5693 }, + { l: 50, x: 4.1667, y: 15.3029 }, + { l: 50, x: 4.25, y: 15.2891 }, + { l: 50, x: 4.3333, y: 15.2759 }, + { l: 50, x: 4.4167, y: 15.2633 }, + { l: 50, x: 4.5, y: 15.2514 }, + { l: 50, x: 4.5833, y: 15.24 }, + { l: 50, x: 4.6667, y: 15.2291 }, + { l: 50, x: 4.75, y: 15.2188 }, + { l: 50, x: 4.8333, y: 15.2091 }, + { l: 50, x: 4.9167, y: 15.2 }, + { l: 50, x: 5.0, y: 15.1916 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 17.4012 }, + { l: 85, x: 2.0833, y: 17.3581 }, + { l: 85, x: 2.1667, y: 17.3156 }, + { l: 85, x: 2.25, y: 17.2741 }, + { l: 85, x: 2.3333, y: 17.234 }, + { l: 85, x: 2.4167, y: 17.195 }, + { l: 85, x: 2.5, y: 17.1573 }, + { l: 85, x: 2.5833, y: 17.1204 }, + { l: 85, x: 2.6667, y: 17.0846 }, + { l: 85, x: 2.75, y: 17.0499 }, + { l: 85, x: 2.8333, y: 17.0163 }, + { l: 85, x: 2.9167, y: 16.9842 }, + { l: 85, x: 3, y: 16.9532 }, + { l: 85, x: 3.0833, y: 16.924 }, + { l: 85, x: 3.1667, y: 16.8962 }, + { l: 85, x: 3.25, y: 16.8703 }, + { l: 85, x: 3.3333, y: 16.8464 }, + { l: 85, x: 3.4167, y: 16.8247 }, + { l: 85, x: 3.5, y: 16.8049 }, + { l: 85, x: 3.5833, y: 16.7871 }, + { l: 85, x: 3.6667, y: 16.7711 }, + { l: 85, x: 3.75, y: 16.7567 }, + { l: 85, x: 3.8333, y: 16.7438 }, + { l: 85, x: 3.9167, y: 16.7321 }, + { l: 85, x: 4, y: 16.7217 }, + { l: 85, x: 3.0833, y: 16.924 }, + { l: 85, x: 4.1667, y: 16.7042 }, + { l: 85, x: 4.25, y: 16.6971 }, + { l: 85, x: 4.3333, y: 16.6909 }, + { l: 85, x: 4.4167, y: 16.6857 }, + { l: 85, x: 4.5, y: 16.6816 }, + { l: 85, x: 4.5833, y: 16.6781 }, + { l: 85, x: 4.6667, y: 16.6755 }, + { l: 85, x: 4.75, y: 16.6738 }, + { l: 85, x: 4.8333, y: 16.6728 }, + { l: 85, x: 4.9167, y: 16.6729 }, + { l: 85, x: 5.0, y: 16.6737 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 17.7565 }, + { l: 90, x: 2.0833, y: 17.7118 }, + { l: 90, x: 2.1667, y: 17.6677 }, + { l: 90, x: 2.25, y: 17.6245 }, + { l: 90, x: 2.3333, y: 17.583 }, + { l: 90, x: 2.4167, y: 17.5428 }, + { l: 90, x: 2.5, y: 17.5039 }, + { l: 90, x: 2.5833, y: 17.4661 }, + { l: 90, x: 2.6667, y: 17.4294 }, + { l: 90, x: 2.75, y: 17.394 }, + { l: 90, x: 2.8333, y: 17.3598 }, + { l: 90, x: 2.9167, y: 17.3272 }, + { l: 90, x: 3, y: 17.296 }, + { l: 90, x: 3.0833, y: 17.2667 }, + { l: 90, x: 3.1667, y: 17.2389 }, + { l: 90, x: 3.25, y: 17.2133 }, + { l: 90, x: 3.3333, y: 17.1899 }, + { l: 90, x: 3.4167, y: 17.1688 }, + { l: 90, x: 3.5, y: 17.1499 }, + { l: 90, x: 3.5833, y: 17.133 }, + { l: 90, x: 3.6667, y: 17.1183 }, + { l: 90, x: 3.75, y: 17.1052 }, + { l: 90, x: 3.8333, y: 17.0938 }, + { l: 90, x: 3.9167, y: 17.0838 }, + { l: 90, x: 4, y: 17.0753 }, + { l: 90, x: 3.0833, y: 17.2667 }, + { l: 90, x: 4.1667, y: 17.0619 }, + { l: 90, x: 4.25, y: 17.0571 }, + { l: 90, x: 4.3333, y: 17.0534 }, + { l: 90, x: 4.4167, y: 17.0508 }, + { l: 90, x: 4.5, y: 17.0494 }, + { l: 90, x: 4.5833, y: 17.0488 }, + { l: 90, x: 4.6667, y: 17.0491 }, + { l: 90, x: 4.75, y: 17.0506 }, + { l: 90, x: 4.8333, y: 17.0527 }, + { l: 90, x: 4.9167, y: 17.0561 }, + { l: 90, x: 5.0, y: 17.0604 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 18.3052 }, + { l: 95, x: 2.0833, y: 18.2572 }, + { l: 95, x: 2.1667, y: 18.21 }, + { l: 95, x: 2.25, y: 18.1639 }, + { l: 95, x: 2.3333, y: 18.1198 }, + { l: 95, x: 2.4167, y: 18.0772 }, + { l: 95, x: 2.5, y: 18.0362 }, + { l: 95, x: 2.5833, y: 17.9965 }, + { l: 95, x: 2.6667, y: 17.958 }, + { l: 95, x: 2.75, y: 17.9213 }, + { l: 95, x: 2.8333, y: 17.886 }, + { l: 95, x: 2.9167, y: 17.8526 }, + { l: 95, x: 3, y: 17.8207 }, + { l: 95, x: 3.0833, y: 17.7912 }, + { l: 95, x: 3.1667, y: 17.7635 }, + { l: 95, x: 3.25, y: 17.7383 }, + { l: 95, x: 3.3333, y: 17.7156 }, + { l: 95, x: 3.4167, y: 17.6956 }, + { l: 95, x: 3.5, y: 17.678 }, + { l: 95, x: 3.5833, y: 17.6628 }, + { l: 95, x: 3.6667, y: 17.6502 }, + { l: 95, x: 3.75, y: 17.6394 }, + { l: 95, x: 3.8333, y: 17.6306 }, + { l: 95, x: 3.9167, y: 17.6234 }, + { l: 95, x: 4, y: 17.6181 }, + { l: 95, x: 3.0833, y: 17.7912 }, + { l: 95, x: 4.1667, y: 17.612 }, + { l: 95, x: 4.25, y: 17.6112 }, + { l: 95, x: 4.3333, y: 17.6118 }, + { l: 95, x: 4.4167, y: 17.6137 }, + { l: 95, x: 4.5, y: 17.6172 }, + { l: 95, x: 4.5833, y: 17.6216 }, + { l: 95, x: 4.6667, y: 17.6272 }, + { l: 95, x: 4.75, y: 17.6342 }, + { l: 95, x: 4.8333, y: 17.642 }, + { l: 95, x: 4.9167, y: 17.6515 }, + { l: 95, x: 5.0, y: 17.6619 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 18.6762 }, + { l: 97, x: 2.0833, y: 18.6257 }, + { l: 97, x: 2.1667, y: 18.5761 }, + { l: 97, x: 2.25, y: 18.5277 }, + { l: 97, x: 2.3333, y: 18.4815 }, + { l: 97, x: 2.4167, y: 18.437 }, + { l: 97, x: 2.5, y: 18.3943 }, + { l: 97, x: 2.5833, y: 18.353 }, + { l: 97, x: 2.6667, y: 18.3132 }, + { l: 97, x: 2.75, y: 18.2754 }, + { l: 97, x: 2.8333, y: 18.2391 }, + { l: 97, x: 2.9167, y: 18.205 }, + { l: 97, x: 3, y: 18.1727 }, + { l: 97, x: 3.0833, y: 18.1429 }, + { l: 97, x: 3.1667, y: 18.1152 }, + { l: 97, x: 3.25, y: 18.0902 }, + { l: 97, x: 3.3333, y: 18.068 }, + { l: 97, x: 3.4167, y: 18.0488 }, + { l: 97, x: 3.5, y: 18.0322 }, + { l: 97, x: 3.5833, y: 18.0183 }, + { l: 97, x: 3.6667, y: 18.0071 }, + { l: 97, x: 3.75, y: 17.9981 }, + { l: 97, x: 3.8333, y: 17.9912 }, + { l: 97, x: 3.9167, y: 17.9861 }, + { l: 97, x: 4, y: 17.9832 }, + { l: 97, x: 3.0833, y: 18.1429 }, + { l: 97, x: 4.1667, y: 17.9825 }, + { l: 97, x: 4.25, y: 17.9848 }, + { l: 97, x: 4.3333, y: 17.9886 }, + { l: 97, x: 4.4167, y: 17.9941 }, + { l: 97, x: 4.5, y: 18.0012 }, + { l: 97, x: 4.5833, y: 18.0094 }, + { l: 97, x: 4.6667, y: 18.0191 }, + { l: 97, x: 4.75, y: 18.0304 }, + { l: 97, x: 4.8333, y: 18.0425 }, + { l: 97, x: 4.9167, y: 18.0567 }, + { l: 97, x: 5.0, y: 18.0719 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 19.4111 }, + { l: 99, x: 2.0833, y: 19.3547 }, + { l: 99, x: 2.1667, y: 19.2993 }, + { l: 99, x: 2.25, y: 19.2455 }, + { l: 99, x: 2.3333, y: 19.1944 }, + { l: 99, x: 2.4167, y: 19.1455 }, + { l: 99, x: 2.5, y: 19.0987 }, + { l: 99, x: 2.5833, y: 19.0539 }, + { l: 99, x: 2.6667, y: 19.0109 }, + { l: 99, x: 2.75, y: 18.9704 }, + { l: 99, x: 2.8333, y: 18.9319 }, + { l: 99, x: 2.9167, y: 18.8962 }, + { l: 99, x: 3, y: 18.8626 }, + { l: 99, x: 3.0833, y: 18.8322 }, + { l: 99, x: 3.1667, y: 18.8043 }, + { l: 99, x: 3.25, y: 18.7798 }, + { l: 99, x: 3.3333, y: 18.7585 }, + { l: 99, x: 3.4167, y: 18.741 }, + { l: 99, x: 3.5, y: 18.7265 }, + { l: 99, x: 3.5833, y: 18.7153 }, + { l: 99, x: 3.6667, y: 18.7074 }, + { l: 99, x: 3.75, y: 18.702 }, + { l: 99, x: 3.8333, y: 18.6994 }, + { l: 99, x: 3.9167, y: 18.699 }, + { l: 99, x: 4, y: 18.7014 }, + { l: 99, x: 3.0833, y: 18.8322 }, + { l: 99, x: 4.1667, y: 18.7127 }, + { l: 99, x: 4.25, y: 18.7218 }, + { l: 99, x: 4.3333, y: 18.7329 }, + { l: 99, x: 4.4167, y: 18.7461 }, + { l: 99, x: 4.5, y: 18.7616 }, + { l: 99, x: 4.5833, y: 18.7784 }, + { l: 99, x: 4.6667, y: 18.7973 }, + { l: 99, x: 4.75, y: 18.8182 }, + { l: 99, x: 4.8333, y: 18.8404 }, + { l: 99, x: 4.9167, y: 18.8652 }, + { l: 99, x: 5.0, y: 18.8915 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + male: { + bmi: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 12.72 }, + { l: 1, x: 5.17, y: 12.7165 }, + { l: 1, x: 5.25, y: 12.7138 }, + { l: 1, x: 5.33, y: 12.7122 }, + { l: 1, x: 5.42, y: 12.7114 }, + { l: 1, x: 5.5, y: 12.7117 }, + { l: 1, x: 5.58, y: 12.7128 }, + { l: 1, x: 5.67, y: 12.7151 }, + { l: 1, x: 5.75, y: 12.7183 }, + { l: 1, x: 5.83, y: 12.7223 }, + { l: 1, x: 5.92, y: 12.7272 }, + { l: 1, x: 6, y: 12.7327 }, + { l: 1, x: 6.08, y: 12.739 }, + { l: 1, x: 6.17, y: 12.7457 }, + { l: 1, x: 6.25, y: 12.7531 }, + { l: 1, x: 6.33, y: 12.761 }, + { l: 1, x: 6.42, y: 12.7694 }, + { l: 1, x: 6.5, y: 12.7782 }, + { l: 1, x: 6.58, y: 12.7873 }, + { l: 1, x: 6.67, y: 12.7968 }, + { l: 1, x: 6.75, y: 12.8069 }, + { l: 1, x: 6.83, y: 12.8172 }, + { l: 1, x: 6.92, y: 12.8278 }, + { l: 1, x: 7, y: 12.8387 }, + { l: 1, x: 7.08, y: 12.85 }, + { l: 1, x: 7.17, y: 12.8614 }, + { l: 1, x: 7.25, y: 12.8731 }, + { l: 1, x: 7.33, y: 12.8851 }, + { l: 1, x: 7.42, y: 12.8972 }, + { l: 1, x: 7.5, y: 12.9095 }, + { l: 1, x: 7.58, y: 12.9223 }, + { l: 1, x: 7.67, y: 12.9351 }, + { l: 1, x: 7.75, y: 12.9479 }, + { l: 1, x: 7.83, y: 12.9613 }, + { l: 1, x: 7.92, y: 12.9746 }, + { l: 1, x: 8, y: 12.9884 }, + { l: 1, x: 8.08, y: 13.0022 }, + { l: 1, x: 8.17, y: 13.0161 }, + { l: 1, x: 8.25, y: 13.0303 }, + { l: 1, x: 8.33, y: 13.0447 }, + { l: 1, x: 8.42, y: 13.0594 }, + { l: 1, x: 8.5, y: 13.0741 }, + { l: 1, x: 8.58, y: 13.0891 }, + { l: 1, x: 8.67, y: 13.1043 }, + { l: 1, x: 8.75, y: 13.1199 }, + { l: 1, x: 8.83, y: 13.1355 }, + { l: 1, x: 8.92, y: 13.1518 }, + { l: 1, x: 9, y: 13.1682 }, + { l: 1, x: 9.08, y: 13.185 }, + { l: 1, x: 9.17, y: 13.2022 }, + { l: 1, x: 9.25, y: 13.2198 }, + { l: 1, x: 9.33, y: 13.238 }, + { l: 1, x: 9.42, y: 13.2564 }, + { l: 1, x: 9.5, y: 13.2754 }, + { l: 1, x: 9.58, y: 13.295 }, + { l: 1, x: 9.67, y: 13.3151 }, + { l: 1, x: 9.75, y: 13.3358 }, + { l: 1, x: 9.83, y: 13.357 }, + { l: 1, x: 9.92, y: 13.3786 }, + { l: 1, x: 10, y: 13.4006 }, + { l: 1, x: 10.08, y: 13.4232 }, + { l: 1, x: 10.17, y: 13.4464 }, + { l: 1, x: 10.25, y: 13.47 }, + { l: 1, x: 10.33, y: 13.4941 }, + { l: 1, x: 10.42, y: 13.5188 }, + { l: 1, x: 10.5, y: 13.5437 }, + { l: 1, x: 10.58, y: 13.5693 }, + { l: 1, x: 10.67, y: 13.5957 }, + { l: 1, x: 10.75, y: 13.6222 }, + { l: 1, x: 10.83, y: 13.6494 }, + { l: 1, x: 10.92, y: 13.6769 }, + { l: 1, x: 11, y: 13.7051 }, + { l: 1, x: 11.08, y: 13.7337 }, + { l: 1, x: 11.17, y: 13.7627 }, + { l: 1, x: 11.25, y: 13.7922 }, + { l: 1, x: 11.33, y: 13.8223 }, + { l: 1, x: 11.42, y: 13.8529 }, + { l: 1, x: 11.5, y: 13.8838 }, + { l: 1, x: 11.58, y: 13.9153 }, + { l: 1, x: 11.67, y: 13.9475 }, + { l: 1, x: 11.75, y: 13.9802 }, + { l: 1, x: 11.83, y: 14.0134 }, + { l: 1, x: 11.92, y: 14.0471 }, + { l: 1, x: 12, y: 14.0814 }, + { l: 1, x: 12.08, y: 14.1165 }, + { l: 1, x: 12.17, y: 14.152 }, + { l: 1, x: 12.25, y: 14.1882 }, + { l: 1, x: 12.33, y: 14.2249 }, + { l: 1, x: 12.42, y: 14.2622 }, + { l: 1, x: 12.5, y: 14.3 }, + { l: 1, x: 12.58, y: 14.3384 }, + { l: 1, x: 12.67, y: 14.3775 }, + { l: 1, x: 12.75, y: 14.417 }, + { l: 1, x: 12.83, y: 14.4568 }, + { l: 1, x: 12.92, y: 14.4974 }, + { l: 1, x: 13, y: 14.5382 }, + { l: 1, x: 13.08, y: 14.5796 }, + { l: 1, x: 13.17, y: 14.6213 }, + { l: 1, x: 13.25, y: 14.6633 }, + { l: 1, x: 13.33, y: 14.7056 }, + { l: 1, x: 13.42, y: 14.7482 }, + { l: 1, x: 13.5, y: 14.791 }, + { l: 1, x: 13.58, y: 14.8339 }, + { l: 1, x: 13.67, y: 14.8772 }, + { l: 1, x: 13.75, y: 14.9203 }, + { l: 1, x: 13.83, y: 14.9634 }, + { l: 1, x: 13.92, y: 15.0066 }, + { l: 1, x: 14, y: 15.0498 }, + { l: 1, x: 14.08, y: 15.0929 }, + { l: 1, x: 14.17, y: 15.1357 }, + { l: 1, x: 14.25, y: 15.1785 }, + { l: 1, x: 14.33, y: 15.2214 }, + { l: 1, x: 14.42, y: 15.2639 }, + { l: 1, x: 14.5, y: 15.3061 }, + { l: 1, x: 14.58, y: 15.3482 }, + { l: 1, x: 14.67, y: 15.39 }, + { l: 1, x: 14.75, y: 15.4317 }, + { l: 1, x: 14.83, y: 15.473 }, + { l: 1, x: 14.92, y: 15.5143 }, + { l: 1, x: 15, y: 15.5551 }, + { l: 1, x: 15.08, y: 15.5955 }, + { l: 1, x: 15.17, y: 15.6358 }, + { l: 1, x: 15.25, y: 15.6757 }, + { l: 1, x: 15.33, y: 15.7151 }, + { l: 1, x: 15.42, y: 15.7543 }, + { l: 1, x: 15.5, y: 15.7931 }, + { l: 1, x: 15.58, y: 15.8316 }, + { l: 1, x: 15.67, y: 15.8695 }, + { l: 1, x: 15.75, y: 15.907 }, + { l: 1, x: 15.83, y: 15.9441 }, + { l: 1, x: 15.92, y: 15.9807 }, + { l: 1, x: 16, y: 16.017 }, + { l: 1, x: 16.08, y: 16.0528 }, + { l: 1, x: 16.17, y: 16.0881 }, + { l: 1, x: 16.25, y: 16.1228 }, + { l: 1, x: 16.33, y: 16.1569 }, + { l: 1, x: 16.42, y: 16.1908 }, + { l: 1, x: 16.5, y: 16.2238 }, + { l: 1, x: 16.58, y: 16.2566 }, + { l: 1, x: 16.67, y: 16.2888 }, + { l: 1, x: 16.75, y: 16.3205 }, + { l: 1, x: 16.83, y: 16.3516 }, + { l: 1, x: 16.92, y: 16.3823 }, + { l: 1, x: 17, y: 16.4123 }, + { l: 1, x: 17.08, y: 16.4416 }, + { l: 1, x: 17.17, y: 16.4708 }, + { l: 1, x: 17.25, y: 16.4993 }, + { l: 1, x: 17.33, y: 16.5272 }, + { l: 1, x: 17.42, y: 16.5543 }, + { l: 1, x: 17.5, y: 16.5811 }, + { l: 1, x: 17.58, y: 16.6072 }, + { l: 1, x: 17.67, y: 16.6329 }, + { l: 1, x: 17.75, y: 16.6579 }, + { l: 1, x: 17.83, y: 16.6826 }, + { l: 1, x: 17.92, y: 16.7065 }, + { l: 1, x: 18, y: 16.7298 }, + { l: 1, x: 18.08, y: 16.7527 }, + { l: 1, x: 18.17, y: 16.7747 }, + { l: 1, x: 18.25, y: 16.7964 }, + { l: 1, x: 18.33, y: 16.8173 }, + { l: 1, x: 18.42, y: 16.8378 }, + { l: 1, x: 18.5, y: 16.8574 }, + { l: 1, x: 18.58, y: 16.8767 }, + { l: 1, x: 18.67, y: 16.8955 }, + { l: 1, x: 18.75, y: 16.9137 }, + { l: 1, x: 18.83, y: 16.9309 }, + { l: 1, x: 18.92, y: 16.9479 }, + { l: 1, x: 19, y: 16.9643 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 13.1477 }, + { l: 3, x: 5.17, y: 13.1435 }, + { l: 3, x: 5.25, y: 13.1403 }, + { l: 3, x: 5.33, y: 13.1382 }, + { l: 3, x: 5.42, y: 13.137 }, + { l: 3, x: 5.5, y: 13.1369 }, + { l: 3, x: 5.58, y: 13.1377 }, + { l: 3, x: 5.67, y: 13.1397 }, + { l: 3, x: 5.75, y: 13.1426 }, + { l: 3, x: 5.83, y: 13.1464 }, + { l: 3, x: 5.92, y: 13.1512 }, + { l: 3, x: 6, y: 13.1565 }, + { l: 3, x: 6.08, y: 13.1628 }, + { l: 3, x: 6.17, y: 13.1696 }, + { l: 3, x: 6.25, y: 13.1769 }, + { l: 3, x: 6.33, y: 13.1849 }, + { l: 3, x: 6.42, y: 13.1934 }, + { l: 3, x: 6.5, y: 13.2024 }, + { l: 3, x: 6.58, y: 13.2117 }, + { l: 3, x: 6.67, y: 13.2215 }, + { l: 3, x: 6.75, y: 13.2318 }, + { l: 3, x: 6.83, y: 13.2425 }, + { l: 3, x: 6.92, y: 13.2534 }, + { l: 3, x: 7, y: 13.2647 }, + { l: 3, x: 7.08, y: 13.2765 }, + { l: 3, x: 7.17, y: 13.2884 }, + { l: 3, x: 7.25, y: 13.3005 }, + { l: 3, x: 7.33, y: 13.313 }, + { l: 3, x: 7.42, y: 13.3257 }, + { l: 3, x: 7.5, y: 13.3387 }, + { l: 3, x: 7.58, y: 13.352 }, + { l: 3, x: 7.67, y: 13.3655 }, + { l: 3, x: 7.75, y: 13.3791 }, + { l: 3, x: 7.83, y: 13.3932 }, + { l: 3, x: 7.92, y: 13.4072 }, + { l: 3, x: 8, y: 13.4218 }, + { l: 3, x: 8.08, y: 13.4365 }, + { l: 3, x: 8.17, y: 13.4512 }, + { l: 3, x: 8.25, y: 13.4663 }, + { l: 3, x: 8.33, y: 13.4816 }, + { l: 3, x: 8.42, y: 13.4972 }, + { l: 3, x: 8.5, y: 13.513 }, + { l: 3, x: 8.58, y: 13.529 }, + { l: 3, x: 8.67, y: 13.5452 }, + { l: 3, x: 8.75, y: 13.5619 }, + { l: 3, x: 8.83, y: 13.5786 }, + { l: 3, x: 8.92, y: 13.596 }, + { l: 3, x: 9, y: 13.6136 }, + { l: 3, x: 9.08, y: 13.6316 }, + { l: 3, x: 9.17, y: 13.6501 }, + { l: 3, x: 9.25, y: 13.669 }, + { l: 3, x: 9.33, y: 13.6885 }, + { l: 3, x: 9.42, y: 13.7083 }, + { l: 3, x: 9.5, y: 13.7288 }, + { l: 3, x: 9.58, y: 13.7499 }, + { l: 3, x: 9.67, y: 13.7715 }, + { l: 3, x: 9.75, y: 13.7937 }, + { l: 3, x: 9.83, y: 13.8165 }, + { l: 3, x: 9.92, y: 13.8397 }, + { l: 3, x: 10, y: 13.8634 }, + { l: 3, x: 10.08, y: 13.8877 }, + { l: 3, x: 10.17, y: 13.9126 }, + { l: 3, x: 10.25, y: 13.938 }, + { l: 3, x: 10.33, y: 13.9639 }, + { l: 3, x: 10.42, y: 13.9904 }, + { l: 3, x: 10.5, y: 14.0173 }, + { l: 3, x: 10.58, y: 14.0449 }, + { l: 3, x: 10.67, y: 14.0733 }, + { l: 3, x: 10.75, y: 14.1018 }, + { l: 3, x: 10.83, y: 14.1311 }, + { l: 3, x: 10.92, y: 14.1607 }, + { l: 3, x: 11, y: 14.191 }, + { l: 3, x: 11.08, y: 14.2218 }, + { l: 3, x: 11.17, y: 14.253 }, + { l: 3, x: 11.25, y: 14.2848 }, + { l: 3, x: 11.33, y: 14.3172 }, + { l: 3, x: 11.42, y: 14.3501 }, + { l: 3, x: 11.5, y: 14.3834 }, + { l: 3, x: 11.58, y: 14.4173 }, + { l: 3, x: 11.67, y: 14.4519 }, + { l: 3, x: 11.75, y: 14.4872 }, + { l: 3, x: 11.83, y: 14.5229 }, + { l: 3, x: 11.92, y: 14.5592 }, + { l: 3, x: 12, y: 14.5961 }, + { l: 3, x: 12.08, y: 14.6339 }, + { l: 3, x: 12.17, y: 14.6721 }, + { l: 3, x: 12.25, y: 14.711 }, + { l: 3, x: 12.33, y: 14.7505 }, + { l: 3, x: 12.42, y: 14.7907 }, + { l: 3, x: 12.5, y: 14.8313 }, + { l: 3, x: 12.58, y: 14.8727 }, + { l: 3, x: 12.67, y: 14.9147 }, + { l: 3, x: 12.75, y: 14.9571 }, + { l: 3, x: 12.83, y: 15.0 }, + { l: 3, x: 12.92, y: 15.0436 }, + { l: 3, x: 13, y: 15.0875 }, + { l: 3, x: 13.08, y: 15.132 }, + { l: 3, x: 13.17, y: 15.1769 }, + { l: 3, x: 13.25, y: 15.2221 }, + { l: 3, x: 13.33, y: 15.2676 }, + { l: 3, x: 13.42, y: 15.3135 }, + { l: 3, x: 13.5, y: 15.3595 }, + { l: 3, x: 13.58, y: 15.4058 }, + { l: 3, x: 13.67, y: 15.4524 }, + { l: 3, x: 13.75, y: 15.4989 }, + { l: 3, x: 13.83, y: 15.5453 }, + { l: 3, x: 13.92, y: 15.5919 }, + { l: 3, x: 14, y: 15.6386 }, + { l: 3, x: 14.08, y: 15.6851 }, + { l: 3, x: 14.17, y: 15.7314 }, + { l: 3, x: 14.25, y: 15.7777 }, + { l: 3, x: 14.33, y: 15.824 }, + { l: 3, x: 14.42, y: 15.8701 }, + { l: 3, x: 14.5, y: 15.9158 }, + { l: 3, x: 14.58, y: 15.9615 }, + { l: 3, x: 14.67, y: 16.0068 }, + { l: 3, x: 14.75, y: 16.0521 }, + { l: 3, x: 14.83, y: 16.097 }, + { l: 3, x: 14.92, y: 16.1419 }, + { l: 3, x: 15, y: 16.1863 }, + { l: 3, x: 15.08, y: 16.2303 }, + { l: 3, x: 15.17, y: 16.2742 }, + { l: 3, x: 15.25, y: 16.3177 }, + { l: 3, x: 15.33, y: 16.3607 }, + { l: 3, x: 15.42, y: 16.4036 }, + { l: 3, x: 15.5, y: 16.446 }, + { l: 3, x: 15.58, y: 16.4882 }, + { l: 3, x: 15.67, y: 16.5297 }, + { l: 3, x: 15.75, y: 16.571 }, + { l: 3, x: 15.83, y: 16.6117 }, + { l: 3, x: 15.92, y: 16.652 }, + { l: 3, x: 16, y: 16.692 }, + { l: 3, x: 16.08, y: 16.7315 }, + { l: 3, x: 16.17, y: 16.7704 }, + { l: 3, x: 16.25, y: 16.8089 }, + { l: 3, x: 16.33, y: 16.8467 }, + { l: 3, x: 16.42, y: 16.8843 }, + { l: 3, x: 16.5, y: 16.9211 }, + { l: 3, x: 16.58, y: 16.9576 }, + { l: 3, x: 16.67, y: 16.9936 }, + { l: 3, x: 16.75, y: 17.029 }, + { l: 3, x: 16.83, y: 17.0638 }, + { l: 3, x: 16.92, y: 17.0983 }, + { l: 3, x: 17, y: 17.1321 }, + { l: 3, x: 17.08, y: 17.1653 }, + { l: 3, x: 17.17, y: 17.1982 }, + { l: 3, x: 17.25, y: 17.2305 }, + { l: 3, x: 17.33, y: 17.2623 }, + { l: 3, x: 17.42, y: 17.2933 }, + { l: 3, x: 17.5, y: 17.3239 }, + { l: 3, x: 17.58, y: 17.3539 }, + { l: 3, x: 17.67, y: 17.3835 }, + { l: 3, x: 17.75, y: 17.4124 }, + { l: 3, x: 17.83, y: 17.4411 }, + { l: 3, x: 17.92, y: 17.4689 }, + { l: 3, x: 18, y: 17.4961 }, + { l: 3, x: 18.08, y: 17.523 }, + { l: 3, x: 18.17, y: 17.549 }, + { l: 3, x: 18.25, y: 17.5747 }, + { l: 3, x: 18.33, y: 17.5995 }, + { l: 3, x: 18.42, y: 17.6241 }, + { l: 3, x: 18.5, y: 17.6478 }, + { l: 3, x: 18.58, y: 17.6711 }, + { l: 3, x: 18.67, y: 17.694 }, + { l: 3, x: 18.75, y: 17.7163 }, + { l: 3, x: 18.83, y: 17.7377 }, + { l: 3, x: 18.92, y: 17.7589 }, + { l: 3, x: 19, y: 17.7794 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 13.3844 }, + { l: 5, x: 5.17, y: 13.38 }, + { l: 5, x: 5.25, y: 13.3766 }, + { l: 5, x: 5.33, y: 13.3744 }, + { l: 5, x: 5.42, y: 13.3731 }, + { l: 5, x: 5.5, y: 13.3729 }, + { l: 5, x: 5.58, y: 13.3736 }, + { l: 5, x: 5.67, y: 13.3756 }, + { l: 5, x: 5.75, y: 13.3785 }, + { l: 5, x: 5.83, y: 13.3823 }, + { l: 5, x: 5.92, y: 13.3871 }, + { l: 5, x: 6, y: 13.3926 }, + { l: 5, x: 6.08, y: 13.3989 }, + { l: 5, x: 6.17, y: 13.4058 }, + { l: 5, x: 6.25, y: 13.4133 }, + { l: 5, x: 6.33, y: 13.4215 }, + { l: 5, x: 6.42, y: 13.4302 }, + { l: 5, x: 6.5, y: 13.4394 }, + { l: 5, x: 6.58, y: 13.4489 }, + { l: 5, x: 6.67, y: 13.459 }, + { l: 5, x: 6.75, y: 13.4696 }, + { l: 5, x: 6.83, y: 13.4806 }, + { l: 5, x: 6.92, y: 13.4918 }, + { l: 5, x: 7, y: 13.5035 }, + { l: 5, x: 7.08, y: 13.5156 }, + { l: 5, x: 7.17, y: 13.5278 }, + { l: 5, x: 7.25, y: 13.5404 }, + { l: 5, x: 7.33, y: 13.5533 }, + { l: 5, x: 7.42, y: 13.5665 }, + { l: 5, x: 7.5, y: 13.5799 }, + { l: 5, x: 7.58, y: 13.5937 }, + { l: 5, x: 7.67, y: 13.6077 }, + { l: 5, x: 7.75, y: 13.6218 }, + { l: 5, x: 7.83, y: 13.6364 }, + { l: 5, x: 7.92, y: 13.651 }, + { l: 5, x: 8, y: 13.6662 }, + { l: 5, x: 8.08, y: 13.6814 }, + { l: 5, x: 8.17, y: 13.6967 }, + { l: 5, x: 8.25, y: 13.7124 }, + { l: 5, x: 8.33, y: 13.7284 }, + { l: 5, x: 8.42, y: 13.7447 }, + { l: 5, x: 8.5, y: 13.7611 }, + { l: 5, x: 8.58, y: 13.7778 }, + { l: 5, x: 8.67, y: 13.7947 }, + { l: 5, x: 8.75, y: 13.8121 }, + { l: 5, x: 8.83, y: 13.8296 }, + { l: 5, x: 8.92, y: 13.8477 }, + { l: 5, x: 9, y: 13.8661 }, + { l: 5, x: 9.08, y: 13.8849 }, + { l: 5, x: 9.17, y: 13.9042 }, + { l: 5, x: 9.25, y: 13.9239 }, + { l: 5, x: 9.33, y: 13.9443 }, + { l: 5, x: 9.42, y: 13.965 }, + { l: 5, x: 9.5, y: 13.9864 }, + { l: 5, x: 9.58, y: 14.0084 }, + { l: 5, x: 9.67, y: 14.0309 }, + { l: 5, x: 9.75, y: 14.0541 }, + { l: 5, x: 9.83, y: 14.0779 }, + { l: 5, x: 9.92, y: 14.1021 }, + { l: 5, x: 10, y: 14.1268 }, + { l: 5, x: 10.08, y: 14.1522 }, + { l: 5, x: 10.17, y: 14.1782 }, + { l: 5, x: 10.25, y: 14.2047 }, + { l: 5, x: 10.33, y: 14.2317 }, + { l: 5, x: 10.42, y: 14.2594 }, + { l: 5, x: 10.5, y: 14.2874 }, + { l: 5, x: 10.58, y: 14.3162 }, + { l: 5, x: 10.67, y: 14.3457 }, + { l: 5, x: 10.75, y: 14.3755 }, + { l: 5, x: 10.83, y: 14.406 }, + { l: 5, x: 10.92, y: 14.4369 }, + { l: 5, x: 11, y: 14.4685 }, + { l: 5, x: 11.08, y: 14.5006 }, + { l: 5, x: 11.17, y: 14.5332 }, + { l: 5, x: 11.25, y: 14.5663 }, + { l: 5, x: 11.33, y: 14.6 }, + { l: 5, x: 11.42, y: 14.6343 }, + { l: 5, x: 11.5, y: 14.6691 }, + { l: 5, x: 11.58, y: 14.7044 }, + { l: 5, x: 11.67, y: 14.7405 }, + { l: 5, x: 11.75, y: 14.7772 }, + { l: 5, x: 11.83, y: 14.8144 }, + { l: 5, x: 11.92, y: 14.8522 }, + { l: 5, x: 12, y: 14.8907 }, + { l: 5, x: 12.08, y: 14.93 }, + { l: 5, x: 12.17, y: 14.9698 }, + { l: 5, x: 12.25, y: 15.0103 }, + { l: 5, x: 12.33, y: 15.0514 }, + { l: 5, x: 12.42, y: 15.0932 }, + { l: 5, x: 12.5, y: 15.1355 }, + { l: 5, x: 12.58, y: 15.1786 }, + { l: 5, x: 12.67, y: 15.2223 }, + { l: 5, x: 12.75, y: 15.2664 }, + { l: 5, x: 12.83, y: 15.311 }, + { l: 5, x: 12.92, y: 15.3565 }, + { l: 5, x: 13, y: 15.4021 }, + { l: 5, x: 13.08, y: 15.4484 }, + { l: 5, x: 13.17, y: 15.4951 }, + { l: 5, x: 13.25, y: 15.5421 }, + { l: 5, x: 13.33, y: 15.5895 }, + { l: 5, x: 13.42, y: 15.6372 }, + { l: 5, x: 13.5, y: 15.6852 }, + { l: 5, x: 13.58, y: 15.7333 }, + { l: 5, x: 13.67, y: 15.7818 }, + { l: 5, x: 13.75, y: 15.8302 }, + { l: 5, x: 13.83, y: 15.8786 }, + { l: 5, x: 13.92, y: 15.9271 }, + { l: 5, x: 14, y: 15.9757 }, + { l: 5, x: 14.08, y: 16.0242 }, + { l: 5, x: 14.17, y: 16.0725 }, + { l: 5, x: 14.25, y: 16.1208 }, + { l: 5, x: 14.33, y: 16.1691 }, + { l: 5, x: 14.42, y: 16.2171 }, + { l: 5, x: 14.5, y: 16.2648 }, + { l: 5, x: 14.58, y: 16.3125 }, + { l: 5, x: 14.67, y: 16.3599 }, + { l: 5, x: 14.75, y: 16.4071 }, + { l: 5, x: 14.83, y: 16.454 }, + { l: 5, x: 14.92, y: 16.5009 }, + { l: 5, x: 15, y: 16.5473 }, + { l: 5, x: 15.08, y: 16.5934 }, + { l: 5, x: 15.17, y: 16.6393 }, + { l: 5, x: 15.25, y: 16.6848 }, + { l: 5, x: 15.33, y: 16.7299 }, + { l: 5, x: 15.42, y: 16.7748 }, + { l: 5, x: 15.5, y: 16.8192 }, + { l: 5, x: 15.58, y: 16.8634 }, + { l: 5, x: 15.67, y: 16.907 }, + { l: 5, x: 15.75, y: 16.9503 }, + { l: 5, x: 15.83, y: 16.9931 }, + { l: 5, x: 15.92, y: 17.0354 }, + { l: 5, x: 16, y: 17.0774 }, + { l: 5, x: 16.08, y: 17.119 }, + { l: 5, x: 16.17, y: 17.16 }, + { l: 5, x: 16.25, y: 17.2004 }, + { l: 5, x: 16.33, y: 17.2403 }, + { l: 5, x: 16.42, y: 17.28 }, + { l: 5, x: 16.5, y: 17.3188 }, + { l: 5, x: 16.58, y: 17.3574 }, + { l: 5, x: 16.67, y: 17.3954 }, + { l: 5, x: 16.75, y: 17.4329 }, + { l: 5, x: 16.83, y: 17.4698 }, + { l: 5, x: 16.92, y: 17.5063 }, + { l: 5, x: 17, y: 17.5422 }, + { l: 5, x: 17.08, y: 17.5774 }, + { l: 5, x: 17.17, y: 17.6124 }, + { l: 5, x: 17.25, y: 17.6468 }, + { l: 5, x: 17.33, y: 17.6807 }, + { l: 5, x: 17.42, y: 17.7138 }, + { l: 5, x: 17.5, y: 17.7465 }, + { l: 5, x: 17.58, y: 17.7786 }, + { l: 5, x: 17.67, y: 17.8103 }, + { l: 5, x: 17.75, y: 17.8414 }, + { l: 5, x: 17.83, y: 17.8721 }, + { l: 5, x: 17.92, y: 17.902 }, + { l: 5, x: 18, y: 17.9314 }, + { l: 5, x: 18.08, y: 17.9604 }, + { l: 5, x: 18.17, y: 17.9886 }, + { l: 5, x: 18.25, y: 18.0164 }, + { l: 5, x: 18.33, y: 18.0434 }, + { l: 5, x: 18.42, y: 18.0701 }, + { l: 5, x: 18.5, y: 18.096 }, + { l: 5, x: 18.58, y: 18.1216 }, + { l: 5, x: 18.67, y: 18.1466 }, + { l: 5, x: 18.75, y: 18.1711 }, + { l: 5, x: 18.83, y: 18.1947 }, + { l: 5, x: 18.92, y: 18.2181 }, + { l: 5, x: 19, y: 18.2409 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 13.7637 }, + { l: 10, x: 5.17, y: 13.7592 }, + { l: 10, x: 5.25, y: 13.7558 }, + { l: 10, x: 5.33, y: 13.7535 }, + { l: 10, x: 5.42, y: 13.7522 }, + { l: 10, x: 5.5, y: 13.752 }, + { l: 10, x: 5.58, y: 13.7529 }, + { l: 10, x: 5.67, y: 13.755 }, + { l: 10, x: 5.75, y: 13.7581 }, + { l: 10, x: 5.83, y: 13.7622 }, + { l: 10, x: 5.92, y: 13.7673 }, + { l: 10, x: 6, y: 13.773 }, + { l: 10, x: 6.08, y: 13.7797 }, + { l: 10, x: 6.17, y: 13.787 }, + { l: 10, x: 6.25, y: 13.795 }, + { l: 10, x: 6.33, y: 13.8036 }, + { l: 10, x: 6.42, y: 13.8129 }, + { l: 10, x: 6.5, y: 13.8226 }, + { l: 10, x: 6.58, y: 13.8327 }, + { l: 10, x: 6.67, y: 13.8434 }, + { l: 10, x: 6.75, y: 13.8547 }, + { l: 10, x: 6.83, y: 13.8663 }, + { l: 10, x: 6.92, y: 13.8783 }, + { l: 10, x: 7, y: 13.8907 }, + { l: 10, x: 7.08, y: 13.9036 }, + { l: 10, x: 7.17, y: 13.9167 }, + { l: 10, x: 7.25, y: 13.9301 }, + { l: 10, x: 7.33, y: 13.9439 }, + { l: 10, x: 7.42, y: 13.958 }, + { l: 10, x: 7.5, y: 13.9723 }, + { l: 10, x: 7.58, y: 13.9871 }, + { l: 10, x: 7.67, y: 14.002 }, + { l: 10, x: 7.75, y: 14.0172 }, + { l: 10, x: 7.83, y: 14.0328 }, + { l: 10, x: 7.92, y: 14.0485 }, + { l: 10, x: 8, y: 14.0648 }, + { l: 10, x: 8.08, y: 14.0811 }, + { l: 10, x: 8.17, y: 14.0977 }, + { l: 10, x: 8.25, y: 14.1145 }, + { l: 10, x: 8.33, y: 14.1318 }, + { l: 10, x: 8.42, y: 14.1492 }, + { l: 10, x: 8.5, y: 14.1669 }, + { l: 10, x: 8.58, y: 14.1849 }, + { l: 10, x: 8.67, y: 14.2032 }, + { l: 10, x: 8.75, y: 14.2219 }, + { l: 10, x: 8.83, y: 14.2408 }, + { l: 10, x: 8.92, y: 14.2603 }, + { l: 10, x: 9, y: 14.2801 }, + { l: 10, x: 9.08, y: 14.3004 }, + { l: 10, x: 9.17, y: 14.3212 }, + { l: 10, x: 9.25, y: 14.3425 }, + { l: 10, x: 9.33, y: 14.3644 }, + { l: 10, x: 9.42, y: 14.3867 }, + { l: 10, x: 9.5, y: 14.4097 }, + { l: 10, x: 9.58, y: 14.4334 }, + { l: 10, x: 9.67, y: 14.4576 }, + { l: 10, x: 9.75, y: 14.4826 }, + { l: 10, x: 9.83, y: 14.5081 }, + { l: 10, x: 9.92, y: 14.5341 }, + { l: 10, x: 10, y: 14.5607 }, + { l: 10, x: 10.08, y: 14.588 }, + { l: 10, x: 10.17, y: 14.6159 }, + { l: 10, x: 10.25, y: 14.6443 }, + { l: 10, x: 10.33, y: 14.6733 }, + { l: 10, x: 10.42, y: 14.703 }, + { l: 10, x: 10.5, y: 14.7331 }, + { l: 10, x: 10.58, y: 14.7639 }, + { l: 10, x: 10.67, y: 14.7956 }, + { l: 10, x: 10.75, y: 14.8275 }, + { l: 10, x: 10.83, y: 14.8602 }, + { l: 10, x: 10.92, y: 14.8933 }, + { l: 10, x: 11, y: 14.9271 }, + { l: 10, x: 11.08, y: 14.9614 }, + { l: 10, x: 11.17, y: 14.9963 }, + { l: 10, x: 11.25, y: 15.0317 }, + { l: 10, x: 11.33, y: 15.0678 }, + { l: 10, x: 11.42, y: 15.1045 }, + { l: 10, x: 11.5, y: 15.1416 }, + { l: 10, x: 11.58, y: 15.1794 }, + { l: 10, x: 11.67, y: 15.218 }, + { l: 10, x: 11.75, y: 15.2571 }, + { l: 10, x: 11.83, y: 15.2969 }, + { l: 10, x: 11.92, y: 15.3373 }, + { l: 10, x: 12, y: 15.3784 }, + { l: 10, x: 12.08, y: 15.4203 }, + { l: 10, x: 12.17, y: 15.4627 }, + { l: 10, x: 12.25, y: 15.506 }, + { l: 10, x: 12.33, y: 15.5498 }, + { l: 10, x: 12.42, y: 15.5944 }, + { l: 10, x: 12.5, y: 15.6395 }, + { l: 10, x: 12.58, y: 15.6853 }, + { l: 10, x: 12.67, y: 15.7319 }, + { l: 10, x: 12.75, y: 15.7789 }, + { l: 10, x: 12.83, y: 15.8265 }, + { l: 10, x: 12.92, y: 15.8748 }, + { l: 10, x: 13, y: 15.9234 }, + { l: 10, x: 13.08, y: 15.9727 }, + { l: 10, x: 13.17, y: 16.0225 }, + { l: 10, x: 13.25, y: 16.0725 }, + { l: 10, x: 13.33, y: 16.1229 }, + { l: 10, x: 13.42, y: 16.1737 }, + { l: 10, x: 13.5, y: 16.2248 }, + { l: 10, x: 13.58, y: 16.2761 }, + { l: 10, x: 13.67, y: 16.3277 }, + { l: 10, x: 13.75, y: 16.3792 }, + { l: 10, x: 13.83, y: 16.4307 }, + { l: 10, x: 13.92, y: 16.4825 }, + { l: 10, x: 14, y: 16.5343 }, + { l: 10, x: 14.08, y: 16.5859 }, + { l: 10, x: 14.17, y: 16.6374 }, + { l: 10, x: 14.25, y: 16.6889 }, + { l: 10, x: 14.33, y: 16.7405 }, + { l: 10, x: 14.42, y: 16.7918 }, + { l: 10, x: 14.5, y: 16.8427 }, + { l: 10, x: 14.58, y: 16.8936 }, + { l: 10, x: 14.67, y: 16.9442 }, + { l: 10, x: 14.75, y: 16.9947 }, + { l: 10, x: 14.83, y: 17.0449 }, + { l: 10, x: 14.92, y: 17.0951 }, + { l: 10, x: 15, y: 17.1448 }, + { l: 10, x: 15.08, y: 17.1941 }, + { l: 10, x: 15.17, y: 17.2432 }, + { l: 10, x: 15.25, y: 17.292 }, + { l: 10, x: 15.33, y: 17.3404 }, + { l: 10, x: 15.42, y: 17.3885 }, + { l: 10, x: 15.5, y: 17.4362 }, + { l: 10, x: 15.58, y: 17.4837 }, + { l: 10, x: 15.67, y: 17.5305 }, + { l: 10, x: 15.75, y: 17.5771 }, + { l: 10, x: 15.83, y: 17.6231 }, + { l: 10, x: 15.92, y: 17.6687 }, + { l: 10, x: 16, y: 17.714 }, + { l: 10, x: 16.08, y: 17.7588 }, + { l: 10, x: 16.17, y: 17.803 }, + { l: 10, x: 16.25, y: 17.8467 }, + { l: 10, x: 16.33, y: 17.8899 }, + { l: 10, x: 16.42, y: 17.9328 }, + { l: 10, x: 16.5, y: 17.9749 }, + { l: 10, x: 16.58, y: 18.0167 }, + { l: 10, x: 16.67, y: 18.058 }, + { l: 10, x: 16.75, y: 18.0987 }, + { l: 10, x: 16.83, y: 18.1389 }, + { l: 10, x: 16.92, y: 18.1787 }, + { l: 10, x: 17, y: 18.2178 }, + { l: 10, x: 17.08, y: 18.2563 }, + { l: 10, x: 17.17, y: 18.2946 }, + { l: 10, x: 17.25, y: 18.3322 }, + { l: 10, x: 17.33, y: 18.3694 }, + { l: 10, x: 17.42, y: 18.4058 }, + { l: 10, x: 17.5, y: 18.4418 }, + { l: 10, x: 17.58, y: 18.4772 }, + { l: 10, x: 17.67, y: 18.5121 }, + { l: 10, x: 17.75, y: 18.5465 }, + { l: 10, x: 17.83, y: 18.5805 }, + { l: 10, x: 17.92, y: 18.6138 }, + { l: 10, x: 18, y: 18.6465 }, + { l: 10, x: 18.08, y: 18.6788 }, + { l: 10, x: 18.17, y: 18.7103 }, + { l: 10, x: 18.25, y: 18.7414 }, + { l: 10, x: 18.33, y: 18.7718 }, + { l: 10, x: 18.42, y: 18.8019 }, + { l: 10, x: 18.5, y: 18.8311 }, + { l: 10, x: 18.58, y: 18.86 }, + { l: 10, x: 18.67, y: 18.8884 }, + { l: 10, x: 18.75, y: 18.9162 }, + { l: 10, x: 18.83, y: 18.9433 }, + { l: 10, x: 18.92, y: 18.97 }, + { l: 10, x: 19, y: 18.9962 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 14.0304 }, + { l: 15, x: 5.17, y: 14.026 }, + { l: 15, x: 5.25, y: 14.0226 }, + { l: 15, x: 5.33, y: 14.0205 }, + { l: 15, x: 5.42, y: 14.0194 }, + { l: 15, x: 5.5, y: 14.0194 }, + { l: 15, x: 5.58, y: 14.0205 }, + { l: 15, x: 5.67, y: 14.0229 }, + { l: 15, x: 5.75, y: 14.0263 }, + { l: 15, x: 5.83, y: 14.0306 }, + { l: 15, x: 5.92, y: 14.0361 }, + { l: 15, x: 6, y: 14.0422 }, + { l: 15, x: 6.08, y: 14.0493 }, + { l: 15, x: 6.17, y: 14.0571 }, + { l: 15, x: 6.25, y: 14.0655 }, + { l: 15, x: 6.33, y: 14.0746 }, + { l: 15, x: 6.42, y: 14.0843 }, + { l: 15, x: 6.5, y: 14.0946 }, + { l: 15, x: 6.58, y: 14.1053 }, + { l: 15, x: 6.67, y: 14.1166 }, + { l: 15, x: 6.75, y: 14.1285 }, + { l: 15, x: 6.83, y: 14.1407 }, + { l: 15, x: 6.92, y: 14.1534 }, + { l: 15, x: 7, y: 14.1665 }, + { l: 15, x: 7.08, y: 14.1801 }, + { l: 15, x: 7.17, y: 14.1939 }, + { l: 15, x: 7.25, y: 14.2081 }, + { l: 15, x: 7.33, y: 14.2227 }, + { l: 15, x: 7.42, y: 14.2376 }, + { l: 15, x: 7.5, y: 14.2527 }, + { l: 15, x: 7.58, y: 14.2683 }, + { l: 15, x: 7.67, y: 14.2841 }, + { l: 15, x: 7.75, y: 14.3002 }, + { l: 15, x: 7.83, y: 14.3167 }, + { l: 15, x: 7.92, y: 14.3333 }, + { l: 15, x: 8, y: 14.3505 }, + { l: 15, x: 8.08, y: 14.3678 }, + { l: 15, x: 8.17, y: 14.3853 }, + { l: 15, x: 8.25, y: 14.4032 }, + { l: 15, x: 8.33, y: 14.4215 }, + { l: 15, x: 8.42, y: 14.4399 }, + { l: 15, x: 8.5, y: 14.4587 }, + { l: 15, x: 8.58, y: 14.4778 }, + { l: 15, x: 8.67, y: 14.4971 }, + { l: 15, x: 8.75, y: 14.517 }, + { l: 15, x: 8.83, y: 14.537 }, + { l: 15, x: 8.92, y: 14.5577 }, + { l: 15, x: 9, y: 14.5786 }, + { l: 15, x: 9.08, y: 14.6001 }, + { l: 15, x: 9.17, y: 14.6221 }, + { l: 15, x: 9.25, y: 14.6446 }, + { l: 15, x: 9.33, y: 14.6678 }, + { l: 15, x: 9.42, y: 14.6914 }, + { l: 15, x: 9.5, y: 14.7157 }, + { l: 15, x: 9.58, y: 14.7407 }, + { l: 15, x: 9.67, y: 14.7663 }, + { l: 15, x: 9.75, y: 14.7926 }, + { l: 15, x: 9.83, y: 14.8195 }, + { l: 15, x: 9.92, y: 14.847 }, + { l: 15, x: 10, y: 14.8751 }, + { l: 15, x: 10.08, y: 14.9038 }, + { l: 15, x: 10.17, y: 14.9331 }, + { l: 15, x: 10.25, y: 14.9631 }, + { l: 15, x: 10.33, y: 14.9936 }, + { l: 15, x: 10.42, y: 15.0248 }, + { l: 15, x: 10.5, y: 15.0565 }, + { l: 15, x: 10.58, y: 15.089 }, + { l: 15, x: 10.67, y: 15.1222 }, + { l: 15, x: 10.75, y: 15.1558 }, + { l: 15, x: 10.83, y: 15.1901 }, + { l: 15, x: 10.92, y: 15.2249 }, + { l: 15, x: 11, y: 15.2604 }, + { l: 15, x: 11.08, y: 15.2965 }, + { l: 15, x: 11.17, y: 15.3331 }, + { l: 15, x: 11.25, y: 15.3703 }, + { l: 15, x: 11.33, y: 15.4081 }, + { l: 15, x: 11.42, y: 15.4466 }, + { l: 15, x: 11.5, y: 15.4856 }, + { l: 15, x: 11.58, y: 15.5252 }, + { l: 15, x: 11.67, y: 15.5656 }, + { l: 15, x: 11.75, y: 15.6067 }, + { l: 15, x: 11.83, y: 15.6484 }, + { l: 15, x: 11.92, y: 15.6906 }, + { l: 15, x: 12, y: 15.7337 }, + { l: 15, x: 12.08, y: 15.7776 }, + { l: 15, x: 12.17, y: 15.822 }, + { l: 15, x: 12.25, y: 15.8672 }, + { l: 15, x: 12.33, y: 15.9131 }, + { l: 15, x: 12.42, y: 15.9597 }, + { l: 15, x: 12.5, y: 16.0068 }, + { l: 15, x: 12.58, y: 16.0548 }, + { l: 15, x: 12.67, y: 16.1034 }, + { l: 15, x: 12.75, y: 16.1526 }, + { l: 15, x: 12.83, y: 16.2023 }, + { l: 15, x: 12.92, y: 16.2528 }, + { l: 15, x: 13, y: 16.3036 }, + { l: 15, x: 13.08, y: 16.355 }, + { l: 15, x: 13.17, y: 16.407 }, + { l: 15, x: 13.25, y: 16.4592 }, + { l: 15, x: 13.33, y: 16.5119 }, + { l: 15, x: 13.42, y: 16.5649 }, + { l: 15, x: 13.5, y: 16.6183 }, + { l: 15, x: 13.58, y: 16.6718 }, + { l: 15, x: 13.67, y: 16.7256 }, + { l: 15, x: 13.75, y: 16.7795 }, + { l: 15, x: 13.83, y: 16.8333 }, + { l: 15, x: 13.92, y: 16.8873 }, + { l: 15, x: 14, y: 16.9414 }, + { l: 15, x: 14.08, y: 16.9954 }, + { l: 15, x: 14.17, y: 17.0492 }, + { l: 15, x: 14.25, y: 17.103 }, + { l: 15, x: 14.33, y: 17.1568 }, + { l: 15, x: 14.42, y: 17.2104 }, + { l: 15, x: 14.5, y: 17.2637 }, + { l: 15, x: 14.58, y: 17.3169 }, + { l: 15, x: 14.67, y: 17.3699 }, + { l: 15, x: 14.75, y: 17.4227 }, + { l: 15, x: 14.83, y: 17.4752 }, + { l: 15, x: 14.92, y: 17.5276 }, + { l: 15, x: 15, y: 17.5796 }, + { l: 15, x: 15.08, y: 17.6312 }, + { l: 15, x: 15.17, y: 17.6827 }, + { l: 15, x: 15.25, y: 17.7338 }, + { l: 15, x: 15.33, y: 17.7844 }, + { l: 15, x: 15.42, y: 17.8349 }, + { l: 15, x: 15.5, y: 17.8849 }, + { l: 15, x: 15.58, y: 17.9346 }, + { l: 15, x: 15.67, y: 17.9837 }, + { l: 15, x: 15.75, y: 18.0326 }, + { l: 15, x: 15.83, y: 18.0809 }, + { l: 15, x: 15.92, y: 18.1288 }, + { l: 15, x: 16, y: 18.1763 }, + { l: 15, x: 16.08, y: 18.2234 }, + { l: 15, x: 16.17, y: 18.2699 }, + { l: 15, x: 16.25, y: 18.3158 }, + { l: 15, x: 16.33, y: 18.3613 }, + { l: 15, x: 16.42, y: 18.4064 }, + { l: 15, x: 16.5, y: 18.4508 }, + { l: 15, x: 16.58, y: 18.4949 }, + { l: 15, x: 16.67, y: 18.5384 }, + { l: 15, x: 16.75, y: 18.5814 }, + { l: 15, x: 16.83, y: 18.6237 }, + { l: 15, x: 16.92, y: 18.6658 }, + { l: 15, x: 17, y: 18.7072 }, + { l: 15, x: 17.08, y: 18.7479 }, + { l: 15, x: 17.17, y: 18.7884 }, + { l: 15, x: 17.25, y: 18.8283 }, + { l: 15, x: 17.33, y: 18.8677 }, + { l: 15, x: 17.42, y: 18.9063 }, + { l: 15, x: 17.5, y: 18.9446 }, + { l: 15, x: 17.58, y: 18.9822 }, + { l: 15, x: 17.67, y: 19.0194 }, + { l: 15, x: 17.75, y: 19.056 }, + { l: 15, x: 17.83, y: 19.0923 }, + { l: 15, x: 17.92, y: 19.1277 }, + { l: 15, x: 18, y: 19.1627 }, + { l: 15, x: 18.08, y: 19.1972 }, + { l: 15, x: 18.17, y: 19.231 }, + { l: 15, x: 18.25, y: 19.2643 }, + { l: 15, x: 18.33, y: 19.297 }, + { l: 15, x: 18.42, y: 19.3292 }, + { l: 15, x: 18.5, y: 19.3607 }, + { l: 15, x: 18.58, y: 19.3918 }, + { l: 15, x: 18.67, y: 19.4225 }, + { l: 15, x: 18.75, y: 19.4526 }, + { l: 15, x: 18.83, y: 19.4819 }, + { l: 15, x: 18.92, y: 19.5108 }, + { l: 15, x: 19, y: 19.5393 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 15.2641 }, + { l: 50, x: 5.17, y: 15.2616 }, + { l: 50, x: 5.25, y: 15.2604 }, + { l: 50, x: 5.33, y: 15.2605 }, + { l: 50, x: 5.42, y: 15.2619 }, + { l: 50, x: 5.5, y: 15.2645 }, + { l: 50, x: 5.58, y: 15.2684 }, + { l: 50, x: 5.67, y: 15.2737 }, + { l: 50, x: 5.75, y: 15.2801 }, + { l: 50, x: 5.83, y: 15.2877 }, + { l: 50, x: 5.92, y: 15.2965 }, + { l: 50, x: 6, y: 15.3062 }, + { l: 50, x: 6.08, y: 15.3169 }, + { l: 50, x: 6.17, y: 15.3285 }, + { l: 50, x: 6.25, y: 15.3408 }, + { l: 50, x: 6.33, y: 15.354 }, + { l: 50, x: 6.42, y: 15.3679 }, + { l: 50, x: 6.5, y: 15.3825 }, + { l: 50, x: 6.58, y: 15.3978 }, + { l: 50, x: 6.67, y: 15.4137 }, + { l: 50, x: 6.75, y: 15.4302 }, + { l: 50, x: 6.83, y: 15.4473 }, + { l: 50, x: 6.92, y: 15.465 }, + { l: 50, x: 7, y: 15.4832 }, + { l: 50, x: 7.08, y: 15.5019 }, + { l: 50, x: 7.17, y: 15.521 }, + { l: 50, x: 7.25, y: 15.5407 }, + { l: 50, x: 7.33, y: 15.5608 }, + { l: 50, x: 7.42, y: 15.5814 }, + { l: 50, x: 7.5, y: 15.6023 }, + { l: 50, x: 7.58, y: 15.6237 }, + { l: 50, x: 7.67, y: 15.6455 }, + { l: 50, x: 7.75, y: 15.6677 }, + { l: 50, x: 7.83, y: 15.6903 }, + { l: 50, x: 7.92, y: 15.7133 }, + { l: 50, x: 8, y: 15.7368 }, + { l: 50, x: 8.08, y: 15.7606 }, + { l: 50, x: 8.17, y: 15.7848 }, + { l: 50, x: 8.25, y: 15.8094 }, + { l: 50, x: 8.33, y: 15.8344 }, + { l: 50, x: 8.42, y: 15.8597 }, + { l: 50, x: 8.5, y: 15.8855 }, + { l: 50, x: 8.58, y: 15.9116 }, + { l: 50, x: 8.67, y: 15.9381 }, + { l: 50, x: 8.75, y: 15.9651 }, + { l: 50, x: 8.83, y: 15.9925 }, + { l: 50, x: 8.92, y: 16.0205 }, + { l: 50, x: 9, y: 16.049 }, + { l: 50, x: 9.08, y: 16.0781 }, + { l: 50, x: 9.17, y: 16.1078 }, + { l: 50, x: 9.25, y: 16.1381 }, + { l: 50, x: 9.33, y: 16.1692 }, + { l: 50, x: 9.42, y: 16.2009 }, + { l: 50, x: 9.5, y: 16.2333 }, + { l: 50, x: 9.58, y: 16.2665 }, + { l: 50, x: 9.67, y: 16.3004 }, + { l: 50, x: 9.75, y: 16.3351 }, + { l: 50, x: 9.83, y: 16.3704 }, + { l: 50, x: 9.92, y: 16.4065 }, + { l: 50, x: 10, y: 16.4433 }, + { l: 50, x: 10.08, y: 16.4807 }, + { l: 50, x: 10.17, y: 16.5189 }, + { l: 50, x: 10.25, y: 16.5578 }, + { l: 50, x: 10.33, y: 16.5974 }, + { l: 50, x: 10.42, y: 16.6376 }, + { l: 50, x: 10.5, y: 16.6786 }, + { l: 50, x: 10.58, y: 16.7203 }, + { l: 50, x: 10.67, y: 16.7628 }, + { l: 50, x: 10.75, y: 16.8059 }, + { l: 50, x: 10.83, y: 16.8497 }, + { l: 50, x: 10.92, y: 16.8941 }, + { l: 50, x: 11, y: 16.9392 }, + { l: 50, x: 11.08, y: 16.985 }, + { l: 50, x: 11.17, y: 17.0314 }, + { l: 50, x: 11.25, y: 17.0784 }, + { l: 50, x: 11.33, y: 17.1262 }, + { l: 50, x: 11.42, y: 17.1746 }, + { l: 50, x: 11.5, y: 17.2236 }, + { l: 50, x: 11.58, y: 17.2734 }, + { l: 50, x: 11.67, y: 17.324 }, + { l: 50, x: 11.75, y: 17.3752 }, + { l: 50, x: 11.83, y: 17.4272 }, + { l: 50, x: 11.92, y: 17.4799 }, + { l: 50, x: 12, y: 17.5334 }, + { l: 50, x: 12.08, y: 17.5877 }, + { l: 50, x: 12.17, y: 17.6427 }, + { l: 50, x: 12.25, y: 17.6985 }, + { l: 50, x: 12.33, y: 17.7551 }, + { l: 50, x: 12.42, y: 17.8124 }, + { l: 50, x: 12.5, y: 17.8704 }, + { l: 50, x: 12.58, y: 17.9292 }, + { l: 50, x: 12.67, y: 17.9887 }, + { l: 50, x: 12.75, y: 18.0488 }, + { l: 50, x: 12.83, y: 18.1096 }, + { l: 50, x: 12.92, y: 18.171 }, + { l: 50, x: 13, y: 18.233 }, + { l: 50, x: 13.08, y: 18.2955 }, + { l: 50, x: 13.17, y: 18.3586 }, + { l: 50, x: 13.25, y: 18.4221 }, + { l: 50, x: 13.33, y: 18.486 }, + { l: 50, x: 13.42, y: 18.5502 }, + { l: 50, x: 13.5, y: 18.6148 }, + { l: 50, x: 13.58, y: 18.6795 }, + { l: 50, x: 13.67, y: 18.7445 }, + { l: 50, x: 13.75, y: 18.8095 }, + { l: 50, x: 13.83, y: 18.8746 }, + { l: 50, x: 13.92, y: 18.9398 }, + { l: 50, x: 14, y: 19.005 }, + { l: 50, x: 14.08, y: 19.0701 }, + { l: 50, x: 14.17, y: 19.1351 }, + { l: 50, x: 14.25, y: 19.2 }, + { l: 50, x: 14.33, y: 19.2648 }, + { l: 50, x: 14.42, y: 19.3294 }, + { l: 50, x: 14.5, y: 19.3937 }, + { l: 50, x: 14.58, y: 19.4578 }, + { l: 50, x: 14.67, y: 19.5217 }, + { l: 50, x: 14.75, y: 19.5853 }, + { l: 50, x: 14.83, y: 19.6486 }, + { l: 50, x: 14.92, y: 19.7117 }, + { l: 50, x: 15, y: 19.7744 }, + { l: 50, x: 15.08, y: 19.8367 }, + { l: 50, x: 15.17, y: 19.8987 }, + { l: 50, x: 15.25, y: 19.9603 }, + { l: 50, x: 15.33, y: 20.0215 }, + { l: 50, x: 15.42, y: 20.0823 }, + { l: 50, x: 15.5, y: 20.1427 }, + { l: 50, x: 15.58, y: 20.2026 }, + { l: 50, x: 15.67, y: 20.2621 }, + { l: 50, x: 15.75, y: 20.3211 }, + { l: 50, x: 15.83, y: 20.3796 }, + { l: 50, x: 15.92, y: 20.4376 }, + { l: 50, x: 16, y: 20.4951 }, + { l: 50, x: 16.08, y: 20.5521 }, + { l: 50, x: 16.17, y: 20.6085 }, + { l: 50, x: 16.25, y: 20.6644 }, + { l: 50, x: 16.33, y: 20.7197 }, + { l: 50, x: 16.42, y: 20.7745 }, + { l: 50, x: 16.5, y: 20.8287 }, + { l: 50, x: 16.58, y: 20.8824 }, + { l: 50, x: 16.67, y: 20.9355 }, + { l: 50, x: 16.75, y: 20.9881 }, + { l: 50, x: 16.83, y: 21.04 }, + { l: 50, x: 16.92, y: 21.0914 }, + { l: 50, x: 17, y: 21.1423 }, + { l: 50, x: 17.08, y: 21.1925 }, + { l: 50, x: 17.17, y: 21.2423 }, + { l: 50, x: 17.25, y: 21.2914 }, + { l: 50, x: 17.33, y: 21.34 }, + { l: 50, x: 17.42, y: 21.388 }, + { l: 50, x: 17.5, y: 21.4354 }, + { l: 50, x: 17.58, y: 21.4822 }, + { l: 50, x: 17.67, y: 21.5285 }, + { l: 50, x: 17.75, y: 21.5742 }, + { l: 50, x: 17.83, y: 21.6193 }, + { l: 50, x: 17.92, y: 21.6638 }, + { l: 50, x: 18, y: 21.7077 }, + { l: 50, x: 18.08, y: 21.751 }, + { l: 50, x: 18.17, y: 21.7937 }, + { l: 50, x: 18.25, y: 21.8358 }, + { l: 50, x: 18.33, y: 21.8773 }, + { l: 50, x: 18.42, y: 21.9182 }, + { l: 50, x: 18.5, y: 21.9585 }, + { l: 50, x: 18.58, y: 21.9982 }, + { l: 50, x: 18.67, y: 22.0374 }, + { l: 50, x: 18.75, y: 22.076 }, + { l: 50, x: 18.83, y: 22.114 }, + { l: 50, x: 18.92, y: 22.1514 }, + { l: 50, x: 19, y: 22.1883 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 16.6995 }, + { l: 85, x: 5.17, y: 16.7028 }, + { l: 85, x: 5.25, y: 16.7078 }, + { l: 85, x: 5.33, y: 16.7142 }, + { l: 85, x: 5.42, y: 16.7222 }, + { l: 85, x: 5.5, y: 16.7316 }, + { l: 85, x: 5.58, y: 16.7426 }, + { l: 85, x: 5.67, y: 16.7552 }, + { l: 85, x: 5.75, y: 16.769 }, + { l: 85, x: 5.83, y: 16.7844 }, + { l: 85, x: 5.92, y: 16.8011 }, + { l: 85, x: 6, y: 16.819 }, + { l: 85, x: 6.08, y: 16.8381 }, + { l: 85, x: 6.17, y: 16.8583 }, + { l: 85, x: 6.25, y: 16.8794 }, + { l: 85, x: 6.33, y: 16.9017 }, + { l: 85, x: 6.42, y: 16.9248 }, + { l: 85, x: 6.5, y: 16.9489 }, + { l: 85, x: 6.58, y: 16.974 }, + { l: 85, x: 6.67, y: 16.9997 }, + { l: 85, x: 6.75, y: 17.0262 }, + { l: 85, x: 6.83, y: 17.0536 }, + { l: 85, x: 6.92, y: 17.0819 }, + { l: 85, x: 7, y: 17.1108 }, + { l: 85, x: 7.08, y: 17.1403 }, + { l: 85, x: 7.17, y: 17.1704 }, + { l: 85, x: 7.25, y: 17.2015 }, + { l: 85, x: 7.33, y: 17.2331 }, + { l: 85, x: 7.42, y: 17.2654 }, + { l: 85, x: 7.5, y: 17.2982 }, + { l: 85, x: 7.58, y: 17.3315 }, + { l: 85, x: 7.67, y: 17.3655 }, + { l: 85, x: 7.75, y: 17.4003 }, + { l: 85, x: 7.83, y: 17.4353 }, + { l: 85, x: 7.92, y: 17.4712 }, + { l: 85, x: 8, y: 17.5075 }, + { l: 85, x: 8.08, y: 17.5444 }, + { l: 85, x: 8.17, y: 17.582 }, + { l: 85, x: 8.25, y: 17.6201 }, + { l: 85, x: 8.33, y: 17.6587 }, + { l: 85, x: 8.42, y: 17.6977 }, + { l: 85, x: 8.5, y: 17.7374 }, + { l: 85, x: 8.58, y: 17.7776 }, + { l: 85, x: 8.67, y: 17.8183 }, + { l: 85, x: 8.75, y: 17.8595 }, + { l: 85, x: 8.83, y: 17.9015 }, + { l: 85, x: 8.92, y: 17.9439 }, + { l: 85, x: 9, y: 17.9872 }, + { l: 85, x: 9.08, y: 18.0311 }, + { l: 85, x: 9.17, y: 18.0758 }, + { l: 85, x: 9.25, y: 18.1212 }, + { l: 85, x: 9.33, y: 18.1675 }, + { l: 85, x: 9.42, y: 18.2148 }, + { l: 85, x: 9.5, y: 18.2626 }, + { l: 85, x: 9.58, y: 18.3114 }, + { l: 85, x: 9.67, y: 18.3609 }, + { l: 85, x: 9.75, y: 18.4114 }, + { l: 85, x: 9.83, y: 18.4624 }, + { l: 85, x: 9.92, y: 18.5145 }, + { l: 85, x: 10, y: 18.5675 }, + { l: 85, x: 10.08, y: 18.6209 }, + { l: 85, x: 10.17, y: 18.6752 }, + { l: 85, x: 10.25, y: 18.7303 }, + { l: 85, x: 10.33, y: 18.7863 }, + { l: 85, x: 10.42, y: 18.8427 }, + { l: 85, x: 10.5, y: 18.9002 }, + { l: 85, x: 10.58, y: 18.9584 }, + { l: 85, x: 10.67, y: 19.0172 }, + { l: 85, x: 10.75, y: 19.0769 }, + { l: 85, x: 10.83, y: 19.1372 }, + { l: 85, x: 10.92, y: 19.1982 }, + { l: 85, x: 11, y: 19.2598 }, + { l: 85, x: 11.08, y: 19.3221 }, + { l: 85, x: 11.17, y: 19.3851 }, + { l: 85, x: 11.25, y: 19.4486 }, + { l: 85, x: 11.33, y: 19.513 }, + { l: 85, x: 11.42, y: 19.5778 }, + { l: 85, x: 11.5, y: 19.6433 }, + { l: 85, x: 11.58, y: 19.7097 }, + { l: 85, x: 11.67, y: 19.7768 }, + { l: 85, x: 11.75, y: 19.8442 }, + { l: 85, x: 11.83, y: 19.9126 }, + { l: 85, x: 11.92, y: 19.9818 }, + { l: 85, x: 12, y: 20.0516 }, + { l: 85, x: 12.08, y: 20.1221 }, + { l: 85, x: 12.17, y: 20.1933 }, + { l: 85, x: 12.25, y: 20.2652 }, + { l: 85, x: 12.33, y: 20.338 }, + { l: 85, x: 12.42, y: 20.4113 }, + { l: 85, x: 12.5, y: 20.4854 }, + { l: 85, x: 12.58, y: 20.5602 }, + { l: 85, x: 12.67, y: 20.6354 }, + { l: 85, x: 12.75, y: 20.7114 }, + { l: 85, x: 12.83, y: 20.7881 }, + { l: 85, x: 12.92, y: 20.8649 }, + { l: 85, x: 13, y: 20.9427 }, + { l: 85, x: 13.08, y: 21.0205 }, + { l: 85, x: 13.17, y: 21.099 }, + { l: 85, x: 13.25, y: 21.1779 }, + { l: 85, x: 13.33, y: 21.2569 }, + { l: 85, x: 13.42, y: 21.336 }, + { l: 85, x: 13.5, y: 21.4155 }, + { l: 85, x: 13.58, y: 21.4949 }, + { l: 85, x: 13.67, y: 21.5743 }, + { l: 85, x: 13.75, y: 21.6536 }, + { l: 85, x: 13.83, y: 21.733 }, + { l: 85, x: 13.92, y: 21.8122 }, + { l: 85, x: 14, y: 21.8911 }, + { l: 85, x: 14.08, y: 21.9699 }, + { l: 85, x: 14.17, y: 22.0485 }, + { l: 85, x: 14.25, y: 22.1266 }, + { l: 85, x: 14.33, y: 22.2044 }, + { l: 85, x: 14.42, y: 22.2818 }, + { l: 85, x: 14.5, y: 22.3589 }, + { l: 85, x: 14.58, y: 22.4355 }, + { l: 85, x: 14.67, y: 22.5118 }, + { l: 85, x: 14.75, y: 22.5874 }, + { l: 85, x: 14.83, y: 22.6626 }, + { l: 85, x: 14.92, y: 22.7373 }, + { l: 85, x: 15, y: 22.8115 }, + { l: 85, x: 15.08, y: 22.8852 }, + { l: 85, x: 15.17, y: 22.9582 }, + { l: 85, x: 15.25, y: 23.0308 }, + { l: 85, x: 15.33, y: 23.1029 }, + { l: 85, x: 15.42, y: 23.1742 }, + { l: 85, x: 15.5, y: 23.245 }, + { l: 85, x: 15.58, y: 23.3149 }, + { l: 85, x: 15.67, y: 23.3846 }, + { l: 85, x: 15.75, y: 23.4534 }, + { l: 85, x: 15.83, y: 23.5216 }, + { l: 85, x: 15.92, y: 23.5892 }, + { l: 85, x: 16, y: 23.6559 }, + { l: 85, x: 16.08, y: 23.722 }, + { l: 85, x: 16.17, y: 23.7874 }, + { l: 85, x: 16.25, y: 23.8521 }, + { l: 85, x: 16.33, y: 23.9162 }, + { l: 85, x: 16.42, y: 23.9793 }, + { l: 85, x: 16.5, y: 24.0421 }, + { l: 85, x: 16.58, y: 24.1039 }, + { l: 85, x: 16.67, y: 24.165 }, + { l: 85, x: 16.75, y: 24.2255 }, + { l: 85, x: 16.83, y: 24.2852 }, + { l: 85, x: 16.92, y: 24.3439 }, + { l: 85, x: 17, y: 24.4024 }, + { l: 85, x: 17.08, y: 24.46 }, + { l: 85, x: 17.17, y: 24.5168 }, + { l: 85, x: 17.25, y: 24.5728 }, + { l: 85, x: 17.33, y: 24.6281 }, + { l: 85, x: 17.42, y: 24.6831 }, + { l: 85, x: 17.5, y: 24.737 }, + { l: 85, x: 17.58, y: 24.7902 }, + { l: 85, x: 17.67, y: 24.8428 }, + { l: 85, x: 17.75, y: 24.8947 }, + { l: 85, x: 17.83, y: 24.9455 }, + { l: 85, x: 17.92, y: 24.9959 }, + { l: 85, x: 18, y: 25.0456 }, + { l: 85, x: 18.08, y: 25.0943 }, + { l: 85, x: 18.17, y: 25.1425 }, + { l: 85, x: 18.25, y: 25.1898 }, + { l: 85, x: 18.33, y: 25.2366 }, + { l: 85, x: 18.42, y: 25.2823 }, + { l: 85, x: 18.5, y: 25.3277 }, + { l: 85, x: 18.58, y: 25.372 }, + { l: 85, x: 18.67, y: 25.4158 }, + { l: 85, x: 18.75, y: 25.4588 }, + { l: 85, x: 18.83, y: 25.5014 }, + { l: 85, x: 18.92, y: 25.5429 }, + { l: 85, x: 19, y: 25.5839 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 17.0737 }, + { l: 90, x: 5.17, y: 17.0792 }, + { l: 90, x: 5.25, y: 17.0865 }, + { l: 90, x: 5.33, y: 17.0952 }, + { l: 90, x: 5.42, y: 17.1057 }, + { l: 90, x: 5.5, y: 17.1176 }, + { l: 90, x: 5.58, y: 17.1312 }, + { l: 90, x: 5.67, y: 17.1464 }, + { l: 90, x: 5.75, y: 17.163 }, + { l: 90, x: 5.83, y: 17.1811 }, + { l: 90, x: 5.92, y: 17.2007 }, + { l: 90, x: 6, y: 17.2215 }, + { l: 90, x: 6.08, y: 17.2436 }, + { l: 90, x: 6.17, y: 17.2669 }, + { l: 90, x: 6.25, y: 17.2911 }, + { l: 90, x: 6.33, y: 17.3167 }, + { l: 90, x: 6.42, y: 17.343 }, + { l: 90, x: 6.5, y: 17.3705 }, + { l: 90, x: 6.58, y: 17.3991 }, + { l: 90, x: 6.67, y: 17.4284 }, + { l: 90, x: 6.75, y: 17.4585 }, + { l: 90, x: 6.83, y: 17.4895 }, + { l: 90, x: 6.92, y: 17.5216 }, + { l: 90, x: 7, y: 17.5543 }, + { l: 90, x: 7.08, y: 17.5876 }, + { l: 90, x: 7.17, y: 17.6217 }, + { l: 90, x: 7.25, y: 17.6568 }, + { l: 90, x: 7.33, y: 17.6925 }, + { l: 90, x: 7.42, y: 17.729 }, + { l: 90, x: 7.5, y: 17.766 }, + { l: 90, x: 7.58, y: 17.8036 }, + { l: 90, x: 7.67, y: 17.842 }, + { l: 90, x: 7.75, y: 17.8812 }, + { l: 90, x: 7.83, y: 17.9207 }, + { l: 90, x: 7.92, y: 17.9612 }, + { l: 90, x: 8, y: 18.0021 }, + { l: 90, x: 8.08, y: 18.0437 }, + { l: 90, x: 8.17, y: 18.0862 }, + { l: 90, x: 8.25, y: 18.1291 }, + { l: 90, x: 8.33, y: 18.1726 }, + { l: 90, x: 8.42, y: 18.2165 }, + { l: 90, x: 8.5, y: 18.2613 }, + { l: 90, x: 8.58, y: 18.3065 }, + { l: 90, x: 8.67, y: 18.3523 }, + { l: 90, x: 8.75, y: 18.3987 }, + { l: 90, x: 8.83, y: 18.4459 }, + { l: 90, x: 8.92, y: 18.4935 }, + { l: 90, x: 9, y: 18.5421 }, + { l: 90, x: 9.08, y: 18.5914 }, + { l: 90, x: 9.17, y: 18.6415 }, + { l: 90, x: 9.25, y: 18.6924 }, + { l: 90, x: 9.33, y: 18.7442 }, + { l: 90, x: 9.42, y: 18.797 }, + { l: 90, x: 9.5, y: 18.8504 }, + { l: 90, x: 9.58, y: 18.9047 }, + { l: 90, x: 9.67, y: 18.9599 }, + { l: 90, x: 9.75, y: 19.0161 }, + { l: 90, x: 9.83, y: 19.0727 }, + { l: 90, x: 9.92, y: 19.1305 }, + { l: 90, x: 10, y: 19.1892 }, + { l: 90, x: 10.08, y: 19.2483 }, + { l: 90, x: 10.17, y: 19.3083 }, + { l: 90, x: 10.25, y: 19.3692 }, + { l: 90, x: 10.33, y: 19.4309 }, + { l: 90, x: 10.42, y: 19.493 }, + { l: 90, x: 10.5, y: 19.5564 }, + { l: 90, x: 10.58, y: 19.6203 }, + { l: 90, x: 10.67, y: 19.6848 }, + { l: 90, x: 10.75, y: 19.7503 }, + { l: 90, x: 10.83, y: 19.8163 }, + { l: 90, x: 10.92, y: 19.8831 }, + { l: 90, x: 11, y: 19.9503 }, + { l: 90, x: 11.08, y: 20.0183 }, + { l: 90, x: 11.17, y: 20.087 }, + { l: 90, x: 11.25, y: 20.1561 }, + { l: 90, x: 11.33, y: 20.2261 }, + { l: 90, x: 11.42, y: 20.2965 }, + { l: 90, x: 11.5, y: 20.3675 }, + { l: 90, x: 11.58, y: 20.4395 }, + { l: 90, x: 11.67, y: 20.512 }, + { l: 90, x: 11.75, y: 20.5849 }, + { l: 90, x: 11.83, y: 20.6586 }, + { l: 90, x: 11.92, y: 20.7332 }, + { l: 90, x: 12, y: 20.8083 }, + { l: 90, x: 12.08, y: 20.884 }, + { l: 90, x: 12.17, y: 20.9605 }, + { l: 90, x: 12.25, y: 21.0375 }, + { l: 90, x: 12.33, y: 21.1154 }, + { l: 90, x: 12.42, y: 21.1938 }, + { l: 90, x: 12.5, y: 21.2729 }, + { l: 90, x: 12.58, y: 21.3526 }, + { l: 90, x: 12.67, y: 21.4327 }, + { l: 90, x: 12.75, y: 21.5135 }, + { l: 90, x: 12.83, y: 21.595 }, + { l: 90, x: 12.92, y: 21.6765 }, + { l: 90, x: 13, y: 21.759 }, + { l: 90, x: 13.08, y: 21.8413 }, + { l: 90, x: 13.17, y: 21.9243 }, + { l: 90, x: 13.25, y: 22.0077 }, + { l: 90, x: 13.33, y: 22.0911 }, + { l: 90, x: 13.42, y: 22.1744 }, + { l: 90, x: 13.5, y: 22.2581 }, + { l: 90, x: 13.58, y: 22.3416 }, + { l: 90, x: 13.67, y: 22.4249 }, + { l: 90, x: 13.75, y: 22.5081 }, + { l: 90, x: 13.83, y: 22.5914 }, + { l: 90, x: 13.92, y: 22.6744 }, + { l: 90, x: 14, y: 22.7569 }, + { l: 90, x: 14.08, y: 22.8392 }, + { l: 90, x: 14.17, y: 22.9213 }, + { l: 90, x: 14.25, y: 23.0028 }, + { l: 90, x: 14.33, y: 23.0838 }, + { l: 90, x: 14.42, y: 23.1644 }, + { l: 90, x: 14.5, y: 23.2446 }, + { l: 90, x: 14.58, y: 23.3242 }, + { l: 90, x: 14.67, y: 23.4034 }, + { l: 90, x: 14.75, y: 23.4817 }, + { l: 90, x: 14.83, y: 23.5598 }, + { l: 90, x: 14.92, y: 23.637 }, + { l: 90, x: 15, y: 23.7138 }, + { l: 90, x: 15.08, y: 23.79 }, + { l: 90, x: 15.17, y: 23.8654 }, + { l: 90, x: 15.25, y: 23.9403 }, + { l: 90, x: 15.33, y: 24.0146 }, + { l: 90, x: 15.42, y: 24.088 }, + { l: 90, x: 15.5, y: 24.1609 }, + { l: 90, x: 15.58, y: 24.2327 }, + { l: 90, x: 15.67, y: 24.3044 }, + { l: 90, x: 15.75, y: 24.375 }, + { l: 90, x: 15.83, y: 24.445 }, + { l: 90, x: 15.92, y: 24.5144 }, + { l: 90, x: 16, y: 24.5827 }, + { l: 90, x: 16.08, y: 24.6503 }, + { l: 90, x: 16.17, y: 24.7172 }, + { l: 90, x: 16.25, y: 24.7834 }, + { l: 90, x: 16.33, y: 24.8489 }, + { l: 90, x: 16.42, y: 24.9133 }, + { l: 90, x: 16.5, y: 24.9774 }, + { l: 90, x: 16.58, y: 25.0404 }, + { l: 90, x: 16.67, y: 25.1026 }, + { l: 90, x: 16.75, y: 25.1641 }, + { l: 90, x: 16.83, y: 25.2249 }, + { l: 90, x: 16.92, y: 25.2845 }, + { l: 90, x: 17, y: 25.3438 }, + { l: 90, x: 17.08, y: 25.4023 }, + { l: 90, x: 17.17, y: 25.4599 }, + { l: 90, x: 17.25, y: 25.5166 }, + { l: 90, x: 17.33, y: 25.5726 }, + { l: 90, x: 17.42, y: 25.6282 }, + { l: 90, x: 17.5, y: 25.6827 }, + { l: 90, x: 17.58, y: 25.7364 }, + { l: 90, x: 17.67, y: 25.7894 }, + { l: 90, x: 17.75, y: 25.8417 }, + { l: 90, x: 17.83, y: 25.8928 }, + { l: 90, x: 17.92, y: 25.9435 }, + { l: 90, x: 18, y: 25.9935 }, + { l: 90, x: 18.08, y: 26.0423 }, + { l: 90, x: 18.17, y: 26.0907 }, + { l: 90, x: 18.25, y: 26.138 }, + { l: 90, x: 18.33, y: 26.1849 }, + { l: 90, x: 18.42, y: 26.2306 }, + { l: 90, x: 18.5, y: 26.276 }, + { l: 90, x: 18.58, y: 26.3201 }, + { l: 90, x: 18.67, y: 26.3637 }, + { l: 90, x: 18.75, y: 26.4065 }, + { l: 90, x: 18.83, y: 26.4489 }, + { l: 90, x: 18.92, y: 26.4902 }, + { l: 90, x: 19, y: 26.5308 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 17.6558 }, + { l: 95, x: 5.17, y: 17.6652 }, + { l: 95, x: 5.25, y: 17.6766 }, + { l: 95, x: 5.33, y: 17.6896 }, + { l: 95, x: 5.42, y: 17.7044 }, + { l: 95, x: 5.5, y: 17.7208 }, + { l: 95, x: 5.58, y: 17.7391 }, + { l: 95, x: 5.67, y: 17.7591 }, + { l: 95, x: 5.75, y: 17.7804 }, + { l: 95, x: 5.83, y: 17.8036 }, + { l: 95, x: 5.92, y: 17.8283 }, + { l: 95, x: 6, y: 17.8545 }, + { l: 95, x: 6.08, y: 17.8819 }, + { l: 95, x: 6.17, y: 17.9109 }, + { l: 95, x: 6.25, y: 17.9407 }, + { l: 95, x: 6.33, y: 17.9721 }, + { l: 95, x: 6.42, y: 18.0044 }, + { l: 95, x: 6.5, y: 18.038 }, + { l: 95, x: 6.58, y: 18.0728 }, + { l: 95, x: 6.67, y: 18.1085 }, + { l: 95, x: 6.75, y: 18.145 }, + { l: 95, x: 6.83, y: 18.1827 }, + { l: 95, x: 6.92, y: 18.2215 }, + { l: 95, x: 7, y: 18.2611 }, + { l: 95, x: 7.08, y: 18.3014 }, + { l: 95, x: 7.17, y: 18.3427 }, + { l: 95, x: 7.25, y: 18.3851 }, + { l: 95, x: 7.33, y: 18.4282 }, + { l: 95, x: 7.42, y: 18.4724 }, + { l: 95, x: 7.5, y: 18.5171 }, + { l: 95, x: 7.58, y: 18.5625 }, + { l: 95, x: 7.67, y: 18.6089 }, + { l: 95, x: 7.75, y: 18.6563 }, + { l: 95, x: 7.83, y: 18.7039 }, + { l: 95, x: 7.92, y: 18.7529 }, + { l: 95, x: 8, y: 18.8023 }, + { l: 95, x: 8.08, y: 18.8525 }, + { l: 95, x: 8.17, y: 18.9038 }, + { l: 95, x: 8.25, y: 18.9556 }, + { l: 95, x: 8.33, y: 19.0081 }, + { l: 95, x: 8.42, y: 19.0611 }, + { l: 95, x: 8.5, y: 19.1152 }, + { l: 95, x: 8.58, y: 19.1698 }, + { l: 95, x: 8.67, y: 19.225 }, + { l: 95, x: 8.75, y: 19.2809 }, + { l: 95, x: 8.83, y: 19.3379 }, + { l: 95, x: 8.92, y: 19.3952 }, + { l: 95, x: 9, y: 19.4536 }, + { l: 95, x: 9.08, y: 19.5129 }, + { l: 95, x: 9.17, y: 19.573 }, + { l: 95, x: 9.25, y: 19.634 }, + { l: 95, x: 9.33, y: 19.6959 }, + { l: 95, x: 9.42, y: 19.7592 }, + { l: 95, x: 9.5, y: 19.8229 }, + { l: 95, x: 9.58, y: 19.8876 }, + { l: 95, x: 9.67, y: 19.9532 }, + { l: 95, x: 9.75, y: 20.0199 }, + { l: 95, x: 9.83, y: 20.0869 }, + { l: 95, x: 9.92, y: 20.1553 }, + { l: 95, x: 10, y: 20.2247 }, + { l: 95, x: 10.08, y: 20.2943 }, + { l: 95, x: 10.17, y: 20.365 }, + { l: 95, x: 10.25, y: 20.4365 }, + { l: 95, x: 10.33, y: 20.5089 }, + { l: 95, x: 10.42, y: 20.5816 }, + { l: 95, x: 10.5, y: 20.6557 }, + { l: 95, x: 10.58, y: 20.7302 }, + { l: 95, x: 10.67, y: 20.8052 }, + { l: 95, x: 10.75, y: 20.8814 }, + { l: 95, x: 10.83, y: 20.958 }, + { l: 95, x: 10.92, y: 21.0353 }, + { l: 95, x: 11, y: 21.1128 }, + { l: 95, x: 11.08, y: 21.1913 }, + { l: 95, x: 11.17, y: 21.2704 }, + { l: 95, x: 11.25, y: 21.3497 }, + { l: 95, x: 11.33, y: 21.4299 }, + { l: 95, x: 11.42, y: 21.5103 }, + { l: 95, x: 11.5, y: 21.5915 }, + { l: 95, x: 11.58, y: 21.6734 }, + { l: 95, x: 11.67, y: 21.7558 }, + { l: 95, x: 11.75, y: 21.8383 }, + { l: 95, x: 11.83, y: 21.9218 }, + { l: 95, x: 11.92, y: 22.0059 }, + { l: 95, x: 12, y: 22.0905 }, + { l: 95, x: 12.08, y: 22.1754 }, + { l: 95, x: 12.17, y: 22.2611 }, + { l: 95, x: 12.25, y: 22.347 }, + { l: 95, x: 12.33, y: 22.434 }, + { l: 95, x: 12.42, y: 22.5211 }, + { l: 95, x: 12.5, y: 22.6089 }, + { l: 95, x: 12.58, y: 22.6972 }, + { l: 95, x: 12.67, y: 22.7856 }, + { l: 95, x: 12.75, y: 22.8746 }, + { l: 95, x: 12.83, y: 22.9643 }, + { l: 95, x: 12.92, y: 23.0536 }, + { l: 95, x: 13, y: 23.1441 }, + { l: 95, x: 13.08, y: 23.2339 }, + { l: 95, x: 13.17, y: 23.3243 }, + { l: 95, x: 13.25, y: 23.4151 }, + { l: 95, x: 13.33, y: 23.5057 }, + { l: 95, x: 13.42, y: 23.5958 }, + { l: 95, x: 13.5, y: 23.6863 }, + { l: 95, x: 13.58, y: 23.7763 }, + { l: 95, x: 13.67, y: 23.8659 }, + { l: 95, x: 13.75, y: 23.9552 }, + { l: 95, x: 13.83, y: 24.0446 }, + { l: 95, x: 13.92, y: 24.1333 }, + { l: 95, x: 14, y: 24.2212 }, + { l: 95, x: 14.08, y: 24.3088 }, + { l: 95, x: 14.17, y: 24.3962 }, + { l: 95, x: 14.25, y: 24.4827 }, + { l: 95, x: 14.33, y: 24.5683 }, + { l: 95, x: 14.42, y: 24.6535 }, + { l: 95, x: 14.5, y: 24.7381 }, + { l: 95, x: 14.58, y: 24.8218 }, + { l: 95, x: 14.67, y: 24.9051 }, + { l: 95, x: 14.75, y: 24.9872 }, + { l: 95, x: 14.83, y: 25.0689 }, + { l: 95, x: 14.92, y: 25.1496 }, + { l: 95, x: 15, y: 25.2296 }, + { l: 95, x: 15.08, y: 25.309 }, + { l: 95, x: 15.17, y: 25.3873 }, + { l: 95, x: 15.25, y: 25.465 }, + { l: 95, x: 15.33, y: 25.542 }, + { l: 95, x: 15.42, y: 25.6179 }, + { l: 95, x: 15.5, y: 25.6931 }, + { l: 95, x: 15.58, y: 25.767 }, + { l: 95, x: 15.67, y: 25.8408 }, + { l: 95, x: 15.75, y: 25.9134 }, + { l: 95, x: 15.83, y: 25.9851 }, + { l: 95, x: 15.92, y: 26.0562 }, + { l: 95, x: 16, y: 26.126 }, + { l: 95, x: 16.08, y: 26.1949 }, + { l: 95, x: 16.17, y: 26.2631 }, + { l: 95, x: 16.25, y: 26.3305 }, + { l: 95, x: 16.33, y: 26.397 }, + { l: 95, x: 16.42, y: 26.4623 }, + { l: 95, x: 16.5, y: 26.5272 }, + { l: 95, x: 16.58, y: 26.5908 }, + { l: 95, x: 16.67, y: 26.6536 }, + { l: 95, x: 16.75, y: 26.7156 }, + { l: 95, x: 16.83, y: 26.7767 }, + { l: 95, x: 16.92, y: 26.8364 }, + { l: 95, x: 17, y: 26.896 }, + { l: 95, x: 17.08, y: 26.9547 }, + { l: 95, x: 17.17, y: 27.012 }, + { l: 95, x: 17.25, y: 27.0685 }, + { l: 95, x: 17.33, y: 27.1242 }, + { l: 95, x: 17.42, y: 27.1796 }, + { l: 95, x: 17.5, y: 27.2336 }, + { l: 95, x: 17.58, y: 27.2867 }, + { l: 95, x: 17.67, y: 27.3392 }, + { l: 95, x: 17.75, y: 27.3907 }, + { l: 95, x: 17.83, y: 27.4408 }, + { l: 95, x: 17.92, y: 27.4907 }, + { l: 95, x: 18, y: 27.5397 }, + { l: 95, x: 18.08, y: 27.5873 }, + { l: 95, x: 18.17, y: 27.6345 }, + { l: 95, x: 18.25, y: 27.6804 }, + { l: 95, x: 18.33, y: 27.7261 }, + { l: 95, x: 18.42, y: 27.7703 }, + { l: 95, x: 18.5, y: 27.8142 }, + { l: 95, x: 18.58, y: 27.8567 }, + { l: 95, x: 18.67, y: 27.8986 }, + { l: 95, x: 18.75, y: 27.9396 }, + { l: 95, x: 18.83, y: 27.9803 }, + { l: 95, x: 18.92, y: 28.0197 }, + { l: 95, x: 19, y: 28.0583 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 18.0525 }, + { l: 97, x: 5.17, y: 18.065 }, + { l: 97, x: 5.25, y: 18.0796 }, + { l: 97, x: 5.33, y: 18.0959 }, + { l: 97, x: 5.42, y: 18.1142 }, + { l: 97, x: 5.5, y: 18.134 }, + { l: 97, x: 5.58, y: 18.1559 }, + { l: 97, x: 5.67, y: 18.1796 }, + { l: 97, x: 5.75, y: 18.2048 }, + { l: 97, x: 5.83, y: 18.2319 }, + { l: 97, x: 5.92, y: 18.2606 }, + { l: 97, x: 6, y: 18.2909 }, + { l: 97, x: 6.08, y: 18.3226 }, + { l: 97, x: 6.17, y: 18.3559 }, + { l: 97, x: 6.25, y: 18.3901 }, + { l: 97, x: 6.33, y: 18.4261 }, + { l: 97, x: 6.42, y: 18.463 }, + { l: 97, x: 6.5, y: 18.5014 }, + { l: 97, x: 6.58, y: 18.5411 }, + { l: 97, x: 6.67, y: 18.5818 }, + { l: 97, x: 6.75, y: 18.6234 }, + { l: 97, x: 6.83, y: 18.6663 }, + { l: 97, x: 6.92, y: 18.7105 }, + { l: 97, x: 7, y: 18.7555 }, + { l: 97, x: 7.08, y: 18.8013 }, + { l: 97, x: 7.17, y: 18.8482 }, + { l: 97, x: 7.25, y: 18.8965 }, + { l: 97, x: 7.33, y: 18.9455 }, + { l: 97, x: 7.42, y: 18.9958 }, + { l: 97, x: 7.5, y: 19.0465 }, + { l: 97, x: 7.58, y: 19.0982 }, + { l: 97, x: 7.67, y: 19.1509 }, + { l: 97, x: 7.75, y: 19.2048 }, + { l: 97, x: 7.83, y: 19.259 }, + { l: 97, x: 7.92, y: 19.3148 }, + { l: 97, x: 8, y: 19.3709 }, + { l: 97, x: 8.08, y: 19.4281 }, + { l: 97, x: 8.17, y: 19.4864 }, + { l: 97, x: 8.25, y: 19.5455 }, + { l: 97, x: 8.33, y: 19.6053 }, + { l: 97, x: 8.42, y: 19.6656 }, + { l: 97, x: 8.5, y: 19.7272 }, + { l: 97, x: 8.58, y: 19.7894 }, + { l: 97, x: 8.67, y: 19.8522 }, + { l: 97, x: 8.75, y: 19.9158 }, + { l: 97, x: 8.83, y: 19.9807 }, + { l: 97, x: 8.92, y: 20.0459 }, + { l: 97, x: 9, y: 20.1124 }, + { l: 97, x: 9.08, y: 20.1798 }, + { l: 97, x: 9.17, y: 20.2481 }, + { l: 97, x: 9.25, y: 20.3173 }, + { l: 97, x: 9.33, y: 20.3876 }, + { l: 97, x: 9.42, y: 20.4593 }, + { l: 97, x: 9.5, y: 20.5314 }, + { l: 97, x: 9.58, y: 20.6046 }, + { l: 97, x: 9.67, y: 20.6788 }, + { l: 97, x: 9.75, y: 20.7541 }, + { l: 97, x: 9.83, y: 20.8296 }, + { l: 97, x: 9.92, y: 20.9068 }, + { l: 97, x: 10, y: 20.9849 }, + { l: 97, x: 10.08, y: 21.0631 }, + { l: 97, x: 10.17, y: 21.1424 }, + { l: 97, x: 10.25, y: 21.2227 }, + { l: 97, x: 10.33, y: 21.3038 }, + { l: 97, x: 10.42, y: 21.3851 }, + { l: 97, x: 10.5, y: 21.4681 }, + { l: 97, x: 10.58, y: 21.5512 }, + { l: 97, x: 10.67, y: 21.6348 }, + { l: 97, x: 10.75, y: 21.7197 }, + { l: 97, x: 10.83, y: 21.8049 }, + { l: 97, x: 10.92, y: 21.8908 }, + { l: 97, x: 11, y: 21.9768 }, + { l: 97, x: 11.08, y: 22.0636 }, + { l: 97, x: 11.17, y: 22.1512 }, + { l: 97, x: 11.25, y: 22.2387 }, + { l: 97, x: 11.33, y: 22.3272 }, + { l: 97, x: 11.42, y: 22.4157 }, + { l: 97, x: 11.5, y: 22.5049 }, + { l: 97, x: 11.58, y: 22.5949 }, + { l: 97, x: 11.67, y: 22.6851 }, + { l: 97, x: 11.75, y: 22.7754 }, + { l: 97, x: 11.83, y: 22.8664 }, + { l: 97, x: 11.92, y: 22.9582 }, + { l: 97, x: 12, y: 23.0501 }, + { l: 97, x: 12.08, y: 23.1423 }, + { l: 97, x: 12.17, y: 23.2352 }, + { l: 97, x: 12.25, y: 23.3281 }, + { l: 97, x: 12.33, y: 23.422 }, + { l: 97, x: 12.42, y: 23.5158 }, + { l: 97, x: 12.5, y: 23.6104 }, + { l: 97, x: 12.58, y: 23.7051 }, + { l: 97, x: 12.67, y: 23.7998 }, + { l: 97, x: 12.75, y: 23.895 }, + { l: 97, x: 12.83, y: 23.9909 }, + { l: 97, x: 12.92, y: 24.086 }, + { l: 97, x: 13, y: 24.1823 }, + { l: 97, x: 13.08, y: 24.2776 }, + { l: 97, x: 13.17, y: 24.3734 }, + { l: 97, x: 13.25, y: 24.4696 }, + { l: 97, x: 13.33, y: 24.5652 }, + { l: 97, x: 13.42, y: 24.6602 }, + { l: 97, x: 13.5, y: 24.7555 }, + { l: 97, x: 13.58, y: 24.8499 }, + { l: 97, x: 13.67, y: 24.9438 }, + { l: 97, x: 13.75, y: 25.0373 }, + { l: 97, x: 13.83, y: 25.1307 }, + { l: 97, x: 13.92, y: 25.2232 }, + { l: 97, x: 14, y: 25.3146 }, + { l: 97, x: 14.08, y: 25.4056 }, + { l: 97, x: 14.17, y: 25.4964 }, + { l: 97, x: 14.25, y: 25.5858 }, + { l: 97, x: 14.33, y: 25.6743 }, + { l: 97, x: 14.42, y: 25.7622 }, + { l: 97, x: 14.5, y: 25.8494 }, + { l: 97, x: 14.58, y: 25.9354 }, + { l: 97, x: 14.67, y: 26.0209 }, + { l: 97, x: 14.75, y: 26.105 }, + { l: 97, x: 14.83, y: 26.1886 }, + { l: 97, x: 14.92, y: 26.2709 }, + { l: 97, x: 15, y: 26.3525 }, + { l: 97, x: 15.08, y: 26.4334 }, + { l: 97, x: 15.17, y: 26.5129 }, + { l: 97, x: 15.25, y: 26.5917 }, + { l: 97, x: 15.33, y: 26.6699 }, + { l: 97, x: 15.42, y: 26.7466 }, + { l: 97, x: 15.5, y: 26.8226 }, + { l: 97, x: 15.58, y: 26.897 }, + { l: 97, x: 15.67, y: 26.9715 }, + { l: 97, x: 15.75, y: 27.0444 }, + { l: 97, x: 15.83, y: 27.1165 }, + { l: 97, x: 15.92, y: 27.1878 }, + { l: 97, x: 16, y: 27.2576 }, + { l: 97, x: 16.08, y: 27.3265 }, + { l: 97, x: 16.17, y: 27.3946 }, + { l: 97, x: 16.25, y: 27.4617 }, + { l: 97, x: 16.33, y: 27.5281 }, + { l: 97, x: 16.42, y: 27.5928 }, + { l: 97, x: 16.5, y: 27.6574 }, + { l: 97, x: 16.58, y: 27.7204 }, + { l: 97, x: 16.67, y: 27.7825 }, + { l: 97, x: 16.75, y: 27.8438 }, + { l: 97, x: 16.83, y: 27.9041 }, + { l: 97, x: 16.92, y: 27.9628 }, + { l: 97, x: 17, y: 28.0214 }, + { l: 97, x: 17.08, y: 28.0791 }, + { l: 97, x: 17.17, y: 28.1352 }, + { l: 97, x: 17.25, y: 28.1905 }, + { l: 97, x: 17.33, y: 28.2448 }, + { l: 97, x: 17.42, y: 28.299 }, + { l: 97, x: 17.5, y: 28.3516 }, + { l: 97, x: 17.58, y: 28.4031 }, + { l: 97, x: 17.67, y: 28.454 }, + { l: 97, x: 17.75, y: 28.504 }, + { l: 97, x: 17.83, y: 28.5522 }, + { l: 97, x: 17.92, y: 28.6004 }, + { l: 97, x: 18, y: 28.6476 }, + { l: 97, x: 18.08, y: 28.6932 }, + { l: 97, x: 18.17, y: 28.7385 }, + { l: 97, x: 18.25, y: 28.7823 }, + { l: 97, x: 18.33, y: 28.826 }, + { l: 97, x: 18.42, y: 28.868 }, + { l: 97, x: 18.5, y: 28.9098 }, + { l: 97, x: 18.58, y: 28.95 }, + { l: 97, x: 18.67, y: 28.9896 }, + { l: 97, x: 18.75, y: 29.0282 }, + { l: 97, x: 18.83, y: 29.0666 }, + { l: 97, x: 18.92, y: 29.1035 }, + { l: 97, x: 19, y: 29.1395 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 18.8454 }, + { l: 99, x: 5.17, y: 18.865 }, + { l: 99, x: 5.25, y: 18.8871 }, + { l: 99, x: 5.33, y: 18.9109 }, + { l: 99, x: 5.42, y: 18.9371 }, + { l: 99, x: 5.5, y: 18.9651 }, + { l: 99, x: 5.58, y: 18.9954 }, + { l: 99, x: 5.67, y: 19.0277 }, + { l: 99, x: 5.75, y: 19.0616 }, + { l: 99, x: 5.83, y: 19.0979 }, + { l: 99, x: 5.92, y: 19.1359 }, + { l: 99, x: 6, y: 19.1758 }, + { l: 99, x: 6.08, y: 19.2173 }, + { l: 99, x: 6.17, y: 19.2607 }, + { l: 99, x: 6.25, y: 19.3053 }, + { l: 99, x: 6.33, y: 19.3519 }, + { l: 99, x: 6.42, y: 19.3998 }, + { l: 99, x: 6.5, y: 19.4493 }, + { l: 99, x: 6.58, y: 19.5007 }, + { l: 99, x: 6.67, y: 19.5531 }, + { l: 99, x: 6.75, y: 19.6066 }, + { l: 99, x: 6.83, y: 19.6618 }, + { l: 99, x: 6.92, y: 19.7187 }, + { l: 99, x: 7, y: 19.7766 }, + { l: 99, x: 7.08, y: 19.8355 }, + { l: 99, x: 7.17, y: 19.8959 }, + { l: 99, x: 7.25, y: 19.958 }, + { l: 99, x: 7.33, y: 20.021 }, + { l: 99, x: 7.42, y: 20.0858 }, + { l: 99, x: 7.5, y: 20.1513 }, + { l: 99, x: 7.58, y: 20.2178 }, + { l: 99, x: 7.67, y: 20.2859 }, + { l: 99, x: 7.75, y: 20.3555 }, + { l: 99, x: 7.83, y: 20.4255 }, + { l: 99, x: 7.92, y: 20.4977 }, + { l: 99, x: 8, y: 20.5703 }, + { l: 99, x: 8.08, y: 20.6444 }, + { l: 99, x: 8.17, y: 20.7201 }, + { l: 99, x: 8.25, y: 20.7967 }, + { l: 99, x: 8.33, y: 20.8743 }, + { l: 99, x: 8.42, y: 20.9526 }, + { l: 99, x: 8.5, y: 21.0328 }, + { l: 99, x: 8.58, y: 21.1136 }, + { l: 99, x: 8.67, y: 21.1955 }, + { l: 99, x: 8.75, y: 21.2782 }, + { l: 99, x: 8.83, y: 21.3627 }, + { l: 99, x: 8.92, y: 21.4475 }, + { l: 99, x: 9, y: 21.534 }, + { l: 99, x: 9.08, y: 21.6217 }, + { l: 99, x: 9.17, y: 21.7105 }, + { l: 99, x: 9.25, y: 21.8004 }, + { l: 99, x: 9.33, y: 21.8916 }, + { l: 99, x: 9.42, y: 21.9847 }, + { l: 99, x: 9.5, y: 22.0781 }, + { l: 99, x: 9.58, y: 22.1727 }, + { l: 99, x: 9.67, y: 22.2685 }, + { l: 99, x: 9.75, y: 22.3656 }, + { l: 99, x: 9.83, y: 22.4627 }, + { l: 99, x: 9.92, y: 22.5618 }, + { l: 99, x: 10, y: 22.662 }, + { l: 99, x: 10.08, y: 22.7622 }, + { l: 99, x: 10.17, y: 22.8635 }, + { l: 99, x: 10.25, y: 22.966 }, + { l: 99, x: 10.33, y: 23.0692 }, + { l: 99, x: 10.42, y: 23.1724 }, + { l: 99, x: 10.5, y: 23.2777 }, + { l: 99, x: 10.58, y: 23.3828 }, + { l: 99, x: 10.67, y: 23.4882 }, + { l: 99, x: 10.75, y: 23.5951 }, + { l: 99, x: 10.83, y: 23.7021 }, + { l: 99, x: 10.92, y: 23.8096 }, + { l: 99, x: 11, y: 23.9169 }, + { l: 99, x: 11.08, y: 24.025 }, + { l: 99, x: 11.17, y: 24.1338 }, + { l: 99, x: 11.25, y: 24.242 }, + { l: 99, x: 11.33, y: 24.3512 }, + { l: 99, x: 11.42, y: 24.4599 }, + { l: 99, x: 11.5, y: 24.5692 }, + { l: 99, x: 11.58, y: 24.6791 }, + { l: 99, x: 11.67, y: 24.7888 }, + { l: 99, x: 11.75, y: 24.8979 }, + { l: 99, x: 11.83, y: 25.0078 }, + { l: 99, x: 11.92, y: 25.118 }, + { l: 99, x: 12, y: 25.228 }, + { l: 99, x: 12.08, y: 25.3376 }, + { l: 99, x: 12.17, y: 25.4478 }, + { l: 99, x: 12.25, y: 25.5574 }, + { l: 99, x: 12.33, y: 25.6678 }, + { l: 99, x: 12.42, y: 25.7774 }, + { l: 99, x: 12.5, y: 25.8875 }, + { l: 99, x: 12.58, y: 25.9973 }, + { l: 99, x: 12.67, y: 26.1064 }, + { l: 99, x: 12.75, y: 26.2158 }, + { l: 99, x: 12.83, y: 26.3256 }, + { l: 99, x: 12.92, y: 26.4335 }, + { l: 99, x: 13, y: 26.5428 }, + { l: 99, x: 13.08, y: 26.6501 }, + { l: 99, x: 13.17, y: 26.7575 }, + { l: 99, x: 13.25, y: 26.8651 }, + { l: 99, x: 13.33, y: 26.9714 }, + { l: 99, x: 13.42, y: 27.0762 }, + { l: 99, x: 13.5, y: 27.1811 }, + { l: 99, x: 13.58, y: 27.2845 }, + { l: 99, x: 13.67, y: 27.3865 }, + { l: 99, x: 13.75, y: 27.4878 }, + { l: 99, x: 13.83, y: 27.5888 }, + { l: 99, x: 13.92, y: 27.6881 }, + { l: 99, x: 14, y: 27.7854 }, + { l: 99, x: 14.08, y: 27.8821 }, + { l: 99, x: 14.17, y: 27.9783 }, + { l: 99, x: 14.25, y: 28.0723 }, + { l: 99, x: 14.33, y: 28.1647 }, + { l: 99, x: 14.42, y: 28.2563 }, + { l: 99, x: 14.5, y: 28.3468 }, + { l: 99, x: 14.58, y: 28.4355 }, + { l: 99, x: 14.67, y: 28.5234 }, + { l: 99, x: 14.75, y: 28.6091 }, + { l: 99, x: 14.83, y: 28.6944 }, + { l: 99, x: 14.92, y: 28.7775 }, + { l: 99, x: 15, y: 28.8596 }, + { l: 99, x: 15.08, y: 28.941 }, + { l: 99, x: 15.17, y: 29.0202 }, + { l: 99, x: 15.25, y: 29.0986 }, + { l: 99, x: 15.33, y: 29.1761 }, + { l: 99, x: 15.42, y: 29.2516 }, + { l: 99, x: 15.5, y: 29.3262 }, + { l: 99, x: 15.58, y: 29.3986 }, + { l: 99, x: 15.67, y: 29.4713 }, + { l: 99, x: 15.75, y: 29.5419 }, + { l: 99, x: 15.83, y: 29.6115 }, + { l: 99, x: 15.92, y: 29.6801 }, + { l: 99, x: 16, y: 29.7468 }, + { l: 99, x: 16.08, y: 29.8123 }, + { l: 99, x: 16.17, y: 29.8769 }, + { l: 99, x: 16.25, y: 29.9403 }, + { l: 99, x: 16.33, y: 30.0028 }, + { l: 99, x: 16.42, y: 30.0633 }, + { l: 99, x: 16.5, y: 30.1237 }, + { l: 99, x: 16.58, y: 30.1821 }, + { l: 99, x: 16.67, y: 30.2394 }, + { l: 99, x: 16.75, y: 30.2958 }, + { l: 99, x: 16.83, y: 30.3512 }, + { l: 99, x: 16.92, y: 30.4043 }, + { l: 99, x: 17, y: 30.4575 }, + { l: 99, x: 17.08, y: 30.5098 }, + { l: 99, x: 17.17, y: 30.56 }, + { l: 99, x: 17.25, y: 30.6092 }, + { l: 99, x: 17.33, y: 30.6573 }, + { l: 99, x: 17.42, y: 30.7057 }, + { l: 99, x: 17.5, y: 30.7519 }, + { l: 99, x: 17.58, y: 30.7969 }, + { l: 99, x: 17.67, y: 30.8412 }, + { l: 99, x: 17.75, y: 30.8845 }, + { l: 99, x: 17.83, y: 30.9255 }, + { l: 99, x: 17.92, y: 30.9667 }, + { l: 99, x: 18, y: 31.0069 }, + { l: 99, x: 18.08, y: 31.0451 }, + { l: 99, x: 18.17, y: 31.0831 }, + { l: 99, x: 18.25, y: 31.1192 }, + { l: 99, x: 18.33, y: 31.1554 }, + { l: 99, x: 18.42, y: 31.1896 }, + { l: 99, x: 18.5, y: 31.2239 }, + { l: 99, x: 18.58, y: 31.2561 }, + { l: 99, x: 18.67, y: 31.2877 }, + { l: 99, x: 18.75, y: 31.3181 }, + { l: 99, x: 18.83, y: 31.3486 }, + { l: 99, x: 18.92, y: 31.3773 }, + { l: 99, x: 19, y: 31.405 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_height_female_centile_data.ts b/src/chartdata/who_height_female_centile_data.ts new file mode 100644 index 0000000..39d47fe --- /dev/null +++ b/src/chartdata/who_height_female_centile_data.ts @@ -0,0 +1,2879 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoHeightFemaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + female: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 47.0854 }, + { l: 1, x: 0.0575, y: 47.9911 }, + { l: 1, x: 0.0767, y: 48.8521 }, + { l: 1, x: 0.0833, y: 49.1411 }, + { l: 1, x: 0.0958, y: 49.6684 }, + { l: 1, x: 0.115, y: 50.4412 }, + { l: 1, x: 0.1342, y: 51.1732 }, + { l: 1, x: 0.1533, y: 51.8675 }, + { l: 1, x: 0.1667, y: 52.3306 }, + { l: 1, x: 0.1725, y: 52.5274 }, + { l: 1, x: 0.1916, y: 53.1557 }, + { l: 1, x: 0.2108, y: 53.7573 }, + { l: 1, x: 0.23, y: 54.3314 }, + { l: 1, x: 0.2491, y: 54.8824 }, + { l: 1, x: 0.25, y: 54.9059 }, + { l: 1, x: 0.3333, y: 57.0547 }, + { l: 1, x: 0.4167, y: 58.8718 }, + { l: 1, x: 0.5, y: 60.4588 }, + { l: 1, x: 0.5833, y: 61.9011 }, + { l: 1, x: 0.6667, y: 63.2481 }, + { l: 1, x: 0.75, y: 64.5238 }, + { l: 1, x: 0.8333, y: 65.7415 }, + { l: 1, x: 0.9167, y: 66.9069 }, + { l: 1, x: 1, y: 68.0248 }, + { l: 1, x: 1.0833, y: 69.1003 }, + { l: 1, x: 1.1667, y: 70.1378 }, + { l: 1, x: 1.25, y: 71.1377 }, + { l: 1, x: 1.3333, y: 72.1048 }, + { l: 1, x: 1.4167, y: 73.0433 }, + { l: 1, x: 1.5, y: 73.9526 }, + { l: 1, x: 1.5833, y: 74.8365 }, + { l: 1, x: 1.6667, y: 75.6947 }, + { l: 1, x: 1.75, y: 76.5302 }, + { l: 1, x: 1.8333, y: 77.3455 }, + { l: 1, x: 1.9167, y: 78.1373 }, + { l: 1, x: 2, y: 78.9089 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 47.9331 }, + { l: 3, x: 0.0575, y: 48.8488 }, + { l: 3, x: 0.0767, y: 49.7194 }, + { l: 3, x: 0.0833, y: 50.0117 }, + { l: 3, x: 0.0958, y: 50.545 }, + { l: 3, x: 0.115, y: 51.3265 }, + { l: 3, x: 0.1342, y: 52.0671 }, + { l: 3, x: 0.1533, y: 52.7694 }, + { l: 3, x: 0.1667, y: 53.2377 }, + { l: 3, x: 0.1725, y: 53.4368 }, + { l: 3, x: 0.1916, y: 54.0726 }, + { l: 3, x: 0.2108, y: 54.6812 }, + { l: 3, x: 0.23, y: 55.2623 }, + { l: 3, x: 0.2491, y: 55.8198 }, + { l: 3, x: 0.25, y: 55.8437 }, + { l: 3, x: 0.3333, y: 58.019 }, + { l: 3, x: 0.4167, y: 59.8597 }, + { l: 3, x: 0.5, y: 61.4684 }, + { l: 3, x: 0.5833, y: 62.9326 }, + { l: 3, x: 0.6667, y: 64.3017 }, + { l: 3, x: 0.75, y: 65.6 }, + { l: 3, x: 0.8333, y: 66.8408 }, + { l: 3, x: 0.9167, y: 68.0299 }, + { l: 3, x: 1, y: 69.172 }, + { l: 3, x: 1.0833, y: 70.2718 }, + { l: 3, x: 1.1667, y: 71.3335 }, + { l: 3, x: 1.25, y: 72.358 }, + { l: 3, x: 1.3333, y: 73.3497 }, + { l: 3, x: 1.4167, y: 74.3125 }, + { l: 3, x: 1.5, y: 75.2463 }, + { l: 3, x: 1.5833, y: 76.1544 }, + { l: 3, x: 1.6667, y: 77.037 }, + { l: 3, x: 1.75, y: 77.8967 }, + { l: 3, x: 1.8333, y: 78.7355 }, + { l: 3, x: 1.9167, y: 79.5512 }, + { l: 3, x: 2, y: 80.3464 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 48.382 }, + { l: 5, x: 0.0575, y: 49.3029 }, + { l: 5, x: 0.0767, y: 50.1786 }, + { l: 5, x: 0.0833, y: 50.4727 }, + { l: 5, x: 0.0958, y: 51.0091 }, + { l: 5, x: 0.115, y: 51.7953 }, + { l: 5, x: 0.1342, y: 52.5404 }, + { l: 5, x: 0.1533, y: 53.2469 }, + { l: 5, x: 0.1667, y: 53.718 }, + { l: 5, x: 0.1725, y: 53.9183 }, + { l: 5, x: 0.1916, y: 54.5581 }, + { l: 5, x: 0.2108, y: 55.1704 }, + { l: 5, x: 0.23, y: 55.7552 }, + { l: 5, x: 0.2491, y: 56.3162 }, + { l: 5, x: 0.25, y: 56.3403 }, + { l: 5, x: 0.3333, y: 58.5296 }, + { l: 5, x: 0.4167, y: 60.3828 }, + { l: 5, x: 0.5, y: 62.0031 }, + { l: 5, x: 0.5833, y: 63.4788 }, + { l: 5, x: 0.6667, y: 64.8596 }, + { l: 5, x: 0.75, y: 66.1698 }, + { l: 5, x: 0.8333, y: 67.4229 }, + { l: 5, x: 0.9167, y: 68.6246 }, + { l: 5, x: 1, y: 69.7794 }, + { l: 5, x: 1.0833, y: 70.8922 }, + { l: 5, x: 1.1667, y: 71.9667 }, + { l: 5, x: 1.25, y: 73.0042 }, + { l: 5, x: 1.3333, y: 74.0089 }, + { l: 5, x: 1.4167, y: 74.9846 }, + { l: 5, x: 1.5, y: 75.9313 }, + { l: 5, x: 1.5833, y: 76.8523 }, + { l: 5, x: 1.6667, y: 77.7477 }, + { l: 5, x: 1.75, y: 78.6202 }, + { l: 5, x: 1.8333, y: 79.4716 }, + { l: 5, x: 1.9167, y: 80.2999 }, + { l: 5, x: 2, y: 81.1076 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 49.0733 }, + { l: 10, x: 0.0575, y: 50.0023 }, + { l: 10, x: 0.0767, y: 50.8859 }, + { l: 10, x: 0.0833, y: 51.1827 }, + { l: 10, x: 0.0958, y: 51.7239 }, + { l: 10, x: 0.115, y: 52.5173 }, + { l: 10, x: 0.1342, y: 53.2693 }, + { l: 10, x: 0.1533, y: 53.9823 }, + { l: 10, x: 0.1667, y: 54.4578 }, + { l: 10, x: 0.1725, y: 54.6599 }, + { l: 10, x: 0.1916, y: 55.3059 }, + { l: 10, x: 0.2108, y: 55.9238 }, + { l: 10, x: 0.23, y: 56.5143 }, + { l: 10, x: 0.2491, y: 57.0806 }, + { l: 10, x: 0.25, y: 57.1051 }, + { l: 10, x: 0.3333, y: 59.3159 }, + { l: 10, x: 0.4167, y: 61.1883 }, + { l: 10, x: 0.5, y: 62.8265 }, + { l: 10, x: 0.5833, y: 64.3199 }, + { l: 10, x: 0.6667, y: 65.7188 }, + { l: 10, x: 0.75, y: 67.0475 }, + { l: 10, x: 0.8333, y: 68.3194 }, + { l: 10, x: 0.9167, y: 69.5404 }, + { l: 10, x: 1, y: 70.7149 }, + { l: 10, x: 1.0833, y: 71.8475 }, + { l: 10, x: 1.1667, y: 72.9418 }, + { l: 10, x: 1.25, y: 73.9993 }, + { l: 10, x: 1.3333, y: 75.0242 }, + { l: 10, x: 1.4167, y: 76.0197 }, + { l: 10, x: 1.5, y: 76.9863 }, + { l: 10, x: 1.5833, y: 77.927 }, + { l: 10, x: 1.6667, y: 78.8423 }, + { l: 10, x: 1.75, y: 79.7345 }, + { l: 10, x: 1.8333, y: 80.6052 }, + { l: 10, x: 1.9167, y: 81.4528 }, + { l: 10, x: 2, y: 82.2799 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 49.5399 }, + { l: 15, x: 0.0575, y: 50.4743 }, + { l: 15, x: 0.0767, y: 51.3632 }, + { l: 15, x: 0.0833, y: 51.6619 }, + { l: 15, x: 0.0958, y: 52.2063 }, + { l: 15, x: 0.115, y: 53.0046 }, + { l: 15, x: 0.1342, y: 53.7612 }, + { l: 15, x: 0.1533, y: 54.4787 }, + { l: 15, x: 0.1667, y: 54.957 }, + { l: 15, x: 0.1725, y: 55.1605 }, + { l: 15, x: 0.1916, y: 55.8105 }, + { l: 15, x: 0.2108, y: 56.4323 }, + { l: 15, x: 0.23, y: 57.0267 }, + { l: 15, x: 0.2491, y: 57.5965 }, + { l: 15, x: 0.25, y: 57.6212 }, + { l: 15, x: 0.3333, y: 59.8467 }, + { l: 15, x: 0.4167, y: 61.732 }, + { l: 15, x: 0.5, y: 63.3822 }, + { l: 15, x: 0.5833, y: 64.8877 }, + { l: 15, x: 0.6667, y: 66.2987 }, + { l: 15, x: 0.75, y: 67.6398 }, + { l: 15, x: 0.8333, y: 68.9244 }, + { l: 15, x: 0.9167, y: 70.1585 }, + { l: 15, x: 1, y: 71.3463 }, + { l: 15, x: 1.0833, y: 72.4923 }, + { l: 15, x: 1.1667, y: 73.5999 }, + { l: 15, x: 1.25, y: 74.671 }, + { l: 15, x: 1.3333, y: 75.7094 }, + { l: 15, x: 1.4167, y: 76.7183 }, + { l: 15, x: 1.5, y: 77.6983 }, + { l: 15, x: 1.5833, y: 78.6523 }, + { l: 15, x: 1.6667, y: 79.581 }, + { l: 15, x: 1.75, y: 80.4866 }, + { l: 15, x: 1.8333, y: 81.3702 }, + { l: 15, x: 1.9167, y: 82.231 }, + { l: 15, x: 2, y: 83.0711 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 51.512 }, + { l: 50, x: 0.0575, y: 52.4695 }, + { l: 50, x: 0.0767, y: 53.3809 }, + { l: 50, x: 0.0833, y: 53.6872 }, + { l: 50, x: 0.0958, y: 54.2454 }, + { l: 50, x: 0.115, y: 55.0642 }, + { l: 50, x: 0.1342, y: 55.8406 }, + { l: 50, x: 0.1533, y: 56.5767 }, + { l: 50, x: 0.1667, y: 57.0673 }, + { l: 50, x: 0.1725, y: 57.2761 }, + { l: 50, x: 0.1916, y: 57.9436 }, + { l: 50, x: 0.2108, y: 58.5816 }, + { l: 50, x: 0.23, y: 59.1922 }, + { l: 50, x: 0.2491, y: 59.7773 }, + { l: 50, x: 0.25, y: 59.8029 }, + { l: 50, x: 0.3333, y: 62.0899 }, + { l: 50, x: 0.4167, y: 64.0301 }, + { l: 50, x: 0.5, y: 65.7311 }, + { l: 50, x: 0.5833, y: 67.2873 }, + { l: 50, x: 0.6667, y: 68.7498 }, + { l: 50, x: 0.75, y: 70.1435 }, + { l: 50, x: 0.8333, y: 71.4818 }, + { l: 50, x: 0.9167, y: 72.771 }, + { l: 50, x: 1, y: 74.015 }, + { l: 50, x: 1.0833, y: 75.2176 }, + { l: 50, x: 1.1667, y: 76.3817 }, + { l: 50, x: 1.25, y: 77.5099 }, + { l: 50, x: 1.3333, y: 78.6055 }, + { l: 50, x: 1.4167, y: 79.671 }, + { l: 50, x: 1.5, y: 80.7079 }, + { l: 50, x: 1.5833, y: 81.7182 }, + { l: 50, x: 1.6667, y: 82.7036 }, + { l: 50, x: 1.75, y: 83.6654 }, + { l: 50, x: 1.8333, y: 84.604 }, + { l: 50, x: 1.9167, y: 85.5202 }, + { l: 50, x: 2, y: 86.4153 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 53.4841 }, + { l: 85, x: 0.0575, y: 54.4647 }, + { l: 85, x: 0.0767, y: 55.3986 }, + { l: 85, x: 0.0833, y: 55.7125 }, + { l: 85, x: 0.0958, y: 56.2845 }, + { l: 85, x: 0.115, y: 57.1238 }, + { l: 85, x: 0.1342, y: 57.92 }, + { l: 85, x: 0.1533, y: 58.6747 }, + { l: 85, x: 0.1667, y: 59.1776 }, + { l: 85, x: 0.1725, y: 59.3917 }, + { l: 85, x: 0.1916, y: 60.0767 }, + { l: 85, x: 0.2108, y: 60.7309 }, + { l: 85, x: 0.23, y: 61.3577 }, + { l: 85, x: 0.2491, y: 61.9581 }, + { l: 85, x: 0.25, y: 61.9846 }, + { l: 85, x: 0.3333, y: 64.3331 }, + { l: 85, x: 0.4167, y: 66.3282 }, + { l: 85, x: 0.5, y: 68.08 }, + { l: 85, x: 0.5833, y: 69.6869 }, + { l: 85, x: 0.6667, y: 71.2009 }, + { l: 85, x: 0.75, y: 72.6472 }, + { l: 85, x: 0.8333, y: 74.0392 }, + { l: 85, x: 0.9167, y: 75.3835 }, + { l: 85, x: 1, y: 76.6837 }, + { l: 85, x: 1.0833, y: 77.9429 }, + { l: 85, x: 1.1667, y: 79.1635 }, + { l: 85, x: 1.25, y: 80.3488 }, + { l: 85, x: 1.3333, y: 81.5016 }, + { l: 85, x: 1.4167, y: 82.6237 }, + { l: 85, x: 1.5, y: 83.7175 }, + { l: 85, x: 1.5833, y: 84.7841 }, + { l: 85, x: 1.6667, y: 85.8262 }, + { l: 85, x: 1.75, y: 86.8442 }, + { l: 85, x: 1.8333, y: 87.8378 }, + { l: 85, x: 1.9167, y: 88.8094 }, + { l: 85, x: 2, y: 89.7595 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 53.9507 }, + { l: 90, x: 0.0575, y: 54.9367 }, + { l: 90, x: 0.0767, y: 55.8759 }, + { l: 90, x: 0.0833, y: 56.1917 }, + { l: 90, x: 0.0958, y: 56.7669 }, + { l: 90, x: 0.115, y: 57.6111 }, + { l: 90, x: 0.1342, y: 58.4119 }, + { l: 90, x: 0.1533, y: 59.1711 }, + { l: 90, x: 0.1667, y: 59.6768 }, + { l: 90, x: 0.1725, y: 59.8923 }, + { l: 90, x: 0.1916, y: 60.5813 }, + { l: 90, x: 0.2108, y: 61.2394 }, + { l: 90, x: 0.23, y: 61.8701 }, + { l: 90, x: 0.2491, y: 62.474 }, + { l: 90, x: 0.25, y: 62.5007 }, + { l: 90, x: 0.3333, y: 64.8639 }, + { l: 90, x: 0.4167, y: 66.8719 }, + { l: 90, x: 0.5, y: 68.6357 }, + { l: 90, x: 0.5833, y: 70.2547 }, + { l: 90, x: 0.6667, y: 71.7808 }, + { l: 90, x: 0.75, y: 73.2395 }, + { l: 90, x: 0.8333, y: 74.6442 }, + { l: 90, x: 0.9167, y: 76.0016 }, + { l: 90, x: 1, y: 77.3151 }, + { l: 90, x: 1.0833, y: 78.5877 }, + { l: 90, x: 1.1667, y: 79.8216 }, + { l: 90, x: 1.25, y: 81.0205 }, + { l: 90, x: 1.3333, y: 82.1868 }, + { l: 90, x: 1.4167, y: 83.3223 }, + { l: 90, x: 1.5, y: 84.4295 }, + { l: 90, x: 1.5833, y: 85.5094 }, + { l: 90, x: 1.6667, y: 86.5649 }, + { l: 90, x: 1.75, y: 87.5963 }, + { l: 90, x: 1.8333, y: 88.6028 }, + { l: 90, x: 1.9167, y: 89.5876 }, + { l: 90, x: 2, y: 90.5507 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 54.642 }, + { l: 95, x: 0.0575, y: 55.6361 }, + { l: 95, x: 0.0767, y: 56.5832 }, + { l: 95, x: 0.0833, y: 56.9017 }, + { l: 95, x: 0.0958, y: 57.4817 }, + { l: 95, x: 0.115, y: 58.3331 }, + { l: 95, x: 0.1342, y: 59.1408 }, + { l: 95, x: 0.1533, y: 59.9065 }, + { l: 95, x: 0.1667, y: 60.4166 }, + { l: 95, x: 0.1725, y: 60.6339 }, + { l: 95, x: 0.1916, y: 61.3291 }, + { l: 95, x: 0.2108, y: 61.9928 }, + { l: 95, x: 0.23, y: 62.6292 }, + { l: 95, x: 0.2491, y: 63.2384 }, + { l: 95, x: 0.25, y: 63.2655 }, + { l: 95, x: 0.3333, y: 65.6502 }, + { l: 95, x: 0.4167, y: 67.6774 }, + { l: 95, x: 0.5, y: 69.4591 }, + { l: 95, x: 0.5833, y: 71.0958 }, + { l: 95, x: 0.6667, y: 72.64 }, + { l: 95, x: 0.75, y: 74.1172 }, + { l: 95, x: 0.8333, y: 75.5407 }, + { l: 95, x: 0.9167, y: 76.9174 }, + { l: 95, x: 1, y: 78.2506 }, + { l: 95, x: 1.0833, y: 79.543 }, + { l: 95, x: 1.1667, y: 80.7967 }, + { l: 95, x: 1.25, y: 82.0156 }, + { l: 95, x: 1.3333, y: 83.2021 }, + { l: 95, x: 1.4167, y: 84.3574 }, + { l: 95, x: 1.5, y: 85.4845 }, + { l: 95, x: 1.5833, y: 86.5841 }, + { l: 95, x: 1.6667, y: 87.6595 }, + { l: 95, x: 1.75, y: 88.7106 }, + { l: 95, x: 1.8333, y: 89.7364 }, + { l: 95, x: 1.9167, y: 90.7405 }, + { l: 95, x: 2, y: 91.723 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 55.0909 }, + { l: 97, x: 0.0575, y: 56.0902 }, + { l: 97, x: 0.0767, y: 57.0424 }, + { l: 97, x: 0.0833, y: 57.3627 }, + { l: 97, x: 0.0958, y: 57.9458 }, + { l: 97, x: 0.115, y: 58.8019 }, + { l: 97, x: 0.1342, y: 59.6141 }, + { l: 97, x: 0.1533, y: 60.384 }, + { l: 97, x: 0.1667, y: 60.8969 }, + { l: 97, x: 0.1725, y: 61.1154 }, + { l: 97, x: 0.1916, y: 61.8146 }, + { l: 97, x: 0.2108, y: 62.482 }, + { l: 97, x: 0.23, y: 63.1221 }, + { l: 97, x: 0.2491, y: 63.7348 }, + { l: 97, x: 0.25, y: 63.7621 }, + { l: 97, x: 0.3333, y: 66.1608 }, + { l: 97, x: 0.4167, y: 68.2005 }, + { l: 97, x: 0.5, y: 69.9938 }, + { l: 97, x: 0.5833, y: 71.642 }, + { l: 97, x: 0.6667, y: 73.1979 }, + { l: 97, x: 0.75, y: 74.687 }, + { l: 97, x: 0.8333, y: 76.1228 }, + { l: 97, x: 0.9167, y: 77.5121 }, + { l: 97, x: 1, y: 78.858 }, + { l: 97, x: 1.0833, y: 80.1634 }, + { l: 97, x: 1.1667, y: 81.4299 }, + { l: 97, x: 1.25, y: 82.6618 }, + { l: 97, x: 1.3333, y: 83.8613 }, + { l: 97, x: 1.4167, y: 85.0295 }, + { l: 97, x: 1.5, y: 86.1695 }, + { l: 97, x: 1.5833, y: 87.282 }, + { l: 97, x: 1.6667, y: 88.3702 }, + { l: 97, x: 1.75, y: 89.4341 }, + { l: 97, x: 1.8333, y: 90.4725 }, + { l: 97, x: 1.9167, y: 91.4892 }, + { l: 97, x: 2, y: 92.4842 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 55.9386 }, + { l: 99, x: 0.0575, y: 56.9479 }, + { l: 99, x: 0.0767, y: 57.9097 }, + { l: 99, x: 0.0833, y: 58.2333 }, + { l: 99, x: 0.0958, y: 58.8224 }, + { l: 99, x: 0.115, y: 59.6872 }, + { l: 99, x: 0.1342, y: 60.508 }, + { l: 99, x: 0.1533, y: 61.2859 }, + { l: 99, x: 0.1667, y: 61.804 }, + { l: 99, x: 0.1725, y: 62.0248 }, + { l: 99, x: 0.1916, y: 62.7315 }, + { l: 99, x: 0.2108, y: 63.4059 }, + { l: 99, x: 0.23, y: 64.053 }, + { l: 99, x: 0.2491, y: 64.6722 }, + { l: 99, x: 0.25, y: 64.6999 }, + { l: 99, x: 0.3333, y: 67.1251 }, + { l: 99, x: 0.4167, y: 69.1884 }, + { l: 99, x: 0.5, y: 71.0034 }, + { l: 99, x: 0.5833, y: 72.6735 }, + { l: 99, x: 0.6667, y: 74.2515 }, + { l: 99, x: 0.75, y: 75.7632 }, + { l: 99, x: 0.8333, y: 77.2221 }, + { l: 99, x: 0.9167, y: 78.6351 }, + { l: 99, x: 1, y: 80.0052 }, + { l: 99, x: 1.0833, y: 81.3349 }, + { l: 99, x: 1.1667, y: 82.6256 }, + { l: 99, x: 1.25, y: 83.8821 }, + { l: 99, x: 1.3333, y: 85.1062 }, + { l: 99, x: 1.4167, y: 86.2987 }, + { l: 99, x: 1.5, y: 87.4632 }, + { l: 99, x: 1.5833, y: 88.5999 }, + { l: 99, x: 1.6667, y: 89.7125 }, + { l: 99, x: 1.75, y: 90.8006 }, + { l: 99, x: 1.8333, y: 91.8625 }, + { l: 99, x: 1.9167, y: 92.9031 }, + { l: 99, x: 2, y: 93.9217 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + female: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 78.2099 }, + { l: 1, x: 2.0833, y: 78.9641 }, + { l: 1, x: 2.1667, y: 79.6997 }, + { l: 1, x: 2.25, y: 80.4172 }, + { l: 1, x: 2.3333, y: 81.1183 }, + { l: 1, x: 2.4167, y: 81.8015 }, + { l: 1, x: 2.5, y: 82.4675 }, + { l: 1, x: 2.5833, y: 83.1191 }, + { l: 1, x: 2.6667, y: 83.7558 }, + { l: 1, x: 2.75, y: 84.3809 }, + { l: 1, x: 2.8333, y: 84.9938 }, + { l: 1, x: 2.9167, y: 85.5977 }, + { l: 1, x: 3, y: 86.1935 }, + { l: 1, x: 3.0833, y: 86.7777 }, + { l: 1, x: 3.1667, y: 87.3548 }, + { l: 1, x: 3.25, y: 87.9255 }, + { l: 1, x: 3.3333, y: 88.4875 }, + { l: 1, x: 3.4167, y: 89.0413 }, + { l: 1, x: 3.5, y: 89.5866 }, + { l: 1, x: 3.5833, y: 90.1259 }, + { l: 1, x: 3.6667, y: 90.6571 }, + { l: 1, x: 3.75, y: 91.1805 }, + { l: 1, x: 3.8333, y: 91.6984 }, + { l: 1, x: 3.9167, y: 92.2067 }, + { l: 1, x: 4, y: 92.7106 }, + { l: 1, x: 3.0833, y: 86.7777 }, + { l: 1, x: 4.1667, y: 93.702 }, + { l: 1, x: 4.25, y: 94.1904 }, + { l: 1, x: 4.3333, y: 94.6732 }, + { l: 1, x: 4.4167, y: 95.1508 }, + { l: 1, x: 4.5, y: 95.6232 }, + { l: 1, x: 4.5833, y: 96.0905 }, + { l: 1, x: 4.6667, y: 96.5526 }, + { l: 1, x: 4.75, y: 97.012 }, + { l: 1, x: 4.8333, y: 97.4664 }, + { l: 1, x: 4.9167, y: 97.9158 }, + { l: 1, x: 5.0, y: 98.3579 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 79.6472 }, + { l: 3, x: 2.0833, y: 80.4245 }, + { l: 3, x: 2.1667, y: 81.1832 }, + { l: 3, x: 2.25, y: 81.9236 }, + { l: 3, x: 2.3333, y: 82.6469 }, + { l: 3, x: 2.4167, y: 83.3522 }, + { l: 3, x: 2.5, y: 84.0402 }, + { l: 3, x: 2.5833, y: 84.7132 }, + { l: 3, x: 2.6667, y: 85.3711 }, + { l: 3, x: 2.75, y: 86.0169 }, + { l: 3, x: 2.8333, y: 86.6504 }, + { l: 3, x: 2.9167, y: 87.2744 }, + { l: 3, x: 3, y: 87.8899 }, + { l: 3, x: 3.0833, y: 88.494 }, + { l: 3, x: 3.1667, y: 89.0906 }, + { l: 3, x: 3.25, y: 89.6803 }, + { l: 3, x: 3.3333, y: 90.2612 }, + { l: 3, x: 3.4167, y: 90.8338 }, + { l: 3, x: 3.5, y: 91.3979 }, + { l: 3, x: 3.5833, y: 91.9554 }, + { l: 3, x: 3.6667, y: 92.5049 }, + { l: 3, x: 3.75, y: 93.0464 }, + { l: 3, x: 3.8333, y: 93.5819 }, + { l: 3, x: 3.9167, y: 94.1083 }, + { l: 3, x: 4, y: 94.6296 }, + { l: 3, x: 3.0833, y: 88.494 }, + { l: 3, x: 4.1667, y: 95.6554 }, + { l: 3, x: 4.25, y: 96.1606 }, + { l: 3, x: 4.3333, y: 96.6603 }, + { l: 3, x: 4.4167, y: 97.1547 }, + { l: 3, x: 4.5, y: 97.6439 }, + { l: 3, x: 4.5833, y: 98.1279 }, + { l: 3, x: 4.6667, y: 98.6067 }, + { l: 3, x: 4.75, y: 99.0823 }, + { l: 3, x: 4.8333, y: 99.5528 }, + { l: 3, x: 4.9167, y: 100.0184 }, + { l: 3, x: 5.0, y: 100.477 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 80.4083 }, + { l: 5, x: 2.0833, y: 81.1979 }, + { l: 5, x: 2.1667, y: 81.9688 }, + { l: 5, x: 2.25, y: 82.7212 }, + { l: 5, x: 2.3333, y: 83.4563 }, + { l: 5, x: 2.4167, y: 84.1734 }, + { l: 5, x: 2.5, y: 84.8729 }, + { l: 5, x: 2.5833, y: 85.5573 }, + { l: 5, x: 2.6667, y: 86.2264 }, + { l: 5, x: 2.75, y: 86.8832 }, + { l: 5, x: 2.8333, y: 87.5276 }, + { l: 5, x: 2.9167, y: 88.1623 }, + { l: 5, x: 3, y: 88.7881 }, + { l: 5, x: 3.0833, y: 89.4028 }, + { l: 5, x: 3.1667, y: 90.0097 }, + { l: 5, x: 3.25, y: 90.6094 }, + { l: 5, x: 3.3333, y: 91.2004 }, + { l: 5, x: 3.4167, y: 91.783 }, + { l: 5, x: 3.5, y: 92.357 }, + { l: 5, x: 3.5833, y: 92.9242 }, + { l: 5, x: 3.6667, y: 93.4833 }, + { l: 5, x: 3.75, y: 94.0344 }, + { l: 5, x: 3.8333, y: 94.5793 }, + { l: 5, x: 3.9167, y: 95.1151 }, + { l: 5, x: 4, y: 95.6458 }, + { l: 5, x: 3.0833, y: 89.4028 }, + { l: 5, x: 4.1667, y: 96.6898 }, + { l: 5, x: 4.25, y: 97.2039 }, + { l: 5, x: 4.3333, y: 97.7125 }, + { l: 5, x: 4.4167, y: 98.2158 }, + { l: 5, x: 4.5, y: 98.7139 }, + { l: 5, x: 4.5833, y: 99.2068 }, + { l: 5, x: 4.6667, y: 99.6944 }, + { l: 5, x: 4.75, y: 100.1786 }, + { l: 5, x: 4.8333, y: 100.6576 }, + { l: 5, x: 4.9167, y: 101.1317 }, + { l: 5, x: 5.0, y: 101.5991 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 81.5804 }, + { l: 10, x: 2.0833, y: 82.3889 }, + { l: 10, x: 2.1667, y: 83.1785 }, + { l: 10, x: 2.25, y: 83.9496 }, + { l: 10, x: 2.3333, y: 84.7029 }, + { l: 10, x: 2.4167, y: 85.438 }, + { l: 10, x: 2.5, y: 86.1554 }, + { l: 10, x: 2.5833, y: 86.8572 }, + { l: 10, x: 2.6667, y: 87.5437 }, + { l: 10, x: 2.75, y: 88.2174 }, + { l: 10, x: 2.8333, y: 88.8786 }, + { l: 10, x: 2.9167, y: 89.5297 }, + { l: 10, x: 3, y: 90.1715 }, + { l: 10, x: 3.0833, y: 90.8024 }, + { l: 10, x: 3.1667, y: 91.4252 }, + { l: 10, x: 3.25, y: 92.0404 }, + { l: 10, x: 3.3333, y: 92.6468 }, + { l: 10, x: 3.4167, y: 93.2448 }, + { l: 10, x: 3.5, y: 93.8341 }, + { l: 10, x: 3.5833, y: 94.4162 }, + { l: 10, x: 3.6667, y: 94.9902 }, + { l: 10, x: 3.75, y: 95.556 }, + { l: 10, x: 3.8333, y: 96.1153 }, + { l: 10, x: 3.9167, y: 96.6658 }, + { l: 10, x: 4, y: 97.2107 }, + { l: 10, x: 3.0833, y: 90.8024 }, + { l: 10, x: 4.1667, y: 98.2827 }, + { l: 10, x: 4.25, y: 98.8106 }, + { l: 10, x: 4.3333, y: 99.333 }, + { l: 10, x: 4.4167, y: 99.85 }, + { l: 10, x: 4.5, y: 100.3617 }, + { l: 10, x: 4.5833, y: 100.8683 }, + { l: 10, x: 4.6667, y: 101.3695 }, + { l: 10, x: 4.75, y: 101.8669 }, + { l: 10, x: 4.8333, y: 102.3591 }, + { l: 10, x: 4.9167, y: 102.8463 }, + { l: 10, x: 5.0, y: 103.3272 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 82.3715 }, + { l: 15, x: 2.0833, y: 83.1928 }, + { l: 15, x: 2.1667, y: 83.995 }, + { l: 15, x: 2.25, y: 84.7787 }, + { l: 15, x: 2.3333, y: 85.5442 }, + { l: 15, x: 2.4167, y: 86.2915 }, + { l: 15, x: 2.5, y: 87.021 }, + { l: 15, x: 2.5833, y: 87.7346 }, + { l: 15, x: 2.6667, y: 88.4328 }, + { l: 15, x: 2.75, y: 89.1179 }, + { l: 15, x: 2.8333, y: 89.7904 }, + { l: 15, x: 2.9167, y: 90.4525 }, + { l: 15, x: 3, y: 91.1051 }, + { l: 15, x: 3.0833, y: 91.7471 }, + { l: 15, x: 3.1667, y: 92.3806 }, + { l: 15, x: 3.25, y: 93.0062 }, + { l: 15, x: 3.3333, y: 93.6231 }, + { l: 15, x: 3.4167, y: 94.2314 }, + { l: 15, x: 3.5, y: 94.831 }, + { l: 15, x: 3.5833, y: 95.4232 }, + { l: 15, x: 3.6667, y: 96.0072 }, + { l: 15, x: 3.75, y: 96.583 }, + { l: 15, x: 3.8333, y: 97.1519 }, + { l: 15, x: 3.9167, y: 97.7124 }, + { l: 15, x: 4, y: 98.2669 }, + { l: 15, x: 3.0833, y: 91.7471 }, + { l: 15, x: 4.1667, y: 99.3578 }, + { l: 15, x: 4.25, y: 99.895 }, + { l: 15, x: 4.3333, y: 100.4266 }, + { l: 15, x: 4.4167, y: 100.9529 }, + { l: 15, x: 4.5, y: 101.4739 }, + { l: 15, x: 4.5833, y: 101.9897 }, + { l: 15, x: 4.6667, y: 102.5001 }, + { l: 15, x: 4.75, y: 103.0064 }, + { l: 15, x: 4.8333, y: 103.5074 }, + { l: 15, x: 4.9167, y: 104.0035 }, + { l: 15, x: 5.0, y: 104.4935 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 85.7153 }, + { l: 50, x: 2.0833, y: 86.5904 }, + { l: 50, x: 2.1667, y: 87.4462 }, + { l: 50, x: 2.25, y: 88.283 }, + { l: 50, x: 2.3333, y: 89.1004 }, + { l: 50, x: 2.4167, y: 89.8991 }, + { l: 50, x: 2.5, y: 90.6797 }, + { l: 50, x: 2.5833, y: 91.443 }, + { l: 50, x: 2.6667, y: 92.1906 }, + { l: 50, x: 2.75, y: 92.9239 }, + { l: 50, x: 2.8333, y: 93.6444 }, + { l: 50, x: 2.9167, y: 94.3533 }, + { l: 50, x: 3, y: 95.0515 }, + { l: 50, x: 3.0833, y: 95.7399 }, + { l: 50, x: 3.1667, y: 96.4187 }, + { l: 50, x: 3.25, y: 97.0885 }, + { l: 50, x: 3.3333, y: 97.7493 }, + { l: 50, x: 3.4167, y: 98.4015 }, + { l: 50, x: 3.5, y: 99.0448 }, + { l: 50, x: 3.5833, y: 99.6795 }, + { l: 50, x: 3.6667, y: 100.3058 }, + { l: 50, x: 3.75, y: 100.9238 }, + { l: 50, x: 3.8333, y: 101.5337 }, + { l: 50, x: 3.9167, y: 102.136 }, + { l: 50, x: 4, y: 102.7312 }, + { l: 50, x: 3.0833, y: 95.7399 }, + { l: 50, x: 4.1667, y: 103.9021 }, + { l: 50, x: 4.25, y: 104.4786 }, + { l: 50, x: 4.3333, y: 105.0494 }, + { l: 50, x: 4.4167, y: 105.6148 }, + { l: 50, x: 4.5, y: 106.1748 }, + { l: 50, x: 4.5833, y: 106.7295 }, + { l: 50, x: 4.6667, y: 107.2788 }, + { l: 50, x: 4.75, y: 107.8227 }, + { l: 50, x: 4.8333, y: 108.3613 }, + { l: 50, x: 4.9167, y: 108.8948 }, + { l: 50, x: 5.0, y: 109.4233 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 89.0591 }, + { l: 85, x: 2.0833, y: 89.988 }, + { l: 85, x: 2.1667, y: 90.8974 }, + { l: 85, x: 2.25, y: 91.7873 }, + { l: 85, x: 2.3333, y: 92.6566 }, + { l: 85, x: 2.4167, y: 93.5067 }, + { l: 85, x: 2.5, y: 94.3384 }, + { l: 85, x: 2.5833, y: 95.1514 }, + { l: 85, x: 2.6667, y: 95.9484 }, + { l: 85, x: 2.75, y: 96.7299 }, + { l: 85, x: 2.8333, y: 97.4984 }, + { l: 85, x: 2.9167, y: 98.2541 }, + { l: 85, x: 3, y: 98.9979 }, + { l: 85, x: 3.0833, y: 99.7327 }, + { l: 85, x: 3.1667, y: 100.4568 }, + { l: 85, x: 3.25, y: 101.1708 }, + { l: 85, x: 3.3333, y: 101.8755 }, + { l: 85, x: 3.4167, y: 102.5716 }, + { l: 85, x: 3.5, y: 103.2586 }, + { l: 85, x: 3.5833, y: 103.9358 }, + { l: 85, x: 3.6667, y: 104.6044 }, + { l: 85, x: 3.75, y: 105.2646 }, + { l: 85, x: 3.8333, y: 105.9155 }, + { l: 85, x: 3.9167, y: 106.5596 }, + { l: 85, x: 4, y: 107.1955 }, + { l: 85, x: 3.0833, y: 99.7327 }, + { l: 85, x: 4.1667, y: 108.4464 }, + { l: 85, x: 4.25, y: 109.0622 }, + { l: 85, x: 4.3333, y: 109.6722 }, + { l: 85, x: 4.4167, y: 110.2767 }, + { l: 85, x: 4.5, y: 110.8757 }, + { l: 85, x: 4.5833, y: 111.4693 }, + { l: 85, x: 4.6667, y: 112.0575 }, + { l: 85, x: 4.75, y: 112.639 }, + { l: 85, x: 4.8333, y: 113.2152 }, + { l: 85, x: 4.9167, y: 113.7861 }, + { l: 85, x: 5.0, y: 114.3531 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 89.8502 }, + { l: 90, x: 2.0833, y: 90.7919 }, + { l: 90, x: 2.1667, y: 91.7139 }, + { l: 90, x: 2.25, y: 92.6164 }, + { l: 90, x: 2.3333, y: 93.4979 }, + { l: 90, x: 2.4167, y: 94.3602 }, + { l: 90, x: 2.5, y: 95.204 }, + { l: 90, x: 2.5833, y: 96.0288 }, + { l: 90, x: 2.6667, y: 96.8375 }, + { l: 90, x: 2.75, y: 97.6304 }, + { l: 90, x: 2.8333, y: 98.4102 }, + { l: 90, x: 2.9167, y: 99.1769 }, + { l: 90, x: 3, y: 99.9315 }, + { l: 90, x: 3.0833, y: 100.6774 }, + { l: 90, x: 3.1667, y: 101.4122 }, + { l: 90, x: 3.25, y: 102.1366 }, + { l: 90, x: 3.3333, y: 102.8518 }, + { l: 90, x: 3.4167, y: 103.5582 }, + { l: 90, x: 3.5, y: 104.2555 }, + { l: 90, x: 3.5833, y: 104.9428 }, + { l: 90, x: 3.6667, y: 105.6214 }, + { l: 90, x: 3.75, y: 106.2916 }, + { l: 90, x: 3.8333, y: 106.9521 }, + { l: 90, x: 3.9167, y: 107.6062 }, + { l: 90, x: 4, y: 108.2517 }, + { l: 90, x: 3.0833, y: 100.6774 }, + { l: 90, x: 4.1667, y: 109.5215 }, + { l: 90, x: 4.25, y: 110.1466 }, + { l: 90, x: 4.3333, y: 110.7658 }, + { l: 90, x: 4.4167, y: 111.3796 }, + { l: 90, x: 4.5, y: 111.9879 }, + { l: 90, x: 4.5833, y: 112.5907 }, + { l: 90, x: 4.6667, y: 113.1881 }, + { l: 90, x: 4.75, y: 113.7785 }, + { l: 90, x: 4.8333, y: 114.3635 }, + { l: 90, x: 4.9167, y: 114.9433 }, + { l: 90, x: 5.0, y: 115.5194 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 91.0223 }, + { l: 95, x: 2.0833, y: 91.9829 }, + { l: 95, x: 2.1667, y: 92.9236 }, + { l: 95, x: 2.25, y: 93.8448 }, + { l: 95, x: 2.3333, y: 94.7445 }, + { l: 95, x: 2.4167, y: 95.6248 }, + { l: 95, x: 2.5, y: 96.4865 }, + { l: 95, x: 2.5833, y: 97.3287 }, + { l: 95, x: 2.6667, y: 98.1548 }, + { l: 95, x: 2.75, y: 98.9646 }, + { l: 95, x: 2.8333, y: 99.7612 }, + { l: 95, x: 2.9167, y: 100.5443 }, + { l: 95, x: 3, y: 101.3149 }, + { l: 95, x: 3.0833, y: 102.077 }, + { l: 95, x: 3.1667, y: 102.8277 }, + { l: 95, x: 3.25, y: 103.5676 }, + { l: 95, x: 3.3333, y: 104.2982 }, + { l: 95, x: 3.4167, y: 105.02 }, + { l: 95, x: 3.5, y: 105.7326 }, + { l: 95, x: 3.5833, y: 106.4348 }, + { l: 95, x: 3.6667, y: 107.1283 }, + { l: 95, x: 3.75, y: 107.8132 }, + { l: 95, x: 3.8333, y: 108.4881 }, + { l: 95, x: 3.9167, y: 109.1569 }, + { l: 95, x: 4, y: 109.8166 }, + { l: 95, x: 3.0833, y: 102.077 }, + { l: 95, x: 4.1667, y: 111.1144 }, + { l: 95, x: 4.25, y: 111.7533 }, + { l: 95, x: 4.3333, y: 112.3863 }, + { l: 95, x: 4.4167, y: 113.0138 }, + { l: 95, x: 4.5, y: 113.6357 }, + { l: 95, x: 4.5833, y: 114.2522 }, + { l: 95, x: 4.6667, y: 114.8632 }, + { l: 95, x: 4.75, y: 115.4668 }, + { l: 95, x: 4.8333, y: 116.065 }, + { l: 95, x: 4.9167, y: 116.6579 }, + { l: 95, x: 5.0, y: 117.2475 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 91.7834 }, + { l: 97, x: 2.0833, y: 92.7563 }, + { l: 97, x: 2.1667, y: 93.7092 }, + { l: 97, x: 2.25, y: 94.6424 }, + { l: 97, x: 2.3333, y: 95.5539 }, + { l: 97, x: 2.4167, y: 96.446 }, + { l: 97, x: 2.5, y: 97.3192 }, + { l: 97, x: 2.5833, y: 98.1728 }, + { l: 97, x: 2.6667, y: 99.0101 }, + { l: 97, x: 2.75, y: 99.8309 }, + { l: 97, x: 2.8333, y: 100.6384 }, + { l: 97, x: 2.9167, y: 101.4322 }, + { l: 97, x: 3, y: 102.2131 }, + { l: 97, x: 3.0833, y: 102.9858 }, + { l: 97, x: 3.1667, y: 103.7468 }, + { l: 97, x: 3.25, y: 104.4967 }, + { l: 97, x: 3.3333, y: 105.2374 }, + { l: 97, x: 3.4167, y: 105.9692 }, + { l: 97, x: 3.5, y: 106.6917 }, + { l: 97, x: 3.5833, y: 107.4036 }, + { l: 97, x: 3.6667, y: 108.1067 }, + { l: 97, x: 3.75, y: 108.8012 }, + { l: 97, x: 3.8333, y: 109.4855 }, + { l: 97, x: 3.9167, y: 110.1637 }, + { l: 97, x: 4, y: 110.8328 }, + { l: 97, x: 3.0833, y: 102.9858 }, + { l: 97, x: 4.1667, y: 112.1488 }, + { l: 97, x: 4.25, y: 112.7966 }, + { l: 97, x: 4.3333, y: 113.4385 }, + { l: 97, x: 4.4167, y: 114.0749 }, + { l: 97, x: 4.5, y: 114.7057 }, + { l: 97, x: 4.5833, y: 115.3311 }, + { l: 97, x: 4.6667, y: 115.9509 }, + { l: 97, x: 4.75, y: 116.5631 }, + { l: 97, x: 4.8333, y: 117.1698 }, + { l: 97, x: 4.9167, y: 117.7712 }, + { l: 97, x: 5.0, y: 118.3696 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 93.2207 }, + { l: 99, x: 2.0833, y: 94.2167 }, + { l: 99, x: 2.1667, y: 95.1927 }, + { l: 99, x: 2.25, y: 96.1488 }, + { l: 99, x: 2.3333, y: 97.0825 }, + { l: 99, x: 2.4167, y: 97.9967 }, + { l: 99, x: 2.5, y: 98.8919 }, + { l: 99, x: 2.5833, y: 99.7669 }, + { l: 99, x: 2.6667, y: 100.6254 }, + { l: 99, x: 2.75, y: 101.4669 }, + { l: 99, x: 2.8333, y: 102.295 }, + { l: 99, x: 2.9167, y: 103.1089 }, + { l: 99, x: 3, y: 103.9095 }, + { l: 99, x: 3.0833, y: 104.7021 }, + { l: 99, x: 3.1667, y: 105.4826 }, + { l: 99, x: 3.25, y: 106.2515 }, + { l: 99, x: 3.3333, y: 107.0111 }, + { l: 99, x: 3.4167, y: 107.7617 }, + { l: 99, x: 3.5, y: 108.503 }, + { l: 99, x: 3.5833, y: 109.2331 }, + { l: 99, x: 3.6667, y: 109.9545 }, + { l: 99, x: 3.75, y: 110.6671 }, + { l: 99, x: 3.8333, y: 111.369 }, + { l: 99, x: 3.9167, y: 112.0653 }, + { l: 99, x: 4, y: 112.7518 }, + { l: 99, x: 3.0833, y: 104.7021 }, + { l: 99, x: 4.1667, y: 114.1022 }, + { l: 99, x: 4.25, y: 114.7668 }, + { l: 99, x: 4.3333, y: 115.4256 }, + { l: 99, x: 4.4167, y: 116.0788 }, + { l: 99, x: 4.5, y: 116.7264 }, + { l: 99, x: 4.5833, y: 117.3685 }, + { l: 99, x: 4.6667, y: 118.005 }, + { l: 99, x: 4.75, y: 118.6334 }, + { l: 99, x: 4.8333, y: 119.2562 }, + { l: 99, x: 4.9167, y: 119.8738 }, + { l: 99, x: 5.0, y: 120.4887 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + female: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 98.4978 }, + { l: 1, x: 5.17, y: 98.9459 }, + { l: 1, x: 5.25, y: 99.3893 }, + { l: 1, x: 5.33, y: 99.8282 }, + { l: 1, x: 5.42, y: 100.2654 }, + { l: 1, x: 5.5, y: 100.696 }, + { l: 1, x: 5.58, y: 101.1251 }, + { l: 1, x: 5.67, y: 101.5503 }, + { l: 1, x: 5.75, y: 101.9717 }, + { l: 1, x: 5.83, y: 102.3894 }, + { l: 1, x: 5.92, y: 102.8036 }, + { l: 1, x: 6, y: 103.2147 }, + { l: 1, x: 6.08, y: 103.6258 }, + { l: 1, x: 6.17, y: 104.0347 }, + { l: 1, x: 6.25, y: 104.4393 }, + { l: 1, x: 6.33, y: 104.8479 }, + { l: 1, x: 6.42, y: 105.2528 }, + { l: 1, x: 6.5, y: 105.6569 }, + { l: 1, x: 6.58, y: 106.063 }, + { l: 1, x: 6.67, y: 106.4662 }, + { l: 1, x: 6.75, y: 106.8719 }, + { l: 1, x: 6.83, y: 107.2779 }, + { l: 1, x: 6.92, y: 107.6841 }, + { l: 1, x: 7, y: 108.0934 }, + { l: 1, x: 7.08, y: 108.5004 }, + { l: 1, x: 7.17, y: 108.9106 }, + { l: 1, x: 7.25, y: 109.3185 }, + { l: 1, x: 7.33, y: 109.7299 }, + { l: 1, x: 7.42, y: 110.145 }, + { l: 1, x: 7.5, y: 110.5579 }, + { l: 1, x: 7.58, y: 110.9716 }, + { l: 1, x: 7.67, y: 111.3889 }, + { l: 1, x: 7.75, y: 111.8073 }, + { l: 1, x: 7.83, y: 112.2268 }, + { l: 1, x: 7.92, y: 112.6473 }, + { l: 1, x: 8, y: 113.069 }, + { l: 1, x: 8.08, y: 113.4919 }, + { l: 1, x: 8.17, y: 113.919 }, + { l: 1, x: 8.25, y: 114.3473 }, + { l: 1, x: 8.33, y: 114.7769 }, + { l: 1, x: 8.42, y: 115.2079 }, + { l: 1, x: 8.5, y: 115.64 }, + { l: 1, x: 8.58, y: 116.0766 }, + { l: 1, x: 8.67, y: 116.5145 }, + { l: 1, x: 8.75, y: 116.9507 }, + { l: 1, x: 8.83, y: 117.3944 }, + { l: 1, x: 8.92, y: 117.8361 }, + { l: 1, x: 9, y: 118.2792 }, + { l: 1, x: 9.08, y: 118.7265 }, + { l: 1, x: 9.17, y: 119.1748 }, + { l: 1, x: 9.25, y: 119.6245 }, + { l: 1, x: 9.33, y: 120.0752 }, + { l: 1, x: 9.42, y: 120.5301 }, + { l: 1, x: 9.5, y: 120.9832 }, + { l: 1, x: 9.58, y: 121.4405 }, + { l: 1, x: 9.67, y: 121.9022 }, + { l: 1, x: 9.75, y: 122.3619 }, + { l: 1, x: 9.83, y: 122.8231 }, + { l: 1, x: 9.92, y: 123.2887 }, + { l: 1, x: 10, y: 123.7557 }, + { l: 1, x: 10.08, y: 124.2274 }, + { l: 1, x: 10.17, y: 124.6974 }, + { l: 1, x: 10.25, y: 125.1722 }, + { l: 1, x: 10.33, y: 125.6488 }, + { l: 1, x: 10.42, y: 126.1268 }, + { l: 1, x: 10.5, y: 126.6065 }, + { l: 1, x: 10.58, y: 127.0909 }, + { l: 1, x: 10.67, y: 127.5767 }, + { l: 1, x: 10.75, y: 128.0636 }, + { l: 1, x: 10.83, y: 128.5512 }, + { l: 1, x: 10.92, y: 129.0395 }, + { l: 1, x: 11, y: 129.5312 }, + { l: 1, x: 11.08, y: 130.0228 }, + { l: 1, x: 11.17, y: 130.5137 }, + { l: 1, x: 11.25, y: 131.0069 }, + { l: 1, x: 11.33, y: 131.4952 }, + { l: 1, x: 11.42, y: 131.9848 }, + { l: 1, x: 11.5, y: 132.4719 }, + { l: 1, x: 11.58, y: 132.9557 }, + { l: 1, x: 11.67, y: 133.4392 }, + { l: 1, x: 11.75, y: 133.9149 }, + { l: 1, x: 11.83, y: 134.3891 }, + { l: 1, x: 11.92, y: 134.8578 }, + { l: 1, x: 12, y: 135.3202 }, + { l: 1, x: 12.08, y: 135.7793 }, + { l: 1, x: 12.17, y: 136.2274 }, + { l: 1, x: 12.25, y: 136.6709 }, + { l: 1, x: 12.33, y: 137.1021 }, + { l: 1, x: 12.42, y: 137.5275 }, + { l: 1, x: 12.5, y: 137.9433 }, + { l: 1, x: 12.58, y: 138.3491 }, + { l: 1, x: 12.67, y: 138.7481 }, + { l: 1, x: 12.75, y: 139.1331 }, + { l: 1, x: 12.83, y: 139.5073 }, + { l: 1, x: 12.92, y: 139.8744 }, + { l: 1, x: 13, y: 140.2268 }, + { l: 1, x: 13.08, y: 140.5717 }, + { l: 1, x: 13.17, y: 140.9057 }, + { l: 1, x: 13.25, y: 141.2283 }, + { l: 1, x: 13.33, y: 141.5363 }, + { l: 1, x: 13.42, y: 141.8367 }, + { l: 1, x: 13.5, y: 142.126 }, + { l: 1, x: 13.58, y: 142.4046 }, + { l: 1, x: 13.67, y: 142.6725 }, + { l: 1, x: 13.75, y: 142.9262 }, + { l: 1, x: 13.83, y: 143.1733 }, + { l: 1, x: 13.92, y: 143.4105 }, + { l: 1, x: 14, y: 143.6379 }, + { l: 1, x: 14.08, y: 143.8558 }, + { l: 1, x: 14.17, y: 144.0606 }, + { l: 1, x: 14.25, y: 144.2601 }, + { l: 1, x: 14.33, y: 144.4506 }, + { l: 1, x: 14.42, y: 144.6287 }, + { l: 1, x: 14.5, y: 144.8022 }, + { l: 1, x: 14.58, y: 144.9637 }, + { l: 1, x: 14.67, y: 145.1211 }, + { l: 1, x: 14.75, y: 145.2672 }, + { l: 1, x: 14.83, y: 145.4059 }, + { l: 1, x: 14.92, y: 145.5377 }, + { l: 1, x: 15, y: 145.6665 }, + { l: 1, x: 15.08, y: 145.7852 }, + { l: 1, x: 15.17, y: 145.8977 }, + { l: 1, x: 15.25, y: 146.0006 }, + { l: 1, x: 15.33, y: 146.1018 }, + { l: 1, x: 15.42, y: 146.1977 }, + { l: 1, x: 15.5, y: 146.2887 }, + { l: 1, x: 15.58, y: 146.371 }, + { l: 1, x: 15.67, y: 146.4527 }, + { l: 1, x: 15.75, y: 146.5263 }, + { l: 1, x: 15.83, y: 146.5959 }, + { l: 1, x: 15.92, y: 146.6655 }, + { l: 1, x: 16, y: 146.7278 }, + { l: 1, x: 16.08, y: 146.787 }, + { l: 1, x: 16.17, y: 146.8434 }, + { l: 1, x: 16.25, y: 146.897 }, + { l: 1, x: 16.33, y: 146.9485 }, + { l: 1, x: 16.42, y: 146.9941 }, + { l: 1, x: 16.5, y: 147.0417 }, + { l: 1, x: 16.58, y: 147.0841 }, + { l: 1, x: 16.67, y: 147.129 }, + { l: 1, x: 16.75, y: 147.1691 }, + { l: 1, x: 16.83, y: 147.2118 }, + { l: 1, x: 16.92, y: 147.2501 }, + { l: 1, x: 17, y: 147.2876 }, + { l: 1, x: 17.08, y: 147.3245 }, + { l: 1, x: 17.17, y: 147.3608 }, + { l: 1, x: 17.25, y: 147.3965 }, + { l: 1, x: 17.33, y: 147.4317 }, + { l: 1, x: 17.42, y: 147.4666 }, + { l: 1, x: 17.5, y: 147.4974 }, + { l: 1, x: 17.58, y: 147.5316 }, + { l: 1, x: 17.67, y: 147.5618 }, + { l: 1, x: 17.75, y: 147.5953 }, + { l: 1, x: 17.83, y: 147.6246 }, + { l: 1, x: 17.92, y: 147.6534 }, + { l: 1, x: 18, y: 147.6854 }, + { l: 1, x: 18.08, y: 147.7131 }, + { l: 1, x: 18.17, y: 147.74 }, + { l: 1, x: 18.25, y: 147.766 }, + { l: 1, x: 18.33, y: 147.7912 }, + { l: 1, x: 18.42, y: 147.8116 }, + { l: 1, x: 18.5, y: 147.8347 }, + { l: 1, x: 18.58, y: 147.8567 }, + { l: 1, x: 18.67, y: 147.8738 }, + { l: 1, x: 18.75, y: 147.8936 }, + { l: 1, x: 18.83, y: 147.9086 }, + { l: 1, x: 18.92, y: 147.9261 }, + { l: 1, x: 19, y: 147.9388 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 100.6243 }, + { l: 3, x: 5.17, y: 101.0869 }, + { l: 3, x: 5.25, y: 101.5448 }, + { l: 3, x: 5.33, y: 101.9982 }, + { l: 3, x: 5.42, y: 102.4494 }, + { l: 3, x: 5.5, y: 102.8943 }, + { l: 3, x: 5.58, y: 103.3373 }, + { l: 3, x: 5.67, y: 103.7763 }, + { l: 3, x: 5.75, y: 104.2115 }, + { l: 3, x: 5.83, y: 104.6429 }, + { l: 3, x: 5.92, y: 105.0708 }, + { l: 3, x: 6, y: 105.4955 }, + { l: 3, x: 6.08, y: 105.9197 }, + { l: 3, x: 6.17, y: 106.3417 }, + { l: 3, x: 6.25, y: 106.7599 }, + { l: 3, x: 6.33, y: 107.1811 }, + { l: 3, x: 6.42, y: 107.5991 }, + { l: 3, x: 6.5, y: 108.0162 }, + { l: 3, x: 6.58, y: 108.435 }, + { l: 3, x: 6.67, y: 108.8513 }, + { l: 3, x: 6.75, y: 109.2697 }, + { l: 3, x: 6.83, y: 109.6884 }, + { l: 3, x: 6.92, y: 110.1073 }, + { l: 3, x: 7, y: 110.5288 }, + { l: 3, x: 7.08, y: 110.9486 }, + { l: 3, x: 7.17, y: 111.3711 }, + { l: 3, x: 7.25, y: 111.7919 }, + { l: 3, x: 7.33, y: 112.2157 }, + { l: 3, x: 7.42, y: 112.6426 }, + { l: 3, x: 7.5, y: 113.0679 }, + { l: 3, x: 7.58, y: 113.4941 }, + { l: 3, x: 7.67, y: 113.9234 }, + { l: 3, x: 7.75, y: 114.3538 }, + { l: 3, x: 7.83, y: 114.7853 }, + { l: 3, x: 7.92, y: 115.2179 }, + { l: 3, x: 8, y: 115.6518 }, + { l: 3, x: 8.08, y: 116.0869 }, + { l: 3, x: 8.17, y: 116.5257 }, + { l: 3, x: 8.25, y: 116.9657 }, + { l: 3, x: 8.33, y: 117.4071 }, + { l: 3, x: 8.42, y: 117.8498 }, + { l: 3, x: 8.5, y: 118.2938 }, + { l: 3, x: 8.58, y: 118.7417 }, + { l: 3, x: 8.67, y: 119.191 }, + { l: 3, x: 8.75, y: 119.6391 }, + { l: 3, x: 8.83, y: 120.0937 }, + { l: 3, x: 8.92, y: 120.5469 }, + { l: 3, x: 9, y: 121.0015 }, + { l: 3, x: 9.08, y: 121.4597 }, + { l: 3, x: 9.17, y: 121.9191 }, + { l: 3, x: 9.25, y: 122.3797 }, + { l: 3, x: 9.33, y: 122.8415 }, + { l: 3, x: 9.42, y: 123.3069 }, + { l: 3, x: 9.5, y: 123.7711 }, + { l: 3, x: 9.58, y: 124.2389 }, + { l: 3, x: 9.67, y: 124.7106 }, + { l: 3, x: 9.75, y: 125.1809 }, + { l: 3, x: 9.83, y: 125.6527 }, + { l: 3, x: 9.92, y: 126.1283 }, + { l: 3, x: 10, y: 126.6054 }, + { l: 3, x: 10.08, y: 127.0866 }, + { l: 3, x: 10.17, y: 127.5667 }, + { l: 3, x: 10.25, y: 128.0511 }, + { l: 3, x: 10.33, y: 128.5372 }, + { l: 3, x: 10.42, y: 129.0248 }, + { l: 3, x: 10.5, y: 129.5141 }, + { l: 3, x: 10.58, y: 130.0075 }, + { l: 3, x: 10.67, y: 130.5022 }, + { l: 3, x: 10.75, y: 130.9982 }, + { l: 3, x: 10.83, y: 131.4949 }, + { l: 3, x: 10.92, y: 131.9921 }, + { l: 3, x: 11, y: 132.4922 }, + { l: 3, x: 11.08, y: 132.9921 }, + { l: 3, x: 11.17, y: 133.4913 }, + { l: 3, x: 11.25, y: 133.9921 }, + { l: 3, x: 11.33, y: 134.4886 }, + { l: 3, x: 11.42, y: 134.9857 }, + { l: 3, x: 11.5, y: 135.4801 }, + { l: 3, x: 11.58, y: 135.9713 }, + { l: 3, x: 11.67, y: 136.4612 }, + { l: 3, x: 11.75, y: 136.944 }, + { l: 3, x: 11.83, y: 137.4245 }, + { l: 3, x: 11.92, y: 137.8992 }, + { l: 3, x: 12, y: 138.3675 }, + { l: 3, x: 12.08, y: 138.8317 }, + { l: 3, x: 12.17, y: 139.2853 }, + { l: 3, x: 12.25, y: 139.7334 }, + { l: 3, x: 12.33, y: 140.1697 }, + { l: 3, x: 12.42, y: 140.5993 }, + { l: 3, x: 12.5, y: 141.019 }, + { l: 3, x: 12.58, y: 141.4285 }, + { l: 3, x: 12.67, y: 141.8303 }, + { l: 3, x: 12.75, y: 142.2184 }, + { l: 3, x: 12.83, y: 142.5955 }, + { l: 3, x: 12.92, y: 142.9645 }, + { l: 3, x: 13, y: 143.3193 }, + { l: 3, x: 13.08, y: 143.6656 }, + { l: 3, x: 13.17, y: 144.0006 }, + { l: 3, x: 13.25, y: 144.3241 }, + { l: 3, x: 13.33, y: 144.6333 }, + { l: 3, x: 13.42, y: 144.934 }, + { l: 3, x: 13.5, y: 145.2234 }, + { l: 3, x: 13.58, y: 145.5017 }, + { l: 3, x: 13.67, y: 145.7692 }, + { l: 3, x: 13.75, y: 146.0228 }, + { l: 3, x: 13.83, y: 146.269 }, + { l: 3, x: 13.92, y: 146.505 }, + { l: 3, x: 14, y: 146.7309 }, + { l: 3, x: 14.08, y: 146.9472 }, + { l: 3, x: 14.17, y: 147.1509 }, + { l: 3, x: 14.25, y: 147.3482 }, + { l: 3, x: 14.33, y: 147.5365 }, + { l: 3, x: 14.42, y: 147.7128 }, + { l: 3, x: 14.5, y: 147.8836 }, + { l: 3, x: 14.58, y: 148.043 }, + { l: 3, x: 14.67, y: 148.1973 }, + { l: 3, x: 14.75, y: 148.3409 }, + { l: 3, x: 14.83, y: 148.477 }, + { l: 3, x: 14.92, y: 148.606 }, + { l: 3, x: 15, y: 148.7311 }, + { l: 3, x: 15.08, y: 148.8467 }, + { l: 3, x: 15.17, y: 148.956 }, + { l: 3, x: 15.25, y: 149.0563 }, + { l: 3, x: 15.33, y: 149.1539 }, + { l: 3, x: 15.42, y: 149.2462 }, + { l: 3, x: 15.5, y: 149.3335 }, + { l: 3, x: 15.58, y: 149.4127 }, + { l: 3, x: 15.67, y: 149.4905 }, + { l: 3, x: 15.75, y: 149.5608 }, + { l: 3, x: 15.83, y: 149.6271 }, + { l: 3, x: 15.92, y: 149.6925 }, + { l: 3, x: 16, y: 149.7513 }, + { l: 3, x: 16.08, y: 149.8068 }, + { l: 3, x: 16.17, y: 149.8596 }, + { l: 3, x: 16.25, y: 149.9095 }, + { l: 3, x: 16.33, y: 149.9572 }, + { l: 3, x: 16.42, y: 149.9998 }, + { l: 3, x: 16.5, y: 150.0435 }, + { l: 3, x: 16.58, y: 150.0828 }, + { l: 3, x: 16.67, y: 150.1237 }, + { l: 3, x: 16.75, y: 150.1606 }, + { l: 3, x: 16.83, y: 150.1995 }, + { l: 3, x: 16.92, y: 150.2345 }, + { l: 3, x: 17, y: 150.2688 }, + { l: 3, x: 17.08, y: 150.3024 }, + { l: 3, x: 17.17, y: 150.3354 }, + { l: 3, x: 17.25, y: 150.3678 }, + { l: 3, x: 17.33, y: 150.3997 }, + { l: 3, x: 17.42, y: 150.4313 }, + { l: 3, x: 17.5, y: 150.4595 }, + { l: 3, x: 17.58, y: 150.4904 }, + { l: 3, x: 17.67, y: 150.5179 }, + { l: 3, x: 17.75, y: 150.5481 }, + { l: 3, x: 17.83, y: 150.5748 }, + { l: 3, x: 17.92, y: 150.601 }, + { l: 3, x: 18, y: 150.6297 }, + { l: 3, x: 18.08, y: 150.6547 }, + { l: 3, x: 18.17, y: 150.6789 }, + { l: 3, x: 18.25, y: 150.7022 }, + { l: 3, x: 18.33, y: 150.7247 }, + { l: 3, x: 18.42, y: 150.7431 }, + { l: 3, x: 18.5, y: 150.7634 }, + { l: 3, x: 18.58, y: 150.7827 }, + { l: 3, x: 18.67, y: 150.7977 }, + { l: 3, x: 18.75, y: 150.8147 }, + { l: 3, x: 18.83, y: 150.8275 }, + { l: 3, x: 18.92, y: 150.8422 }, + { l: 3, x: 19, y: 150.8527 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 101.7502 }, + { l: 5, x: 5.17, y: 102.2206 }, + { l: 5, x: 5.25, y: 102.6862 }, + { l: 5, x: 5.33, y: 103.1473 }, + { l: 5, x: 5.42, y: 103.6058 }, + { l: 5, x: 5.5, y: 104.0584 }, + { l: 5, x: 5.58, y: 104.5087 }, + { l: 5, x: 5.67, y: 104.955 }, + { l: 5, x: 5.75, y: 105.3975 }, + { l: 5, x: 5.83, y: 105.8361 }, + { l: 5, x: 5.92, y: 106.2713 }, + { l: 5, x: 6, y: 106.7032 }, + { l: 5, x: 6.08, y: 107.1343 }, + { l: 5, x: 6.17, y: 107.5633 }, + { l: 5, x: 6.25, y: 107.9886 }, + { l: 5, x: 6.33, y: 108.4165 }, + { l: 5, x: 6.42, y: 108.8415 }, + { l: 5, x: 6.5, y: 109.2655 }, + { l: 5, x: 6.58, y: 109.691 }, + { l: 5, x: 6.67, y: 110.1143 }, + { l: 5, x: 6.75, y: 110.5394 }, + { l: 5, x: 6.83, y: 110.9647 }, + { l: 5, x: 6.92, y: 111.3904 }, + { l: 5, x: 7, y: 111.8184 }, + { l: 5, x: 7.08, y: 112.2449 }, + { l: 5, x: 7.17, y: 112.674 }, + { l: 5, x: 7.25, y: 113.1015 }, + { l: 5, x: 7.33, y: 113.5319 }, + { l: 5, x: 7.42, y: 113.9651 }, + { l: 5, x: 7.5, y: 114.397 }, + { l: 5, x: 7.58, y: 114.8298 }, + { l: 5, x: 7.67, y: 115.2655 }, + { l: 5, x: 7.75, y: 115.7022 }, + { l: 5, x: 7.83, y: 116.1401 }, + { l: 5, x: 7.92, y: 116.5791 }, + { l: 5, x: 8, y: 117.0195 }, + { l: 5, x: 8.08, y: 117.461 }, + { l: 5, x: 8.17, y: 117.9059 }, + { l: 5, x: 8.25, y: 118.3522 }, + { l: 5, x: 8.33, y: 118.7998 }, + { l: 5, x: 8.42, y: 119.2488 }, + { l: 5, x: 8.5, y: 119.699 }, + { l: 5, x: 8.58, y: 120.1529 }, + { l: 5, x: 8.67, y: 120.6082 }, + { l: 5, x: 8.75, y: 121.0627 }, + { l: 5, x: 8.83, y: 121.523 }, + { l: 5, x: 8.92, y: 121.9823 }, + { l: 5, x: 9, y: 122.443 }, + { l: 5, x: 9.08, y: 122.907 }, + { l: 5, x: 9.17, y: 123.3722 }, + { l: 5, x: 9.25, y: 123.8387 }, + { l: 5, x: 9.33, y: 124.3063 }, + { l: 5, x: 9.42, y: 124.7773 }, + { l: 5, x: 9.5, y: 125.2473 }, + { l: 5, x: 9.58, y: 125.7207 }, + { l: 5, x: 9.67, y: 126.1977 }, + { l: 5, x: 9.75, y: 126.6737 }, + { l: 5, x: 9.83, y: 127.151 }, + { l: 5, x: 9.92, y: 127.632 }, + { l: 5, x: 10, y: 128.1144 }, + { l: 5, x: 10.08, y: 128.6006 }, + { l: 5, x: 10.17, y: 129.0861 }, + { l: 5, x: 10.25, y: 129.5755 }, + { l: 5, x: 10.33, y: 130.0666 }, + { l: 5, x: 10.42, y: 130.5593 }, + { l: 5, x: 10.5, y: 131.0537 }, + { l: 5, x: 10.58, y: 131.5519 }, + { l: 5, x: 10.67, y: 132.0514 }, + { l: 5, x: 10.75, y: 132.5521 }, + { l: 5, x: 10.83, y: 133.0536 }, + { l: 5, x: 10.92, y: 133.5556 }, + { l: 5, x: 11, y: 134.0601 }, + { l: 5, x: 11.08, y: 134.5644 }, + { l: 5, x: 11.17, y: 135.068 }, + { l: 5, x: 11.25, y: 135.5729 }, + { l: 5, x: 11.33, y: 136.0737 }, + { l: 5, x: 11.42, y: 136.5747 }, + { l: 5, x: 11.5, y: 137.0731 }, + { l: 5, x: 11.58, y: 137.5681 }, + { l: 5, x: 11.67, y: 138.0615 }, + { l: 5, x: 11.75, y: 138.548 }, + { l: 5, x: 11.83, y: 139.0317 }, + { l: 5, x: 11.92, y: 139.5097 }, + { l: 5, x: 12, y: 139.9812 }, + { l: 5, x: 12.08, y: 140.448 }, + { l: 5, x: 12.17, y: 140.9045 }, + { l: 5, x: 12.25, y: 141.3551 }, + { l: 5, x: 12.33, y: 141.7941 }, + { l: 5, x: 12.42, y: 142.2259 }, + { l: 5, x: 12.5, y: 142.6477 }, + { l: 5, x: 12.58, y: 143.0591 }, + { l: 5, x: 12.67, y: 143.4623 }, + { l: 5, x: 12.75, y: 143.8521 }, + { l: 5, x: 12.83, y: 144.2307 }, + { l: 5, x: 12.92, y: 144.6007 }, + { l: 5, x: 13, y: 144.9568 }, + { l: 5, x: 13.08, y: 145.3038 }, + { l: 5, x: 13.17, y: 145.6394 }, + { l: 5, x: 13.25, y: 145.9633 }, + { l: 5, x: 13.33, y: 146.2732 }, + { l: 5, x: 13.42, y: 146.5741 }, + { l: 5, x: 13.5, y: 146.8635 }, + { l: 5, x: 13.58, y: 147.1417 }, + { l: 5, x: 13.67, y: 147.4089 }, + { l: 5, x: 13.75, y: 147.6626 }, + { l: 5, x: 13.83, y: 147.9082 }, + { l: 5, x: 13.92, y: 148.1436 }, + { l: 5, x: 14, y: 148.3687 }, + { l: 5, x: 14.08, y: 148.5841 }, + { l: 5, x: 14.17, y: 148.7872 }, + { l: 5, x: 14.25, y: 148.9835 }, + { l: 5, x: 14.33, y: 149.1705 }, + { l: 5, x: 14.42, y: 149.3459 }, + { l: 5, x: 14.5, y: 149.5153 }, + { l: 5, x: 14.58, y: 149.6735 }, + { l: 5, x: 14.67, y: 149.8262 }, + { l: 5, x: 14.75, y: 149.9685 }, + { l: 5, x: 14.83, y: 150.1032 }, + { l: 5, x: 14.92, y: 150.2307 }, + { l: 5, x: 15, y: 150.3539 }, + { l: 5, x: 15.08, y: 150.4678 }, + { l: 5, x: 15.17, y: 150.5754 }, + { l: 5, x: 15.25, y: 150.6743 }, + { l: 5, x: 15.33, y: 150.7701 }, + { l: 5, x: 15.42, y: 150.8605 }, + { l: 5, x: 15.5, y: 150.9458 }, + { l: 5, x: 15.58, y: 151.0234 }, + { l: 5, x: 15.67, y: 151.099 }, + { l: 5, x: 15.75, y: 151.1677 }, + { l: 5, x: 15.83, y: 151.2321 }, + { l: 5, x: 15.92, y: 151.2953 }, + { l: 5, x: 16, y: 151.3522 }, + { l: 5, x: 16.08, y: 151.4059 }, + { l: 5, x: 16.17, y: 151.4567 }, + { l: 5, x: 16.25, y: 151.5047 }, + { l: 5, x: 16.33, y: 151.5504 }, + { l: 5, x: 16.42, y: 151.5913 }, + { l: 5, x: 16.5, y: 151.633 }, + { l: 5, x: 16.58, y: 151.6706 }, + { l: 5, x: 16.67, y: 151.7095 }, + { l: 5, x: 16.75, y: 151.7447 }, + { l: 5, x: 16.83, y: 151.7815 }, + { l: 5, x: 16.92, y: 151.8148 }, + { l: 5, x: 17, y: 151.8473 }, + { l: 5, x: 17.08, y: 151.8792 }, + { l: 5, x: 17.17, y: 151.9105 }, + { l: 5, x: 17.25, y: 151.9411 }, + { l: 5, x: 17.33, y: 151.9713 }, + { l: 5, x: 17.42, y: 152.0012 }, + { l: 5, x: 17.5, y: 152.028 }, + { l: 5, x: 17.58, y: 152.0571 }, + { l: 5, x: 17.67, y: 152.0833 }, + { l: 5, x: 17.75, y: 152.1117 }, + { l: 5, x: 17.83, y: 152.137 }, + { l: 5, x: 17.92, y: 152.1618 }, + { l: 5, x: 18, y: 152.1887 }, + { l: 5, x: 18.08, y: 152.2123 }, + { l: 5, x: 18.17, y: 152.2351 }, + { l: 5, x: 18.25, y: 152.257 }, + { l: 5, x: 18.33, y: 152.278 }, + { l: 5, x: 18.42, y: 152.2954 }, + { l: 5, x: 18.5, y: 152.3142 }, + { l: 5, x: 18.58, y: 152.3321 }, + { l: 5, x: 18.67, y: 152.346 }, + { l: 5, x: 18.75, y: 152.3615 }, + { l: 5, x: 18.83, y: 152.3732 }, + { l: 5, x: 18.92, y: 152.3864 }, + { l: 5, x: 19, y: 152.3957 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 103.4843 }, + { l: 10, x: 5.17, y: 103.9666 }, + { l: 10, x: 5.25, y: 104.4441 }, + { l: 10, x: 5.33, y: 104.9169 }, + { l: 10, x: 5.42, y: 105.3868 }, + { l: 10, x: 5.5, y: 105.8511 }, + { l: 10, x: 5.58, y: 106.3127 }, + { l: 10, x: 5.67, y: 106.7703 }, + { l: 10, x: 5.75, y: 107.224 }, + { l: 10, x: 5.83, y: 107.6738 }, + { l: 10, x: 5.92, y: 108.1201 }, + { l: 10, x: 6, y: 108.5631 }, + { l: 10, x: 6.08, y: 109.0049 }, + { l: 10, x: 6.17, y: 109.4446 }, + { l: 10, x: 6.25, y: 109.881 }, + { l: 10, x: 6.33, y: 110.3192 }, + { l: 10, x: 6.42, y: 110.7548 }, + { l: 10, x: 6.5, y: 111.1896 }, + { l: 10, x: 6.58, y: 111.6253 }, + { l: 10, x: 6.67, y: 112.0594 }, + { l: 10, x: 6.75, y: 112.4947 }, + { l: 10, x: 6.83, y: 112.9305 }, + { l: 10, x: 6.92, y: 113.3665 }, + { l: 10, x: 7, y: 113.8044 }, + { l: 10, x: 7.08, y: 114.2414 }, + { l: 10, x: 7.17, y: 114.6805 }, + { l: 10, x: 7.25, y: 115.1185 }, + { l: 10, x: 7.33, y: 115.559 }, + { l: 10, x: 7.42, y: 116.0019 }, + { l: 10, x: 7.5, y: 116.4439 }, + { l: 10, x: 7.58, y: 116.8868 }, + { l: 10, x: 7.67, y: 117.3323 }, + { l: 10, x: 7.75, y: 117.7788 }, + { l: 10, x: 7.83, y: 118.2266 }, + { l: 10, x: 7.92, y: 118.6754 }, + { l: 10, x: 8, y: 119.1257 }, + { l: 10, x: 8.08, y: 119.5772 }, + { l: 10, x: 8.17, y: 120.0316 }, + { l: 10, x: 8.25, y: 120.4874 }, + { l: 10, x: 8.33, y: 120.9446 }, + { l: 10, x: 8.42, y: 121.4032 }, + { l: 10, x: 8.5, y: 121.8632 }, + { l: 10, x: 8.58, y: 122.3263 }, + { l: 10, x: 8.67, y: 122.7908 }, + { l: 10, x: 8.75, y: 123.2551 }, + { l: 10, x: 8.83, y: 123.7242 }, + { l: 10, x: 8.92, y: 124.1929 }, + { l: 10, x: 9, y: 124.663 }, + { l: 10, x: 9.08, y: 125.136 }, + { l: 10, x: 9.17, y: 125.6101 }, + { l: 10, x: 9.25, y: 126.0856 }, + { l: 10, x: 9.33, y: 126.5622 }, + { l: 10, x: 9.42, y: 127.0417 }, + { l: 10, x: 9.5, y: 127.5208 }, + { l: 10, x: 9.58, y: 128.0028 }, + { l: 10, x: 9.67, y: 128.4879 }, + { l: 10, x: 9.75, y: 128.9725 }, + { l: 10, x: 9.83, y: 129.4585 }, + { l: 10, x: 9.92, y: 129.9477 }, + { l: 10, x: 10, y: 130.4383 }, + { l: 10, x: 10.08, y: 130.9323 }, + { l: 10, x: 10.17, y: 131.426 }, + { l: 10, x: 10.25, y: 131.9231 }, + { l: 10, x: 10.33, y: 132.4221 }, + { l: 10, x: 10.42, y: 132.9226 }, + { l: 10, x: 10.5, y: 133.4248 }, + { l: 10, x: 10.58, y: 133.9303 }, + { l: 10, x: 10.67, y: 134.4372 }, + { l: 10, x: 10.75, y: 134.9452 }, + { l: 10, x: 10.83, y: 135.4541 }, + { l: 10, x: 10.92, y: 135.9634 }, + { l: 10, x: 11, y: 136.4748 }, + { l: 10, x: 11.08, y: 136.9859 }, + { l: 10, x: 11.17, y: 137.4962 }, + { l: 10, x: 11.25, y: 138.0073 }, + { l: 10, x: 11.33, y: 138.5148 }, + { l: 10, x: 11.42, y: 139.0219 }, + { l: 10, x: 11.5, y: 139.5263 }, + { l: 10, x: 11.58, y: 140.0272 }, + { l: 10, x: 11.67, y: 140.5259 }, + { l: 10, x: 11.75, y: 141.0182 }, + { l: 10, x: 11.83, y: 141.507 }, + { l: 10, x: 11.92, y: 141.9899 }, + { l: 10, x: 12, y: 142.4662 }, + { l: 10, x: 12.08, y: 142.9372 }, + { l: 10, x: 12.17, y: 143.3982 }, + { l: 10, x: 12.25, y: 143.8526 }, + { l: 10, x: 12.33, y: 144.2957 }, + { l: 10, x: 12.42, y: 144.7309 }, + { l: 10, x: 12.5, y: 145.1559 }, + { l: 10, x: 12.58, y: 145.5703 }, + { l: 10, x: 12.67, y: 145.9757 }, + { l: 10, x: 12.75, y: 146.3681 }, + { l: 10, x: 12.83, y: 146.7491 }, + { l: 10, x: 12.92, y: 147.1207 }, + { l: 10, x: 13, y: 147.4786 }, + { l: 10, x: 13.08, y: 147.8267 }, + { l: 10, x: 13.17, y: 148.1633 }, + { l: 10, x: 13.25, y: 148.4879 }, + { l: 10, x: 13.33, y: 148.7988 }, + { l: 10, x: 13.42, y: 149.0999 }, + { l: 10, x: 13.5, y: 149.3893 }, + { l: 10, x: 13.58, y: 149.6674 }, + { l: 10, x: 13.67, y: 149.9342 }, + { l: 10, x: 13.75, y: 150.1878 }, + { l: 10, x: 13.83, y: 150.4327 }, + { l: 10, x: 13.92, y: 150.6671 }, + { l: 10, x: 14, y: 150.8911 }, + { l: 10, x: 14.08, y: 151.1051 }, + { l: 10, x: 14.17, y: 151.3072 }, + { l: 10, x: 14.25, y: 151.5018 }, + { l: 10, x: 14.33, y: 151.687 }, + { l: 10, x: 14.42, y: 151.861 }, + { l: 10, x: 14.5, y: 152.0282 }, + { l: 10, x: 14.58, y: 152.1846 }, + { l: 10, x: 14.67, y: 152.3349 }, + { l: 10, x: 14.75, y: 152.4751 }, + { l: 10, x: 14.83, y: 152.6077 }, + { l: 10, x: 14.92, y: 152.7329 }, + { l: 10, x: 15, y: 152.853 }, + { l: 10, x: 15.08, y: 152.9645 }, + { l: 10, x: 15.17, y: 153.0694 }, + { l: 10, x: 15.25, y: 153.1661 }, + { l: 10, x: 15.33, y: 153.259 }, + { l: 10, x: 15.42, y: 153.3465 }, + { l: 10, x: 15.5, y: 153.4288 }, + { l: 10, x: 15.58, y: 153.5039 }, + { l: 10, x: 15.67, y: 153.5763 }, + { l: 10, x: 15.75, y: 153.6423 }, + { l: 10, x: 15.83, y: 153.704 }, + { l: 10, x: 15.92, y: 153.7638 }, + { l: 10, x: 16, y: 153.8178 }, + { l: 10, x: 16.08, y: 153.8686 }, + { l: 10, x: 16.17, y: 153.9164 }, + { l: 10, x: 16.25, y: 153.9613 }, + { l: 10, x: 16.33, y: 154.004 }, + { l: 10, x: 16.42, y: 154.0424 }, + { l: 10, x: 16.5, y: 154.081 }, + { l: 10, x: 16.58, y: 154.116 }, + { l: 10, x: 16.67, y: 154.1517 }, + { l: 10, x: 16.75, y: 154.1843 }, + { l: 10, x: 16.83, y: 154.2179 }, + { l: 10, x: 16.92, y: 154.2486 }, + { l: 10, x: 17, y: 154.2784 }, + { l: 10, x: 17.08, y: 154.3076 }, + { l: 10, x: 17.17, y: 154.3363 }, + { l: 10, x: 17.25, y: 154.3642 }, + { l: 10, x: 17.33, y: 154.3917 }, + { l: 10, x: 17.42, y: 154.4188 }, + { l: 10, x: 17.5, y: 154.4436 }, + { l: 10, x: 17.58, y: 154.4699 }, + { l: 10, x: 17.67, y: 154.494 }, + { l: 10, x: 17.75, y: 154.5197 }, + { l: 10, x: 17.83, y: 154.5429 }, + { l: 10, x: 17.92, y: 154.5656 }, + { l: 10, x: 18, y: 154.5897 }, + { l: 10, x: 18.08, y: 154.6111 }, + { l: 10, x: 18.17, y: 154.6317 }, + { l: 10, x: 18.25, y: 154.6514 }, + { l: 10, x: 18.33, y: 154.6702 }, + { l: 10, x: 18.42, y: 154.686 }, + { l: 10, x: 18.5, y: 154.7026 }, + { l: 10, x: 18.58, y: 154.7182 }, + { l: 10, x: 18.67, y: 154.7304 }, + { l: 10, x: 18.75, y: 154.7436 }, + { l: 10, x: 18.83, y: 154.7536 }, + { l: 10, x: 18.92, y: 154.7644 }, + { l: 10, x: 19, y: 154.772 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 104.6547 }, + { l: 15, x: 5.17, y: 105.145 }, + { l: 15, x: 5.25, y: 105.6305 }, + { l: 15, x: 5.33, y: 106.1113 }, + { l: 15, x: 5.42, y: 106.5889 }, + { l: 15, x: 5.5, y: 107.0611 }, + { l: 15, x: 5.58, y: 107.5303 }, + { l: 15, x: 5.67, y: 107.9955 }, + { l: 15, x: 5.75, y: 108.4567 }, + { l: 15, x: 5.83, y: 108.9141 }, + { l: 15, x: 5.92, y: 109.3679 }, + { l: 15, x: 6, y: 109.8185 }, + { l: 15, x: 6.08, y: 110.2675 }, + { l: 15, x: 6.17, y: 110.7143 }, + { l: 15, x: 6.25, y: 111.1583 }, + { l: 15, x: 6.33, y: 111.6033 }, + { l: 15, x: 6.42, y: 112.0462 }, + { l: 15, x: 6.5, y: 112.4881 }, + { l: 15, x: 6.58, y: 112.9308 }, + { l: 15, x: 6.67, y: 113.3721 }, + { l: 15, x: 6.75, y: 113.8145 }, + { l: 15, x: 6.83, y: 114.2572 }, + { l: 15, x: 6.92, y: 114.7002 }, + { l: 15, x: 7, y: 115.1448 }, + { l: 15, x: 7.08, y: 115.5889 }, + { l: 15, x: 7.17, y: 116.0347 }, + { l: 15, x: 7.25, y: 116.4799 }, + { l: 15, x: 7.33, y: 116.9271 }, + { l: 15, x: 7.42, y: 117.3765 }, + { l: 15, x: 7.5, y: 117.8254 }, + { l: 15, x: 7.58, y: 118.2752 }, + { l: 15, x: 7.67, y: 118.7273 }, + { l: 15, x: 7.75, y: 119.1804 }, + { l: 15, x: 7.83, y: 119.6348 }, + { l: 15, x: 7.92, y: 120.0903 }, + { l: 15, x: 8, y: 120.5472 }, + { l: 15, x: 8.08, y: 121.0055 }, + { l: 15, x: 8.17, y: 121.4663 }, + { l: 15, x: 8.25, y: 121.9286 }, + { l: 15, x: 8.33, y: 122.3922 }, + { l: 15, x: 8.42, y: 122.8573 }, + { l: 15, x: 8.5, y: 123.3238 }, + { l: 15, x: 8.58, y: 123.7932 }, + { l: 15, x: 8.67, y: 124.2639 }, + { l: 15, x: 8.75, y: 124.7348 }, + { l: 15, x: 8.83, y: 125.2099 }, + { l: 15, x: 8.92, y: 125.6849 }, + { l: 15, x: 9, y: 126.1613 }, + { l: 15, x: 9.08, y: 126.6403 }, + { l: 15, x: 9.17, y: 127.1205 }, + { l: 15, x: 9.25, y: 127.602 }, + { l: 15, x: 9.33, y: 128.0847 }, + { l: 15, x: 9.42, y: 128.57 }, + { l: 15, x: 9.5, y: 129.0553 }, + { l: 15, x: 9.58, y: 129.5431 }, + { l: 15, x: 9.67, y: 130.0336 }, + { l: 15, x: 9.75, y: 130.5241 }, + { l: 15, x: 9.83, y: 131.0159 }, + { l: 15, x: 9.92, y: 131.5106 }, + { l: 15, x: 10, y: 132.0068 }, + { l: 15, x: 10.08, y: 132.5059 }, + { l: 15, x: 10.17, y: 133.0052 }, + { l: 15, x: 10.25, y: 133.5076 }, + { l: 15, x: 10.33, y: 134.0118 }, + { l: 15, x: 10.42, y: 134.5176 }, + { l: 15, x: 10.5, y: 135.0251 }, + { l: 15, x: 10.58, y: 135.5356 }, + { l: 15, x: 10.67, y: 136.0474 }, + { l: 15, x: 10.75, y: 136.5604 }, + { l: 15, x: 10.83, y: 137.0742 }, + { l: 15, x: 10.92, y: 137.5885 }, + { l: 15, x: 11, y: 138.1045 }, + { l: 15, x: 11.08, y: 138.6202 }, + { l: 15, x: 11.17, y: 139.1351 }, + { l: 15, x: 11.25, y: 139.6503 }, + { l: 15, x: 11.33, y: 140.1624 }, + { l: 15, x: 11.42, y: 140.6736 }, + { l: 15, x: 11.5, y: 141.182 }, + { l: 15, x: 11.58, y: 141.687 }, + { l: 15, x: 11.67, y: 142.1893 }, + { l: 15, x: 11.75, y: 142.6854 }, + { l: 15, x: 11.83, y: 143.1777 }, + { l: 15, x: 11.92, y: 143.6639 }, + { l: 15, x: 12, y: 144.1435 }, + { l: 15, x: 12.08, y: 144.6172 }, + { l: 15, x: 12.17, y: 145.0813 }, + { l: 15, x: 12.25, y: 145.5382 }, + { l: 15, x: 12.33, y: 145.9841 }, + { l: 15, x: 12.42, y: 146.4216 }, + { l: 15, x: 12.5, y: 146.8488 }, + { l: 15, x: 12.58, y: 147.2652 }, + { l: 15, x: 12.67, y: 147.6721 }, + { l: 15, x: 12.75, y: 148.0662 }, + { l: 15, x: 12.83, y: 148.4488 }, + { l: 15, x: 12.92, y: 148.8214 }, + { l: 15, x: 13, y: 149.1807 }, + { l: 15, x: 13.08, y: 149.5295 }, + { l: 15, x: 13.17, y: 149.8667 }, + { l: 15, x: 13.25, y: 150.1917 }, + { l: 15, x: 13.33, y: 150.5034 }, + { l: 15, x: 13.42, y: 150.8047 }, + { l: 15, x: 13.5, y: 151.0941 }, + { l: 15, x: 13.58, y: 151.372 }, + { l: 15, x: 13.67, y: 151.6385 }, + { l: 15, x: 13.75, y: 151.8922 }, + { l: 15, x: 13.83, y: 152.1365 }, + { l: 15, x: 13.92, y: 152.3702 }, + { l: 15, x: 14, y: 152.5934 }, + { l: 15, x: 14.08, y: 152.8066 }, + { l: 15, x: 14.17, y: 153.0081 }, + { l: 15, x: 14.25, y: 153.2015 }, + { l: 15, x: 14.33, y: 153.3854 }, + { l: 15, x: 14.42, y: 153.5584 }, + { l: 15, x: 14.5, y: 153.7242 }, + { l: 15, x: 14.58, y: 153.8794 }, + { l: 15, x: 14.67, y: 154.028 }, + { l: 15, x: 14.75, y: 154.1669 }, + { l: 15, x: 14.83, y: 154.298 }, + { l: 15, x: 14.92, y: 154.4216 }, + { l: 15, x: 15, y: 154.5398 }, + { l: 15, x: 15.08, y: 154.6495 }, + { l: 15, x: 15.17, y: 154.7526 }, + { l: 15, x: 15.25, y: 154.8479 }, + { l: 15, x: 15.33, y: 154.9389 }, + { l: 15, x: 15.42, y: 155.0244 }, + { l: 15, x: 15.5, y: 155.1046 }, + { l: 15, x: 15.58, y: 155.178 }, + { l: 15, x: 15.67, y: 155.2483 }, + { l: 15, x: 15.75, y: 155.3125 }, + { l: 15, x: 15.83, y: 155.3723 }, + { l: 15, x: 15.92, y: 155.4298 }, + { l: 15, x: 16, y: 155.4819 }, + { l: 15, x: 16.08, y: 155.5307 }, + { l: 15, x: 16.17, y: 155.5765 }, + { l: 15, x: 16.25, y: 155.6194 }, + { l: 15, x: 16.33, y: 155.66 }, + { l: 15, x: 16.42, y: 155.6967 }, + { l: 15, x: 16.5, y: 155.7331 }, + { l: 15, x: 16.58, y: 155.7665 }, + { l: 15, x: 16.67, y: 155.8 }, + { l: 15, x: 16.75, y: 155.8309 }, + { l: 15, x: 16.83, y: 155.8622 }, + { l: 15, x: 16.92, y: 155.8912 }, + { l: 15, x: 17, y: 155.9192 }, + { l: 15, x: 17.08, y: 155.9466 }, + { l: 15, x: 17.17, y: 155.9735 }, + { l: 15, x: 17.25, y: 155.9996 }, + { l: 15, x: 17.33, y: 156.0253 }, + { l: 15, x: 17.42, y: 156.0506 }, + { l: 15, x: 17.5, y: 156.0739 }, + { l: 15, x: 17.58, y: 156.0984 }, + { l: 15, x: 17.67, y: 156.1211 }, + { l: 15, x: 17.75, y: 156.145 }, + { l: 15, x: 17.83, y: 156.1667 }, + { l: 15, x: 17.92, y: 156.1879 }, + { l: 15, x: 18, y: 156.2101 }, + { l: 15, x: 18.08, y: 156.2301 }, + { l: 15, x: 18.17, y: 156.2492 }, + { l: 15, x: 18.25, y: 156.2675 }, + { l: 15, x: 18.33, y: 156.2848 }, + { l: 15, x: 18.42, y: 156.2995 }, + { l: 15, x: 18.5, y: 156.3146 }, + { l: 15, x: 18.58, y: 156.3286 }, + { l: 15, x: 18.67, y: 156.3397 }, + { l: 15, x: 18.75, y: 156.3514 }, + { l: 15, x: 18.83, y: 156.3602 }, + { l: 15, x: 18.92, y: 156.3694 }, + { l: 15, x: 19, y: 156.3758 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 109.6016 }, + { l: 50, x: 5.17, y: 110.1258 }, + { l: 50, x: 5.25, y: 110.6451 }, + { l: 50, x: 5.33, y: 111.1596 }, + { l: 50, x: 5.42, y: 111.6696 }, + { l: 50, x: 5.5, y: 112.1753 }, + { l: 50, x: 5.58, y: 112.6767 }, + { l: 50, x: 5.67, y: 113.174 }, + { l: 50, x: 5.75, y: 113.6672 }, + { l: 50, x: 5.83, y: 114.1565 }, + { l: 50, x: 5.92, y: 114.6421 }, + { l: 50, x: 6, y: 115.1244 }, + { l: 50, x: 6.08, y: 115.6039 }, + { l: 50, x: 6.17, y: 116.0812 }, + { l: 50, x: 6.25, y: 116.5568 }, + { l: 50, x: 6.33, y: 117.0311 }, + { l: 50, x: 6.42, y: 117.5044 }, + { l: 50, x: 6.5, y: 117.9769 }, + { l: 50, x: 6.58, y: 118.4489 }, + { l: 50, x: 6.67, y: 118.9208 }, + { l: 50, x: 6.75, y: 119.3926 }, + { l: 50, x: 6.83, y: 119.8648 }, + { l: 50, x: 6.92, y: 120.3374 }, + { l: 50, x: 7, y: 120.8105 }, + { l: 50, x: 7.08, y: 121.2843 }, + { l: 50, x: 7.17, y: 121.7587 }, + { l: 50, x: 7.25, y: 122.2338 }, + { l: 50, x: 7.33, y: 122.7098 }, + { l: 50, x: 7.42, y: 123.1868 }, + { l: 50, x: 7.5, y: 123.6646 }, + { l: 50, x: 7.58, y: 124.1435 }, + { l: 50, x: 7.67, y: 124.6234 }, + { l: 50, x: 7.75, y: 125.1045 }, + { l: 50, x: 7.83, y: 125.5869 }, + { l: 50, x: 7.92, y: 126.0706 }, + { l: 50, x: 8, y: 126.5558 }, + { l: 50, x: 8.08, y: 127.0424 }, + { l: 50, x: 8.17, y: 127.5304 }, + { l: 50, x: 8.25, y: 128.0199 }, + { l: 50, x: 8.33, y: 128.5109 }, + { l: 50, x: 8.42, y: 129.0035 }, + { l: 50, x: 8.5, y: 129.4975 }, + { l: 50, x: 8.58, y: 129.9932 }, + { l: 50, x: 8.67, y: 130.4904 }, + { l: 50, x: 8.75, y: 130.9891 }, + { l: 50, x: 8.83, y: 131.4895 }, + { l: 50, x: 8.92, y: 131.9912 }, + { l: 50, x: 9, y: 132.4944 }, + { l: 50, x: 9.08, y: 132.9989 }, + { l: 50, x: 9.17, y: 133.5046 }, + { l: 50, x: 9.25, y: 134.0118 }, + { l: 50, x: 9.33, y: 134.5202 }, + { l: 50, x: 9.42, y: 135.0299 }, + { l: 50, x: 9.5, y: 135.541 }, + { l: 50, x: 9.58, y: 136.0533 }, + { l: 50, x: 9.67, y: 136.567 }, + { l: 50, x: 9.75, y: 137.0821 }, + { l: 50, x: 9.83, y: 137.5987 }, + { l: 50, x: 9.92, y: 138.1167 }, + { l: 50, x: 10, y: 138.6363 }, + { l: 50, x: 10.08, y: 139.1575 }, + { l: 50, x: 10.17, y: 139.6803 }, + { l: 50, x: 10.25, y: 140.2049 }, + { l: 50, x: 10.33, y: 140.7313 }, + { l: 50, x: 10.42, y: 141.2594 }, + { l: 50, x: 10.5, y: 141.7892 }, + { l: 50, x: 10.58, y: 142.3206 }, + { l: 50, x: 10.67, y: 142.8534 }, + { l: 50, x: 10.75, y: 143.3874 }, + { l: 50, x: 10.83, y: 143.9222 }, + { l: 50, x: 10.92, y: 144.4575 }, + { l: 50, x: 11, y: 144.9929 }, + { l: 50, x: 11.08, y: 145.528 }, + { l: 50, x: 11.17, y: 146.0622 }, + { l: 50, x: 11.25, y: 146.5951 }, + { l: 50, x: 11.33, y: 147.1262 }, + { l: 50, x: 11.42, y: 147.6548 }, + { l: 50, x: 11.5, y: 148.1804 }, + { l: 50, x: 11.58, y: 148.7023 }, + { l: 50, x: 11.67, y: 149.2197 }, + { l: 50, x: 11.75, y: 149.7322 }, + { l: 50, x: 11.83, y: 150.239 }, + { l: 50, x: 11.92, y: 150.7394 }, + { l: 50, x: 12, y: 151.2327 }, + { l: 50, x: 12.08, y: 151.7182 }, + { l: 50, x: 12.17, y: 152.1951 }, + { l: 50, x: 12.25, y: 152.6628 }, + { l: 50, x: 12.33, y: 153.1206 }, + { l: 50, x: 12.42, y: 153.5678 }, + { l: 50, x: 12.5, y: 154.0041 }, + { l: 50, x: 12.58, y: 154.429 }, + { l: 50, x: 12.67, y: 154.8423 }, + { l: 50, x: 12.75, y: 155.2437 }, + { l: 50, x: 12.83, y: 155.633 }, + { l: 50, x: 12.92, y: 156.0101 }, + { l: 50, x: 13, y: 156.3748 }, + { l: 50, x: 13.08, y: 156.7269 }, + { l: 50, x: 13.17, y: 157.0666 }, + { l: 50, x: 13.25, y: 157.3936 }, + { l: 50, x: 13.33, y: 157.7082 }, + { l: 50, x: 13.42, y: 158.0102 }, + { l: 50, x: 13.5, y: 158.2997 }, + { l: 50, x: 13.58, y: 158.5771 }, + { l: 50, x: 13.67, y: 158.8425 }, + { l: 50, x: 13.75, y: 159.0961 }, + { l: 50, x: 13.83, y: 159.3382 }, + { l: 50, x: 13.92, y: 159.5691 }, + { l: 50, x: 14, y: 159.789 }, + { l: 50, x: 14.08, y: 159.9983 }, + { l: 50, x: 14.17, y: 160.1971 }, + { l: 50, x: 14.25, y: 160.3857 }, + { l: 50, x: 14.33, y: 160.5643 }, + { l: 50, x: 14.42, y: 160.7332 }, + { l: 50, x: 14.5, y: 160.8927 }, + { l: 50, x: 14.58, y: 161.043 }, + { l: 50, x: 14.67, y: 161.1845 }, + { l: 50, x: 14.75, y: 161.3176 }, + { l: 50, x: 14.83, y: 161.4425 }, + { l: 50, x: 14.92, y: 161.5596 }, + { l: 50, x: 15, y: 161.6692 }, + { l: 50, x: 15.08, y: 161.7717 }, + { l: 50, x: 15.17, y: 161.8673 }, + { l: 50, x: 15.25, y: 161.9564 }, + { l: 50, x: 15.33, y: 162.0393 }, + { l: 50, x: 15.42, y: 162.1164 }, + { l: 50, x: 15.5, y: 162.188 }, + { l: 50, x: 15.58, y: 162.2542 }, + { l: 50, x: 15.67, y: 162.3154 }, + { l: 50, x: 15.75, y: 162.3719 }, + { l: 50, x: 15.83, y: 162.4239 }, + { l: 50, x: 15.92, y: 162.4717 }, + { l: 50, x: 16, y: 162.5156 }, + { l: 50, x: 16.08, y: 162.556 }, + { l: 50, x: 16.17, y: 162.5933 }, + { l: 50, x: 16.25, y: 162.6276 }, + { l: 50, x: 16.33, y: 162.6594 }, + { l: 50, x: 16.42, y: 162.689 }, + { l: 50, x: 16.5, y: 162.7165 }, + { l: 50, x: 16.58, y: 162.7425 }, + { l: 50, x: 16.67, y: 162.767 }, + { l: 50, x: 16.75, y: 162.7904 }, + { l: 50, x: 16.83, y: 162.8126 }, + { l: 50, x: 16.92, y: 162.834 }, + { l: 50, x: 17, y: 162.8545 }, + { l: 50, x: 17.08, y: 162.8743 }, + { l: 50, x: 17.17, y: 162.8935 }, + { l: 50, x: 17.25, y: 162.912 }, + { l: 50, x: 17.33, y: 162.93 }, + { l: 50, x: 17.42, y: 162.9476 }, + { l: 50, x: 17.5, y: 162.9649 }, + { l: 50, x: 17.58, y: 162.9817 }, + { l: 50, x: 17.67, y: 162.9983 }, + { l: 50, x: 17.75, y: 163.0144 }, + { l: 50, x: 17.83, y: 163.03 }, + { l: 50, x: 17.92, y: 163.0451 }, + { l: 50, x: 18, y: 163.0595 }, + { l: 50, x: 18.08, y: 163.0733 }, + { l: 50, x: 18.17, y: 163.0862 }, + { l: 50, x: 18.25, y: 163.0982 }, + { l: 50, x: 18.33, y: 163.1092 }, + { l: 50, x: 18.42, y: 163.1192 }, + { l: 50, x: 18.5, y: 163.1279 }, + { l: 50, x: 18.58, y: 163.1355 }, + { l: 50, x: 18.67, y: 163.1418 }, + { l: 50, x: 18.75, y: 163.1469 }, + { l: 50, x: 18.83, y: 163.1508 }, + { l: 50, x: 18.92, y: 163.1534 }, + { l: 50, x: 19, y: 163.1548 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 114.5485 }, + { l: 85, x: 5.17, y: 115.1066 }, + { l: 85, x: 5.25, y: 115.6597 }, + { l: 85, x: 5.33, y: 116.2079 }, + { l: 85, x: 5.42, y: 116.7503 }, + { l: 85, x: 5.5, y: 117.2895 }, + { l: 85, x: 5.58, y: 117.8231 }, + { l: 85, x: 5.67, y: 118.3525 }, + { l: 85, x: 5.75, y: 118.8777 }, + { l: 85, x: 5.83, y: 119.3989 }, + { l: 85, x: 5.92, y: 119.9163 }, + { l: 85, x: 6, y: 120.4303 }, + { l: 85, x: 6.08, y: 120.9403 }, + { l: 85, x: 6.17, y: 121.4481 }, + { l: 85, x: 6.25, y: 121.9553 }, + { l: 85, x: 6.33, y: 122.4589 }, + { l: 85, x: 6.42, y: 122.9626 }, + { l: 85, x: 6.5, y: 123.4657 }, + { l: 85, x: 6.58, y: 123.967 }, + { l: 85, x: 6.67, y: 124.4695 }, + { l: 85, x: 6.75, y: 124.9707 }, + { l: 85, x: 6.83, y: 125.4724 }, + { l: 85, x: 6.92, y: 125.9746 }, + { l: 85, x: 7, y: 126.4762 }, + { l: 85, x: 7.08, y: 126.9797 }, + { l: 85, x: 7.17, y: 127.4827 }, + { l: 85, x: 7.25, y: 127.9877 }, + { l: 85, x: 7.33, y: 128.4925 }, + { l: 85, x: 7.42, y: 128.9971 }, + { l: 85, x: 7.5, y: 129.5038 }, + { l: 85, x: 7.58, y: 130.0118 }, + { l: 85, x: 7.67, y: 130.5195 }, + { l: 85, x: 7.75, y: 131.0286 }, + { l: 85, x: 7.83, y: 131.539 }, + { l: 85, x: 7.92, y: 132.0509 }, + { l: 85, x: 8, y: 132.5644 }, + { l: 85, x: 8.08, y: 133.0793 }, + { l: 85, x: 8.17, y: 133.5945 }, + { l: 85, x: 8.25, y: 134.1112 }, + { l: 85, x: 8.33, y: 134.6296 }, + { l: 85, x: 8.42, y: 135.1497 }, + { l: 85, x: 8.5, y: 135.6712 }, + { l: 85, x: 8.58, y: 136.1932 }, + { l: 85, x: 8.67, y: 136.7169 }, + { l: 85, x: 8.75, y: 137.2434 }, + { l: 85, x: 8.83, y: 137.7691 }, + { l: 85, x: 8.92, y: 138.2975 }, + { l: 85, x: 9, y: 138.8275 }, + { l: 85, x: 9.08, y: 139.3575 }, + { l: 85, x: 9.17, y: 139.8887 }, + { l: 85, x: 9.25, y: 140.4216 }, + { l: 85, x: 9.33, y: 140.9557 }, + { l: 85, x: 9.42, y: 141.4898 }, + { l: 85, x: 9.5, y: 142.0267 }, + { l: 85, x: 9.58, y: 142.5635 }, + { l: 85, x: 9.67, y: 143.1004 }, + { l: 85, x: 9.75, y: 143.6401 }, + { l: 85, x: 9.83, y: 144.1815 }, + { l: 85, x: 9.92, y: 144.7228 }, + { l: 85, x: 10, y: 145.2658 }, + { l: 85, x: 10.08, y: 145.8091 }, + { l: 85, x: 10.17, y: 146.3554 }, + { l: 85, x: 10.25, y: 146.9022 }, + { l: 85, x: 10.33, y: 147.4508 }, + { l: 85, x: 10.42, y: 148.0012 }, + { l: 85, x: 10.5, y: 148.5533 }, + { l: 85, x: 10.58, y: 149.1056 }, + { l: 85, x: 10.67, y: 149.6594 }, + { l: 85, x: 10.75, y: 150.2144 }, + { l: 85, x: 10.83, y: 150.7702 }, + { l: 85, x: 10.92, y: 151.3265 }, + { l: 85, x: 11, y: 151.8813 }, + { l: 85, x: 11.08, y: 152.4358 }, + { l: 85, x: 11.17, y: 152.9893 }, + { l: 85, x: 11.25, y: 153.5399 }, + { l: 85, x: 11.33, y: 154.09 }, + { l: 85, x: 11.42, y: 154.636 }, + { l: 85, x: 11.5, y: 155.1788 }, + { l: 85, x: 11.58, y: 155.7176 }, + { l: 85, x: 11.67, y: 156.2501 }, + { l: 85, x: 11.75, y: 156.779 }, + { l: 85, x: 11.83, y: 157.3003 }, + { l: 85, x: 11.92, y: 157.8149 }, + { l: 85, x: 12, y: 158.3219 }, + { l: 85, x: 12.08, y: 158.8192 }, + { l: 85, x: 12.17, y: 159.3089 }, + { l: 85, x: 12.25, y: 159.7874 }, + { l: 85, x: 12.33, y: 160.2571 }, + { l: 85, x: 12.42, y: 160.714 }, + { l: 85, x: 12.5, y: 161.1594 }, + { l: 85, x: 12.58, y: 161.5928 }, + { l: 85, x: 12.67, y: 162.0125 }, + { l: 85, x: 12.75, y: 162.4212 }, + { l: 85, x: 12.83, y: 162.8172 }, + { l: 85, x: 12.92, y: 163.1988 }, + { l: 85, x: 13, y: 163.5689 }, + { l: 85, x: 13.08, y: 163.9243 }, + { l: 85, x: 13.17, y: 164.2665 }, + { l: 85, x: 13.25, y: 164.5955 }, + { l: 85, x: 13.33, y: 164.913 }, + { l: 85, x: 13.42, y: 165.2157 }, + { l: 85, x: 13.5, y: 165.5053 }, + { l: 85, x: 13.58, y: 165.7822 }, + { l: 85, x: 13.67, y: 166.0465 }, + { l: 85, x: 13.75, y: 166.3 }, + { l: 85, x: 13.83, y: 166.5399 }, + { l: 85, x: 13.92, y: 166.768 }, + { l: 85, x: 14, y: 166.9846 }, + { l: 85, x: 14.08, y: 167.19 }, + { l: 85, x: 14.17, y: 167.3861 }, + { l: 85, x: 14.25, y: 167.5699 }, + { l: 85, x: 14.33, y: 167.7432 }, + { l: 85, x: 14.42, y: 167.908 }, + { l: 85, x: 14.5, y: 168.0612 }, + { l: 85, x: 14.58, y: 168.2066 }, + { l: 85, x: 14.67, y: 168.341 }, + { l: 85, x: 14.75, y: 168.4683 }, + { l: 85, x: 14.83, y: 168.587 }, + { l: 85, x: 14.92, y: 168.6976 }, + { l: 85, x: 15, y: 168.7986 }, + { l: 85, x: 15.08, y: 168.8939 }, + { l: 85, x: 15.17, y: 168.982 }, + { l: 85, x: 15.25, y: 169.0649 }, + { l: 85, x: 15.33, y: 169.1397 }, + { l: 85, x: 15.42, y: 169.2084 }, + { l: 85, x: 15.5, y: 169.2714 }, + { l: 85, x: 15.58, y: 169.3304 }, + { l: 85, x: 15.67, y: 169.3825 }, + { l: 85, x: 15.75, y: 169.4313 }, + { l: 85, x: 15.83, y: 169.4755 }, + { l: 85, x: 15.92, y: 169.5136 }, + { l: 85, x: 16, y: 169.5493 }, + { l: 85, x: 16.08, y: 169.5813 }, + { l: 85, x: 16.17, y: 169.6101 }, + { l: 85, x: 16.25, y: 169.6358 }, + { l: 85, x: 16.33, y: 169.6588 }, + { l: 85, x: 16.42, y: 169.6813 }, + { l: 85, x: 16.5, y: 169.6999 }, + { l: 85, x: 16.58, y: 169.7185 }, + { l: 85, x: 16.67, y: 169.734 }, + { l: 85, x: 16.75, y: 169.7499 }, + { l: 85, x: 16.83, y: 169.763 }, + { l: 85, x: 16.92, y: 169.7768 }, + { l: 85, x: 17, y: 169.7898 }, + { l: 85, x: 17.08, y: 169.802 }, + { l: 85, x: 17.17, y: 169.8135 }, + { l: 85, x: 17.25, y: 169.8244 }, + { l: 85, x: 17.33, y: 169.8347 }, + { l: 85, x: 17.42, y: 169.8446 }, + { l: 85, x: 17.5, y: 169.8559 }, + { l: 85, x: 17.58, y: 169.865 }, + { l: 85, x: 17.67, y: 169.8755 }, + { l: 85, x: 17.75, y: 169.8838 }, + { l: 85, x: 17.83, y: 169.8933 }, + { l: 85, x: 17.92, y: 169.9023 }, + { l: 85, x: 18, y: 169.9089 }, + { l: 85, x: 18.08, y: 169.9165 }, + { l: 85, x: 18.17, y: 169.9232 }, + { l: 85, x: 18.25, y: 169.9289 }, + { l: 85, x: 18.33, y: 169.9336 }, + { l: 85, x: 18.42, y: 169.9389 }, + { l: 85, x: 18.5, y: 169.9412 }, + { l: 85, x: 18.58, y: 169.9424 }, + { l: 85, x: 18.67, y: 169.9439 }, + { l: 85, x: 18.75, y: 169.9424 }, + { l: 85, x: 18.83, y: 169.9414 }, + { l: 85, x: 18.92, y: 169.9374 }, + { l: 85, x: 19, y: 169.9338 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 115.7189 }, + { l: 90, x: 5.17, y: 116.285 }, + { l: 90, x: 5.25, y: 116.8461 }, + { l: 90, x: 5.33, y: 117.4023 }, + { l: 90, x: 5.42, y: 117.9524 }, + { l: 90, x: 5.5, y: 118.4995 }, + { l: 90, x: 5.58, y: 119.0407 }, + { l: 90, x: 5.67, y: 119.5777 }, + { l: 90, x: 5.75, y: 120.1104 }, + { l: 90, x: 5.83, y: 120.6392 }, + { l: 90, x: 5.92, y: 121.1641 }, + { l: 90, x: 6, y: 121.6857 }, + { l: 90, x: 6.08, y: 122.2029 }, + { l: 90, x: 6.17, y: 122.7178 }, + { l: 90, x: 6.25, y: 123.2326 }, + { l: 90, x: 6.33, y: 123.743 }, + { l: 90, x: 6.42, y: 124.254 }, + { l: 90, x: 6.5, y: 124.7642 }, + { l: 90, x: 6.58, y: 125.2725 }, + { l: 90, x: 6.67, y: 125.7822 }, + { l: 90, x: 6.75, y: 126.2905 }, + { l: 90, x: 6.83, y: 126.7991 }, + { l: 90, x: 6.92, y: 127.3083 }, + { l: 90, x: 7, y: 127.8166 }, + { l: 90, x: 7.08, y: 128.3272 }, + { l: 90, x: 7.17, y: 128.8369 }, + { l: 90, x: 7.25, y: 129.3491 }, + { l: 90, x: 7.33, y: 129.8606 }, + { l: 90, x: 7.42, y: 130.3717 }, + { l: 90, x: 7.5, y: 130.8853 }, + { l: 90, x: 7.58, y: 131.4002 }, + { l: 90, x: 7.67, y: 131.9145 }, + { l: 90, x: 7.75, y: 132.4302 }, + { l: 90, x: 7.83, y: 132.9472 }, + { l: 90, x: 7.92, y: 133.4658 }, + { l: 90, x: 8, y: 133.9859 }, + { l: 90, x: 8.08, y: 134.5076 }, + { l: 90, x: 8.17, y: 135.0292 }, + { l: 90, x: 8.25, y: 135.5524 }, + { l: 90, x: 8.33, y: 136.0772 }, + { l: 90, x: 8.42, y: 136.6038 }, + { l: 90, x: 8.5, y: 137.1318 }, + { l: 90, x: 8.58, y: 137.6601 }, + { l: 90, x: 8.67, y: 138.19 }, + { l: 90, x: 8.75, y: 138.7231 }, + { l: 90, x: 8.83, y: 139.2548 }, + { l: 90, x: 8.92, y: 139.7895 }, + { l: 90, x: 9, y: 140.3258 }, + { l: 90, x: 9.08, y: 140.8618 }, + { l: 90, x: 9.17, y: 141.3991 }, + { l: 90, x: 9.25, y: 141.938 }, + { l: 90, x: 9.33, y: 142.4782 }, + { l: 90, x: 9.42, y: 143.0181 }, + { l: 90, x: 9.5, y: 143.5612 }, + { l: 90, x: 9.58, y: 144.1038 }, + { l: 90, x: 9.67, y: 144.6461 }, + { l: 90, x: 9.75, y: 145.1917 }, + { l: 90, x: 9.83, y: 145.7389 }, + { l: 90, x: 9.92, y: 146.2857 }, + { l: 90, x: 10, y: 146.8343 }, + { l: 90, x: 10.08, y: 147.3827 }, + { l: 90, x: 10.17, y: 147.9346 }, + { l: 90, x: 10.25, y: 148.4867 }, + { l: 90, x: 10.33, y: 149.0405 }, + { l: 90, x: 10.42, y: 149.5962 }, + { l: 90, x: 10.5, y: 150.1536 }, + { l: 90, x: 10.58, y: 150.7109 }, + { l: 90, x: 10.67, y: 151.2696 }, + { l: 90, x: 10.75, y: 151.8296 }, + { l: 90, x: 10.83, y: 152.3903 }, + { l: 90, x: 10.92, y: 152.9516 }, + { l: 90, x: 11, y: 153.511 }, + { l: 90, x: 11.08, y: 154.0701 }, + { l: 90, x: 11.17, y: 154.6282 }, + { l: 90, x: 11.25, y: 155.1829 }, + { l: 90, x: 11.33, y: 155.7376 }, + { l: 90, x: 11.42, y: 156.2877 }, + { l: 90, x: 11.5, y: 156.8345 }, + { l: 90, x: 11.58, y: 157.3774 }, + { l: 90, x: 11.67, y: 157.9135 }, + { l: 90, x: 11.75, y: 158.4462 }, + { l: 90, x: 11.83, y: 158.971 }, + { l: 90, x: 11.92, y: 159.4889 }, + { l: 90, x: 12, y: 159.9992 }, + { l: 90, x: 12.08, y: 160.4992 }, + { l: 90, x: 12.17, y: 160.992 }, + { l: 90, x: 12.25, y: 161.473 }, + { l: 90, x: 12.33, y: 161.9455 }, + { l: 90, x: 12.42, y: 162.4047 }, + { l: 90, x: 12.5, y: 162.8523 }, + { l: 90, x: 12.58, y: 163.2877 }, + { l: 90, x: 12.67, y: 163.7089 }, + { l: 90, x: 12.75, y: 164.1193 }, + { l: 90, x: 12.83, y: 164.5169 }, + { l: 90, x: 12.92, y: 164.8995 }, + { l: 90, x: 13, y: 165.271 }, + { l: 90, x: 13.08, y: 165.6271 }, + { l: 90, x: 13.17, y: 165.9699 }, + { l: 90, x: 13.25, y: 166.2993 }, + { l: 90, x: 13.33, y: 166.6176 }, + { l: 90, x: 13.42, y: 166.9205 }, + { l: 90, x: 13.5, y: 167.2101 }, + { l: 90, x: 13.58, y: 167.4868 }, + { l: 90, x: 13.67, y: 167.7508 }, + { l: 90, x: 13.75, y: 168.0044 }, + { l: 90, x: 13.83, y: 168.2437 }, + { l: 90, x: 13.92, y: 168.4711 }, + { l: 90, x: 14, y: 168.6869 }, + { l: 90, x: 14.08, y: 168.8915 }, + { l: 90, x: 14.17, y: 169.087 }, + { l: 90, x: 14.25, y: 169.2696 }, + { l: 90, x: 14.33, y: 169.4416 }, + { l: 90, x: 14.42, y: 169.6054 }, + { l: 90, x: 14.5, y: 169.7572 }, + { l: 90, x: 14.58, y: 169.9014 }, + { l: 90, x: 14.67, y: 170.0341 }, + { l: 90, x: 14.75, y: 170.1601 }, + { l: 90, x: 14.83, y: 170.2773 }, + { l: 90, x: 14.92, y: 170.3863 }, + { l: 90, x: 15, y: 170.4854 }, + { l: 90, x: 15.08, y: 170.5789 }, + { l: 90, x: 15.17, y: 170.6652 }, + { l: 90, x: 15.25, y: 170.7467 }, + { l: 90, x: 15.33, y: 170.8196 }, + { l: 90, x: 15.42, y: 170.8863 }, + { l: 90, x: 15.5, y: 170.9472 }, + { l: 90, x: 15.58, y: 171.0045 }, + { l: 90, x: 15.67, y: 171.0545 }, + { l: 90, x: 15.75, y: 171.1015 }, + { l: 90, x: 15.83, y: 171.1438 }, + { l: 90, x: 15.92, y: 171.1796 }, + { l: 90, x: 16, y: 171.2134 }, + { l: 90, x: 16.08, y: 171.2434 }, + { l: 90, x: 16.17, y: 171.2702 }, + { l: 90, x: 16.25, y: 171.2939 }, + { l: 90, x: 16.33, y: 171.3148 }, + { l: 90, x: 16.42, y: 171.3356 }, + { l: 90, x: 16.5, y: 171.352 }, + { l: 90, x: 16.58, y: 171.369 }, + { l: 90, x: 16.67, y: 171.3823 }, + { l: 90, x: 16.75, y: 171.3965 }, + { l: 90, x: 16.83, y: 171.4073 }, + { l: 90, x: 16.92, y: 171.4194 }, + { l: 90, x: 17, y: 171.4306 }, + { l: 90, x: 17.08, y: 171.441 }, + { l: 90, x: 17.17, y: 171.4507 }, + { l: 90, x: 17.25, y: 171.4598 }, + { l: 90, x: 17.33, y: 171.4683 }, + { l: 90, x: 17.42, y: 171.4764 }, + { l: 90, x: 17.5, y: 171.4862 }, + { l: 90, x: 17.58, y: 171.4935 }, + { l: 90, x: 17.67, y: 171.5026 }, + { l: 90, x: 17.75, y: 171.5091 }, + { l: 90, x: 17.83, y: 171.5171 }, + { l: 90, x: 17.92, y: 171.5246 }, + { l: 90, x: 18, y: 171.5293 }, + { l: 90, x: 18.08, y: 171.5355 }, + { l: 90, x: 18.17, y: 171.5407 }, + { l: 90, x: 18.25, y: 171.545 }, + { l: 90, x: 18.33, y: 171.5482 }, + { l: 90, x: 18.42, y: 171.5524 }, + { l: 90, x: 18.5, y: 171.5532 }, + { l: 90, x: 18.58, y: 171.5528 }, + { l: 90, x: 18.67, y: 171.5532 }, + { l: 90, x: 18.75, y: 171.5502 }, + { l: 90, x: 18.83, y: 171.548 }, + { l: 90, x: 18.92, y: 171.5424 }, + { l: 90, x: 19, y: 171.5376 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 117.453 }, + { l: 95, x: 5.17, y: 118.031 }, + { l: 95, x: 5.25, y: 118.604 }, + { l: 95, x: 5.33, y: 119.1719 }, + { l: 95, x: 5.42, y: 119.7334 }, + { l: 95, x: 5.5, y: 120.2922 }, + { l: 95, x: 5.58, y: 120.8447 }, + { l: 95, x: 5.67, y: 121.393 }, + { l: 95, x: 5.75, y: 121.9369 }, + { l: 95, x: 5.83, y: 122.4769 }, + { l: 95, x: 5.92, y: 123.0129 }, + { l: 95, x: 6, y: 123.5456 }, + { l: 95, x: 6.08, y: 124.0735 }, + { l: 95, x: 6.17, y: 124.5991 }, + { l: 95, x: 6.25, y: 125.125 }, + { l: 95, x: 6.33, y: 125.6457 }, + { l: 95, x: 6.42, y: 126.1673 }, + { l: 95, x: 6.5, y: 126.6883 }, + { l: 95, x: 6.58, y: 127.2068 }, + { l: 95, x: 6.67, y: 127.7273 }, + { l: 95, x: 6.75, y: 128.2458 }, + { l: 95, x: 6.83, y: 128.7649 }, + { l: 95, x: 6.92, y: 129.2844 }, + { l: 95, x: 7, y: 129.8026 }, + { l: 95, x: 7.08, y: 130.3237 }, + { l: 95, x: 7.17, y: 130.8434 }, + { l: 95, x: 7.25, y: 131.3661 }, + { l: 95, x: 7.33, y: 131.8877 }, + { l: 95, x: 7.42, y: 132.4085 }, + { l: 95, x: 7.5, y: 132.9322 }, + { l: 95, x: 7.58, y: 133.4572 }, + { l: 95, x: 7.67, y: 133.9813 }, + { l: 95, x: 7.75, y: 134.5068 }, + { l: 95, x: 7.83, y: 135.0337 }, + { l: 95, x: 7.92, y: 135.5621 }, + { l: 95, x: 8, y: 136.0921 }, + { l: 95, x: 8.08, y: 136.6238 }, + { l: 95, x: 8.17, y: 137.1549 }, + { l: 95, x: 8.25, y: 137.6876 }, + { l: 95, x: 8.33, y: 138.222 }, + { l: 95, x: 8.42, y: 138.7582 }, + { l: 95, x: 8.5, y: 139.296 }, + { l: 95, x: 8.58, y: 139.8335 }, + { l: 95, x: 8.67, y: 140.3726 }, + { l: 95, x: 8.75, y: 140.9155 }, + { l: 95, x: 8.83, y: 141.456 }, + { l: 95, x: 8.92, y: 142.0001 }, + { l: 95, x: 9, y: 142.5458 }, + { l: 95, x: 9.08, y: 143.0908 }, + { l: 95, x: 9.17, y: 143.637 }, + { l: 95, x: 9.25, y: 144.1849 }, + { l: 95, x: 9.33, y: 144.7341 }, + { l: 95, x: 9.42, y: 145.2825 }, + { l: 95, x: 9.5, y: 145.8347 }, + { l: 95, x: 9.58, y: 146.3859 }, + { l: 95, x: 9.67, y: 146.9363 }, + { l: 95, x: 9.75, y: 147.4905 }, + { l: 95, x: 9.83, y: 148.0464 }, + { l: 95, x: 9.92, y: 148.6014 }, + { l: 95, x: 10, y: 149.1582 }, + { l: 95, x: 10.08, y: 149.7144 }, + { l: 95, x: 10.17, y: 150.2745 }, + { l: 95, x: 10.25, y: 150.8343 }, + { l: 95, x: 10.33, y: 151.396 }, + { l: 95, x: 10.42, y: 151.9595 }, + { l: 95, x: 10.5, y: 152.5247 }, + { l: 95, x: 10.58, y: 153.0893 }, + { l: 95, x: 10.67, y: 153.6554 }, + { l: 95, x: 10.75, y: 154.2227 }, + { l: 95, x: 10.83, y: 154.7908 }, + { l: 95, x: 10.92, y: 155.3594 }, + { l: 95, x: 11, y: 155.9257 }, + { l: 95, x: 11.08, y: 156.4916 }, + { l: 95, x: 11.17, y: 157.0564 }, + { l: 95, x: 11.25, y: 157.6173 }, + { l: 95, x: 11.33, y: 158.1787 }, + { l: 95, x: 11.42, y: 158.7349 }, + { l: 95, x: 11.5, y: 159.2877 }, + { l: 95, x: 11.58, y: 159.8365 }, + { l: 95, x: 11.67, y: 160.3779 }, + { l: 95, x: 11.75, y: 160.9164 }, + { l: 95, x: 11.83, y: 161.4463 }, + { l: 95, x: 11.92, y: 161.9691 }, + { l: 95, x: 12, y: 162.4842 }, + { l: 95, x: 12.08, y: 162.9884 }, + { l: 95, x: 12.17, y: 163.4857 }, + { l: 95, x: 12.25, y: 163.9705 }, + { l: 95, x: 12.33, y: 164.4471 }, + { l: 95, x: 12.42, y: 164.9097 }, + { l: 95, x: 12.5, y: 165.3605 }, + { l: 95, x: 12.58, y: 165.7989 }, + { l: 95, x: 12.67, y: 166.2223 }, + { l: 95, x: 12.75, y: 166.6353 }, + { l: 95, x: 12.83, y: 167.0353 }, + { l: 95, x: 12.92, y: 167.4195 }, + { l: 95, x: 13, y: 167.7928 }, + { l: 95, x: 13.08, y: 168.15 }, + { l: 95, x: 13.17, y: 168.4938 }, + { l: 95, x: 13.25, y: 168.8239 }, + { l: 95, x: 13.33, y: 169.1432 }, + { l: 95, x: 13.42, y: 169.4463 }, + { l: 95, x: 13.5, y: 169.7359 }, + { l: 95, x: 13.58, y: 170.0125 }, + { l: 95, x: 13.67, y: 170.2761 }, + { l: 95, x: 13.75, y: 170.5296 }, + { l: 95, x: 13.83, y: 170.7682 }, + { l: 95, x: 13.92, y: 170.9946 }, + { l: 95, x: 14, y: 171.2093 }, + { l: 95, x: 14.08, y: 171.4125 }, + { l: 95, x: 14.17, y: 171.607 }, + { l: 95, x: 14.25, y: 171.7879 }, + { l: 95, x: 14.33, y: 171.9581 }, + { l: 95, x: 14.42, y: 172.1205 }, + { l: 95, x: 14.5, y: 172.2701 }, + { l: 95, x: 14.58, y: 172.4125 }, + { l: 95, x: 14.67, y: 172.5428 }, + { l: 95, x: 14.75, y: 172.6667 }, + { l: 95, x: 14.83, y: 172.7818 }, + { l: 95, x: 14.92, y: 172.8885 }, + { l: 95, x: 15, y: 172.9845 }, + { l: 95, x: 15.08, y: 173.0756 }, + { l: 95, x: 15.17, y: 173.1592 }, + { l: 95, x: 15.25, y: 173.2385 }, + { l: 95, x: 15.33, y: 173.3085 }, + { l: 95, x: 15.42, y: 173.3723 }, + { l: 95, x: 15.5, y: 173.4302 }, + { l: 95, x: 15.58, y: 173.485 }, + { l: 95, x: 15.67, y: 173.5318 }, + { l: 95, x: 15.75, y: 173.5761 }, + { l: 95, x: 15.83, y: 173.6157 }, + { l: 95, x: 15.92, y: 173.6481 }, + { l: 95, x: 16, y: 173.679 }, + { l: 95, x: 16.08, y: 173.7061 }, + { l: 95, x: 16.17, y: 173.7299 }, + { l: 95, x: 16.25, y: 173.7505 }, + { l: 95, x: 16.33, y: 173.7684 }, + { l: 95, x: 16.42, y: 173.7867 }, + { l: 95, x: 16.5, y: 173.8 }, + { l: 95, x: 16.58, y: 173.8144 }, + { l: 95, x: 16.67, y: 173.8245 }, + { l: 95, x: 16.75, y: 173.8361 }, + { l: 95, x: 16.83, y: 173.8437 }, + { l: 95, x: 16.92, y: 173.8532 }, + { l: 95, x: 17, y: 173.8617 }, + { l: 95, x: 17.08, y: 173.8694 }, + { l: 95, x: 17.17, y: 173.8765 }, + { l: 95, x: 17.25, y: 173.8829 }, + { l: 95, x: 17.33, y: 173.8887 }, + { l: 95, x: 17.42, y: 173.894 }, + { l: 95, x: 17.5, y: 173.9018 }, + { l: 95, x: 17.58, y: 173.9063 }, + { l: 95, x: 17.67, y: 173.9133 }, + { l: 95, x: 17.75, y: 173.9171 }, + { l: 95, x: 17.83, y: 173.923 }, + { l: 95, x: 17.92, y: 173.9284 }, + { l: 95, x: 18, y: 173.9303 }, + { l: 95, x: 18.08, y: 173.9343 }, + { l: 95, x: 18.17, y: 173.9373 }, + { l: 95, x: 18.25, y: 173.9394 }, + { l: 95, x: 18.33, y: 173.9404 }, + { l: 95, x: 18.42, y: 173.943 }, + { l: 95, x: 18.5, y: 173.9416 }, + { l: 95, x: 18.58, y: 173.9389 }, + { l: 95, x: 18.67, y: 173.9376 }, + { l: 95, x: 18.75, y: 173.9323 }, + { l: 95, x: 18.83, y: 173.9284 }, + { l: 95, x: 18.92, y: 173.9204 }, + { l: 95, x: 19, y: 173.9139 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 118.5789 }, + { l: 97, x: 5.17, y: 119.1647 }, + { l: 97, x: 5.25, y: 119.7454 }, + { l: 97, x: 5.33, y: 120.321 }, + { l: 97, x: 5.42, y: 120.8898 }, + { l: 97, x: 5.5, y: 121.4563 }, + { l: 97, x: 5.58, y: 122.0161 }, + { l: 97, x: 5.67, y: 122.5717 }, + { l: 97, x: 5.75, y: 123.1229 }, + { l: 97, x: 5.83, y: 123.6701 }, + { l: 97, x: 5.92, y: 124.2134 }, + { l: 97, x: 6, y: 124.7533 }, + { l: 97, x: 6.08, y: 125.2881 }, + { l: 97, x: 6.17, y: 125.8207 }, + { l: 97, x: 6.25, y: 126.3537 }, + { l: 97, x: 6.33, y: 126.8811 }, + { l: 97, x: 6.42, y: 127.4097 }, + { l: 97, x: 6.5, y: 127.9376 }, + { l: 97, x: 6.58, y: 128.4628 }, + { l: 97, x: 6.67, y: 128.9903 }, + { l: 97, x: 6.75, y: 129.5155 }, + { l: 97, x: 6.83, y: 130.0412 }, + { l: 97, x: 6.92, y: 130.5675 }, + { l: 97, x: 7, y: 131.0922 }, + { l: 97, x: 7.08, y: 131.62 }, + { l: 97, x: 7.17, y: 132.1463 }, + { l: 97, x: 7.25, y: 132.6757 }, + { l: 97, x: 7.33, y: 133.2039 }, + { l: 97, x: 7.42, y: 133.731 }, + { l: 97, x: 7.5, y: 134.2613 }, + { l: 97, x: 7.58, y: 134.7929 }, + { l: 97, x: 7.67, y: 135.3234 }, + { l: 97, x: 7.75, y: 135.8552 }, + { l: 97, x: 7.83, y: 136.3885 }, + { l: 97, x: 7.92, y: 136.9233 }, + { l: 97, x: 8, y: 137.4598 }, + { l: 97, x: 8.08, y: 137.9979 }, + { l: 97, x: 8.17, y: 138.5351 }, + { l: 97, x: 8.25, y: 139.0741 }, + { l: 97, x: 8.33, y: 139.6147 }, + { l: 97, x: 8.42, y: 140.1572 }, + { l: 97, x: 8.5, y: 140.7012 }, + { l: 97, x: 8.58, y: 141.2447 }, + { l: 97, x: 8.67, y: 141.7898 }, + { l: 97, x: 8.75, y: 142.3391 }, + { l: 97, x: 8.83, y: 142.8853 }, + { l: 97, x: 8.92, y: 143.4355 }, + { l: 97, x: 9, y: 143.9873 }, + { l: 97, x: 9.08, y: 144.5381 }, + { l: 97, x: 9.17, y: 145.0901 }, + { l: 97, x: 9.25, y: 145.6439 }, + { l: 97, x: 9.33, y: 146.1989 }, + { l: 97, x: 9.42, y: 146.7529 }, + { l: 97, x: 9.5, y: 147.3109 }, + { l: 97, x: 9.58, y: 147.8677 }, + { l: 97, x: 9.67, y: 148.4234 }, + { l: 97, x: 9.75, y: 148.9833 }, + { l: 97, x: 9.83, y: 149.5447 }, + { l: 97, x: 9.92, y: 150.1051 }, + { l: 97, x: 10, y: 150.6672 }, + { l: 97, x: 10.08, y: 151.2284 }, + { l: 97, x: 10.17, y: 151.7939 }, + { l: 97, x: 10.25, y: 152.3587 }, + { l: 97, x: 10.33, y: 152.9254 }, + { l: 97, x: 10.42, y: 153.494 }, + { l: 97, x: 10.5, y: 154.0643 }, + { l: 97, x: 10.58, y: 154.6337 }, + { l: 97, x: 10.67, y: 155.2046 }, + { l: 97, x: 10.75, y: 155.7766 }, + { l: 97, x: 10.83, y: 156.3495 }, + { l: 97, x: 10.92, y: 156.9229 }, + { l: 97, x: 11, y: 157.4936 }, + { l: 97, x: 11.08, y: 158.0639 }, + { l: 97, x: 11.17, y: 158.6331 }, + { l: 97, x: 11.25, y: 159.1981 }, + { l: 97, x: 11.33, y: 159.7638 }, + { l: 97, x: 11.42, y: 160.3239 }, + { l: 97, x: 11.5, y: 160.8807 }, + { l: 97, x: 11.58, y: 161.4333 }, + { l: 97, x: 11.67, y: 161.9782 }, + { l: 97, x: 11.75, y: 162.5204 }, + { l: 97, x: 11.83, y: 163.0535 }, + { l: 97, x: 11.92, y: 163.5796 }, + { l: 97, x: 12, y: 164.0979 }, + { l: 97, x: 12.08, y: 164.6047 }, + { l: 97, x: 12.17, y: 165.1049 }, + { l: 97, x: 12.25, y: 165.5922 }, + { l: 97, x: 12.33, y: 166.0715 }, + { l: 97, x: 12.42, y: 166.5363 }, + { l: 97, x: 12.5, y: 166.9892 }, + { l: 97, x: 12.58, y: 167.4295 }, + { l: 97, x: 12.67, y: 167.8543 }, + { l: 97, x: 12.75, y: 168.269 }, + { l: 97, x: 12.83, y: 168.6705 }, + { l: 97, x: 12.92, y: 169.0557 }, + { l: 97, x: 13, y: 169.4303 }, + { l: 97, x: 13.08, y: 169.7882 }, + { l: 97, x: 13.17, y: 170.1326 }, + { l: 97, x: 13.25, y: 170.4631 }, + { l: 97, x: 13.33, y: 170.7831 }, + { l: 97, x: 13.42, y: 171.0864 }, + { l: 97, x: 13.5, y: 171.376 }, + { l: 97, x: 13.58, y: 171.6525 }, + { l: 97, x: 13.67, y: 171.9158 }, + { l: 97, x: 13.75, y: 172.1694 }, + { l: 97, x: 13.83, y: 172.4074 }, + { l: 97, x: 13.92, y: 172.6332 }, + { l: 97, x: 14, y: 172.8471 }, + { l: 97, x: 14.08, y: 173.0494 }, + { l: 97, x: 14.17, y: 173.2433 }, + { l: 97, x: 14.25, y: 173.4232 }, + { l: 97, x: 14.33, y: 173.5921 }, + { l: 97, x: 14.42, y: 173.7536 }, + { l: 97, x: 14.5, y: 173.9018 }, + { l: 97, x: 14.58, y: 174.043 }, + { l: 97, x: 14.67, y: 174.1717 }, + { l: 97, x: 14.75, y: 174.2943 }, + { l: 97, x: 14.83, y: 174.408 }, + { l: 97, x: 14.92, y: 174.5132 }, + { l: 97, x: 15, y: 174.6073 }, + { l: 97, x: 15.08, y: 174.6967 }, + { l: 97, x: 15.17, y: 174.7786 }, + { l: 97, x: 15.25, y: 174.8565 }, + { l: 97, x: 15.33, y: 174.9247 }, + { l: 97, x: 15.42, y: 174.9866 }, + { l: 97, x: 15.5, y: 175.0425 }, + { l: 97, x: 15.58, y: 175.0957 }, + { l: 97, x: 15.67, y: 175.1403 }, + { l: 97, x: 15.75, y: 175.183 }, + { l: 97, x: 15.83, y: 175.2207 }, + { l: 97, x: 15.92, y: 175.2509 }, + { l: 97, x: 16, y: 175.2799 }, + { l: 97, x: 16.08, y: 175.3052 }, + { l: 97, x: 16.17, y: 175.327 }, + { l: 97, x: 16.25, y: 175.3457 }, + { l: 97, x: 16.33, y: 175.3616 }, + { l: 97, x: 16.42, y: 175.3782 }, + { l: 97, x: 16.5, y: 175.3895 }, + { l: 97, x: 16.58, y: 175.4022 }, + { l: 97, x: 16.67, y: 175.4103 }, + { l: 97, x: 16.75, y: 175.4202 }, + { l: 97, x: 16.83, y: 175.4257 }, + { l: 97, x: 16.92, y: 175.4335 }, + { l: 97, x: 17, y: 175.4402 }, + { l: 97, x: 17.08, y: 175.4462 }, + { l: 97, x: 17.17, y: 175.4516 }, + { l: 97, x: 17.25, y: 175.4562 }, + { l: 97, x: 17.33, y: 175.4603 }, + { l: 97, x: 17.42, y: 175.4639 }, + { l: 97, x: 17.5, y: 175.4703 }, + { l: 97, x: 17.58, y: 175.473 }, + { l: 97, x: 17.67, y: 175.4787 }, + { l: 97, x: 17.75, y: 175.4807 }, + { l: 97, x: 17.83, y: 175.4852 }, + { l: 97, x: 17.92, y: 175.4892 }, + { l: 97, x: 18, y: 175.4893 }, + { l: 97, x: 18.08, y: 175.4919 }, + { l: 97, x: 18.17, y: 175.4935 }, + { l: 97, x: 18.25, y: 175.4942 }, + { l: 97, x: 18.33, y: 175.4937 }, + { l: 97, x: 18.42, y: 175.4953 }, + { l: 97, x: 18.5, y: 175.4924 }, + { l: 97, x: 18.58, y: 175.4883 }, + { l: 97, x: 18.67, y: 175.4859 }, + { l: 97, x: 18.75, y: 175.4791 }, + { l: 97, x: 18.83, y: 175.4741 }, + { l: 97, x: 18.92, y: 175.4646 }, + { l: 97, x: 19, y: 175.4569 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 120.7054 }, + { l: 99, x: 5.17, y: 121.3057 }, + { l: 99, x: 5.25, y: 121.9009 }, + { l: 99, x: 5.33, y: 122.491 }, + { l: 99, x: 5.42, y: 123.0738 }, + { l: 99, x: 5.5, y: 123.6546 }, + { l: 99, x: 5.58, y: 124.2283 }, + { l: 99, x: 5.67, y: 124.7977 }, + { l: 99, x: 5.75, y: 125.3627 }, + { l: 99, x: 5.83, y: 125.9236 }, + { l: 99, x: 5.92, y: 126.4806 }, + { l: 99, x: 6, y: 127.0341 }, + { l: 99, x: 6.08, y: 127.582 }, + { l: 99, x: 6.17, y: 128.1277 }, + { l: 99, x: 6.25, y: 128.6743 }, + { l: 99, x: 6.33, y: 129.2143 }, + { l: 99, x: 6.42, y: 129.756 }, + { l: 99, x: 6.5, y: 130.2969 }, + { l: 99, x: 6.58, y: 130.8348 }, + { l: 99, x: 6.67, y: 131.3754 }, + { l: 99, x: 6.75, y: 131.9133 }, + { l: 99, x: 6.83, y: 132.4517 }, + { l: 99, x: 6.92, y: 132.9907 }, + { l: 99, x: 7, y: 133.5276 }, + { l: 99, x: 7.08, y: 134.0682 }, + { l: 99, x: 7.17, y: 134.6068 }, + { l: 99, x: 7.25, y: 135.1491 }, + { l: 99, x: 7.33, y: 135.6897 }, + { l: 99, x: 7.42, y: 136.2286 }, + { l: 99, x: 7.5, y: 136.7713 }, + { l: 99, x: 7.58, y: 137.3154 }, + { l: 99, x: 7.67, y: 137.8579 }, + { l: 99, x: 7.75, y: 138.4017 }, + { l: 99, x: 7.83, y: 138.947 }, + { l: 99, x: 7.92, y: 139.4939 }, + { l: 99, x: 8, y: 140.0426 }, + { l: 99, x: 8.08, y: 140.5929 }, + { l: 99, x: 8.17, y: 141.1418 }, + { l: 99, x: 8.25, y: 141.6925 }, + { l: 99, x: 8.33, y: 142.2449 }, + { l: 99, x: 8.42, y: 142.7991 }, + { l: 99, x: 8.5, y: 143.355 }, + { l: 99, x: 8.58, y: 143.9098 }, + { l: 99, x: 8.67, y: 144.4663 }, + { l: 99, x: 8.75, y: 145.0275 }, + { l: 99, x: 8.83, y: 145.5846 }, + { l: 99, x: 8.92, y: 146.1463 }, + { l: 99, x: 9, y: 146.7096 }, + { l: 99, x: 9.08, y: 147.2713 }, + { l: 99, x: 9.17, y: 147.8344 }, + { l: 99, x: 9.25, y: 148.3991 }, + { l: 99, x: 9.33, y: 148.9652 }, + { l: 99, x: 9.42, y: 149.5297 }, + { l: 99, x: 9.5, y: 150.0988 }, + { l: 99, x: 9.58, y: 150.6661 }, + { l: 99, x: 9.67, y: 151.2318 }, + { l: 99, x: 9.75, y: 151.8023 }, + { l: 99, x: 9.83, y: 152.3743 }, + { l: 99, x: 9.92, y: 152.9447 }, + { l: 99, x: 10, y: 153.5169 }, + { l: 99, x: 10.08, y: 154.0876 }, + { l: 99, x: 10.17, y: 154.6632 }, + { l: 99, x: 10.25, y: 155.2376 }, + { l: 99, x: 10.33, y: 155.8138 }, + { l: 99, x: 10.42, y: 156.392 }, + { l: 99, x: 10.5, y: 156.9719 }, + { l: 99, x: 10.58, y: 157.5503 }, + { l: 99, x: 10.67, y: 158.1301 }, + { l: 99, x: 10.75, y: 158.7112 }, + { l: 99, x: 10.83, y: 159.2932 }, + { l: 99, x: 10.92, y: 159.8755 }, + { l: 99, x: 11, y: 160.4546 }, + { l: 99, x: 11.08, y: 161.0332 }, + { l: 99, x: 11.17, y: 161.6107 }, + { l: 99, x: 11.25, y: 162.1833 }, + { l: 99, x: 11.33, y: 162.7572 }, + { l: 99, x: 11.42, y: 163.3248 }, + { l: 99, x: 11.5, y: 163.8889 }, + { l: 99, x: 11.58, y: 164.4489 }, + { l: 99, x: 11.67, y: 165.0002 }, + { l: 99, x: 11.75, y: 165.5495 }, + { l: 99, x: 11.83, y: 166.0889 }, + { l: 99, x: 11.92, y: 166.621 }, + { l: 99, x: 12, y: 167.1452 }, + { l: 99, x: 12.08, y: 167.6571 }, + { l: 99, x: 12.17, y: 168.1628 }, + { l: 99, x: 12.25, y: 168.6547 }, + { l: 99, x: 12.33, y: 169.1391 }, + { l: 99, x: 12.42, y: 169.6081 }, + { l: 99, x: 12.5, y: 170.0649 }, + { l: 99, x: 12.58, y: 170.5089 }, + { l: 99, x: 12.67, y: 170.9365 }, + { l: 99, x: 12.75, y: 171.3543 }, + { l: 99, x: 12.83, y: 171.7587 }, + { l: 99, x: 12.92, y: 172.1458 }, + { l: 99, x: 13, y: 172.5228 }, + { l: 99, x: 13.08, y: 172.8821 }, + { l: 99, x: 13.17, y: 173.2275 }, + { l: 99, x: 13.25, y: 173.5589 }, + { l: 99, x: 13.33, y: 173.8801 }, + { l: 99, x: 13.42, y: 174.1837 }, + { l: 99, x: 13.5, y: 174.4734 }, + { l: 99, x: 13.58, y: 174.7496 }, + { l: 99, x: 13.67, y: 175.0125 }, + { l: 99, x: 13.75, y: 175.266 }, + { l: 99, x: 13.83, y: 175.5031 }, + { l: 99, x: 13.92, y: 175.7277 }, + { l: 99, x: 14, y: 175.9401 }, + { l: 99, x: 14.08, y: 176.1408 }, + { l: 99, x: 14.17, y: 176.3336 }, + { l: 99, x: 14.25, y: 176.5113 }, + { l: 99, x: 14.33, y: 176.678 }, + { l: 99, x: 14.42, y: 176.8377 }, + { l: 99, x: 14.5, y: 176.9832 }, + { l: 99, x: 14.58, y: 177.1223 }, + { l: 99, x: 14.67, y: 177.2479 }, + { l: 99, x: 14.75, y: 177.368 }, + { l: 99, x: 14.83, y: 177.4791 }, + { l: 99, x: 14.92, y: 177.5815 }, + { l: 99, x: 15, y: 177.6719 }, + { l: 99, x: 15.08, y: 177.7582 }, + { l: 99, x: 15.17, y: 177.8369 }, + { l: 99, x: 15.25, y: 177.9122 }, + { l: 99, x: 15.33, y: 177.9768 }, + { l: 99, x: 15.42, y: 178.0351 }, + { l: 99, x: 15.5, y: 178.0873 }, + { l: 99, x: 15.58, y: 178.1374 }, + { l: 99, x: 15.67, y: 178.1781 }, + { l: 99, x: 15.75, y: 178.2175 }, + { l: 99, x: 15.83, y: 178.2519 }, + { l: 99, x: 15.92, y: 178.2779 }, + { l: 99, x: 16, y: 178.3034 }, + { l: 99, x: 16.08, y: 178.325 }, + { l: 99, x: 16.17, y: 178.3432 }, + { l: 99, x: 16.25, y: 178.3582 }, + { l: 99, x: 16.33, y: 178.3703 }, + { l: 99, x: 16.42, y: 178.3839 }, + { l: 99, x: 16.5, y: 178.3913 }, + { l: 99, x: 16.58, y: 178.4009 }, + { l: 99, x: 16.67, y: 178.405 }, + { l: 99, x: 16.75, y: 178.4117 }, + { l: 99, x: 16.83, y: 178.4134 }, + { l: 99, x: 16.92, y: 178.4179 }, + { l: 99, x: 17, y: 178.4214 }, + { l: 99, x: 17.08, y: 178.4241 }, + { l: 99, x: 17.17, y: 178.4262 }, + { l: 99, x: 17.25, y: 178.4275 }, + { l: 99, x: 17.33, y: 178.4283 }, + { l: 99, x: 17.42, y: 178.4286 }, + { l: 99, x: 17.5, y: 178.4324 }, + { l: 99, x: 17.58, y: 178.4318 }, + { l: 99, x: 17.67, y: 178.4348 }, + { l: 99, x: 17.75, y: 178.4335 }, + { l: 99, x: 17.83, y: 178.4354 }, + { l: 99, x: 17.92, y: 178.4368 }, + { l: 99, x: 18, y: 178.4336 }, + { l: 99, x: 18.08, y: 178.4335 }, + { l: 99, x: 18.17, y: 178.4324 }, + { l: 99, x: 18.25, y: 178.4304 }, + { l: 99, x: 18.33, y: 178.4272 }, + { l: 99, x: 18.42, y: 178.4268 }, + { l: 99, x: 18.5, y: 178.4211 }, + { l: 99, x: 18.58, y: 178.4143 }, + { l: 99, x: 18.67, y: 178.4098 }, + { l: 99, x: 18.75, y: 178.4002 }, + { l: 99, x: 18.83, y: 178.393 }, + { l: 99, x: 18.92, y: 178.3807 }, + { l: 99, x: 19, y: 178.3708 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_height_male_centile_data.ts b/src/chartdata/who_height_male_centile_data.ts new file mode 100644 index 0000000..4577298 --- /dev/null +++ b/src/chartdata/who_height_male_centile_data.ts @@ -0,0 +1,2879 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoHeightMaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + male: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 47.899 }, + { l: 1, x: 0.0575, y: 48.908 }, + { l: 1, x: 0.0767, y: 49.8712 }, + { l: 1, x: 0.0833, y: 50.1961 }, + { l: 1, x: 0.0958, y: 50.788 }, + { l: 1, x: 0.115, y: 51.6557 }, + { l: 1, x: 0.1342, y: 52.477 }, + { l: 1, x: 0.1533, y: 53.2537 }, + { l: 1, x: 0.1667, y: 53.7712 }, + { l: 1, x: 0.1725, y: 53.9926 }, + { l: 1, x: 0.1916, y: 54.7011 }, + { l: 1, x: 0.2108, y: 55.38 }, + { l: 1, x: 0.23, y: 56.0282 }, + { l: 1, x: 0.2491, y: 56.6462 }, + { l: 1, x: 0.25, y: 56.6734 }, + { l: 1, x: 0.3333, y: 59.0455 }, + { l: 1, x: 0.4167, y: 60.9906 }, + { l: 1, x: 0.5, y: 62.6447 }, + { l: 1, x: 0.5833, y: 64.1139 }, + { l: 1, x: 0.6667, y: 65.4687 }, + { l: 1, x: 0.75, y: 66.7502 }, + { l: 1, x: 0.8333, y: 67.9658 }, + { l: 1, x: 0.9167, y: 69.1201 }, + { l: 1, x: 1, y: 70.221 }, + { l: 1, x: 1.0833, y: 71.275 }, + { l: 1, x: 1.1667, y: 72.2868 }, + { l: 1, x: 1.25, y: 73.2596 }, + { l: 1, x: 1.3333, y: 74.1992 }, + { l: 1, x: 1.4167, y: 75.1059 }, + { l: 1, x: 1.5, y: 75.9841 }, + { l: 1, x: 1.5833, y: 76.8321 }, + { l: 1, x: 1.6667, y: 77.6535 }, + { l: 1, x: 1.75, y: 78.4487 }, + { l: 1, x: 1.8333, y: 79.2218 }, + { l: 1, x: 1.9167, y: 79.9735 }, + { l: 1, x: 2, y: 80.709 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 48.7506 }, + { l: 3, x: 0.0575, y: 49.7665 }, + { l: 3, x: 0.0767, y: 50.7362 }, + { l: 3, x: 0.0833, y: 51.0633 }, + { l: 3, x: 0.0958, y: 51.6593 }, + { l: 3, x: 0.115, y: 52.5328 }, + { l: 3, x: 0.1342, y: 53.3595 }, + { l: 3, x: 0.1533, y: 54.1413 }, + { l: 3, x: 0.1667, y: 54.6624 }, + { l: 3, x: 0.1725, y: 54.8852 }, + { l: 3, x: 0.1916, y: 55.5985 }, + { l: 3, x: 0.2108, y: 56.2819 }, + { l: 3, x: 0.23, y: 56.9345 }, + { l: 3, x: 0.2491, y: 57.5569 }, + { l: 3, x: 0.25, y: 57.5842 }, + { l: 3, x: 0.3333, y: 59.9725 }, + { l: 3, x: 0.4167, y: 61.9313 }, + { l: 3, x: 0.5, y: 63.5981 }, + { l: 3, x: 0.5833, y: 65.0811 }, + { l: 3, x: 0.6667, y: 66.4512 }, + { l: 3, x: 0.75, y: 67.7496 }, + { l: 3, x: 0.8333, y: 68.9837 }, + { l: 3, x: 0.9167, y: 70.1578 }, + { l: 3, x: 1, y: 71.2796 }, + { l: 3, x: 1.0833, y: 72.3558 }, + { l: 3, x: 1.1667, y: 73.3904 }, + { l: 3, x: 1.25, y: 74.3868 }, + { l: 3, x: 1.3333, y: 75.3505 }, + { l: 3, x: 1.4167, y: 76.2823 }, + { l: 3, x: 1.5, y: 77.1857 }, + { l: 3, x: 1.5833, y: 78.0596 }, + { l: 3, x: 1.6667, y: 78.9071 }, + { l: 3, x: 1.75, y: 79.7291 }, + { l: 3, x: 1.8333, y: 80.529 }, + { l: 3, x: 1.9167, y: 81.3078 }, + { l: 3, x: 2, y: 82.07 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 49.2016 }, + { l: 5, x: 0.0575, y: 50.221 }, + { l: 5, x: 0.0767, y: 51.1943 }, + { l: 5, x: 0.0833, y: 51.5225 }, + { l: 5, x: 0.0958, y: 52.1206 }, + { l: 5, x: 0.115, y: 52.9972 }, + { l: 5, x: 0.1342, y: 53.8268 }, + { l: 5, x: 0.1533, y: 54.6114 }, + { l: 5, x: 0.1667, y: 55.1343 }, + { l: 5, x: 0.1725, y: 55.3579 }, + { l: 5, x: 0.1916, y: 56.0737 }, + { l: 5, x: 0.2108, y: 56.7594 }, + { l: 5, x: 0.23, y: 57.4143 }, + { l: 5, x: 0.2491, y: 58.039 }, + { l: 5, x: 0.25, y: 58.0664 }, + { l: 5, x: 0.3333, y: 60.4633 }, + { l: 5, x: 0.4167, y: 62.4294 }, + { l: 5, x: 0.5, y: 64.103 }, + { l: 5, x: 0.5833, y: 65.5933 }, + { l: 5, x: 0.6667, y: 66.9715 }, + { l: 5, x: 0.75, y: 68.2788 }, + { l: 5, x: 0.8333, y: 69.5228 }, + { l: 5, x: 0.9167, y: 70.7073 }, + { l: 5, x: 1, y: 71.8401 }, + { l: 5, x: 1.0833, y: 72.9281 }, + { l: 5, x: 1.1667, y: 73.9748 }, + { l: 5, x: 1.25, y: 74.9837 }, + { l: 5, x: 1.3333, y: 75.9602 }, + { l: 5, x: 1.4167, y: 76.9052 }, + { l: 5, x: 1.5, y: 77.822 }, + { l: 5, x: 1.5833, y: 78.7096 }, + { l: 5, x: 1.6667, y: 79.5709 }, + { l: 5, x: 1.75, y: 80.4071 }, + { l: 5, x: 1.8333, y: 81.2212 }, + { l: 5, x: 1.9167, y: 82.0143 }, + { l: 5, x: 2, y: 82.7907 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 49.8961 }, + { l: 10, x: 0.0575, y: 50.921 }, + { l: 10, x: 0.0767, y: 51.8997 }, + { l: 10, x: 0.0833, y: 52.2297 }, + { l: 10, x: 0.0958, y: 52.8311 }, + { l: 10, x: 0.115, y: 53.7125 }, + { l: 10, x: 0.1342, y: 54.5464 }, + { l: 10, x: 0.1533, y: 55.3353 }, + { l: 10, x: 0.1667, y: 55.8611 }, + { l: 10, x: 0.1725, y: 56.0858 }, + { l: 10, x: 0.1916, y: 56.8055 }, + { l: 10, x: 0.2108, y: 57.4949 }, + { l: 10, x: 0.23, y: 58.1534 }, + { l: 10, x: 0.2491, y: 58.7816 }, + { l: 10, x: 0.25, y: 58.8091 }, + { l: 10, x: 0.3333, y: 61.2193 }, + { l: 10, x: 0.4167, y: 63.1965 }, + { l: 10, x: 0.5, y: 64.8806 }, + { l: 10, x: 0.5833, y: 66.3821 }, + { l: 10, x: 0.6667, y: 67.7728 }, + { l: 10, x: 0.75, y: 69.0937 }, + { l: 10, x: 0.8333, y: 70.3529 }, + { l: 10, x: 0.9167, y: 71.5535 }, + { l: 10, x: 1, y: 72.7034 }, + { l: 10, x: 1.0833, y: 73.8094 }, + { l: 10, x: 1.1667, y: 74.8748 }, + { l: 10, x: 1.25, y: 75.903 }, + { l: 10, x: 1.3333, y: 76.8991 }, + { l: 10, x: 1.4167, y: 77.8645 }, + { l: 10, x: 1.5, y: 78.8019 }, + { l: 10, x: 1.5833, y: 79.7106 }, + { l: 10, x: 1.6667, y: 80.5932 }, + { l: 10, x: 1.75, y: 81.4513 }, + { l: 10, x: 1.8333, y: 82.2872 }, + { l: 10, x: 1.9167, y: 83.1025 }, + { l: 10, x: 2, y: 83.9007 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 50.3648 }, + { l: 15, x: 0.0575, y: 51.3935 }, + { l: 15, x: 0.0767, y: 52.3758 }, + { l: 15, x: 0.0833, y: 52.707 }, + { l: 15, x: 0.0958, y: 53.3106 }, + { l: 15, x: 0.115, y: 54.1952 }, + { l: 15, x: 0.1342, y: 55.0321 }, + { l: 15, x: 0.1533, y: 55.8238 }, + { l: 15, x: 0.1667, y: 56.3516 }, + { l: 15, x: 0.1725, y: 56.5771 }, + { l: 15, x: 0.1916, y: 57.2995 }, + { l: 15, x: 0.2108, y: 57.9913 }, + { l: 15, x: 0.23, y: 58.6522 }, + { l: 15, x: 0.2491, y: 59.2828 }, + { l: 15, x: 0.25, y: 59.3104 }, + { l: 15, x: 0.3333, y: 61.7295 }, + { l: 15, x: 0.4167, y: 63.7142 }, + { l: 15, x: 0.5, y: 65.4054 }, + { l: 15, x: 0.5833, y: 66.9144 }, + { l: 15, x: 0.6667, y: 68.3136 }, + { l: 15, x: 0.75, y: 69.6438 }, + { l: 15, x: 0.8333, y: 70.9131 }, + { l: 15, x: 0.9167, y: 72.1247 }, + { l: 15, x: 1, y: 73.2861 }, + { l: 15, x: 1.0833, y: 74.4043 }, + { l: 15, x: 1.1667, y: 75.4822 }, + { l: 15, x: 1.25, y: 76.5234 }, + { l: 15, x: 1.3333, y: 77.5328 }, + { l: 15, x: 1.4167, y: 78.512 }, + { l: 15, x: 1.5, y: 79.4633 }, + { l: 15, x: 1.5833, y: 80.3862 }, + { l: 15, x: 1.6667, y: 81.2832 }, + { l: 15, x: 1.75, y: 82.156 }, + { l: 15, x: 1.8333, y: 83.0067 }, + { l: 15, x: 1.9167, y: 83.8369 }, + { l: 15, x: 2, y: 84.6498 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 52.3461 }, + { l: 50, x: 0.0575, y: 53.3905 }, + { l: 50, x: 0.0767, y: 54.3881 }, + { l: 50, x: 0.0833, y: 54.7244 }, + { l: 50, x: 0.0958, y: 55.3374 }, + { l: 50, x: 0.115, y: 56.2357 }, + { l: 50, x: 0.1342, y: 57.0851 }, + { l: 50, x: 0.1533, y: 57.8889 }, + { l: 50, x: 0.1667, y: 58.4249 }, + { l: 50, x: 0.1725, y: 58.6536 }, + { l: 50, x: 0.1916, y: 59.3872 }, + { l: 50, x: 0.2108, y: 60.0894 }, + { l: 50, x: 0.23, y: 60.7605 }, + { l: 50, x: 0.2491, y: 61.4013 }, + { l: 50, x: 0.25, y: 61.4292 }, + { l: 50, x: 0.3333, y: 63.886 }, + { l: 50, x: 0.4167, y: 65.9026 }, + { l: 50, x: 0.5, y: 67.6236 }, + { l: 50, x: 0.5833, y: 69.1645 }, + { l: 50, x: 0.6667, y: 70.5994 }, + { l: 50, x: 0.75, y: 71.9687 }, + { l: 50, x: 0.8333, y: 73.2812 }, + { l: 50, x: 0.9167, y: 74.5388 }, + { l: 50, x: 1, y: 75.7488 }, + { l: 50, x: 1.0833, y: 76.9186 }, + { l: 50, x: 1.1667, y: 78.0497 }, + { l: 50, x: 1.25, y: 79.1458 }, + { l: 50, x: 1.3333, y: 80.2113 }, + { l: 50, x: 1.4167, y: 81.2487 }, + { l: 50, x: 1.5, y: 82.2587 }, + { l: 50, x: 1.5833, y: 83.2418 }, + { l: 50, x: 1.6667, y: 84.1996 }, + { l: 50, x: 1.75, y: 85.1348 }, + { l: 50, x: 1.8333, y: 86.0477 }, + { l: 50, x: 1.9167, y: 86.941 }, + { l: 50, x: 2, y: 87.8161 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 54.3274 }, + { l: 85, x: 0.0575, y: 55.3875 }, + { l: 85, x: 0.0767, y: 56.4004 }, + { l: 85, x: 0.0833, y: 56.7418 }, + { l: 85, x: 0.0958, y: 57.3642 }, + { l: 85, x: 0.115, y: 58.2762 }, + { l: 85, x: 0.1342, y: 59.1381 }, + { l: 85, x: 0.1533, y: 59.954 }, + { l: 85, x: 0.1667, y: 60.4982 }, + { l: 85, x: 0.1725, y: 60.7301 }, + { l: 85, x: 0.1916, y: 61.4749 }, + { l: 85, x: 0.2108, y: 62.1875 }, + { l: 85, x: 0.23, y: 62.8688 }, + { l: 85, x: 0.2491, y: 63.5198 }, + { l: 85, x: 0.25, y: 63.548 }, + { l: 85, x: 0.3333, y: 66.0425 }, + { l: 85, x: 0.4167, y: 68.091 }, + { l: 85, x: 0.5, y: 69.8418 }, + { l: 85, x: 0.5833, y: 71.4146 }, + { l: 85, x: 0.6667, y: 72.8852 }, + { l: 85, x: 0.75, y: 74.2936 }, + { l: 85, x: 0.8333, y: 75.6493 }, + { l: 85, x: 0.9167, y: 76.9529 }, + { l: 85, x: 1, y: 78.2115 }, + { l: 85, x: 1.0833, y: 79.4329 }, + { l: 85, x: 1.1667, y: 80.6172 }, + { l: 85, x: 1.25, y: 81.7682 }, + { l: 85, x: 1.3333, y: 82.8898 }, + { l: 85, x: 1.4167, y: 83.9854 }, + { l: 85, x: 1.5, y: 85.0541 }, + { l: 85, x: 1.5833, y: 86.0974 }, + { l: 85, x: 1.6667, y: 87.116 }, + { l: 85, x: 1.75, y: 88.1136 }, + { l: 85, x: 1.8333, y: 89.0887 }, + { l: 85, x: 1.9167, y: 90.0451 }, + { l: 85, x: 2, y: 90.9824 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 54.7961 }, + { l: 90, x: 0.0575, y: 55.86 }, + { l: 90, x: 0.0767, y: 56.8765 }, + { l: 90, x: 0.0833, y: 57.2191 }, + { l: 90, x: 0.0958, y: 57.8437 }, + { l: 90, x: 0.115, y: 58.7589 }, + { l: 90, x: 0.1342, y: 59.6238 }, + { l: 90, x: 0.1533, y: 60.4425 }, + { l: 90, x: 0.1667, y: 60.9887 }, + { l: 90, x: 0.1725, y: 61.2214 }, + { l: 90, x: 0.1916, y: 61.9689 }, + { l: 90, x: 0.2108, y: 62.6839 }, + { l: 90, x: 0.23, y: 63.3676 }, + { l: 90, x: 0.2491, y: 64.021 }, + { l: 90, x: 0.25, y: 64.0493 }, + { l: 90, x: 0.3333, y: 66.5527 }, + { l: 90, x: 0.4167, y: 68.6087 }, + { l: 90, x: 0.5, y: 70.3666 }, + { l: 90, x: 0.5833, y: 71.9469 }, + { l: 90, x: 0.6667, y: 73.426 }, + { l: 90, x: 0.75, y: 74.8437 }, + { l: 90, x: 0.8333, y: 76.2095 }, + { l: 90, x: 0.9167, y: 77.5241 }, + { l: 90, x: 1, y: 78.7942 }, + { l: 90, x: 1.0833, y: 80.0278 }, + { l: 90, x: 1.1667, y: 81.2246 }, + { l: 90, x: 1.25, y: 82.3886 }, + { l: 90, x: 1.3333, y: 83.5235 }, + { l: 90, x: 1.4167, y: 84.6329 }, + { l: 90, x: 1.5, y: 85.7155 }, + { l: 90, x: 1.5833, y: 86.773 }, + { l: 90, x: 1.6667, y: 87.806 }, + { l: 90, x: 1.75, y: 88.8183 }, + { l: 90, x: 1.8333, y: 89.8082 }, + { l: 90, x: 1.9167, y: 90.7795 }, + { l: 90, x: 2, y: 91.7315 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 55.4906 }, + { l: 95, x: 0.0575, y: 56.56 }, + { l: 95, x: 0.0767, y: 57.5819 }, + { l: 95, x: 0.0833, y: 57.9263 }, + { l: 95, x: 0.0958, y: 58.5542 }, + { l: 95, x: 0.115, y: 59.4742 }, + { l: 95, x: 0.1342, y: 60.3434 }, + { l: 95, x: 0.1533, y: 61.1664 }, + { l: 95, x: 0.1667, y: 61.7155 }, + { l: 95, x: 0.1725, y: 61.9493 }, + { l: 95, x: 0.1916, y: 62.7007 }, + { l: 95, x: 0.2108, y: 63.4194 }, + { l: 95, x: 0.23, y: 64.1067 }, + { l: 95, x: 0.2491, y: 64.7636 }, + { l: 95, x: 0.25, y: 64.792 }, + { l: 95, x: 0.3333, y: 67.3087 }, + { l: 95, x: 0.4167, y: 69.3758 }, + { l: 95, x: 0.5, y: 71.1442 }, + { l: 95, x: 0.5833, y: 72.7357 }, + { l: 95, x: 0.6667, y: 74.2273 }, + { l: 95, x: 0.75, y: 75.6586 }, + { l: 95, x: 0.8333, y: 77.0396 }, + { l: 95, x: 0.9167, y: 78.3703 }, + { l: 95, x: 1, y: 79.6575 }, + { l: 95, x: 1.0833, y: 80.9091 }, + { l: 95, x: 1.1667, y: 82.1246 }, + { l: 95, x: 1.25, y: 83.3079 }, + { l: 95, x: 1.3333, y: 84.4624 }, + { l: 95, x: 1.4167, y: 85.5922 }, + { l: 95, x: 1.5, y: 86.6954 }, + { l: 95, x: 1.5833, y: 87.774 }, + { l: 95, x: 1.6667, y: 88.8283 }, + { l: 95, x: 1.75, y: 89.8625 }, + { l: 95, x: 1.8333, y: 90.8742 }, + { l: 95, x: 1.9167, y: 91.8677 }, + { l: 95, x: 2, y: 92.8415 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 55.9416 }, + { l: 97, x: 0.0575, y: 57.0145 }, + { l: 97, x: 0.0767, y: 58.04 }, + { l: 97, x: 0.0833, y: 58.3855 }, + { l: 97, x: 0.0958, y: 59.0155 }, + { l: 97, x: 0.115, y: 59.9386 }, + { l: 97, x: 0.1342, y: 60.8107 }, + { l: 97, x: 0.1533, y: 61.6365 }, + { l: 97, x: 0.1667, y: 62.1874 }, + { l: 97, x: 0.1725, y: 62.422 }, + { l: 97, x: 0.1916, y: 63.1759 }, + { l: 97, x: 0.2108, y: 63.8969 }, + { l: 97, x: 0.23, y: 64.5865 }, + { l: 97, x: 0.2491, y: 65.2457 }, + { l: 97, x: 0.25, y: 65.2742 }, + { l: 97, x: 0.3333, y: 67.7995 }, + { l: 97, x: 0.4167, y: 69.8739 }, + { l: 97, x: 0.5, y: 71.6491 }, + { l: 97, x: 0.5833, y: 73.2479 }, + { l: 97, x: 0.6667, y: 74.7476 }, + { l: 97, x: 0.75, y: 76.1878 }, + { l: 97, x: 0.8333, y: 77.5787 }, + { l: 97, x: 0.9167, y: 78.9198 }, + { l: 97, x: 1, y: 80.218 }, + { l: 97, x: 1.0833, y: 81.4814 }, + { l: 97, x: 1.1667, y: 82.709 }, + { l: 97, x: 1.25, y: 83.9048 }, + { l: 97, x: 1.3333, y: 85.0721 }, + { l: 97, x: 1.4167, y: 86.2151 }, + { l: 97, x: 1.5, y: 87.3317 }, + { l: 97, x: 1.5833, y: 88.424 }, + { l: 97, x: 1.6667, y: 89.4921 }, + { l: 97, x: 1.75, y: 90.5405 }, + { l: 97, x: 1.8333, y: 91.5664 }, + { l: 97, x: 1.9167, y: 92.5742 }, + { l: 97, x: 2, y: 93.5622 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 56.7932 }, + { l: 99, x: 0.0575, y: 57.873 }, + { l: 99, x: 0.0767, y: 58.905 }, + { l: 99, x: 0.0833, y: 59.2527 }, + { l: 99, x: 0.0958, y: 59.8868 }, + { l: 99, x: 0.115, y: 60.8157 }, + { l: 99, x: 0.1342, y: 61.6932 }, + { l: 99, x: 0.1533, y: 62.5241 }, + { l: 99, x: 0.1667, y: 63.0786 }, + { l: 99, x: 0.1725, y: 63.3146 }, + { l: 99, x: 0.1916, y: 64.0733 }, + { l: 99, x: 0.2108, y: 64.7988 }, + { l: 99, x: 0.23, y: 65.4928 }, + { l: 99, x: 0.2491, y: 66.1564 }, + { l: 99, x: 0.25, y: 66.185 }, + { l: 99, x: 0.3333, y: 68.7265 }, + { l: 99, x: 0.4167, y: 70.8146 }, + { l: 99, x: 0.5, y: 72.6025 }, + { l: 99, x: 0.5833, y: 74.2151 }, + { l: 99, x: 0.6667, y: 75.7301 }, + { l: 99, x: 0.75, y: 77.1872 }, + { l: 99, x: 0.8333, y: 78.5966 }, + { l: 99, x: 0.9167, y: 79.9575 }, + { l: 99, x: 1, y: 81.2766 }, + { l: 99, x: 1.0833, y: 82.5622 }, + { l: 99, x: 1.1667, y: 83.8126 }, + { l: 99, x: 1.25, y: 85.032 }, + { l: 99, x: 1.3333, y: 86.2234 }, + { l: 99, x: 1.4167, y: 87.3915 }, + { l: 99, x: 1.5, y: 88.5333 }, + { l: 99, x: 1.5833, y: 89.6515 }, + { l: 99, x: 1.6667, y: 90.7457 }, + { l: 99, x: 1.75, y: 91.8209 }, + { l: 99, x: 1.8333, y: 92.8736 }, + { l: 99, x: 1.9167, y: 93.9085 }, + { l: 99, x: 2, y: 94.9232 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + male: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 80.0089 }, + { l: 1, x: 2.0833, y: 80.7233 }, + { l: 1, x: 2.1667, y: 81.4188 }, + { l: 1, x: 2.25, y: 82.0935 }, + { l: 1, x: 2.3333, y: 82.7519 }, + { l: 1, x: 2.4167, y: 83.3896 }, + { l: 1, x: 2.5, y: 84.0112 }, + { l: 1, x: 2.5833, y: 84.6162 }, + { l: 1, x: 2.6667, y: 85.2057 }, + { l: 1, x: 2.75, y: 85.7837 }, + { l: 1, x: 2.8333, y: 86.3506 }, + { l: 1, x: 2.9167, y: 86.9083 }, + { l: 1, x: 3, y: 87.4601 }, + { l: 1, x: 3.0833, y: 88.0047 }, + { l: 1, x: 3.1667, y: 88.5405 }, + { l: 1, x: 3.25, y: 89.0722 }, + { l: 1, x: 3.3333, y: 89.5977 }, + { l: 1, x: 3.4167, y: 90.1171 }, + { l: 1, x: 3.5, y: 90.6275 }, + { l: 1, x: 3.5833, y: 91.1343 }, + { l: 1, x: 3.6667, y: 91.631 }, + { l: 1, x: 3.75, y: 92.125 }, + { l: 1, x: 3.8333, y: 92.6103 }, + { l: 1, x: 3.9167, y: 93.0927 }, + { l: 1, x: 4, y: 93.5707 }, + { l: 1, x: 3.0833, y: 88.0047 }, + { l: 1, x: 4.1667, y: 94.5193 }, + { l: 1, x: 4.25, y: 94.989 }, + { l: 1, x: 4.3333, y: 95.4596 }, + { l: 1, x: 4.4167, y: 95.9287 }, + { l: 1, x: 4.5, y: 96.3963 }, + { l: 1, x: 4.5833, y: 96.8628 }, + { l: 1, x: 4.6667, y: 97.3279 }, + { l: 1, x: 4.75, y: 97.7944 }, + { l: 1, x: 4.8333, y: 98.2572 }, + { l: 1, x: 4.9167, y: 98.7214 }, + { l: 1, x: 5.0, y: 99.184 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 81.37 }, + { l: 3, x: 2.0833, y: 82.1115 }, + { l: 3, x: 2.1667, y: 82.8336 }, + { l: 3, x: 2.25, y: 83.5348 }, + { l: 3, x: 2.3333, y: 84.2189 }, + { l: 3, x: 2.4167, y: 84.882 }, + { l: 3, x: 2.5, y: 85.5282 }, + { l: 3, x: 2.5833, y: 86.1572 }, + { l: 3, x: 2.6667, y: 86.7702 }, + { l: 3, x: 2.75, y: 87.3708 }, + { l: 3, x: 2.8333, y: 87.9598 }, + { l: 3, x: 2.9167, y: 88.539 }, + { l: 3, x: 3, y: 89.1116 }, + { l: 3, x: 3.0833, y: 89.6764 }, + { l: 3, x: 3.1667, y: 90.2323 }, + { l: 3, x: 3.25, y: 90.7833 }, + { l: 3, x: 3.3333, y: 91.3277 }, + { l: 3, x: 3.4167, y: 91.8653 }, + { l: 3, x: 3.5, y: 92.3939 }, + { l: 3, x: 3.5833, y: 92.918 }, + { l: 3, x: 3.6667, y: 93.4324 }, + { l: 3, x: 3.75, y: 93.943 }, + { l: 3, x: 3.8333, y: 94.4455 }, + { l: 3, x: 3.9167, y: 94.9445 }, + { l: 3, x: 4, y: 95.4391 }, + { l: 3, x: 3.0833, y: 89.6764 }, + { l: 3, x: 4.1667, y: 96.4206 }, + { l: 3, x: 4.25, y: 96.9069 }, + { l: 3, x: 4.3333, y: 97.3938 }, + { l: 3, x: 4.4167, y: 97.8792 }, + { l: 3, x: 4.5, y: 98.3632 }, + { l: 3, x: 4.5833, y: 98.846 }, + { l: 3, x: 4.6667, y: 99.3275 }, + { l: 3, x: 4.75, y: 99.8101 }, + { l: 3, x: 4.8333, y: 100.2894 }, + { l: 3, x: 4.9167, y: 100.7696 }, + { l: 3, x: 5.0, y: 101.2484 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 82.0907 }, + { l: 5, x: 2.0833, y: 82.8465 }, + { l: 5, x: 2.1667, y: 83.5828 }, + { l: 5, x: 2.25, y: 84.298 }, + { l: 5, x: 2.3333, y: 84.9957 }, + { l: 5, x: 2.4167, y: 85.6723 }, + { l: 5, x: 2.5, y: 86.3315 }, + { l: 5, x: 2.5833, y: 86.9732 }, + { l: 5, x: 2.6667, y: 87.5987 }, + { l: 5, x: 2.75, y: 88.2112 }, + { l: 5, x: 2.8333, y: 88.8118 }, + { l: 5, x: 2.9167, y: 89.4025 }, + { l: 5, x: 3, y: 89.986 }, + { l: 5, x: 3.0833, y: 90.5615 }, + { l: 5, x: 3.1667, y: 91.1282 }, + { l: 5, x: 3.25, y: 91.6894 }, + { l: 5, x: 3.3333, y: 92.2437 }, + { l: 5, x: 3.4167, y: 92.791 }, + { l: 5, x: 3.5, y: 93.3293 }, + { l: 5, x: 3.5833, y: 93.8625 }, + { l: 5, x: 3.6667, y: 94.3862 }, + { l: 5, x: 3.75, y: 94.9058 }, + { l: 5, x: 3.8333, y: 95.4173 }, + { l: 5, x: 3.9167, y: 95.9251 }, + { l: 5, x: 4, y: 96.4285 }, + { l: 5, x: 3.0833, y: 90.5615 }, + { l: 5, x: 4.1667, y: 97.4273 }, + { l: 5, x: 4.25, y: 97.9225 }, + { l: 5, x: 4.3333, y: 98.418 }, + { l: 5, x: 4.4167, y: 98.912 }, + { l: 5, x: 4.5, y: 99.4047 }, + { l: 5, x: 4.5833, y: 99.8962 }, + { l: 5, x: 4.6667, y: 100.3864 }, + { l: 5, x: 4.75, y: 100.8774 }, + { l: 5, x: 4.8333, y: 101.3655 }, + { l: 5, x: 4.9167, y: 101.8542 }, + { l: 5, x: 5.0, y: 102.3415 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 83.2006 }, + { l: 10, x: 2.0833, y: 83.9786 }, + { l: 10, x: 2.1667, y: 84.7365 }, + { l: 10, x: 2.25, y: 85.4734 }, + { l: 10, x: 2.3333, y: 86.1919 }, + { l: 10, x: 2.4167, y: 86.8894 }, + { l: 10, x: 2.5, y: 87.5686 }, + { l: 10, x: 2.5833, y: 88.2299 }, + { l: 10, x: 2.6667, y: 88.8745 }, + { l: 10, x: 2.75, y: 89.5054 }, + { l: 10, x: 2.8333, y: 90.1241 }, + { l: 10, x: 2.9167, y: 90.7324 }, + { l: 10, x: 3, y: 91.3327 }, + { l: 10, x: 3.0833, y: 91.9248 }, + { l: 10, x: 3.1667, y: 92.5079 }, + { l: 10, x: 3.25, y: 93.0848 }, + { l: 10, x: 3.3333, y: 93.6544 }, + { l: 10, x: 3.4167, y: 94.2167 }, + { l: 10, x: 3.5, y: 94.7698 }, + { l: 10, x: 3.5833, y: 95.3171 }, + { l: 10, x: 3.6667, y: 95.8552 }, + { l: 10, x: 3.75, y: 96.3884 }, + { l: 10, x: 3.8333, y: 96.9139 }, + { l: 10, x: 3.9167, y: 97.4352 }, + { l: 10, x: 4, y: 97.9522 }, + { l: 10, x: 3.0833, y: 91.9248 }, + { l: 10, x: 4.1667, y: 98.9778 }, + { l: 10, x: 4.25, y: 99.4866 }, + { l: 10, x: 4.3333, y: 99.9953 }, + { l: 10, x: 4.4167, y: 100.5026 }, + { l: 10, x: 4.5, y: 101.0086 }, + { l: 10, x: 4.5833, y: 101.5135 }, + { l: 10, x: 4.6667, y: 102.0171 }, + { l: 10, x: 4.75, y: 102.5212 }, + { l: 10, x: 4.8333, y: 103.0227 }, + { l: 10, x: 4.9167, y: 103.5246 }, + { l: 10, x: 5.0, y: 104.025 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 83.9497 }, + { l: 15, x: 2.0833, y: 84.7426 }, + { l: 15, x: 2.1667, y: 85.5152 }, + { l: 15, x: 2.25, y: 86.2667 }, + { l: 15, x: 2.3333, y: 86.9993 }, + { l: 15, x: 2.4167, y: 87.7108 }, + { l: 15, x: 2.5, y: 88.4036 }, + { l: 15, x: 2.5833, y: 89.0781 }, + { l: 15, x: 2.6667, y: 89.7356 }, + { l: 15, x: 2.75, y: 90.379 }, + { l: 15, x: 2.8333, y: 91.0097 }, + { l: 15, x: 2.9167, y: 91.6299 }, + { l: 15, x: 3, y: 92.2417 }, + { l: 15, x: 3.0833, y: 92.8448 }, + { l: 15, x: 3.1667, y: 93.439 }, + { l: 15, x: 3.25, y: 94.0266 }, + { l: 15, x: 3.3333, y: 94.6066 }, + { l: 15, x: 3.4167, y: 95.1789 }, + { l: 15, x: 3.5, y: 95.7421 }, + { l: 15, x: 3.5833, y: 96.2989 }, + { l: 15, x: 3.6667, y: 96.8467 }, + { l: 15, x: 3.75, y: 97.389 }, + { l: 15, x: 3.8333, y: 97.9239 }, + { l: 15, x: 3.9167, y: 98.4545 }, + { l: 15, x: 4, y: 98.9806 }, + { l: 15, x: 3.0833, y: 92.8448 }, + { l: 15, x: 4.1667, y: 100.0242 }, + { l: 15, x: 4.25, y: 100.5422 }, + { l: 15, x: 4.3333, y: 101.0599 }, + { l: 15, x: 4.4167, y: 101.5762 }, + { l: 15, x: 4.5, y: 102.0912 }, + { l: 15, x: 4.5833, y: 102.605 }, + { l: 15, x: 4.6667, y: 103.1177 }, + { l: 15, x: 4.75, y: 103.6306 }, + { l: 15, x: 4.8333, y: 104.1413 }, + { l: 15, x: 4.9167, y: 104.6519 }, + { l: 15, x: 5.0, y: 105.1613 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 87.1161 }, + { l: 50, x: 2.0833, y: 87.972 }, + { l: 50, x: 2.1667, y: 88.8065 }, + { l: 50, x: 2.25, y: 89.6197 }, + { l: 50, x: 2.3333, y: 90.412 }, + { l: 50, x: 2.4167, y: 91.1828 }, + { l: 50, x: 2.5, y: 91.9327 }, + { l: 50, x: 2.5833, y: 92.6631 }, + { l: 50, x: 2.6667, y: 93.3753 }, + { l: 50, x: 2.75, y: 94.0711 }, + { l: 50, x: 2.8333, y: 94.7532 }, + { l: 50, x: 2.9167, y: 95.4236 }, + { l: 50, x: 3, y: 96.0835 }, + { l: 50, x: 3.0833, y: 96.7337 }, + { l: 50, x: 3.1667, y: 97.3749 }, + { l: 50, x: 3.25, y: 98.0073 }, + { l: 50, x: 3.3333, y: 98.631 }, + { l: 50, x: 3.4167, y: 99.2459 }, + { l: 50, x: 3.5, y: 99.8515 }, + { l: 50, x: 3.5833, y: 100.4485 }, + { l: 50, x: 3.6667, y: 101.0374 }, + { l: 50, x: 3.75, y: 101.6186 }, + { l: 50, x: 3.8333, y: 102.1933 }, + { l: 50, x: 3.9167, y: 102.7625 }, + { l: 50, x: 4, y: 103.3273 }, + { l: 50, x: 3.0833, y: 96.7337 }, + { l: 50, x: 4.1667, y: 104.4473 }, + { l: 50, x: 4.25, y: 105.0041 }, + { l: 50, x: 4.3333, y: 105.5596 }, + { l: 50, x: 4.4167, y: 106.1138 }, + { l: 50, x: 4.5, y: 106.6668 }, + { l: 50, x: 4.5833, y: 107.2188 }, + { l: 50, x: 4.6667, y: 107.7697 }, + { l: 50, x: 4.75, y: 108.3198 }, + { l: 50, x: 4.8333, y: 108.8689 }, + { l: 50, x: 4.9167, y: 109.417 }, + { l: 50, x: 5.0, y: 109.9638 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 90.2825 }, + { l: 85, x: 2.0833, y: 91.2014 }, + { l: 85, x: 2.1667, y: 92.0978 }, + { l: 85, x: 2.25, y: 92.9727 }, + { l: 85, x: 2.3333, y: 93.8247 }, + { l: 85, x: 2.4167, y: 94.6548 }, + { l: 85, x: 2.5, y: 95.4618 }, + { l: 85, x: 2.5833, y: 96.2481 }, + { l: 85, x: 2.6667, y: 97.015 }, + { l: 85, x: 2.75, y: 97.7632 }, + { l: 85, x: 2.8333, y: 98.4967 }, + { l: 85, x: 2.9167, y: 99.2173 }, + { l: 85, x: 3, y: 99.9253 }, + { l: 85, x: 3.0833, y: 100.6226 }, + { l: 85, x: 3.1667, y: 101.3108 }, + { l: 85, x: 3.25, y: 101.988 }, + { l: 85, x: 3.3333, y: 102.6554 }, + { l: 85, x: 3.4167, y: 103.3129 }, + { l: 85, x: 3.5, y: 103.9609 }, + { l: 85, x: 3.5833, y: 104.5981 }, + { l: 85, x: 3.6667, y: 105.2281 }, + { l: 85, x: 3.75, y: 105.8482 }, + { l: 85, x: 3.8333, y: 106.4627 }, + { l: 85, x: 3.9167, y: 107.0705 }, + { l: 85, x: 4, y: 107.674 }, + { l: 85, x: 3.0833, y: 100.6226 }, + { l: 85, x: 4.1667, y: 108.8704 }, + { l: 85, x: 4.25, y: 109.466 }, + { l: 85, x: 4.3333, y: 110.0593 }, + { l: 85, x: 4.4167, y: 110.6514 }, + { l: 85, x: 4.5, y: 111.2424 }, + { l: 85, x: 4.5833, y: 111.8326 }, + { l: 85, x: 4.6667, y: 112.4217 }, + { l: 85, x: 4.75, y: 113.009 }, + { l: 85, x: 4.8333, y: 113.5965 }, + { l: 85, x: 4.9167, y: 114.1821 }, + { l: 85, x: 5.0, y: 114.7663 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 91.0316 }, + { l: 90, x: 2.0833, y: 91.9654 }, + { l: 90, x: 2.1667, y: 92.8765 }, + { l: 90, x: 2.25, y: 93.766 }, + { l: 90, x: 2.3333, y: 94.6321 }, + { l: 90, x: 2.4167, y: 95.4762 }, + { l: 90, x: 2.5, y: 96.2968 }, + { l: 90, x: 2.5833, y: 97.0963 }, + { l: 90, x: 2.6667, y: 97.8761 }, + { l: 90, x: 2.75, y: 98.6368 }, + { l: 90, x: 2.8333, y: 99.3823 }, + { l: 90, x: 2.9167, y: 100.1148 }, + { l: 90, x: 3, y: 100.8343 }, + { l: 90, x: 3.0833, y: 101.5426 }, + { l: 90, x: 3.1667, y: 102.2419 }, + { l: 90, x: 3.25, y: 102.9298 }, + { l: 90, x: 3.3333, y: 103.6076 }, + { l: 90, x: 3.4167, y: 104.2751 }, + { l: 90, x: 3.5, y: 104.9332 }, + { l: 90, x: 3.5833, y: 105.5799 }, + { l: 90, x: 3.6667, y: 106.2196 }, + { l: 90, x: 3.75, y: 106.8488 }, + { l: 90, x: 3.8333, y: 107.4727 }, + { l: 90, x: 3.9167, y: 108.0898 }, + { l: 90, x: 4, y: 108.7024 }, + { l: 90, x: 3.0833, y: 101.5426 }, + { l: 90, x: 4.1667, y: 109.9168 }, + { l: 90, x: 4.25, y: 110.5216 }, + { l: 90, x: 4.3333, y: 111.1239 }, + { l: 90, x: 4.4167, y: 111.725 }, + { l: 90, x: 4.5, y: 112.325 }, + { l: 90, x: 4.5833, y: 112.9241 }, + { l: 90, x: 4.6667, y: 113.5223 }, + { l: 90, x: 4.75, y: 114.1184 }, + { l: 90, x: 4.8333, y: 114.7151 }, + { l: 90, x: 4.9167, y: 115.3094 }, + { l: 90, x: 5.0, y: 115.9026 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 92.1415 }, + { l: 95, x: 2.0833, y: 93.0975 }, + { l: 95, x: 2.1667, y: 94.0302 }, + { l: 95, x: 2.25, y: 94.9414 }, + { l: 95, x: 2.3333, y: 95.8283 }, + { l: 95, x: 2.4167, y: 96.6933 }, + { l: 95, x: 2.5, y: 97.5339 }, + { l: 95, x: 2.5833, y: 98.353 }, + { l: 95, x: 2.6667, y: 99.1519 }, + { l: 95, x: 2.75, y: 99.931 }, + { l: 95, x: 2.8333, y: 100.6946 }, + { l: 95, x: 2.9167, y: 101.4447 }, + { l: 95, x: 3, y: 102.181 }, + { l: 95, x: 3.0833, y: 102.9059 }, + { l: 95, x: 3.1667, y: 103.6216 }, + { l: 95, x: 3.25, y: 104.3252 }, + { l: 95, x: 3.3333, y: 105.0183 }, + { l: 95, x: 3.4167, y: 105.7008 }, + { l: 95, x: 3.5, y: 106.3737 }, + { l: 95, x: 3.5833, y: 107.0345 }, + { l: 95, x: 3.6667, y: 107.6886 }, + { l: 95, x: 3.75, y: 108.3314 }, + { l: 95, x: 3.8333, y: 108.9693 }, + { l: 95, x: 3.9167, y: 109.5999 }, + { l: 95, x: 4, y: 110.2261 }, + { l: 95, x: 3.0833, y: 102.9059 }, + { l: 95, x: 4.1667, y: 111.4673 }, + { l: 95, x: 4.25, y: 112.0857 }, + { l: 95, x: 4.3333, y: 112.7012 }, + { l: 95, x: 4.4167, y: 113.3156 }, + { l: 95, x: 4.5, y: 113.9289 }, + { l: 95, x: 4.5833, y: 114.5414 }, + { l: 95, x: 4.6667, y: 115.153 }, + { l: 95, x: 4.75, y: 115.7622 }, + { l: 95, x: 4.8333, y: 116.3723 }, + { l: 95, x: 4.9167, y: 116.9798 }, + { l: 95, x: 5.0, y: 117.5861 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 92.8622 }, + { l: 97, x: 2.0833, y: 93.8325 }, + { l: 97, x: 2.1667, y: 94.7794 }, + { l: 97, x: 2.25, y: 95.7046 }, + { l: 97, x: 2.3333, y: 96.6051 }, + { l: 97, x: 2.4167, y: 97.4836 }, + { l: 97, x: 2.5, y: 98.3372 }, + { l: 97, x: 2.5833, y: 99.169 }, + { l: 97, x: 2.6667, y: 99.9804 }, + { l: 97, x: 2.75, y: 100.7714 }, + { l: 97, x: 2.8333, y: 101.5466 }, + { l: 97, x: 2.9167, y: 102.3082 }, + { l: 97, x: 3, y: 103.0554 }, + { l: 97, x: 3.0833, y: 103.791 }, + { l: 97, x: 3.1667, y: 104.5175 }, + { l: 97, x: 3.25, y: 105.2313 }, + { l: 97, x: 3.3333, y: 105.9343 }, + { l: 97, x: 3.4167, y: 106.6265 }, + { l: 97, x: 3.5, y: 107.3091 }, + { l: 97, x: 3.5833, y: 107.979 }, + { l: 97, x: 3.6667, y: 108.6424 }, + { l: 97, x: 3.75, y: 109.2942 }, + { l: 97, x: 3.8333, y: 109.9411 }, + { l: 97, x: 3.9167, y: 110.5805 }, + { l: 97, x: 4, y: 111.2155 }, + { l: 97, x: 3.0833, y: 103.791 }, + { l: 97, x: 4.1667, y: 112.474 }, + { l: 97, x: 4.25, y: 113.1013 }, + { l: 97, x: 4.3333, y: 113.7254 }, + { l: 97, x: 4.4167, y: 114.3484 }, + { l: 97, x: 4.5, y: 114.9704 }, + { l: 97, x: 4.5833, y: 115.5916 }, + { l: 97, x: 4.6667, y: 116.2119 }, + { l: 97, x: 4.75, y: 116.8295 }, + { l: 97, x: 4.8333, y: 117.4484 }, + { l: 97, x: 4.9167, y: 118.0644 }, + { l: 97, x: 5.0, y: 118.6792 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 94.2233 }, + { l: 99, x: 2.0833, y: 95.2207 }, + { l: 99, x: 2.1667, y: 96.1942 }, + { l: 99, x: 2.25, y: 97.1459 }, + { l: 99, x: 2.3333, y: 98.0721 }, + { l: 99, x: 2.4167, y: 98.976 }, + { l: 99, x: 2.5, y: 99.8542 }, + { l: 99, x: 2.5833, y: 100.71 }, + { l: 99, x: 2.6667, y: 101.5449 }, + { l: 99, x: 2.75, y: 102.3585 }, + { l: 99, x: 2.8333, y: 103.1558 }, + { l: 99, x: 2.9167, y: 103.9389 }, + { l: 99, x: 3, y: 104.7069 }, + { l: 99, x: 3.0833, y: 105.4627 }, + { l: 99, x: 3.1667, y: 106.2093 }, + { l: 99, x: 3.25, y: 106.9424 }, + { l: 99, x: 3.3333, y: 107.6643 }, + { l: 99, x: 3.4167, y: 108.3747 }, + { l: 99, x: 3.5, y: 109.0755 }, + { l: 99, x: 3.5833, y: 109.7627 }, + { l: 99, x: 3.6667, y: 110.4438 }, + { l: 99, x: 3.75, y: 111.1122 }, + { l: 99, x: 3.8333, y: 111.7763 }, + { l: 99, x: 3.9167, y: 112.4323 }, + { l: 99, x: 4, y: 113.0839 }, + { l: 99, x: 3.0833, y: 105.4627 }, + { l: 99, x: 4.1667, y: 114.3753 }, + { l: 99, x: 4.25, y: 115.0192 }, + { l: 99, x: 4.3333, y: 115.6596 }, + { l: 99, x: 4.4167, y: 116.2989 }, + { l: 99, x: 4.5, y: 116.9373 }, + { l: 99, x: 4.5833, y: 117.5748 }, + { l: 99, x: 4.6667, y: 118.2115 }, + { l: 99, x: 4.75, y: 118.8452 }, + { l: 99, x: 4.8333, y: 119.4806 }, + { l: 99, x: 4.9167, y: 120.1126 }, + { l: 99, x: 5.0, y: 120.7436 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + male: { + height: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 99.5837 }, + { l: 1, x: 5.17, y: 100.047 }, + { l: 1, x: 5.25, y: 100.5078 }, + { l: 1, x: 5.33, y: 100.9678 }, + { l: 1, x: 5.42, y: 101.4216 }, + { l: 1, x: 5.5, y: 101.8712 }, + { l: 1, x: 5.58, y: 102.3165 }, + { l: 1, x: 5.67, y: 102.7607 }, + { l: 1, x: 5.75, y: 103.1985 }, + { l: 1, x: 5.83, y: 103.6322 }, + { l: 1, x: 5.92, y: 104.0643 }, + { l: 1, x: 6, y: 104.4898 }, + { l: 1, x: 6.08, y: 104.9118 }, + { l: 1, x: 6.17, y: 105.3336 }, + { l: 1, x: 6.25, y: 105.7505 }, + { l: 1, x: 6.33, y: 106.1654 }, + { l: 1, x: 6.42, y: 106.5813 }, + { l: 1, x: 6.5, y: 106.9932 }, + { l: 1, x: 6.58, y: 107.4037 }, + { l: 1, x: 6.67, y: 107.8129 }, + { l: 1, x: 6.75, y: 108.2236 }, + { l: 1, x: 6.83, y: 108.63 }, + { l: 1, x: 6.92, y: 109.0347 }, + { l: 1, x: 7, y: 109.4377 }, + { l: 1, x: 7.08, y: 109.8389 }, + { l: 1, x: 7.17, y: 110.2382 }, + { l: 1, x: 7.25, y: 110.6357 }, + { l: 1, x: 7.33, y: 111.0317 }, + { l: 1, x: 7.42, y: 111.4257 }, + { l: 1, x: 7.5, y: 111.8179 }, + { l: 1, x: 7.58, y: 112.2079 }, + { l: 1, x: 7.67, y: 112.5958 }, + { l: 1, x: 7.75, y: 112.9816 }, + { l: 1, x: 7.83, y: 113.3651 }, + { l: 1, x: 7.92, y: 113.7466 }, + { l: 1, x: 8, y: 114.1261 }, + { l: 1, x: 8.08, y: 114.5039 }, + { l: 1, x: 8.17, y: 114.88 }, + { l: 1, x: 8.25, y: 115.2544 }, + { l: 1, x: 8.33, y: 115.6276 }, + { l: 1, x: 8.42, y: 115.9996 }, + { l: 1, x: 8.5, y: 116.3678 }, + { l: 1, x: 8.58, y: 116.738 }, + { l: 1, x: 8.67, y: 117.1075 }, + { l: 1, x: 8.75, y: 117.4763 }, + { l: 1, x: 8.83, y: 117.8446 }, + { l: 1, x: 8.92, y: 118.2124 }, + { l: 1, x: 9, y: 118.5799 }, + { l: 1, x: 9.08, y: 118.9468 }, + { l: 1, x: 9.17, y: 119.3131 }, + { l: 1, x: 9.25, y: 119.6785 }, + { l: 1, x: 9.33, y: 120.0464 }, + { l: 1, x: 9.42, y: 120.4104 }, + { l: 1, x: 9.5, y: 120.7736 }, + { l: 1, x: 9.58, y: 121.1392 }, + { l: 1, x: 9.67, y: 121.5009 }, + { l: 1, x: 9.75, y: 121.8652 }, + { l: 1, x: 9.83, y: 122.2258 }, + { l: 1, x: 9.92, y: 122.5892 }, + { l: 1, x: 10, y: 122.9524 }, + { l: 1, x: 10.08, y: 123.3158 }, + { l: 1, x: 10.17, y: 123.6798 }, + { l: 1, x: 10.25, y: 124.0447 }, + { l: 1, x: 10.33, y: 124.411 }, + { l: 1, x: 10.42, y: 124.7789 }, + { l: 1, x: 10.5, y: 125.1524 }, + { l: 1, x: 10.58, y: 125.5251 }, + { l: 1, x: 10.67, y: 125.904 }, + { l: 1, x: 10.75, y: 126.286 }, + { l: 1, x: 10.83, y: 126.6714 }, + { l: 1, x: 10.92, y: 127.0599 }, + { l: 1, x: 11, y: 127.4552 }, + { l: 1, x: 11.08, y: 127.851 }, + { l: 1, x: 11.17, y: 128.2542 }, + { l: 1, x: 11.25, y: 128.6616 }, + { l: 1, x: 11.33, y: 129.077 }, + { l: 1, x: 11.42, y: 129.4936 }, + { l: 1, x: 11.5, y: 129.9185 }, + { l: 1, x: 11.58, y: 130.3487 }, + { l: 1, x: 11.67, y: 130.7843 }, + { l: 1, x: 11.75, y: 131.2256 }, + { l: 1, x: 11.83, y: 131.6764 }, + { l: 1, x: 11.92, y: 132.1334 }, + { l: 1, x: 12, y: 132.597 }, + { l: 1, x: 12.08, y: 133.0708 }, + { l: 1, x: 12.17, y: 133.5478 }, + { l: 1, x: 12.25, y: 134.039 }, + { l: 1, x: 12.33, y: 134.5338 }, + { l: 1, x: 12.42, y: 135.0392 }, + { l: 1, x: 12.5, y: 135.5516 }, + { l: 1, x: 12.58, y: 136.0738 }, + { l: 1, x: 12.67, y: 136.5981 }, + { l: 1, x: 12.75, y: 137.1342 }, + { l: 1, x: 12.83, y: 137.6708 }, + { l: 1, x: 12.92, y: 138.2143 }, + { l: 1, x: 13, y: 138.7637 }, + { l: 1, x: 13.08, y: 139.3146 }, + { l: 1, x: 13.17, y: 139.8663 }, + { l: 1, x: 13.25, y: 140.4175 }, + { l: 1, x: 13.33, y: 140.9707 }, + { l: 1, x: 13.42, y: 141.5251 }, + { l: 1, x: 13.5, y: 142.0722 }, + { l: 1, x: 13.58, y: 142.6188 }, + { l: 1, x: 13.67, y: 143.1644 }, + { l: 1, x: 13.75, y: 143.7046 }, + { l: 1, x: 13.83, y: 144.2383 }, + { l: 1, x: 13.92, y: 144.7647 }, + { l: 1, x: 14, y: 145.2868 }, + { l: 1, x: 14.08, y: 145.8036 }, + { l: 1, x: 14.17, y: 146.3071 }, + { l: 1, x: 14.25, y: 146.8039 }, + { l: 1, x: 14.33, y: 147.2897 }, + { l: 1, x: 14.42, y: 147.7678 }, + { l: 1, x: 14.5, y: 148.2341 }, + { l: 1, x: 14.58, y: 148.6884 }, + { l: 1, x: 14.67, y: 149.131 }, + { l: 1, x: 14.75, y: 149.566 }, + { l: 1, x: 14.83, y: 149.9897 }, + { l: 1, x: 14.92, y: 150.4021 }, + { l: 1, x: 15, y: 150.8032 }, + { l: 1, x: 15.08, y: 151.1968 }, + { l: 1, x: 15.17, y: 151.5791 }, + { l: 1, x: 15.25, y: 151.95 }, + { l: 1, x: 15.33, y: 152.3095 }, + { l: 1, x: 15.42, y: 152.6581 }, + { l: 1, x: 15.5, y: 152.9957 }, + { l: 1, x: 15.58, y: 153.3267 }, + { l: 1, x: 15.67, y: 153.6432 }, + { l: 1, x: 15.75, y: 153.9533 }, + { l: 1, x: 15.83, y: 154.2531 }, + { l: 1, x: 15.92, y: 154.5384 }, + { l: 1, x: 16, y: 154.8174 }, + { l: 1, x: 16.08, y: 155.0858 }, + { l: 1, x: 16.17, y: 155.3439 }, + { l: 1, x: 16.25, y: 155.5917 }, + { l: 1, x: 16.33, y: 155.8292 }, + { l: 1, x: 16.42, y: 156.0567 }, + { l: 1, x: 16.5, y: 156.2744 }, + { l: 1, x: 16.58, y: 156.4822 }, + { l: 1, x: 16.67, y: 156.6806 }, + { l: 1, x: 16.75, y: 156.8696 }, + { l: 1, x: 16.83, y: 157.0494 }, + { l: 1, x: 16.92, y: 157.2163 }, + { l: 1, x: 17, y: 157.3786 }, + { l: 1, x: 17.08, y: 157.5326 }, + { l: 1, x: 17.17, y: 157.6747 }, + { l: 1, x: 17.25, y: 157.8135 }, + { l: 1, x: 17.33, y: 157.941 }, + { l: 1, x: 17.42, y: 158.0661 }, + { l: 1, x: 17.5, y: 158.181 }, + { l: 1, x: 17.58, y: 158.2903 }, + { l: 1, x: 17.67, y: 158.3943 }, + { l: 1, x: 17.75, y: 158.4936 }, + { l: 1, x: 17.83, y: 158.5885 }, + { l: 1, x: 17.92, y: 158.6794 }, + { l: 1, x: 18, y: 158.7667 }, + { l: 1, x: 18.08, y: 158.8465 }, + { l: 1, x: 18.17, y: 158.9275 }, + { l: 1, x: 18.25, y: 159.0014 }, + { l: 1, x: 18.33, y: 159.0729 }, + { l: 1, x: 18.42, y: 159.1419 }, + { l: 1, x: 18.5, y: 159.213 }, + { l: 1, x: 18.58, y: 159.2739 }, + { l: 1, x: 18.67, y: 159.3371 }, + { l: 1, x: 18.75, y: 159.3986 }, + { l: 1, x: 18.83, y: 159.4583 }, + { l: 1, x: 18.92, y: 159.5123 }, + { l: 1, x: 19, y: 159.5652 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 101.6292 }, + { l: 3, x: 5.17, y: 102.1064 }, + { l: 3, x: 5.25, y: 102.581 }, + { l: 3, x: 5.33, y: 103.0544 }, + { l: 3, x: 5.42, y: 103.522 }, + { l: 3, x: 5.5, y: 103.9854 }, + { l: 3, x: 5.58, y: 104.4444 }, + { l: 3, x: 5.67, y: 104.9018 }, + { l: 3, x: 5.75, y: 105.3532 }, + { l: 3, x: 5.83, y: 105.8005 }, + { l: 3, x: 5.92, y: 106.2457 }, + { l: 3, x: 6, y: 106.6847 }, + { l: 3, x: 6.08, y: 107.1201 }, + { l: 3, x: 6.17, y: 107.5548 }, + { l: 3, x: 6.25, y: 107.9852 }, + { l: 3, x: 6.33, y: 108.4135 }, + { l: 3, x: 6.42, y: 108.8424 }, + { l: 3, x: 6.5, y: 109.2676 }, + { l: 3, x: 6.58, y: 109.6916 }, + { l: 3, x: 6.67, y: 110.1143 }, + { l: 3, x: 6.75, y: 110.5379 }, + { l: 3, x: 6.83, y: 110.9578 }, + { l: 3, x: 6.92, y: 111.376 }, + { l: 3, x: 7, y: 111.7925 }, + { l: 3, x: 7.08, y: 112.2071 }, + { l: 3, x: 7.17, y: 112.6199 }, + { l: 3, x: 7.25, y: 113.0309 }, + { l: 3, x: 7.33, y: 113.4403 }, + { l: 3, x: 7.42, y: 113.8479 }, + { l: 3, x: 7.5, y: 114.2535 }, + { l: 3, x: 7.58, y: 114.657 }, + { l: 3, x: 7.67, y: 115.0583 }, + { l: 3, x: 7.75, y: 115.4575 }, + { l: 3, x: 7.83, y: 115.8544 }, + { l: 3, x: 7.92, y: 116.2494 }, + { l: 3, x: 8, y: 116.6423 }, + { l: 3, x: 8.08, y: 117.0335 }, + { l: 3, x: 8.17, y: 117.423 }, + { l: 3, x: 8.25, y: 117.8108 }, + { l: 3, x: 8.33, y: 118.1974 }, + { l: 3, x: 8.42, y: 118.5829 }, + { l: 3, x: 8.5, y: 118.965 }, + { l: 3, x: 8.58, y: 119.3487 }, + { l: 3, x: 8.67, y: 119.7317 }, + { l: 3, x: 8.75, y: 120.1139 }, + { l: 3, x: 8.83, y: 120.4958 }, + { l: 3, x: 8.92, y: 120.8771 }, + { l: 3, x: 9, y: 121.2581 }, + { l: 3, x: 9.08, y: 121.6387 }, + { l: 3, x: 9.17, y: 122.0185 }, + { l: 3, x: 9.25, y: 122.3976 }, + { l: 3, x: 9.33, y: 122.7786 }, + { l: 3, x: 9.42, y: 123.1562 }, + { l: 3, x: 9.5, y: 123.5331 }, + { l: 3, x: 9.58, y: 123.9117 }, + { l: 3, x: 9.67, y: 124.2872 }, + { l: 3, x: 9.75, y: 124.6646 }, + { l: 3, x: 9.83, y: 125.0389 }, + { l: 3, x: 9.92, y: 125.4155 }, + { l: 3, x: 10, y: 125.7919 }, + { l: 3, x: 10.08, y: 126.1685 }, + { l: 3, x: 10.17, y: 126.5458 }, + { l: 3, x: 10.25, y: 126.924 }, + { l: 3, x: 10.33, y: 127.3036 }, + { l: 3, x: 10.42, y: 127.6851 }, + { l: 3, x: 10.5, y: 128.0714 }, + { l: 3, x: 10.58, y: 128.4578 }, + { l: 3, x: 10.67, y: 128.8497 }, + { l: 3, x: 10.75, y: 129.2449 }, + { l: 3, x: 10.83, y: 129.6436 }, + { l: 3, x: 10.92, y: 130.0455 }, + { l: 3, x: 11, y: 130.4537 }, + { l: 3, x: 11.08, y: 130.8631 }, + { l: 3, x: 11.17, y: 131.2794 }, + { l: 3, x: 11.25, y: 131.7001 }, + { l: 3, x: 11.33, y: 132.1281 }, + { l: 3, x: 11.42, y: 132.5582 }, + { l: 3, x: 11.5, y: 132.9961 }, + { l: 3, x: 11.58, y: 133.4394 }, + { l: 3, x: 11.67, y: 133.8883 }, + { l: 3, x: 11.75, y: 134.343 }, + { l: 3, x: 11.83, y: 134.8067 }, + { l: 3, x: 11.92, y: 135.2768 }, + { l: 3, x: 12, y: 135.7537 }, + { l: 3, x: 12.08, y: 136.2403 }, + { l: 3, x: 12.17, y: 136.731 }, + { l: 3, x: 12.25, y: 137.2346 }, + { l: 3, x: 12.33, y: 137.7427 }, + { l: 3, x: 12.42, y: 138.261 }, + { l: 3, x: 12.5, y: 138.7863 }, + { l: 3, x: 12.58, y: 139.321 }, + { l: 3, x: 12.67, y: 139.8585 }, + { l: 3, x: 12.75, y: 140.4067 }, + { l: 3, x: 12.83, y: 140.9561 }, + { l: 3, x: 12.92, y: 141.5118 }, + { l: 3, x: 13, y: 142.0727 }, + { l: 3, x: 13.08, y: 142.6352 }, + { l: 3, x: 13.17, y: 143.1984 }, + { l: 3, x: 13.25, y: 143.7612 }, + { l: 3, x: 13.33, y: 144.3252 }, + { l: 3, x: 13.42, y: 144.8896 }, + { l: 3, x: 13.5, y: 145.4473 }, + { l: 3, x: 13.58, y: 146.0037 }, + { l: 3, x: 13.67, y: 146.5582 }, + { l: 3, x: 13.75, y: 147.1072 }, + { l: 3, x: 13.83, y: 147.6494 }, + { l: 3, x: 13.92, y: 148.1842 }, + { l: 3, x: 14, y: 148.7138 }, + { l: 3, x: 14.08, y: 149.237 }, + { l: 3, x: 14.17, y: 149.7474 }, + { l: 3, x: 14.25, y: 150.2501 }, + { l: 3, x: 14.33, y: 150.7415 }, + { l: 3, x: 14.42, y: 151.2242 }, + { l: 3, x: 14.5, y: 151.6947 }, + { l: 3, x: 14.58, y: 152.153 }, + { l: 3, x: 14.67, y: 152.5993 }, + { l: 3, x: 14.75, y: 153.0368 }, + { l: 3, x: 14.83, y: 153.4628 }, + { l: 3, x: 14.92, y: 153.8772 }, + { l: 3, x: 15, y: 154.2799 }, + { l: 3, x: 15.08, y: 154.6742 }, + { l: 3, x: 15.17, y: 155.0568 }, + { l: 3, x: 15.25, y: 155.4277 }, + { l: 3, x: 15.33, y: 155.787 }, + { l: 3, x: 15.42, y: 156.1349 }, + { l: 3, x: 15.5, y: 156.4717 }, + { l: 3, x: 15.58, y: 156.8008 }, + { l: 3, x: 15.67, y: 157.116 }, + { l: 3, x: 15.75, y: 157.4237 }, + { l: 3, x: 15.83, y: 157.7208 }, + { l: 3, x: 15.92, y: 158.0039 }, + { l: 3, x: 16, y: 158.2797 }, + { l: 3, x: 16.08, y: 158.5446 }, + { l: 3, x: 16.17, y: 158.799 }, + { l: 3, x: 16.25, y: 159.0428 }, + { l: 3, x: 16.33, y: 159.2761 }, + { l: 3, x: 16.42, y: 159.4991 }, + { l: 3, x: 16.5, y: 159.712 }, + { l: 3, x: 16.58, y: 159.915 }, + { l: 3, x: 16.67, y: 160.1081 }, + { l: 3, x: 16.75, y: 160.2918 }, + { l: 3, x: 16.83, y: 160.4659 }, + { l: 3, x: 16.92, y: 160.6277 }, + { l: 3, x: 17, y: 160.784 }, + { l: 3, x: 17.08, y: 160.9318 }, + { l: 3, x: 17.17, y: 161.0683 }, + { l: 3, x: 17.25, y: 161.2005 }, + { l: 3, x: 17.33, y: 161.322 }, + { l: 3, x: 17.42, y: 161.4402 }, + { l: 3, x: 17.5, y: 161.5488 }, + { l: 3, x: 17.58, y: 161.6518 }, + { l: 3, x: 17.67, y: 161.7493 }, + { l: 3, x: 17.75, y: 161.842 }, + { l: 3, x: 17.83, y: 161.9302 }, + { l: 3, x: 17.92, y: 162.0143 }, + { l: 3, x: 18, y: 162.0947 }, + { l: 3, x: 18.08, y: 162.1684 }, + { l: 3, x: 18.17, y: 162.2423 }, + { l: 3, x: 18.25, y: 162.31 }, + { l: 3, x: 18.33, y: 162.3751 }, + { l: 3, x: 18.42, y: 162.4377 }, + { l: 3, x: 18.5, y: 162.5016 }, + { l: 3, x: 18.58, y: 162.5568 }, + { l: 3, x: 18.67, y: 162.6134 }, + { l: 3, x: 18.75, y: 162.6683 }, + { l: 3, x: 18.83, y: 162.7214 }, + { l: 3, x: 18.92, y: 162.7696 }, + { l: 3, x: 19, y: 162.8166 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 102.7123 }, + { l: 5, x: 5.17, y: 103.1969 }, + { l: 5, x: 5.25, y: 103.6788 }, + { l: 5, x: 5.33, y: 104.1593 }, + { l: 5, x: 5.42, y: 104.6342 }, + { l: 5, x: 5.5, y: 105.1049 }, + { l: 5, x: 5.58, y: 105.5712 }, + { l: 5, x: 5.67, y: 106.0356 }, + { l: 5, x: 5.75, y: 106.4942 }, + { l: 5, x: 5.83, y: 106.9487 }, + { l: 5, x: 5.92, y: 107.4007 }, + { l: 5, x: 6, y: 107.8469 }, + { l: 5, x: 6.08, y: 108.2895 }, + { l: 5, x: 6.17, y: 108.731 }, + { l: 5, x: 6.25, y: 109.1685 }, + { l: 5, x: 6.33, y: 109.6039 }, + { l: 5, x: 6.42, y: 110.0396 }, + { l: 5, x: 6.5, y: 110.472 }, + { l: 5, x: 6.58, y: 110.9031 }, + { l: 5, x: 6.67, y: 111.3329 }, + { l: 5, x: 6.75, y: 111.7634 }, + { l: 5, x: 6.83, y: 112.1904 }, + { l: 5, x: 6.92, y: 112.6158 }, + { l: 5, x: 7, y: 113.0394 }, + { l: 5, x: 7.08, y: 113.4611 }, + { l: 5, x: 7.17, y: 113.8811 }, + { l: 5, x: 7.25, y: 114.2992 }, + { l: 5, x: 7.33, y: 114.7158 }, + { l: 5, x: 7.42, y: 115.1304 }, + { l: 5, x: 7.5, y: 115.5432 }, + { l: 5, x: 7.58, y: 115.9538 }, + { l: 5, x: 7.67, y: 116.3623 }, + { l: 5, x: 7.75, y: 116.7686 }, + { l: 5, x: 7.83, y: 117.1726 }, + { l: 5, x: 7.92, y: 117.5747 }, + { l: 5, x: 8, y: 117.9747 }, + { l: 5, x: 8.08, y: 118.373 }, + { l: 5, x: 8.17, y: 118.7696 }, + { l: 5, x: 8.25, y: 119.1645 }, + { l: 5, x: 8.33, y: 119.5582 }, + { l: 5, x: 8.42, y: 119.9507 }, + { l: 5, x: 8.5, y: 120.3403 }, + { l: 5, x: 8.58, y: 120.7311 }, + { l: 5, x: 8.67, y: 121.1212 }, + { l: 5, x: 8.75, y: 121.5106 }, + { l: 5, x: 8.83, y: 121.8996 }, + { l: 5, x: 8.92, y: 122.2881 }, + { l: 5, x: 9, y: 122.6763 }, + { l: 5, x: 9.08, y: 123.0641 }, + { l: 5, x: 9.17, y: 123.4511 }, + { l: 5, x: 9.25, y: 123.8374 }, + { l: 5, x: 9.33, y: 124.2253 }, + { l: 5, x: 9.42, y: 124.6101 }, + { l: 5, x: 9.5, y: 124.9943 }, + { l: 5, x: 9.58, y: 125.3798 }, + { l: 5, x: 9.67, y: 125.7625 }, + { l: 5, x: 9.75, y: 126.1469 }, + { l: 5, x: 9.83, y: 126.5285 }, + { l: 5, x: 9.92, y: 126.912 }, + { l: 5, x: 10, y: 127.2954 }, + { l: 5, x: 10.08, y: 127.679 }, + { l: 5, x: 10.17, y: 128.0633 }, + { l: 5, x: 10.25, y: 128.4487 }, + { l: 5, x: 10.33, y: 128.8354 }, + { l: 5, x: 10.42, y: 129.2239 }, + { l: 5, x: 10.5, y: 129.617 }, + { l: 5, x: 10.58, y: 130.0107 }, + { l: 5, x: 10.67, y: 130.4095 }, + { l: 5, x: 10.75, y: 130.8117 }, + { l: 5, x: 10.83, y: 131.2174 }, + { l: 5, x: 10.92, y: 131.6265 }, + { l: 5, x: 11, y: 132.0415 }, + { l: 5, x: 11.08, y: 132.4581 }, + { l: 5, x: 11.17, y: 132.8813 }, + { l: 5, x: 11.25, y: 133.309 }, + { l: 5, x: 11.33, y: 133.7437 }, + { l: 5, x: 11.42, y: 134.181 }, + { l: 5, x: 11.5, y: 134.6258 }, + { l: 5, x: 11.58, y: 135.076 }, + { l: 5, x: 11.67, y: 135.5319 }, + { l: 5, x: 11.75, y: 135.9938 }, + { l: 5, x: 11.83, y: 136.4643 }, + { l: 5, x: 11.92, y: 136.9414 }, + { l: 5, x: 12, y: 137.4253 }, + { l: 5, x: 12.08, y: 137.9186 }, + { l: 5, x: 12.17, y: 138.4165 }, + { l: 5, x: 12.25, y: 138.9267 }, + { l: 5, x: 12.33, y: 139.4418 }, + { l: 5, x: 12.42, y: 139.9669 }, + { l: 5, x: 12.5, y: 140.4992 }, + { l: 5, x: 12.58, y: 141.0404 }, + { l: 5, x: 12.67, y: 141.585 }, + { l: 5, x: 12.75, y: 142.1395 }, + { l: 5, x: 12.83, y: 142.6957 }, + { l: 5, x: 12.92, y: 143.2578 }, + { l: 5, x: 13, y: 143.8249 }, + { l: 5, x: 13.08, y: 144.3935 }, + { l: 5, x: 13.17, y: 144.9629 }, + { l: 5, x: 13.25, y: 145.5317 }, + { l: 5, x: 13.33, y: 146.1015 }, + { l: 5, x: 13.42, y: 146.6711 }, + { l: 5, x: 13.5, y: 147.2345 }, + { l: 5, x: 13.58, y: 147.7961 }, + { l: 5, x: 13.67, y: 148.3553 }, + { l: 5, x: 13.75, y: 148.9089 }, + { l: 5, x: 13.83, y: 149.4557 }, + { l: 5, x: 13.92, y: 149.9949 }, + { l: 5, x: 14, y: 150.5284 }, + { l: 5, x: 14.08, y: 151.0551 }, + { l: 5, x: 14.17, y: 151.5691 }, + { l: 5, x: 14.25, y: 152.075 }, + { l: 5, x: 14.33, y: 152.5693 }, + { l: 5, x: 14.42, y: 153.0545 }, + { l: 5, x: 14.5, y: 153.5272 }, + { l: 5, x: 14.58, y: 153.9876 }, + { l: 5, x: 14.67, y: 154.4358 }, + { l: 5, x: 14.75, y: 154.8747 }, + { l: 5, x: 14.83, y: 155.3019 }, + { l: 5, x: 14.92, y: 155.7173 }, + { l: 5, x: 15, y: 156.1209 }, + { l: 5, x: 15.08, y: 156.5155 }, + { l: 5, x: 15.17, y: 156.8983 }, + { l: 5, x: 15.25, y: 157.2692 }, + { l: 5, x: 15.33, y: 157.6284 }, + { l: 5, x: 15.42, y: 157.976 }, + { l: 5, x: 15.5, y: 158.3123 }, + { l: 5, x: 15.58, y: 158.6405 }, + { l: 5, x: 15.67, y: 158.9549 }, + { l: 5, x: 15.75, y: 159.2613 }, + { l: 5, x: 15.83, y: 159.557 }, + { l: 5, x: 15.92, y: 159.839 }, + { l: 5, x: 16, y: 160.113 }, + { l: 5, x: 16.08, y: 160.3761 }, + { l: 5, x: 16.17, y: 160.6285 }, + { l: 5, x: 16.25, y: 160.8702 }, + { l: 5, x: 16.33, y: 161.1013 }, + { l: 5, x: 16.42, y: 161.3219 }, + { l: 5, x: 16.5, y: 161.5323 }, + { l: 5, x: 16.58, y: 161.7326 }, + { l: 5, x: 16.67, y: 161.9231 }, + { l: 5, x: 16.75, y: 162.1038 }, + { l: 5, x: 16.83, y: 162.275 }, + { l: 5, x: 16.92, y: 162.4342 }, + { l: 5, x: 17, y: 162.5872 }, + { l: 5, x: 17.08, y: 162.7317 }, + { l: 5, x: 17.17, y: 162.8652 }, + { l: 5, x: 17.25, y: 162.9939 }, + { l: 5, x: 17.33, y: 163.1123 }, + { l: 5, x: 17.42, y: 163.2269 }, + { l: 5, x: 17.5, y: 163.3322 }, + { l: 5, x: 17.58, y: 163.4317 }, + { l: 5, x: 17.67, y: 163.5258 }, + { l: 5, x: 17.75, y: 163.615 }, + { l: 5, x: 17.83, y: 163.6996 }, + { l: 5, x: 17.92, y: 163.7802 }, + { l: 5, x: 18, y: 163.857 }, + { l: 5, x: 18.08, y: 163.9274 }, + { l: 5, x: 18.17, y: 163.9976 }, + { l: 5, x: 18.25, y: 164.0619 }, + { l: 5, x: 18.33, y: 164.1237 }, + { l: 5, x: 18.42, y: 164.1829 }, + { l: 5, x: 18.5, y: 164.2429 }, + { l: 5, x: 18.58, y: 164.2951 }, + { l: 5, x: 18.67, y: 164.3483 }, + { l: 5, x: 18.75, y: 164.3997 }, + { l: 5, x: 18.83, y: 164.4493 }, + { l: 5, x: 18.92, y: 164.4944 }, + { l: 5, x: 19, y: 164.5382 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 104.3803 }, + { l: 10, x: 5.17, y: 104.8763 }, + { l: 10, x: 5.25, y: 105.3696 }, + { l: 10, x: 5.33, y: 105.8609 }, + { l: 10, x: 5.42, y: 106.3471 }, + { l: 10, x: 5.5, y: 106.829 }, + { l: 10, x: 5.58, y: 107.3065 }, + { l: 10, x: 5.67, y: 107.7816 }, + { l: 10, x: 5.75, y: 108.2513 }, + { l: 10, x: 5.83, y: 108.7169 }, + { l: 10, x: 5.92, y: 109.1796 }, + { l: 10, x: 6, y: 109.6368 }, + { l: 10, x: 6.08, y: 110.0903 }, + { l: 10, x: 6.17, y: 110.5424 }, + { l: 10, x: 6.25, y: 110.9909 }, + { l: 10, x: 6.33, y: 111.4372 }, + { l: 10, x: 6.42, y: 111.8835 }, + { l: 10, x: 6.5, y: 112.3268 }, + { l: 10, x: 6.58, y: 112.7689 }, + { l: 10, x: 6.67, y: 113.2097 }, + { l: 10, x: 6.75, y: 113.6507 }, + { l: 10, x: 6.83, y: 114.0887 }, + { l: 10, x: 6.92, y: 114.525 }, + { l: 10, x: 7, y: 114.9597 }, + { l: 10, x: 7.08, y: 115.3924 }, + { l: 10, x: 7.17, y: 115.8233 }, + { l: 10, x: 7.25, y: 116.2525 }, + { l: 10, x: 7.33, y: 116.68 }, + { l: 10, x: 7.42, y: 117.1057 }, + { l: 10, x: 7.5, y: 117.5294 }, + { l: 10, x: 7.58, y: 117.951 }, + { l: 10, x: 7.67, y: 118.3704 }, + { l: 10, x: 7.75, y: 118.7877 }, + { l: 10, x: 7.83, y: 119.2027 }, + { l: 10, x: 7.92, y: 119.6157 }, + { l: 10, x: 8, y: 120.0266 }, + { l: 10, x: 8.08, y: 120.4358 }, + { l: 10, x: 8.17, y: 120.8434 }, + { l: 10, x: 8.25, y: 121.2492 }, + { l: 10, x: 8.33, y: 121.6538 }, + { l: 10, x: 8.42, y: 122.0573 }, + { l: 10, x: 8.5, y: 122.4583 }, + { l: 10, x: 8.58, y: 122.8601 }, + { l: 10, x: 8.67, y: 123.2612 }, + { l: 10, x: 8.75, y: 123.6616 }, + { l: 10, x: 8.83, y: 124.0616 }, + { l: 10, x: 8.92, y: 124.4612 }, + { l: 10, x: 9, y: 124.8604 }, + { l: 10, x: 9.08, y: 125.2592 }, + { l: 10, x: 9.17, y: 125.6574 }, + { l: 10, x: 9.25, y: 126.0548 }, + { l: 10, x: 9.33, y: 126.4533 }, + { l: 10, x: 9.42, y: 126.8493 }, + { l: 10, x: 9.5, y: 127.2446 }, + { l: 10, x: 9.58, y: 127.6408 }, + { l: 10, x: 9.67, y: 128.0347 }, + { l: 10, x: 9.75, y: 128.4297 }, + { l: 10, x: 9.83, y: 128.8226 }, + { l: 10, x: 9.92, y: 129.2168 }, + { l: 10, x: 10, y: 129.611 }, + { l: 10, x: 10.08, y: 130.0054 }, + { l: 10, x: 10.17, y: 130.4005 }, + { l: 10, x: 10.25, y: 130.7967 }, + { l: 10, x: 10.33, y: 131.1943 }, + { l: 10, x: 10.42, y: 131.5938 }, + { l: 10, x: 10.5, y: 131.9975 }, + { l: 10, x: 10.58, y: 132.4022 }, + { l: 10, x: 10.67, y: 132.8117 }, + { l: 10, x: 10.75, y: 133.2247 }, + { l: 10, x: 10.83, y: 133.6412 }, + { l: 10, x: 10.92, y: 134.0612 }, + { l: 10, x: 11, y: 134.4867 }, + { l: 10, x: 11.08, y: 134.9144 }, + { l: 10, x: 11.17, y: 135.3483 }, + { l: 10, x: 11.25, y: 135.7868 }, + { l: 10, x: 11.33, y: 136.2319 }, + { l: 10, x: 11.42, y: 136.6802 }, + { l: 10, x: 11.5, y: 137.1355 }, + { l: 10, x: 11.58, y: 137.5965 }, + { l: 10, x: 11.67, y: 138.0632 }, + { l: 10, x: 11.75, y: 138.536 }, + { l: 10, x: 11.83, y: 139.0171 }, + { l: 10, x: 11.92, y: 139.5048 }, + { l: 10, x: 12, y: 139.9995 }, + { l: 10, x: 12.08, y: 140.5033 }, + { l: 10, x: 12.17, y: 141.0123 }, + { l: 10, x: 12.25, y: 141.5326 }, + { l: 10, x: 12.33, y: 142.0586 }, + { l: 10, x: 12.42, y: 142.5942 }, + { l: 10, x: 12.5, y: 143.137 }, + { l: 10, x: 12.58, y: 143.6885 }, + { l: 10, x: 12.67, y: 144.2439 }, + { l: 10, x: 12.75, y: 144.8082 }, + { l: 10, x: 12.83, y: 145.3748 }, + { l: 10, x: 12.92, y: 145.9469 }, + { l: 10, x: 13, y: 146.5234 }, + { l: 10, x: 13.08, y: 147.1014 }, + { l: 10, x: 13.17, y: 147.6802 }, + { l: 10, x: 13.25, y: 148.2585 }, + { l: 10, x: 13.33, y: 148.837 }, + { l: 10, x: 13.42, y: 149.4148 }, + { l: 10, x: 13.5, y: 149.9868 }, + { l: 10, x: 13.58, y: 150.5564 }, + { l: 10, x: 13.67, y: 151.1229 }, + { l: 10, x: 13.75, y: 151.6836 }, + { l: 10, x: 13.83, y: 152.2374 }, + { l: 10, x: 13.92, y: 152.7835 }, + { l: 10, x: 14, y: 153.323 }, + { l: 10, x: 14.08, y: 153.855 }, + { l: 10, x: 14.17, y: 154.3747 }, + { l: 10, x: 14.25, y: 154.8853 }, + { l: 10, x: 14.33, y: 155.3843 }, + { l: 10, x: 14.42, y: 155.8731 }, + { l: 10, x: 14.5, y: 156.3494 }, + { l: 10, x: 14.58, y: 156.813 }, + { l: 10, x: 14.67, y: 157.2641 }, + { l: 10, x: 14.75, y: 157.7051 }, + { l: 10, x: 14.83, y: 158.1342 }, + { l: 10, x: 14.92, y: 158.5512 }, + { l: 10, x: 15, y: 158.9562 }, + { l: 10, x: 15.08, y: 159.3513 }, + { l: 10, x: 15.17, y: 159.7344 }, + { l: 10, x: 15.25, y: 160.1053 }, + { l: 10, x: 15.33, y: 160.4642 }, + { l: 10, x: 15.42, y: 160.8114 }, + { l: 10, x: 15.5, y: 161.147 }, + { l: 10, x: 15.58, y: 161.4736 }, + { l: 10, x: 15.67, y: 161.7869 }, + { l: 10, x: 15.75, y: 162.0914 }, + { l: 10, x: 15.83, y: 162.3849 }, + { l: 10, x: 15.92, y: 162.665 }, + { l: 10, x: 16, y: 162.9365 }, + { l: 10, x: 16.08, y: 163.1968 }, + { l: 10, x: 16.17, y: 163.4461 }, + { l: 10, x: 16.25, y: 163.6846 }, + { l: 10, x: 16.33, y: 163.9122 }, + { l: 10, x: 16.42, y: 164.1291 }, + { l: 10, x: 16.5, y: 164.3357 }, + { l: 10, x: 16.58, y: 164.532 }, + { l: 10, x: 16.67, y: 164.7182 }, + { l: 10, x: 16.75, y: 164.8945 }, + { l: 10, x: 16.83, y: 165.0611 }, + { l: 10, x: 16.92, y: 165.2162 }, + { l: 10, x: 17, y: 165.3643 }, + { l: 10, x: 17.08, y: 165.5037 }, + { l: 10, x: 17.17, y: 165.6326 }, + { l: 10, x: 17.25, y: 165.756 }, + { l: 10, x: 17.33, y: 165.8695 }, + { l: 10, x: 17.42, y: 165.9784 }, + { l: 10, x: 17.5, y: 166.0786 }, + { l: 10, x: 17.58, y: 166.173 }, + { l: 10, x: 17.67, y: 166.2618 }, + { l: 10, x: 17.75, y: 166.3456 }, + { l: 10, x: 17.83, y: 166.4247 }, + { l: 10, x: 17.92, y: 166.4998 }, + { l: 10, x: 18, y: 166.571 }, + { l: 10, x: 18.08, y: 166.6363 }, + { l: 10, x: 18.17, y: 166.7008 }, + { l: 10, x: 18.25, y: 166.76 }, + { l: 10, x: 18.33, y: 166.8166 }, + { l: 10, x: 18.42, y: 166.8706 }, + { l: 10, x: 18.5, y: 166.9247 }, + { l: 10, x: 18.58, y: 166.9722 }, + { l: 10, x: 18.67, y: 167.0201 }, + { l: 10, x: 18.75, y: 167.0661 }, + { l: 10, x: 18.83, y: 167.1103 }, + { l: 10, x: 18.92, y: 167.1507 }, + { l: 10, x: 19, y: 167.1897 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 105.5062 }, + { l: 15, x: 5.17, y: 106.0097 }, + { l: 15, x: 5.25, y: 106.5107 }, + { l: 15, x: 5.33, y: 107.0094 }, + { l: 15, x: 5.42, y: 107.5031 }, + { l: 15, x: 5.5, y: 107.9926 }, + { l: 15, x: 5.58, y: 108.4777 }, + { l: 15, x: 5.67, y: 108.96 }, + { l: 15, x: 5.75, y: 109.4373 }, + { l: 15, x: 5.83, y: 109.9104 }, + { l: 15, x: 5.92, y: 110.3802 }, + { l: 15, x: 6, y: 110.8448 }, + { l: 15, x: 6.08, y: 111.3058 }, + { l: 15, x: 6.17, y: 111.765 }, + { l: 15, x: 6.25, y: 112.2208 }, + { l: 15, x: 6.33, y: 112.6746 }, + { l: 15, x: 6.42, y: 113.128 }, + { l: 15, x: 6.5, y: 113.5787 }, + { l: 15, x: 6.58, y: 114.0282 }, + { l: 15, x: 6.67, y: 114.4764 }, + { l: 15, x: 6.75, y: 114.9245 }, + { l: 15, x: 6.83, y: 115.3699 }, + { l: 15, x: 6.92, y: 115.8137 }, + { l: 15, x: 7, y: 116.2557 }, + { l: 15, x: 7.08, y: 116.6959 }, + { l: 15, x: 7.17, y: 117.1342 }, + { l: 15, x: 7.25, y: 117.5708 }, + { l: 15, x: 7.33, y: 118.0057 }, + { l: 15, x: 7.42, y: 118.4388 }, + { l: 15, x: 7.5, y: 118.87 }, + { l: 15, x: 7.58, y: 119.299 }, + { l: 15, x: 7.67, y: 119.7258 }, + { l: 15, x: 7.75, y: 120.1504 }, + { l: 15, x: 7.83, y: 120.5728 }, + { l: 15, x: 7.92, y: 120.9932 }, + { l: 15, x: 8, y: 121.4115 }, + { l: 15, x: 8.08, y: 121.8281 }, + { l: 15, x: 8.17, y: 122.243 }, + { l: 15, x: 8.25, y: 122.6562 }, + { l: 15, x: 8.33, y: 123.0682 }, + { l: 15, x: 8.42, y: 123.4791 }, + { l: 15, x: 8.5, y: 123.8878 }, + { l: 15, x: 8.58, y: 124.297 }, + { l: 15, x: 8.67, y: 124.7055 }, + { l: 15, x: 8.75, y: 125.1133 }, + { l: 15, x: 8.83, y: 125.5208 }, + { l: 15, x: 8.92, y: 125.9278 }, + { l: 15, x: 9, y: 126.3345 }, + { l: 15, x: 9.08, y: 126.7408 }, + { l: 15, x: 9.17, y: 127.1465 }, + { l: 15, x: 9.25, y: 127.5514 }, + { l: 15, x: 9.33, y: 127.957 }, + { l: 15, x: 9.42, y: 128.3606 }, + { l: 15, x: 9.5, y: 128.7634 }, + { l: 15, x: 9.58, y: 129.1668 }, + { l: 15, x: 9.67, y: 129.5682 }, + { l: 15, x: 9.75, y: 129.9705 }, + { l: 15, x: 9.83, y: 130.3709 }, + { l: 15, x: 9.92, y: 130.7724 }, + { l: 15, x: 10, y: 131.1738 }, + { l: 15, x: 10.08, y: 131.5755 }, + { l: 15, x: 10.17, y: 131.9779 }, + { l: 15, x: 10.25, y: 132.3814 }, + { l: 15, x: 10.33, y: 132.7864 }, + { l: 15, x: 10.42, y: 133.1933 }, + { l: 15, x: 10.5, y: 133.6041 }, + { l: 15, x: 10.58, y: 134.0163 }, + { l: 15, x: 10.67, y: 134.433 }, + { l: 15, x: 10.75, y: 134.8533 }, + { l: 15, x: 10.83, y: 135.2771 }, + { l: 15, x: 10.92, y: 135.7045 }, + { l: 15, x: 11, y: 136.137 }, + { l: 15, x: 11.08, y: 136.5722 }, + { l: 15, x: 11.17, y: 137.0134 }, + { l: 15, x: 11.25, y: 137.4591 }, + { l: 15, x: 11.33, y: 137.9112 }, + { l: 15, x: 11.42, y: 138.3669 }, + { l: 15, x: 11.5, y: 138.8294 }, + { l: 15, x: 11.58, y: 139.2976 }, + { l: 15, x: 11.67, y: 139.7716 }, + { l: 15, x: 11.75, y: 140.2518 }, + { l: 15, x: 11.83, y: 140.74 }, + { l: 15, x: 11.92, y: 141.2349 }, + { l: 15, x: 12, y: 141.737 }, + { l: 15, x: 12.08, y: 142.2477 }, + { l: 15, x: 12.17, y: 142.7643 }, + { l: 15, x: 12.25, y: 143.2915 }, + { l: 15, x: 12.33, y: 143.8248 }, + { l: 15, x: 12.42, y: 144.3674 }, + { l: 15, x: 12.5, y: 144.9174 }, + { l: 15, x: 12.58, y: 145.4757 }, + { l: 15, x: 12.67, y: 146.0384 }, + { l: 15, x: 12.75, y: 146.6093 }, + { l: 15, x: 12.83, y: 147.183 }, + { l: 15, x: 12.92, y: 147.7618 }, + { l: 15, x: 13, y: 148.3446 }, + { l: 15, x: 13.08, y: 148.929 }, + { l: 15, x: 13.17, y: 149.5142 }, + { l: 15, x: 13.25, y: 150.0988 }, + { l: 15, x: 13.33, y: 150.6833 }, + { l: 15, x: 13.42, y: 151.2666 }, + { l: 15, x: 13.5, y: 151.8444 }, + { l: 15, x: 13.58, y: 152.4194 }, + { l: 15, x: 13.67, y: 152.9908 }, + { l: 15, x: 13.75, y: 153.5564 }, + { l: 15, x: 13.83, y: 154.1149 }, + { l: 15, x: 13.92, y: 154.6656 }, + { l: 15, x: 14, y: 155.2092 }, + { l: 15, x: 14.08, y: 155.7447 }, + { l: 15, x: 14.17, y: 156.2682 }, + { l: 15, x: 14.25, y: 156.7821 }, + { l: 15, x: 14.33, y: 157.2842 }, + { l: 15, x: 14.42, y: 157.7755 }, + { l: 15, x: 14.5, y: 158.2541 }, + { l: 15, x: 14.58, y: 158.7199 }, + { l: 15, x: 14.67, y: 159.173 }, + { l: 15, x: 14.75, y: 159.6154 }, + { l: 15, x: 14.83, y: 160.0457 }, + { l: 15, x: 14.92, y: 160.4639 }, + { l: 15, x: 15, y: 160.8698 }, + { l: 15, x: 15.08, y: 161.2652 }, + { l: 15, x: 15.17, y: 161.6485 }, + { l: 15, x: 15.25, y: 162.0194 }, + { l: 15, x: 15.33, y: 162.3781 }, + { l: 15, x: 15.42, y: 162.725 }, + { l: 15, x: 15.5, y: 163.0602 }, + { l: 15, x: 15.58, y: 163.3858 }, + { l: 15, x: 15.67, y: 163.6983 }, + { l: 15, x: 15.75, y: 164.0014 }, + { l: 15, x: 15.83, y: 164.2935 }, + { l: 15, x: 15.92, y: 164.5724 }, + { l: 15, x: 16, y: 164.8421 }, + { l: 15, x: 16.08, y: 165.1005 }, + { l: 15, x: 16.17, y: 165.3478 }, + { l: 15, x: 16.25, y: 165.584 }, + { l: 15, x: 16.33, y: 165.8093 }, + { l: 15, x: 16.42, y: 166.0238 }, + { l: 15, x: 16.5, y: 166.2278 }, + { l: 15, x: 16.58, y: 166.4213 }, + { l: 15, x: 16.67, y: 166.6047 }, + { l: 15, x: 16.75, y: 166.7781 }, + { l: 15, x: 16.83, y: 166.9415 }, + { l: 15, x: 16.92, y: 167.0938 }, + { l: 15, x: 17, y: 167.2386 }, + { l: 15, x: 17.08, y: 167.3746 }, + { l: 15, x: 17.17, y: 167.5004 }, + { l: 15, x: 17.25, y: 167.6201 }, + { l: 15, x: 17.33, y: 167.7304 }, + { l: 15, x: 17.42, y: 167.8355 }, + { l: 15, x: 17.5, y: 167.9323 }, + { l: 15, x: 17.58, y: 168.0231 }, + { l: 15, x: 17.67, y: 168.1083 }, + { l: 15, x: 17.75, y: 168.1885 }, + { l: 15, x: 17.83, y: 168.264 }, + { l: 15, x: 17.92, y: 168.3353 }, + { l: 15, x: 18, y: 168.4027 }, + { l: 15, x: 18.08, y: 168.4646 }, + { l: 15, x: 18.17, y: 168.5252 }, + { l: 15, x: 18.25, y: 168.581 }, + { l: 15, x: 18.33, y: 168.6341 }, + { l: 15, x: 18.42, y: 168.6846 }, + { l: 15, x: 18.5, y: 168.7347 }, + { l: 15, x: 18.58, y: 168.7791 }, + { l: 15, x: 18.67, y: 168.8234 }, + { l: 15, x: 18.75, y: 168.8658 }, + { l: 15, x: 18.83, y: 168.9063 }, + { l: 15, x: 18.92, y: 168.9435 }, + { l: 15, x: 19, y: 168.9792 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 110.2647 }, + { l: 50, x: 5.17, y: 110.8006 }, + { l: 50, x: 5.25, y: 111.3338 }, + { l: 50, x: 5.33, y: 111.8636 }, + { l: 50, x: 5.42, y: 112.3895 }, + { l: 50, x: 5.5, y: 112.911 }, + { l: 50, x: 5.58, y: 113.428 }, + { l: 50, x: 5.67, y: 113.941 }, + { l: 50, x: 5.75, y: 114.45 }, + { l: 50, x: 5.83, y: 114.9547 }, + { l: 50, x: 5.92, y: 115.4549 }, + { l: 50, x: 6, y: 115.9509 }, + { l: 50, x: 6.08, y: 116.4432 }, + { l: 50, x: 6.17, y: 116.9325 }, + { l: 50, x: 6.25, y: 117.4196 }, + { l: 50, x: 6.33, y: 117.9046 }, + { l: 50, x: 6.42, y: 118.388 }, + { l: 50, x: 6.5, y: 118.87 }, + { l: 50, x: 6.58, y: 119.3508 }, + { l: 50, x: 6.67, y: 119.8303 }, + { l: 50, x: 6.75, y: 120.3085 }, + { l: 50, x: 6.83, y: 120.7853 }, + { l: 50, x: 6.92, y: 121.2604 }, + { l: 50, x: 7, y: 121.7338 }, + { l: 50, x: 7.08, y: 122.2053 }, + { l: 50, x: 7.17, y: 122.675 }, + { l: 50, x: 7.25, y: 123.1429 }, + { l: 50, x: 7.33, y: 123.6092 }, + { l: 50, x: 7.42, y: 124.0736 }, + { l: 50, x: 7.5, y: 124.5361 }, + { l: 50, x: 7.58, y: 124.9964 }, + { l: 50, x: 7.67, y: 125.4545 }, + { l: 50, x: 7.75, y: 125.9104 }, + { l: 50, x: 7.83, y: 126.364 }, + { l: 50, x: 7.92, y: 126.8156 }, + { l: 50, x: 8, y: 127.2651 }, + { l: 50, x: 8.08, y: 127.7129 }, + { l: 50, x: 8.17, y: 128.159 }, + { l: 50, x: 8.25, y: 128.6034 }, + { l: 50, x: 8.33, y: 129.0466 }, + { l: 50, x: 8.42, y: 129.4887 }, + { l: 50, x: 8.5, y: 129.93 }, + { l: 50, x: 8.58, y: 130.3705 }, + { l: 50, x: 8.67, y: 130.8103 }, + { l: 50, x: 8.75, y: 131.2495 }, + { l: 50, x: 8.83, y: 131.6884 }, + { l: 50, x: 8.92, y: 132.1269 }, + { l: 50, x: 9, y: 132.5652 }, + { l: 50, x: 9.08, y: 133.0031 }, + { l: 50, x: 9.17, y: 133.4404 }, + { l: 50, x: 9.25, y: 133.877 }, + { l: 50, x: 9.33, y: 134.313 }, + { l: 50, x: 9.42, y: 134.7483 }, + { l: 50, x: 9.5, y: 135.1829 }, + { l: 50, x: 9.58, y: 135.6168 }, + { l: 50, x: 9.67, y: 136.0501 }, + { l: 50, x: 9.75, y: 136.4829 }, + { l: 50, x: 9.83, y: 136.9153 }, + { l: 50, x: 9.92, y: 137.3474 }, + { l: 50, x: 10, y: 137.7795 }, + { l: 50, x: 10.08, y: 138.2119 }, + { l: 50, x: 10.17, y: 138.6452 }, + { l: 50, x: 10.25, y: 139.0797 }, + { l: 50, x: 10.33, y: 139.5158 }, + { l: 50, x: 10.42, y: 139.954 }, + { l: 50, x: 10.5, y: 140.3948 }, + { l: 50, x: 10.58, y: 140.8387 }, + { l: 50, x: 10.67, y: 141.2859 }, + { l: 50, x: 10.75, y: 141.7368 }, + { l: 50, x: 10.83, y: 142.1916 }, + { l: 50, x: 10.92, y: 142.6501 }, + { l: 50, x: 11, y: 143.1126 }, + { l: 50, x: 11.08, y: 143.5795 }, + { l: 50, x: 11.17, y: 144.0511 }, + { l: 50, x: 11.25, y: 144.5276 }, + { l: 50, x: 11.33, y: 145.0093 }, + { l: 50, x: 11.42, y: 145.4964 }, + { l: 50, x: 11.5, y: 145.9891 }, + { l: 50, x: 11.58, y: 146.4878 }, + { l: 50, x: 11.67, y: 146.9927 }, + { l: 50, x: 11.75, y: 147.5041 }, + { l: 50, x: 11.83, y: 148.0224 }, + { l: 50, x: 11.92, y: 148.5478 }, + { l: 50, x: 12, y: 149.0807 }, + { l: 50, x: 12.08, y: 149.6212 }, + { l: 50, x: 12.17, y: 150.1694 }, + { l: 50, x: 12.25, y: 150.7256 }, + { l: 50, x: 12.33, y: 151.2899 }, + { l: 50, x: 12.42, y: 151.8623 }, + { l: 50, x: 12.5, y: 152.4425 }, + { l: 50, x: 12.58, y: 153.0298 }, + { l: 50, x: 12.67, y: 153.6234 }, + { l: 50, x: 12.75, y: 154.2223 }, + { l: 50, x: 12.83, y: 154.8258 }, + { l: 50, x: 12.92, y: 155.4329 }, + { l: 50, x: 13, y: 156.0426 }, + { l: 50, x: 13.08, y: 156.6539 }, + { l: 50, x: 13.17, y: 157.266 }, + { l: 50, x: 13.25, y: 157.8775 }, + { l: 50, x: 13.33, y: 158.4871 }, + { l: 50, x: 13.42, y: 159.0937 }, + { l: 50, x: 13.5, y: 159.6962 }, + { l: 50, x: 13.58, y: 160.2939 }, + { l: 50, x: 13.67, y: 160.8861 }, + { l: 50, x: 13.75, y: 161.472 }, + { l: 50, x: 13.83, y: 162.0505 }, + { l: 50, x: 13.92, y: 162.6207 }, + { l: 50, x: 14, y: 163.1816 }, + { l: 50, x: 14.08, y: 163.7321 }, + { l: 50, x: 14.17, y: 164.2717 }, + { l: 50, x: 14.25, y: 164.7994 }, + { l: 50, x: 14.33, y: 165.3145 }, + { l: 50, x: 14.42, y: 165.8165 }, + { l: 50, x: 14.5, y: 166.305 }, + { l: 50, x: 14.58, y: 166.7799 }, + { l: 50, x: 14.67, y: 167.2415 }, + { l: 50, x: 14.75, y: 167.6899 }, + { l: 50, x: 14.83, y: 168.1255 }, + { l: 50, x: 14.92, y: 168.5482 }, + { l: 50, x: 15, y: 168.958 }, + { l: 50, x: 15.08, y: 169.3549 }, + { l: 50, x: 15.17, y: 169.7389 }, + { l: 50, x: 15.25, y: 170.1099 }, + { l: 50, x: 15.33, y: 170.468 }, + { l: 50, x: 15.42, y: 170.8136 }, + { l: 50, x: 15.5, y: 171.1468 }, + { l: 50, x: 15.58, y: 171.468 }, + { l: 50, x: 15.67, y: 171.7773 }, + { l: 50, x: 15.75, y: 172.0748 }, + { l: 50, x: 15.83, y: 172.3606 }, + { l: 50, x: 15.92, y: 172.6345 }, + { l: 50, x: 16, y: 172.8967 }, + { l: 50, x: 16.08, y: 173.147 }, + { l: 50, x: 16.17, y: 173.3856 }, + { l: 50, x: 16.25, y: 173.6126 }, + { l: 50, x: 16.33, y: 173.828 }, + { l: 50, x: 16.42, y: 174.0321 }, + { l: 50, x: 16.5, y: 174.2251 }, + { l: 50, x: 16.58, y: 174.4071 }, + { l: 50, x: 16.67, y: 174.5784 }, + { l: 50, x: 16.75, y: 174.7392 }, + { l: 50, x: 16.83, y: 174.8896 }, + { l: 50, x: 16.92, y: 175.0301 }, + { l: 50, x: 17, y: 175.1609 }, + { l: 50, x: 17.08, y: 175.2824 }, + { l: 50, x: 17.17, y: 175.3951 }, + { l: 50, x: 17.25, y: 175.4995 }, + { l: 50, x: 17.33, y: 175.5959 }, + { l: 50, x: 17.42, y: 175.685 }, + { l: 50, x: 17.5, y: 175.7672 }, + { l: 50, x: 17.58, y: 175.8432 }, + { l: 50, x: 17.67, y: 175.9133 }, + { l: 50, x: 17.75, y: 175.9781 }, + { l: 50, x: 17.83, y: 176.038 }, + { l: 50, x: 17.92, y: 176.0935 }, + { l: 50, x: 18, y: 176.1449 }, + { l: 50, x: 18.08, y: 176.1925 }, + { l: 50, x: 18.17, y: 176.2368 }, + { l: 50, x: 18.25, y: 176.2779 }, + { l: 50, x: 18.33, y: 176.3162 }, + { l: 50, x: 18.42, y: 176.3518 }, + { l: 50, x: 18.5, y: 176.3851 }, + { l: 50, x: 18.58, y: 176.4162 }, + { l: 50, x: 18.67, y: 176.4453 }, + { l: 50, x: 18.75, y: 176.4724 }, + { l: 50, x: 18.83, y: 176.4976 }, + { l: 50, x: 18.92, y: 176.5211 }, + { l: 50, x: 19, y: 176.5432 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 115.0232 }, + { l: 85, x: 5.17, y: 115.5915 }, + { l: 85, x: 5.25, y: 116.1569 }, + { l: 85, x: 5.33, y: 116.7178 }, + { l: 85, x: 5.42, y: 117.2759 }, + { l: 85, x: 5.5, y: 117.8294 }, + { l: 85, x: 5.58, y: 118.3783 }, + { l: 85, x: 5.67, y: 118.922 }, + { l: 85, x: 5.75, y: 119.4627 }, + { l: 85, x: 5.83, y: 119.999 }, + { l: 85, x: 5.92, y: 120.5296 }, + { l: 85, x: 6, y: 121.057 }, + { l: 85, x: 6.08, y: 121.5806 }, + { l: 85, x: 6.17, y: 122.1 }, + { l: 85, x: 6.25, y: 122.6184 }, + { l: 85, x: 6.33, y: 123.1346 }, + { l: 85, x: 6.42, y: 123.648 }, + { l: 85, x: 6.5, y: 124.1613 }, + { l: 85, x: 6.58, y: 124.6734 }, + { l: 85, x: 6.67, y: 125.1842 }, + { l: 85, x: 6.75, y: 125.6925 }, + { l: 85, x: 6.83, y: 126.2007 }, + { l: 85, x: 6.92, y: 126.7071 }, + { l: 85, x: 7, y: 127.2119 }, + { l: 85, x: 7.08, y: 127.7147 }, + { l: 85, x: 7.17, y: 128.2158 }, + { l: 85, x: 7.25, y: 128.715 }, + { l: 85, x: 7.33, y: 129.2127 }, + { l: 85, x: 7.42, y: 129.7084 }, + { l: 85, x: 7.5, y: 130.2022 }, + { l: 85, x: 7.58, y: 130.6938 }, + { l: 85, x: 7.67, y: 131.1832 }, + { l: 85, x: 7.75, y: 131.6704 }, + { l: 85, x: 7.83, y: 132.1552 }, + { l: 85, x: 7.92, y: 132.638 }, + { l: 85, x: 8, y: 133.1187 }, + { l: 85, x: 8.08, y: 133.5977 }, + { l: 85, x: 8.17, y: 134.075 }, + { l: 85, x: 8.25, y: 134.5506 }, + { l: 85, x: 8.33, y: 135.025 }, + { l: 85, x: 8.42, y: 135.4983 }, + { l: 85, x: 8.5, y: 135.9722 }, + { l: 85, x: 8.58, y: 136.444 }, + { l: 85, x: 8.67, y: 136.9151 }, + { l: 85, x: 8.75, y: 137.3857 }, + { l: 85, x: 8.83, y: 137.856 }, + { l: 85, x: 8.92, y: 138.326 }, + { l: 85, x: 9, y: 138.7959 }, + { l: 85, x: 9.08, y: 139.2654 }, + { l: 85, x: 9.17, y: 139.7343 }, + { l: 85, x: 9.25, y: 140.2026 }, + { l: 85, x: 9.33, y: 140.669 }, + { l: 85, x: 9.42, y: 141.136 }, + { l: 85, x: 9.5, y: 141.6024 }, + { l: 85, x: 9.58, y: 142.0668 }, + { l: 85, x: 9.67, y: 142.532 }, + { l: 85, x: 9.75, y: 142.9953 }, + { l: 85, x: 9.83, y: 143.4597 }, + { l: 85, x: 9.92, y: 143.9224 }, + { l: 85, x: 10, y: 144.3852 }, + { l: 85, x: 10.08, y: 144.8483 }, + { l: 85, x: 10.17, y: 145.3125 }, + { l: 85, x: 10.25, y: 145.778 }, + { l: 85, x: 10.33, y: 146.2452 }, + { l: 85, x: 10.42, y: 146.7147 }, + { l: 85, x: 10.5, y: 147.1855 }, + { l: 85, x: 10.58, y: 147.6611 }, + { l: 85, x: 10.67, y: 148.1388 }, + { l: 85, x: 10.75, y: 148.6203 }, + { l: 85, x: 10.83, y: 149.1061 }, + { l: 85, x: 10.92, y: 149.5957 }, + { l: 85, x: 11, y: 150.0882 }, + { l: 85, x: 11.08, y: 150.5868 }, + { l: 85, x: 11.17, y: 151.0888 }, + { l: 85, x: 11.25, y: 151.5961 }, + { l: 85, x: 11.33, y: 152.1074 }, + { l: 85, x: 11.42, y: 152.6259 }, + { l: 85, x: 11.5, y: 153.1488 }, + { l: 85, x: 11.58, y: 153.678 }, + { l: 85, x: 11.67, y: 154.2138 }, + { l: 85, x: 11.75, y: 154.7564 }, + { l: 85, x: 11.83, y: 155.3048 }, + { l: 85, x: 11.92, y: 155.8607 }, + { l: 85, x: 12, y: 156.4244 }, + { l: 85, x: 12.08, y: 156.9947 }, + { l: 85, x: 12.17, y: 157.5745 }, + { l: 85, x: 12.25, y: 158.1597 }, + { l: 85, x: 12.33, y: 158.755 }, + { l: 85, x: 12.42, y: 159.3572 }, + { l: 85, x: 12.5, y: 159.9676 }, + { l: 85, x: 12.58, y: 160.5839 }, + { l: 85, x: 12.67, y: 161.2084 }, + { l: 85, x: 12.75, y: 161.8353 }, + { l: 85, x: 12.83, y: 162.4686 }, + { l: 85, x: 12.92, y: 163.104 }, + { l: 85, x: 13, y: 163.7406 }, + { l: 85, x: 13.08, y: 164.3788 }, + { l: 85, x: 13.17, y: 165.0178 }, + { l: 85, x: 13.25, y: 165.6562 }, + { l: 85, x: 13.33, y: 166.2909 }, + { l: 85, x: 13.42, y: 166.9208 }, + { l: 85, x: 13.5, y: 167.548 }, + { l: 85, x: 13.58, y: 168.1684 }, + { l: 85, x: 13.67, y: 168.7814 }, + { l: 85, x: 13.75, y: 169.3876 }, + { l: 85, x: 13.83, y: 169.9861 }, + { l: 85, x: 13.92, y: 170.5758 }, + { l: 85, x: 14, y: 171.154 }, + { l: 85, x: 14.08, y: 171.7195 }, + { l: 85, x: 14.17, y: 172.2752 }, + { l: 85, x: 14.25, y: 172.8167 }, + { l: 85, x: 14.33, y: 173.3448 }, + { l: 85, x: 14.42, y: 173.8575 }, + { l: 85, x: 14.5, y: 174.3559 }, + { l: 85, x: 14.58, y: 174.8399 }, + { l: 85, x: 14.67, y: 175.31 }, + { l: 85, x: 14.75, y: 175.7644 }, + { l: 85, x: 14.83, y: 176.2053 }, + { l: 85, x: 14.92, y: 176.6325 }, + { l: 85, x: 15, y: 177.0462 }, + { l: 85, x: 15.08, y: 177.4446 }, + { l: 85, x: 15.17, y: 177.8293 }, + { l: 85, x: 15.25, y: 178.2004 }, + { l: 85, x: 15.33, y: 178.5579 }, + { l: 85, x: 15.42, y: 178.9022 }, + { l: 85, x: 15.5, y: 179.2334 }, + { l: 85, x: 15.58, y: 179.5502 }, + { l: 85, x: 15.67, y: 179.8563 }, + { l: 85, x: 15.75, y: 180.1482 }, + { l: 85, x: 15.83, y: 180.4277 }, + { l: 85, x: 15.92, y: 180.6966 }, + { l: 85, x: 16, y: 180.9513 }, + { l: 85, x: 16.08, y: 181.1935 }, + { l: 85, x: 16.17, y: 181.4234 }, + { l: 85, x: 16.25, y: 181.6412 }, + { l: 85, x: 16.33, y: 181.8467 }, + { l: 85, x: 16.42, y: 182.0404 }, + { l: 85, x: 16.5, y: 182.2224 }, + { l: 85, x: 16.58, y: 182.3929 }, + { l: 85, x: 16.67, y: 182.5521 }, + { l: 85, x: 16.75, y: 182.7003 }, + { l: 85, x: 16.83, y: 182.8377 }, + { l: 85, x: 16.92, y: 182.9664 }, + { l: 85, x: 17, y: 183.0832 }, + { l: 85, x: 17.08, y: 183.1902 }, + { l: 85, x: 17.17, y: 183.2898 }, + { l: 85, x: 17.25, y: 183.3789 }, + { l: 85, x: 17.33, y: 183.4614 }, + { l: 85, x: 17.42, y: 183.5345 }, + { l: 85, x: 17.5, y: 183.6021 }, + { l: 85, x: 17.58, y: 183.6633 }, + { l: 85, x: 17.67, y: 183.7183 }, + { l: 85, x: 17.75, y: 183.7677 }, + { l: 85, x: 17.83, y: 183.812 }, + { l: 85, x: 17.92, y: 183.8517 }, + { l: 85, x: 18, y: 183.8871 }, + { l: 85, x: 18.08, y: 183.9204 }, + { l: 85, x: 18.17, y: 183.9484 }, + { l: 85, x: 18.25, y: 183.9748 }, + { l: 85, x: 18.33, y: 183.9983 }, + { l: 85, x: 18.42, y: 184.019 }, + { l: 85, x: 18.5, y: 184.0355 }, + { l: 85, x: 18.58, y: 184.0533 }, + { l: 85, x: 18.67, y: 184.0672 }, + { l: 85, x: 18.75, y: 184.079 }, + { l: 85, x: 18.83, y: 184.0889 }, + { l: 85, x: 18.92, y: 184.0987 }, + { l: 85, x: 19, y: 184.1072 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 116.1491 }, + { l: 90, x: 5.17, y: 116.7249 }, + { l: 90, x: 5.25, y: 117.298 }, + { l: 90, x: 5.33, y: 117.8663 }, + { l: 90, x: 5.42, y: 118.4319 }, + { l: 90, x: 5.5, y: 118.993 }, + { l: 90, x: 5.58, y: 119.5495 }, + { l: 90, x: 5.67, y: 120.1004 }, + { l: 90, x: 5.75, y: 120.6487 }, + { l: 90, x: 5.83, y: 121.1925 }, + { l: 90, x: 5.92, y: 121.7302 }, + { l: 90, x: 6, y: 122.265 }, + { l: 90, x: 6.08, y: 122.7961 }, + { l: 90, x: 6.17, y: 123.3226 }, + { l: 90, x: 6.25, y: 123.8483 }, + { l: 90, x: 6.33, y: 124.372 }, + { l: 90, x: 6.42, y: 124.8925 }, + { l: 90, x: 6.5, y: 125.4132 }, + { l: 90, x: 6.58, y: 125.9327 }, + { l: 90, x: 6.67, y: 126.4509 }, + { l: 90, x: 6.75, y: 126.9663 }, + { l: 90, x: 6.83, y: 127.4819 }, + { l: 90, x: 6.92, y: 127.9958 }, + { l: 90, x: 7, y: 128.5079 }, + { l: 90, x: 7.08, y: 129.0182 }, + { l: 90, x: 7.17, y: 129.5267 }, + { l: 90, x: 7.25, y: 130.0333 }, + { l: 90, x: 7.33, y: 130.5384 }, + { l: 90, x: 7.42, y: 131.0415 }, + { l: 90, x: 7.5, y: 131.5428 }, + { l: 90, x: 7.58, y: 132.0418 }, + { l: 90, x: 7.67, y: 132.5386 }, + { l: 90, x: 7.75, y: 133.0331 }, + { l: 90, x: 7.83, y: 133.5253 }, + { l: 90, x: 7.92, y: 134.0155 }, + { l: 90, x: 8, y: 134.5036 }, + { l: 90, x: 8.08, y: 134.99 }, + { l: 90, x: 8.17, y: 135.4746 }, + { l: 90, x: 8.25, y: 135.9576 }, + { l: 90, x: 8.33, y: 136.4394 }, + { l: 90, x: 8.42, y: 136.9201 }, + { l: 90, x: 8.5, y: 137.4017 }, + { l: 90, x: 8.58, y: 137.8809 }, + { l: 90, x: 8.67, y: 138.3594 }, + { l: 90, x: 8.75, y: 138.8374 }, + { l: 90, x: 8.83, y: 139.3152 }, + { l: 90, x: 8.92, y: 139.7926 }, + { l: 90, x: 9, y: 140.27 }, + { l: 90, x: 9.08, y: 140.747 }, + { l: 90, x: 9.17, y: 141.2234 }, + { l: 90, x: 9.25, y: 141.6992 }, + { l: 90, x: 9.33, y: 142.1727 }, + { l: 90, x: 9.42, y: 142.6473 }, + { l: 90, x: 9.5, y: 143.1212 }, + { l: 90, x: 9.58, y: 143.5928 }, + { l: 90, x: 9.67, y: 144.0655 }, + { l: 90, x: 9.75, y: 144.5361 }, + { l: 90, x: 9.83, y: 145.008 }, + { l: 90, x: 9.92, y: 145.478 }, + { l: 90, x: 10, y: 145.948 }, + { l: 90, x: 10.08, y: 146.4184 }, + { l: 90, x: 10.17, y: 146.8899 }, + { l: 90, x: 10.25, y: 147.3627 }, + { l: 90, x: 10.33, y: 147.8373 }, + { l: 90, x: 10.42, y: 148.3142 }, + { l: 90, x: 10.5, y: 148.7921 }, + { l: 90, x: 10.58, y: 149.2752 }, + { l: 90, x: 10.67, y: 149.7601 }, + { l: 90, x: 10.75, y: 150.2489 }, + { l: 90, x: 10.83, y: 150.742 }, + { l: 90, x: 10.92, y: 151.239 }, + { l: 90, x: 11, y: 151.7385 }, + { l: 90, x: 11.08, y: 152.2446 }, + { l: 90, x: 11.17, y: 152.7539 }, + { l: 90, x: 11.25, y: 153.2684 }, + { l: 90, x: 11.33, y: 153.7867 }, + { l: 90, x: 11.42, y: 154.3126 }, + { l: 90, x: 11.5, y: 154.8427 }, + { l: 90, x: 11.58, y: 155.3791 }, + { l: 90, x: 11.67, y: 155.9222 }, + { l: 90, x: 11.75, y: 156.4722 }, + { l: 90, x: 11.83, y: 157.0277 }, + { l: 90, x: 11.92, y: 157.5908 }, + { l: 90, x: 12, y: 158.1619 }, + { l: 90, x: 12.08, y: 158.7391 }, + { l: 90, x: 12.17, y: 159.3265 }, + { l: 90, x: 12.25, y: 159.9186 }, + { l: 90, x: 12.33, y: 160.5212 }, + { l: 90, x: 12.42, y: 161.1304 }, + { l: 90, x: 12.5, y: 161.748 }, + { l: 90, x: 12.58, y: 162.3711 }, + { l: 90, x: 12.67, y: 163.0029 }, + { l: 90, x: 12.75, y: 163.6364 }, + { l: 90, x: 12.83, y: 164.2768 }, + { l: 90, x: 12.92, y: 164.9189 }, + { l: 90, x: 13, y: 165.5618 }, + { l: 90, x: 13.08, y: 166.2064 }, + { l: 90, x: 13.17, y: 166.8518 }, + { l: 90, x: 13.25, y: 167.4965 }, + { l: 90, x: 13.33, y: 168.1372 }, + { l: 90, x: 13.42, y: 168.7726 }, + { l: 90, x: 13.5, y: 169.4056 }, + { l: 90, x: 13.58, y: 170.0314 }, + { l: 90, x: 13.67, y: 170.6493 }, + { l: 90, x: 13.75, y: 171.2604 }, + { l: 90, x: 13.83, y: 171.8636 }, + { l: 90, x: 13.92, y: 172.4579 }, + { l: 90, x: 14, y: 173.0402 }, + { l: 90, x: 14.08, y: 173.6092 }, + { l: 90, x: 14.17, y: 174.1687 }, + { l: 90, x: 14.25, y: 174.7135 }, + { l: 90, x: 14.33, y: 175.2447 }, + { l: 90, x: 14.42, y: 175.7599 }, + { l: 90, x: 14.5, y: 176.2606 }, + { l: 90, x: 14.58, y: 176.7468 }, + { l: 90, x: 14.67, y: 177.2189 }, + { l: 90, x: 14.75, y: 177.6747 }, + { l: 90, x: 14.83, y: 178.1168 }, + { l: 90, x: 14.92, y: 178.5452 }, + { l: 90, x: 15, y: 178.9598 }, + { l: 90, x: 15.08, y: 179.3585 }, + { l: 90, x: 15.17, y: 179.7434 }, + { l: 90, x: 15.25, y: 180.1145 }, + { l: 90, x: 15.33, y: 180.4718 }, + { l: 90, x: 15.42, y: 180.8158 }, + { l: 90, x: 15.5, y: 181.1466 }, + { l: 90, x: 15.58, y: 181.4624 }, + { l: 90, x: 15.67, y: 181.7677 }, + { l: 90, x: 15.75, y: 182.0582 }, + { l: 90, x: 15.83, y: 182.3363 }, + { l: 90, x: 15.92, y: 182.604 }, + { l: 90, x: 16, y: 182.8569 }, + { l: 90, x: 16.08, y: 183.0972 }, + { l: 90, x: 16.17, y: 183.3251 }, + { l: 90, x: 16.25, y: 183.5406 }, + { l: 90, x: 16.33, y: 183.7438 }, + { l: 90, x: 16.42, y: 183.9351 }, + { l: 90, x: 16.5, y: 184.1145 }, + { l: 90, x: 16.58, y: 184.2822 }, + { l: 90, x: 16.67, y: 184.4386 }, + { l: 90, x: 16.75, y: 184.5839 }, + { l: 90, x: 16.83, y: 184.7181 }, + { l: 90, x: 16.92, y: 184.844 }, + { l: 90, x: 17, y: 184.9575 }, + { l: 90, x: 17.08, y: 185.0611 }, + { l: 90, x: 17.17, y: 185.1576 }, + { l: 90, x: 17.25, y: 185.243 }, + { l: 90, x: 17.33, y: 185.3223 }, + { l: 90, x: 17.42, y: 185.3916 }, + { l: 90, x: 17.5, y: 185.4558 }, + { l: 90, x: 17.58, y: 185.5134 }, + { l: 90, x: 17.67, y: 185.5648 }, + { l: 90, x: 17.75, y: 185.6106 }, + { l: 90, x: 17.83, y: 185.6513 }, + { l: 90, x: 17.92, y: 185.6872 }, + { l: 90, x: 18, y: 185.7188 }, + { l: 90, x: 18.08, y: 185.7487 }, + { l: 90, x: 18.17, y: 185.7728 }, + { l: 90, x: 18.25, y: 185.7958 }, + { l: 90, x: 18.33, y: 185.8158 }, + { l: 90, x: 18.42, y: 185.833 }, + { l: 90, x: 18.5, y: 185.8455 }, + { l: 90, x: 18.58, y: 185.8602 }, + { l: 90, x: 18.67, y: 185.8705 }, + { l: 90, x: 18.75, y: 185.8787 }, + { l: 90, x: 18.83, y: 185.8849 }, + { l: 90, x: 18.92, y: 185.8915 }, + { l: 90, x: 19, y: 185.8967 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 117.8171 }, + { l: 95, x: 5.17, y: 118.4043 }, + { l: 95, x: 5.25, y: 118.9888 }, + { l: 95, x: 5.33, y: 119.5679 }, + { l: 95, x: 5.42, y: 120.1448 }, + { l: 95, x: 5.5, y: 120.7171 }, + { l: 95, x: 5.58, y: 121.2848 }, + { l: 95, x: 5.67, y: 121.8464 }, + { l: 95, x: 5.75, y: 122.4058 }, + { l: 95, x: 5.83, y: 122.9607 }, + { l: 95, x: 5.92, y: 123.5091 }, + { l: 95, x: 6, y: 124.0549 }, + { l: 95, x: 6.08, y: 124.5969 }, + { l: 95, x: 6.17, y: 125.134 }, + { l: 95, x: 6.25, y: 125.6707 }, + { l: 95, x: 6.33, y: 126.2053 }, + { l: 95, x: 6.42, y: 126.7364 }, + { l: 95, x: 6.5, y: 127.268 }, + { l: 95, x: 6.58, y: 127.7985 }, + { l: 95, x: 6.67, y: 128.3277 }, + { l: 95, x: 6.75, y: 128.8536 }, + { l: 95, x: 6.83, y: 129.3802 }, + { l: 95, x: 6.92, y: 129.905 }, + { l: 95, x: 7, y: 130.4282 }, + { l: 95, x: 7.08, y: 130.9495 }, + { l: 95, x: 7.17, y: 131.4689 }, + { l: 95, x: 7.25, y: 131.9866 }, + { l: 95, x: 7.33, y: 132.5026 }, + { l: 95, x: 7.42, y: 133.0168 }, + { l: 95, x: 7.5, y: 133.529 }, + { l: 95, x: 7.58, y: 134.039 }, + { l: 95, x: 7.67, y: 134.5467 }, + { l: 95, x: 7.75, y: 135.0522 }, + { l: 95, x: 7.83, y: 135.5554 }, + { l: 95, x: 7.92, y: 136.0565 }, + { l: 95, x: 8, y: 136.5555 }, + { l: 95, x: 8.08, y: 137.0528 }, + { l: 95, x: 8.17, y: 137.5484 }, + { l: 95, x: 8.25, y: 138.0423 }, + { l: 95, x: 8.33, y: 138.535 }, + { l: 95, x: 8.42, y: 139.0267 }, + { l: 95, x: 8.5, y: 139.5197 }, + { l: 95, x: 8.58, y: 140.0099 }, + { l: 95, x: 8.67, y: 140.4994 }, + { l: 95, x: 8.75, y: 140.9884 }, + { l: 95, x: 8.83, y: 141.4772 }, + { l: 95, x: 8.92, y: 141.9657 }, + { l: 95, x: 9, y: 142.4541 }, + { l: 95, x: 9.08, y: 142.9421 }, + { l: 95, x: 9.17, y: 143.4297 }, + { l: 95, x: 9.25, y: 143.9166 }, + { l: 95, x: 9.33, y: 144.4007 }, + { l: 95, x: 9.42, y: 144.8865 }, + { l: 95, x: 9.5, y: 145.3715 }, + { l: 95, x: 9.58, y: 145.8538 }, + { l: 95, x: 9.67, y: 146.3377 }, + { l: 95, x: 9.75, y: 146.8189 }, + { l: 95, x: 9.83, y: 147.3021 }, + { l: 95, x: 9.92, y: 147.7828 }, + { l: 95, x: 10, y: 148.2636 }, + { l: 95, x: 10.08, y: 148.7448 }, + { l: 95, x: 10.17, y: 149.2271 }, + { l: 95, x: 10.25, y: 149.7107 }, + { l: 95, x: 10.33, y: 150.1962 }, + { l: 95, x: 10.42, y: 150.6841 }, + { l: 95, x: 10.5, y: 151.1726 }, + { l: 95, x: 10.58, y: 151.6667 }, + { l: 95, x: 10.67, y: 152.1623 }, + { l: 95, x: 10.75, y: 152.6619 }, + { l: 95, x: 10.83, y: 153.1658 }, + { l: 95, x: 10.92, y: 153.6737 }, + { l: 95, x: 11, y: 154.1837 }, + { l: 95, x: 11.08, y: 154.7009 }, + { l: 95, x: 11.17, y: 155.2209 }, + { l: 95, x: 11.25, y: 155.7462 }, + { l: 95, x: 11.33, y: 156.2749 }, + { l: 95, x: 11.42, y: 156.8118 }, + { l: 95, x: 11.5, y: 157.3524 }, + { l: 95, x: 11.58, y: 157.8996 }, + { l: 95, x: 11.67, y: 158.4535 }, + { l: 95, x: 11.75, y: 159.0144 }, + { l: 95, x: 11.83, y: 159.5805 }, + { l: 95, x: 11.92, y: 160.1542 }, + { l: 95, x: 12, y: 160.7361 }, + { l: 95, x: 12.08, y: 161.3238 }, + { l: 95, x: 12.17, y: 161.9223 }, + { l: 95, x: 12.25, y: 162.5245 }, + { l: 95, x: 12.33, y: 163.138 }, + { l: 95, x: 12.42, y: 163.7577 }, + { l: 95, x: 12.5, y: 164.3858 }, + { l: 95, x: 12.58, y: 165.0192 }, + { l: 95, x: 12.67, y: 165.6618 }, + { l: 95, x: 12.75, y: 166.3051 }, + { l: 95, x: 12.83, y: 166.9559 }, + { l: 95, x: 12.92, y: 167.608 }, + { l: 95, x: 13, y: 168.2603 }, + { l: 95, x: 13.08, y: 168.9143 }, + { l: 95, x: 13.17, y: 169.5691 }, + { l: 95, x: 13.25, y: 170.2233 }, + { l: 95, x: 13.33, y: 170.8727 }, + { l: 95, x: 13.42, y: 171.5163 }, + { l: 95, x: 13.5, y: 172.1579 }, + { l: 95, x: 13.58, y: 172.7917 }, + { l: 95, x: 13.67, y: 173.4169 }, + { l: 95, x: 13.75, y: 174.0351 }, + { l: 95, x: 13.83, y: 174.6453 }, + { l: 95, x: 13.92, y: 175.2465 }, + { l: 95, x: 14, y: 175.8348 }, + { l: 95, x: 14.08, y: 176.4091 }, + { l: 95, x: 14.17, y: 176.9743 }, + { l: 95, x: 14.25, y: 177.5238 }, + { l: 95, x: 14.33, y: 178.0597 }, + { l: 95, x: 14.42, y: 178.5785 }, + { l: 95, x: 14.5, y: 179.0828 }, + { l: 95, x: 14.58, y: 179.5722 }, + { l: 95, x: 14.67, y: 180.0472 }, + { l: 95, x: 14.75, y: 180.5051 }, + { l: 95, x: 14.83, y: 180.9491 }, + { l: 95, x: 14.92, y: 181.3791 }, + { l: 95, x: 15, y: 181.7951 }, + { l: 95, x: 15.08, y: 182.1943 }, + { l: 95, x: 15.17, y: 182.5795 }, + { l: 95, x: 15.25, y: 182.9506 }, + { l: 95, x: 15.33, y: 183.3076 }, + { l: 95, x: 15.42, y: 183.6512 }, + { l: 95, x: 15.5, y: 183.9813 }, + { l: 95, x: 15.58, y: 184.2955 }, + { l: 95, x: 15.67, y: 184.5997 }, + { l: 95, x: 15.75, y: 184.8883 }, + { l: 95, x: 15.83, y: 185.1642 }, + { l: 95, x: 15.92, y: 185.43 }, + { l: 95, x: 16, y: 185.6804 }, + { l: 95, x: 16.08, y: 185.9179 }, + { l: 95, x: 16.17, y: 186.1427 }, + { l: 95, x: 16.25, y: 186.355 }, + { l: 95, x: 16.33, y: 186.5547 }, + { l: 95, x: 16.42, y: 186.7423 }, + { l: 95, x: 16.5, y: 186.9179 }, + { l: 95, x: 16.58, y: 187.0816 }, + { l: 95, x: 16.67, y: 187.2337 }, + { l: 95, x: 16.75, y: 187.3746 }, + { l: 95, x: 16.83, y: 187.5042 }, + { l: 95, x: 16.92, y: 187.626 }, + { l: 95, x: 17, y: 187.7346 }, + { l: 95, x: 17.08, y: 187.8331 }, + { l: 95, x: 17.17, y: 187.925 }, + { l: 95, x: 17.25, y: 188.0051 }, + { l: 95, x: 17.33, y: 188.0795 }, + { l: 95, x: 17.42, y: 188.1431 }, + { l: 95, x: 17.5, y: 188.2022 }, + { l: 95, x: 17.58, y: 188.2547 }, + { l: 95, x: 17.67, y: 188.3008 }, + { l: 95, x: 17.75, y: 188.3412 }, + { l: 95, x: 17.83, y: 188.3764 }, + { l: 95, x: 17.92, y: 188.4068 }, + { l: 95, x: 18, y: 188.4328 }, + { l: 95, x: 18.08, y: 188.4576 }, + { l: 95, x: 18.17, y: 188.476 }, + { l: 95, x: 18.25, y: 188.4939 }, + { l: 95, x: 18.33, y: 188.5087 }, + { l: 95, x: 18.42, y: 188.5207 }, + { l: 95, x: 18.5, y: 188.5273 }, + { l: 95, x: 18.58, y: 188.5373 }, + { l: 95, x: 18.67, y: 188.5423 }, + { l: 95, x: 18.75, y: 188.5451 }, + { l: 95, x: 18.83, y: 188.5459 }, + { l: 95, x: 18.92, y: 188.5478 }, + { l: 95, x: 19, y: 188.5482 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 118.9002 }, + { l: 97, x: 5.17, y: 119.4948 }, + { l: 97, x: 5.25, y: 120.0866 }, + { l: 97, x: 5.33, y: 120.6728 }, + { l: 97, x: 5.42, y: 121.257 }, + { l: 97, x: 5.5, y: 121.8366 }, + { l: 97, x: 5.58, y: 122.4116 }, + { l: 97, x: 5.67, y: 122.9802 }, + { l: 97, x: 5.75, y: 123.5468 }, + { l: 97, x: 5.83, y: 124.1089 }, + { l: 97, x: 5.92, y: 124.6641 }, + { l: 97, x: 6, y: 125.2171 }, + { l: 97, x: 6.08, y: 125.7663 }, + { l: 97, x: 6.17, y: 126.3102 }, + { l: 97, x: 6.25, y: 126.854 }, + { l: 97, x: 6.33, y: 127.3957 }, + { l: 97, x: 6.42, y: 127.9336 }, + { l: 97, x: 6.5, y: 128.4724 }, + { l: 97, x: 6.58, y: 129.01 }, + { l: 97, x: 6.67, y: 129.5463 }, + { l: 97, x: 6.75, y: 130.0791 }, + { l: 97, x: 6.83, y: 130.6128 }, + { l: 97, x: 6.92, y: 131.1448 }, + { l: 97, x: 7, y: 131.6751 }, + { l: 97, x: 7.08, y: 132.2035 }, + { l: 97, x: 7.17, y: 132.7301 }, + { l: 97, x: 7.25, y: 133.2549 }, + { l: 97, x: 7.33, y: 133.7781 }, + { l: 97, x: 7.42, y: 134.2993 }, + { l: 97, x: 7.5, y: 134.8187 }, + { l: 97, x: 7.58, y: 135.3358 }, + { l: 97, x: 7.67, y: 135.8507 }, + { l: 97, x: 7.75, y: 136.3633 }, + { l: 97, x: 7.83, y: 136.8736 }, + { l: 97, x: 7.92, y: 137.3818 }, + { l: 97, x: 8, y: 137.8879 }, + { l: 97, x: 8.08, y: 138.3923 }, + { l: 97, x: 8.17, y: 138.895 }, + { l: 97, x: 8.25, y: 139.396 }, + { l: 97, x: 8.33, y: 139.8958 }, + { l: 97, x: 8.42, y: 140.3945 }, + { l: 97, x: 8.5, y: 140.895 }, + { l: 97, x: 8.58, y: 141.3923 }, + { l: 97, x: 8.67, y: 141.8889 }, + { l: 97, x: 8.75, y: 142.3851 }, + { l: 97, x: 8.83, y: 142.881 }, + { l: 97, x: 8.92, y: 143.3767 }, + { l: 97, x: 9, y: 143.8723 }, + { l: 97, x: 9.08, y: 144.3675 }, + { l: 97, x: 9.17, y: 144.8623 }, + { l: 97, x: 9.25, y: 145.3564 }, + { l: 97, x: 9.33, y: 145.8474 }, + { l: 97, x: 9.42, y: 146.3404 }, + { l: 97, x: 9.5, y: 146.8327 }, + { l: 97, x: 9.58, y: 147.3219 }, + { l: 97, x: 9.67, y: 147.813 }, + { l: 97, x: 9.75, y: 148.3012 }, + { l: 97, x: 9.83, y: 148.7917 }, + { l: 97, x: 9.92, y: 149.2793 }, + { l: 97, x: 10, y: 149.7671 }, + { l: 97, x: 10.08, y: 150.2553 }, + { l: 97, x: 10.17, y: 150.7446 }, + { l: 97, x: 10.25, y: 151.2354 }, + { l: 97, x: 10.33, y: 151.728 }, + { l: 97, x: 10.42, y: 152.2229 }, + { l: 97, x: 10.5, y: 152.7182 }, + { l: 97, x: 10.58, y: 153.2196 }, + { l: 97, x: 10.67, y: 153.7221 }, + { l: 97, x: 10.75, y: 154.2287 }, + { l: 97, x: 10.83, y: 154.7396 }, + { l: 97, x: 10.92, y: 155.2547 }, + { l: 97, x: 11, y: 155.7715 }, + { l: 97, x: 11.08, y: 156.2959 }, + { l: 97, x: 11.17, y: 156.8228 }, + { l: 97, x: 11.25, y: 157.3551 }, + { l: 97, x: 11.33, y: 157.8905 }, + { l: 97, x: 11.42, y: 158.4346 }, + { l: 97, x: 11.5, y: 158.9821 }, + { l: 97, x: 11.58, y: 159.5362 }, + { l: 97, x: 11.67, y: 160.0971 }, + { l: 97, x: 11.75, y: 160.6652 }, + { l: 97, x: 11.83, y: 161.2381 }, + { l: 97, x: 11.92, y: 161.8188 }, + { l: 97, x: 12, y: 162.4077 }, + { l: 97, x: 12.08, y: 163.0021 }, + { l: 97, x: 12.17, y: 163.6078 }, + { l: 97, x: 12.25, y: 164.2166 }, + { l: 97, x: 12.33, y: 164.8371 }, + { l: 97, x: 12.42, y: 165.4636 }, + { l: 97, x: 12.5, y: 166.0987 }, + { l: 97, x: 12.58, y: 166.7386 }, + { l: 97, x: 12.67, y: 167.3883 }, + { l: 97, x: 12.75, y: 168.0379 }, + { l: 97, x: 12.83, y: 168.6955 }, + { l: 97, x: 12.92, y: 169.354 }, + { l: 97, x: 13, y: 170.0125 }, + { l: 97, x: 13.08, y: 170.6726 }, + { l: 97, x: 13.17, y: 171.3336 }, + { l: 97, x: 13.25, y: 171.9938 }, + { l: 97, x: 13.33, y: 172.649 }, + { l: 97, x: 13.42, y: 173.2978 }, + { l: 97, x: 13.5, y: 173.9451 }, + { l: 97, x: 13.58, y: 174.5841 }, + { l: 97, x: 13.67, y: 175.214 }, + { l: 97, x: 13.75, y: 175.8368 }, + { l: 97, x: 13.83, y: 176.4516 }, + { l: 97, x: 13.92, y: 177.0572 }, + { l: 97, x: 14, y: 177.6494 }, + { l: 97, x: 14.08, y: 178.2272 }, + { l: 97, x: 14.17, y: 178.796 }, + { l: 97, x: 14.25, y: 179.3487 }, + { l: 97, x: 14.33, y: 179.8875 }, + { l: 97, x: 14.42, y: 180.4088 }, + { l: 97, x: 14.5, y: 180.9153 }, + { l: 97, x: 14.58, y: 181.4068 }, + { l: 97, x: 14.67, y: 181.8837 }, + { l: 97, x: 14.75, y: 182.343 }, + { l: 97, x: 14.83, y: 182.7882 }, + { l: 97, x: 14.92, y: 183.2192 }, + { l: 97, x: 15, y: 183.6361 }, + { l: 97, x: 15.08, y: 184.0356 }, + { l: 97, x: 15.17, y: 184.421 }, + { l: 97, x: 15.25, y: 184.7921 }, + { l: 97, x: 15.33, y: 185.149 }, + { l: 97, x: 15.42, y: 185.4923 }, + { l: 97, x: 15.5, y: 185.8219 }, + { l: 97, x: 15.58, y: 186.1352 }, + { l: 97, x: 15.67, y: 186.4386 }, + { l: 97, x: 15.75, y: 186.7259 }, + { l: 97, x: 15.83, y: 187.0004 }, + { l: 97, x: 15.92, y: 187.2651 }, + { l: 97, x: 16, y: 187.5137 }, + { l: 97, x: 16.08, y: 187.7494 }, + { l: 97, x: 16.17, y: 187.9722 }, + { l: 97, x: 16.25, y: 188.1824 }, + { l: 97, x: 16.33, y: 188.3799 }, + { l: 97, x: 16.42, y: 188.5651 }, + { l: 97, x: 16.5, y: 188.7382 }, + { l: 97, x: 16.58, y: 188.8992 }, + { l: 97, x: 16.67, y: 189.0487 }, + { l: 97, x: 16.75, y: 189.1866 }, + { l: 97, x: 16.83, y: 189.3133 }, + { l: 97, x: 16.92, y: 189.4325 }, + { l: 97, x: 17, y: 189.5378 }, + { l: 97, x: 17.08, y: 189.633 }, + { l: 97, x: 17.17, y: 189.7219 }, + { l: 97, x: 17.25, y: 189.7985 }, + { l: 97, x: 17.33, y: 189.8698 }, + { l: 97, x: 17.42, y: 189.9298 }, + { l: 97, x: 17.5, y: 189.9856 }, + { l: 97, x: 17.58, y: 190.0346 }, + { l: 97, x: 17.67, y: 190.0773 }, + { l: 97, x: 17.75, y: 190.1142 }, + { l: 97, x: 17.83, y: 190.1458 }, + { l: 97, x: 17.92, y: 190.1727 }, + { l: 97, x: 18, y: 190.1951 }, + { l: 97, x: 18.08, y: 190.2166 }, + { l: 97, x: 18.17, y: 190.2313 }, + { l: 97, x: 18.25, y: 190.2458 }, + { l: 97, x: 18.33, y: 190.2573 }, + { l: 97, x: 18.42, y: 190.2659 }, + { l: 97, x: 18.5, y: 190.2686 }, + { l: 97, x: 18.58, y: 190.2756 }, + { l: 97, x: 18.67, y: 190.2772 }, + { l: 97, x: 18.75, y: 190.2765 }, + { l: 97, x: 18.83, y: 190.2738 }, + { l: 97, x: 18.92, y: 190.2726 }, + { l: 97, x: 19, y: 190.2698 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 120.9457 }, + { l: 99, x: 5.17, y: 121.5542 }, + { l: 99, x: 5.25, y: 122.1598 }, + { l: 99, x: 5.33, y: 122.7594 }, + { l: 99, x: 5.42, y: 123.3574 }, + { l: 99, x: 5.5, y: 123.9508 }, + { l: 99, x: 5.58, y: 124.5395 }, + { l: 99, x: 5.67, y: 125.1213 }, + { l: 99, x: 5.75, y: 125.7015 }, + { l: 99, x: 5.83, y: 126.2772 }, + { l: 99, x: 5.92, y: 126.8455 }, + { l: 99, x: 6, y: 127.412 }, + { l: 99, x: 6.08, y: 127.9746 }, + { l: 99, x: 6.17, y: 128.5314 }, + { l: 99, x: 6.25, y: 129.0887 }, + { l: 99, x: 6.33, y: 129.6438 }, + { l: 99, x: 6.42, y: 130.1947 }, + { l: 99, x: 6.5, y: 130.7468 }, + { l: 99, x: 6.58, y: 131.2979 }, + { l: 99, x: 6.67, y: 131.8477 }, + { l: 99, x: 6.75, y: 132.3934 }, + { l: 99, x: 6.83, y: 132.9406 }, + { l: 99, x: 6.92, y: 133.4861 }, + { l: 99, x: 7, y: 134.0299 }, + { l: 99, x: 7.08, y: 134.5717 }, + { l: 99, x: 7.17, y: 135.1118 }, + { l: 99, x: 7.25, y: 135.6501 }, + { l: 99, x: 7.33, y: 136.1867 }, + { l: 99, x: 7.42, y: 136.7215 }, + { l: 99, x: 7.5, y: 137.2543 }, + { l: 99, x: 7.58, y: 137.7849 }, + { l: 99, x: 7.67, y: 138.3132 }, + { l: 99, x: 7.75, y: 138.8392 }, + { l: 99, x: 7.83, y: 139.3629 }, + { l: 99, x: 7.92, y: 139.8846 }, + { l: 99, x: 8, y: 140.4041 }, + { l: 99, x: 8.08, y: 140.9219 }, + { l: 99, x: 8.17, y: 141.438 }, + { l: 99, x: 8.25, y: 141.9524 }, + { l: 99, x: 8.33, y: 142.4656 }, + { l: 99, x: 8.42, y: 142.9778 }, + { l: 99, x: 8.5, y: 143.4922 }, + { l: 99, x: 8.58, y: 144.003 }, + { l: 99, x: 8.67, y: 144.5131 }, + { l: 99, x: 8.75, y: 145.0227 }, + { l: 99, x: 8.83, y: 145.5322 }, + { l: 99, x: 8.92, y: 146.0414 }, + { l: 99, x: 9, y: 146.5505 }, + { l: 99, x: 9.08, y: 147.0594 }, + { l: 99, x: 9.17, y: 147.5677 }, + { l: 99, x: 9.25, y: 148.0755 }, + { l: 99, x: 9.33, y: 148.5796 }, + { l: 99, x: 9.42, y: 149.0862 }, + { l: 99, x: 9.5, y: 149.5922 }, + { l: 99, x: 9.58, y: 150.0944 }, + { l: 99, x: 9.67, y: 150.5993 }, + { l: 99, x: 9.75, y: 151.1006 }, + { l: 99, x: 9.83, y: 151.6048 }, + { l: 99, x: 9.92, y: 152.1056 }, + { l: 99, x: 10, y: 152.6066 }, + { l: 99, x: 10.08, y: 153.108 }, + { l: 99, x: 10.17, y: 153.6106 }, + { l: 99, x: 10.25, y: 154.1147 }, + { l: 99, x: 10.33, y: 154.6206 }, + { l: 99, x: 10.42, y: 155.1291 }, + { l: 99, x: 10.5, y: 155.6372 }, + { l: 99, x: 10.58, y: 156.1523 }, + { l: 99, x: 10.67, y: 156.6678 }, + { l: 99, x: 10.75, y: 157.1876 }, + { l: 99, x: 10.83, y: 157.7118 }, + { l: 99, x: 10.92, y: 158.2403 }, + { l: 99, x: 11, y: 158.77 }, + { l: 99, x: 11.08, y: 159.308 }, + { l: 99, x: 11.17, y: 159.848 }, + { l: 99, x: 11.25, y: 160.3936 }, + { l: 99, x: 11.33, y: 160.9416 }, + { l: 99, x: 11.42, y: 161.4992 }, + { l: 99, x: 11.5, y: 162.0597 }, + { l: 99, x: 11.58, y: 162.6269 }, + { l: 99, x: 11.67, y: 163.2011 }, + { l: 99, x: 11.75, y: 163.7826 }, + { l: 99, x: 11.83, y: 164.3684 }, + { l: 99, x: 11.92, y: 164.9622 }, + { l: 99, x: 12, y: 165.5644 }, + { l: 99, x: 12.08, y: 166.1716 }, + { l: 99, x: 12.17, y: 166.791 }, + { l: 99, x: 12.25, y: 167.4122 }, + { l: 99, x: 12.33, y: 168.046 }, + { l: 99, x: 12.42, y: 168.6854 }, + { l: 99, x: 12.5, y: 169.3334 }, + { l: 99, x: 12.58, y: 169.9858 }, + { l: 99, x: 12.67, y: 170.6487 }, + { l: 99, x: 12.75, y: 171.3104 }, + { l: 99, x: 12.83, y: 171.9808 }, + { l: 99, x: 12.92, y: 172.6515 }, + { l: 99, x: 13, y: 173.3215 }, + { l: 99, x: 13.08, y: 173.9932 }, + { l: 99, x: 13.17, y: 174.6657 }, + { l: 99, x: 13.25, y: 175.3375 }, + { l: 99, x: 13.33, y: 176.0035 }, + { l: 99, x: 13.42, y: 176.6623 }, + { l: 99, x: 13.5, y: 177.3202 }, + { l: 99, x: 13.58, y: 177.969 }, + { l: 99, x: 13.67, y: 178.6078 }, + { l: 99, x: 13.75, y: 179.2394 }, + { l: 99, x: 13.83, y: 179.8627 }, + { l: 99, x: 13.92, y: 180.4767 }, + { l: 99, x: 14, y: 181.0764 }, + { l: 99, x: 14.08, y: 181.6606 }, + { l: 99, x: 14.17, y: 182.2363 }, + { l: 99, x: 14.25, y: 182.7949 }, + { l: 99, x: 14.33, y: 183.3393 }, + { l: 99, x: 14.42, y: 183.8652 }, + { l: 99, x: 14.5, y: 184.3759 }, + { l: 99, x: 14.58, y: 184.8714 }, + { l: 99, x: 14.67, y: 185.352 }, + { l: 99, x: 14.75, y: 185.8138 }, + { l: 99, x: 14.83, y: 186.2613 }, + { l: 99, x: 14.92, y: 186.6943 }, + { l: 99, x: 15, y: 187.1128 }, + { l: 99, x: 15.08, y: 187.513 }, + { l: 99, x: 15.17, y: 187.8987 }, + { l: 99, x: 15.25, y: 188.2698 }, + { l: 99, x: 15.33, y: 188.6265 }, + { l: 99, x: 15.42, y: 188.9691 }, + { l: 99, x: 15.5, y: 189.2979 }, + { l: 99, x: 15.58, y: 189.6093 }, + { l: 99, x: 15.67, y: 189.9114 }, + { l: 99, x: 15.75, y: 190.1963 }, + { l: 99, x: 15.83, y: 190.4681 }, + { l: 99, x: 15.92, y: 190.7306 }, + { l: 99, x: 16, y: 190.976 }, + { l: 99, x: 16.08, y: 191.2082 }, + { l: 99, x: 16.17, y: 191.4273 }, + { l: 99, x: 16.25, y: 191.6335 }, + { l: 99, x: 16.33, y: 191.8268 }, + { l: 99, x: 16.42, y: 192.0075 }, + { l: 99, x: 16.5, y: 192.1758 }, + { l: 99, x: 16.58, y: 192.332 }, + { l: 99, x: 16.67, y: 192.4762 }, + { l: 99, x: 16.75, y: 192.6088 }, + { l: 99, x: 16.83, y: 192.7298 }, + { l: 99, x: 16.92, y: 192.8439 }, + { l: 99, x: 17, y: 192.9432 }, + { l: 99, x: 17.08, y: 193.0322 }, + { l: 99, x: 17.17, y: 193.1155 }, + { l: 99, x: 17.25, y: 193.1855 }, + { l: 99, x: 17.33, y: 193.2508 }, + { l: 99, x: 17.42, y: 193.3039 }, + { l: 99, x: 17.5, y: 193.3534 }, + { l: 99, x: 17.58, y: 193.3961 }, + { l: 99, x: 17.67, y: 193.4323 }, + { l: 99, x: 17.75, y: 193.4626 }, + { l: 99, x: 17.83, y: 193.4875 }, + { l: 99, x: 17.92, y: 193.5076 }, + { l: 99, x: 18, y: 193.5231 }, + { l: 99, x: 18.08, y: 193.5385 }, + { l: 99, x: 18.17, y: 193.5461 }, + { l: 99, x: 18.25, y: 193.5544 }, + { l: 99, x: 18.33, y: 193.5595 }, + { l: 99, x: 18.42, y: 193.5617 }, + { l: 99, x: 18.5, y: 193.5572 }, + { l: 99, x: 18.58, y: 193.5585 }, + { l: 99, x: 18.67, y: 193.5535 }, + { l: 99, x: 18.75, y: 193.5462 }, + { l: 99, x: 18.83, y: 193.5369 }, + { l: 99, x: 18.92, y: 193.5299 }, + { l: 99, x: 19, y: 193.5212 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_ofc_female_centile_data.ts b/src/chartdata/who_ofc_female_centile_data.ts new file mode 100644 index 0000000..25c9d86 --- /dev/null +++ b/src/chartdata/who_ofc_female_centile_data.ts @@ -0,0 +1,976 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoOFCFemaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + female: { + ofc: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 32.563 }, + { l: 1, x: 0.0575, y: 33.1489 }, + { l: 1, x: 0.0767, y: 33.6555 }, + { l: 1, x: 0.0833, y: 33.8172 }, + { l: 1, x: 0.0958, y: 34.1025 }, + { l: 1, x: 0.115, y: 34.5044 }, + { l: 1, x: 0.1342, y: 34.8708 }, + { l: 1, x: 0.1533, y: 35.2106 }, + { l: 1, x: 0.1667, y: 35.433 }, + { l: 1, x: 0.1725, y: 35.527 }, + { l: 1, x: 0.1916, y: 35.8266 }, + { l: 1, x: 0.2108, y: 36.1089 }, + { l: 1, x: 0.23, y: 36.3776 }, + { l: 1, x: 0.2491, y: 36.6342 }, + { l: 1, x: 0.25, y: 36.6451 }, + { l: 1, x: 0.3333, y: 37.6372 }, + { l: 1, x: 0.4167, y: 38.4672 }, + { l: 1, x: 0.5, y: 39.169 }, + { l: 1, x: 0.5833, y: 39.7653 }, + { l: 1, x: 0.6667, y: 40.277 }, + { l: 1, x: 0.75, y: 40.7171 }, + { l: 1, x: 0.8333, y: 41.0997 }, + { l: 1, x: 0.9167, y: 41.4366 }, + { l: 1, x: 1, y: 41.735 }, + { l: 1, x: 1.0833, y: 42.0025 }, + { l: 1, x: 1.1667, y: 42.2435 }, + { l: 1, x: 1.25, y: 42.4625 }, + { l: 1, x: 1.3333, y: 42.6652 }, + { l: 1, x: 1.4167, y: 42.8528 }, + { l: 1, x: 1.5, y: 43.0292 }, + { l: 1, x: 1.5833, y: 43.1954 }, + { l: 1, x: 1.6667, y: 43.3542 }, + { l: 1, x: 1.75, y: 43.507 }, + { l: 1, x: 1.8333, y: 43.6548 }, + { l: 1, x: 1.9167, y: 43.7979 }, + { l: 1, x: 2, y: 43.9366 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 33.0732 }, + { l: 3, x: 0.0575, y: 33.6649 }, + { l: 3, x: 0.0767, y: 34.1765 }, + { l: 3, x: 0.0833, y: 34.3399 }, + { l: 3, x: 0.0958, y: 34.6281 }, + { l: 3, x: 0.115, y: 35.0342 }, + { l: 3, x: 0.1342, y: 35.4047 }, + { l: 3, x: 0.1533, y: 35.7479 }, + { l: 3, x: 0.1667, y: 35.9729 }, + { l: 3, x: 0.1725, y: 36.0679 }, + { l: 3, x: 0.1916, y: 36.3706 }, + { l: 3, x: 0.2108, y: 36.6561 }, + { l: 3, x: 0.23, y: 36.9277 }, + { l: 3, x: 0.2491, y: 37.187 }, + { l: 3, x: 0.25, y: 37.1981 }, + { l: 3, x: 0.3333, y: 38.2011 }, + { l: 3, x: 0.4167, y: 39.0402 }, + { l: 3, x: 0.5, y: 39.7494 }, + { l: 3, x: 0.5833, y: 40.352 }, + { l: 3, x: 0.6667, y: 40.8688 }, + { l: 3, x: 0.75, y: 41.3132 }, + { l: 3, x: 0.8333, y: 41.6996 }, + { l: 3, x: 0.9167, y: 42.0394 }, + { l: 3, x: 1, y: 42.3405 }, + { l: 3, x: 1.0833, y: 42.6101 }, + { l: 3, x: 1.1667, y: 42.8531 }, + { l: 3, x: 1.25, y: 43.0739 }, + { l: 3, x: 1.3333, y: 43.278 }, + { l: 3, x: 1.4167, y: 43.467 }, + { l: 3, x: 1.5, y: 43.6445 }, + { l: 3, x: 1.5833, y: 43.812 }, + { l: 3, x: 1.6667, y: 43.972 }, + { l: 3, x: 1.75, y: 44.1258 }, + { l: 3, x: 1.8333, y: 44.2746 }, + { l: 3, x: 1.9167, y: 44.4186 }, + { l: 3, x: 2, y: 44.5581 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 33.3434 }, + { l: 5, x: 0.0575, y: 33.9381 }, + { l: 5, x: 0.0767, y: 34.4524 }, + { l: 5, x: 0.0833, y: 34.6166 }, + { l: 5, x: 0.0958, y: 34.9065 }, + { l: 5, x: 0.115, y: 35.3148 }, + { l: 5, x: 0.1342, y: 35.6873 }, + { l: 5, x: 0.1533, y: 36.0325 }, + { l: 5, x: 0.1667, y: 36.2588 }, + { l: 5, x: 0.1725, y: 36.3543 }, + { l: 5, x: 0.1916, y: 36.6587 }, + { l: 5, x: 0.2108, y: 36.9458 }, + { l: 5, x: 0.23, y: 37.219 }, + { l: 5, x: 0.2491, y: 37.4797 }, + { l: 5, x: 0.25, y: 37.4909 }, + { l: 5, x: 0.3333, y: 38.4997 }, + { l: 5, x: 0.4167, y: 39.3436 }, + { l: 5, x: 0.5, y: 40.0567 }, + { l: 5, x: 0.5833, y: 40.6627 }, + { l: 5, x: 0.6667, y: 41.1821 }, + { l: 5, x: 0.75, y: 41.6289 }, + { l: 5, x: 0.8333, y: 42.0172 }, + { l: 5, x: 0.9167, y: 42.3586 }, + { l: 5, x: 1, y: 42.6611 }, + { l: 5, x: 1.0833, y: 42.9318 }, + { l: 5, x: 1.1667, y: 43.1759 }, + { l: 5, x: 1.25, y: 43.3977 }, + { l: 5, x: 1.3333, y: 43.6025 }, + { l: 5, x: 1.4167, y: 43.7922 }, + { l: 5, x: 1.5, y: 43.9704 }, + { l: 5, x: 1.5833, y: 44.1385 }, + { l: 5, x: 1.6667, y: 44.2991 }, + { l: 5, x: 1.75, y: 44.4535 }, + { l: 5, x: 1.8333, y: 44.6028 }, + { l: 5, x: 1.9167, y: 44.7473 }, + { l: 5, x: 2, y: 44.8873 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 33.7595 }, + { l: 10, x: 0.0575, y: 34.3588 }, + { l: 10, x: 0.0767, y: 34.8773 }, + { l: 10, x: 0.0833, y: 35.0428 }, + { l: 10, x: 0.0958, y: 35.3351 }, + { l: 10, x: 0.115, y: 35.7469 }, + { l: 10, x: 0.1342, y: 36.1227 }, + { l: 10, x: 0.1533, y: 36.4707 }, + { l: 10, x: 0.1667, y: 36.699 }, + { l: 10, x: 0.1725, y: 36.7955 }, + { l: 10, x: 0.1916, y: 37.1023 }, + { l: 10, x: 0.2108, y: 37.392 }, + { l: 10, x: 0.23, y: 37.6676 }, + { l: 10, x: 0.2491, y: 37.9306 }, + { l: 10, x: 0.25, y: 37.9419 }, + { l: 10, x: 0.3333, y: 38.9595 }, + { l: 10, x: 0.4167, y: 39.8108 }, + { l: 10, x: 0.5, y: 40.53 }, + { l: 10, x: 0.5833, y: 41.1411 }, + { l: 10, x: 0.6667, y: 41.6647 }, + { l: 10, x: 0.75, y: 42.1151 }, + { l: 10, x: 0.8333, y: 42.5063 }, + { l: 10, x: 0.9167, y: 42.8502 }, + { l: 10, x: 1, y: 43.1548 }, + { l: 10, x: 1.0833, y: 43.4273 }, + { l: 10, x: 1.1667, y: 43.673 }, + { l: 10, x: 1.25, y: 43.8962 }, + { l: 10, x: 1.3333, y: 44.1022 }, + { l: 10, x: 1.4167, y: 44.293 }, + { l: 10, x: 1.5, y: 44.4722 }, + { l: 10, x: 1.5833, y: 44.6413 }, + { l: 10, x: 1.6667, y: 44.8029 }, + { l: 10, x: 1.75, y: 44.9582 }, + { l: 10, x: 1.8333, y: 45.1083 }, + { l: 10, x: 1.9167, y: 45.2534 }, + { l: 10, x: 2, y: 45.3941 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 34.0403 }, + { l: 15, x: 0.0575, y: 34.6428 }, + { l: 15, x: 0.0767, y: 35.164 }, + { l: 15, x: 0.0833, y: 35.3305 }, + { l: 15, x: 0.0958, y: 35.6244 }, + { l: 15, x: 0.115, y: 36.0385 }, + { l: 15, x: 0.1342, y: 36.4165 }, + { l: 15, x: 0.1533, y: 36.7665 }, + { l: 15, x: 0.1667, y: 36.9962 }, + { l: 15, x: 0.1725, y: 37.0932 }, + { l: 15, x: 0.1916, y: 37.4017 }, + { l: 15, x: 0.2108, y: 37.6932 }, + { l: 15, x: 0.23, y: 37.9703 }, + { l: 15, x: 0.2491, y: 38.2349 }, + { l: 15, x: 0.25, y: 38.2463 }, + { l: 15, x: 0.3333, y: 39.2699 }, + { l: 15, x: 0.4167, y: 40.1261 }, + { l: 15, x: 0.5, y: 40.8494 }, + { l: 15, x: 0.5833, y: 41.4641 }, + { l: 15, x: 0.6667, y: 41.9904 }, + { l: 15, x: 0.75, y: 42.4432 }, + { l: 15, x: 0.8333, y: 42.8365 }, + { l: 15, x: 0.9167, y: 43.182 }, + { l: 15, x: 1, y: 43.488 }, + { l: 15, x: 1.0833, y: 43.7617 }, + { l: 15, x: 1.1667, y: 44.0084 }, + { l: 15, x: 1.25, y: 44.2328 }, + { l: 15, x: 1.3333, y: 44.4394 }, + { l: 15, x: 1.4167, y: 44.6311 }, + { l: 15, x: 1.5, y: 44.8109 }, + { l: 15, x: 1.5833, y: 44.9807 }, + { l: 15, x: 1.6667, y: 45.1429 }, + { l: 15, x: 1.75, y: 45.2988 }, + { l: 15, x: 1.8333, y: 45.4494 }, + { l: 15, x: 1.9167, y: 45.5951 }, + { l: 15, x: 2, y: 45.7362 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 35.2272 }, + { l: 50, x: 0.0575, y: 35.843 }, + { l: 50, x: 0.0767, y: 36.3761 }, + { l: 50, x: 0.0833, y: 36.5463 }, + { l: 50, x: 0.0958, y: 36.8472 }, + { l: 50, x: 0.115, y: 37.2711 }, + { l: 50, x: 0.1342, y: 37.6584 }, + { l: 50, x: 0.1533, y: 38.0167 }, + { l: 50, x: 0.1667, y: 38.2521 }, + { l: 50, x: 0.1725, y: 38.3516 }, + { l: 50, x: 0.1916, y: 38.6673 }, + { l: 50, x: 0.2108, y: 38.9661 }, + { l: 50, x: 0.23, y: 39.2501 }, + { l: 50, x: 0.2491, y: 39.521 }, + { l: 50, x: 0.25, y: 39.5328 }, + { l: 50, x: 0.3333, y: 40.5817 }, + { l: 50, x: 0.4167, y: 41.459 }, + { l: 50, x: 0.5, y: 42.1995 }, + { l: 50, x: 0.5833, y: 42.829 }, + { l: 50, x: 0.6667, y: 43.3671 }, + { l: 50, x: 0.75, y: 43.83 }, + { l: 50, x: 0.8333, y: 44.2319 }, + { l: 50, x: 0.9167, y: 44.5844 }, + { l: 50, x: 1, y: 44.8965 }, + { l: 50, x: 1.0833, y: 45.1752 }, + { l: 50, x: 1.1667, y: 45.4265 }, + { l: 50, x: 1.25, y: 45.6551 }, + { l: 50, x: 1.3333, y: 45.865 }, + { l: 50, x: 1.4167, y: 46.0598 }, + { l: 50, x: 1.5, y: 46.2424 }, + { l: 50, x: 1.5833, y: 46.4152 }, + { l: 50, x: 1.6667, y: 46.5801 }, + { l: 50, x: 1.75, y: 46.7384 }, + { l: 50, x: 1.8333, y: 46.8913 }, + { l: 50, x: 1.9167, y: 47.0391 }, + { l: 50, x: 2, y: 47.1822 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 36.4141 }, + { l: 85, x: 0.0575, y: 37.0432 }, + { l: 85, x: 0.0767, y: 37.5882 }, + { l: 85, x: 0.0833, y: 37.7621 }, + { l: 85, x: 0.0958, y: 38.07 }, + { l: 85, x: 0.115, y: 38.5037 }, + { l: 85, x: 0.1342, y: 38.9003 }, + { l: 85, x: 0.1533, y: 39.2669 }, + { l: 85, x: 0.1667, y: 39.508 }, + { l: 85, x: 0.1725, y: 39.61 }, + { l: 85, x: 0.1916, y: 39.9329 }, + { l: 85, x: 0.2108, y: 40.239 }, + { l: 85, x: 0.23, y: 40.5299 }, + { l: 85, x: 0.2491, y: 40.8071 }, + { l: 85, x: 0.25, y: 40.8193 }, + { l: 85, x: 0.3333, y: 41.8935 }, + { l: 85, x: 0.4167, y: 42.7919 }, + { l: 85, x: 0.5, y: 43.5496 }, + { l: 85, x: 0.5833, y: 44.1939 }, + { l: 85, x: 0.6667, y: 44.7438 }, + { l: 85, x: 0.75, y: 45.2168 }, + { l: 85, x: 0.8333, y: 45.6273 }, + { l: 85, x: 0.9167, y: 45.9868 }, + { l: 85, x: 1, y: 46.305 }, + { l: 85, x: 1.0833, y: 46.5887 }, + { l: 85, x: 1.1667, y: 46.8446 }, + { l: 85, x: 1.25, y: 47.0774 }, + { l: 85, x: 1.3333, y: 47.2906 }, + { l: 85, x: 1.4167, y: 47.4885 }, + { l: 85, x: 1.5, y: 47.6739 }, + { l: 85, x: 1.5833, y: 47.8497 }, + { l: 85, x: 1.6667, y: 48.0173 }, + { l: 85, x: 1.75, y: 48.178 }, + { l: 85, x: 1.8333, y: 48.3332 }, + { l: 85, x: 1.9167, y: 48.4831 }, + { l: 85, x: 2, y: 48.6282 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 36.6949 }, + { l: 90, x: 0.0575, y: 37.3272 }, + { l: 90, x: 0.0767, y: 37.8749 }, + { l: 90, x: 0.0833, y: 38.0498 }, + { l: 90, x: 0.0958, y: 38.3593 }, + { l: 90, x: 0.115, y: 38.7953 }, + { l: 90, x: 0.1342, y: 39.1941 }, + { l: 90, x: 0.1533, y: 39.5627 }, + { l: 90, x: 0.1667, y: 39.8052 }, + { l: 90, x: 0.1725, y: 39.9077 }, + { l: 90, x: 0.1916, y: 40.2323 }, + { l: 90, x: 0.2108, y: 40.5402 }, + { l: 90, x: 0.23, y: 40.8326 }, + { l: 90, x: 0.2491, y: 41.1114 }, + { l: 90, x: 0.25, y: 41.1237 }, + { l: 90, x: 0.3333, y: 42.2039 }, + { l: 90, x: 0.4167, y: 43.1072 }, + { l: 90, x: 0.5, y: 43.869 }, + { l: 90, x: 0.5833, y: 44.5169 }, + { l: 90, x: 0.6667, y: 45.0695 }, + { l: 90, x: 0.75, y: 45.5449 }, + { l: 90, x: 0.8333, y: 45.9575 }, + { l: 90, x: 0.9167, y: 46.3186 }, + { l: 90, x: 1, y: 46.6382 }, + { l: 90, x: 1.0833, y: 46.9231 }, + { l: 90, x: 1.1667, y: 47.18 }, + { l: 90, x: 1.25, y: 47.414 }, + { l: 90, x: 1.3333, y: 47.6278 }, + { l: 90, x: 1.4167, y: 47.8266 }, + { l: 90, x: 1.5, y: 48.0126 }, + { l: 90, x: 1.5833, y: 48.1891 }, + { l: 90, x: 1.6667, y: 48.3573 }, + { l: 90, x: 1.75, y: 48.5186 }, + { l: 90, x: 1.8333, y: 48.6743 }, + { l: 90, x: 1.9167, y: 48.8248 }, + { l: 90, x: 2, y: 48.9703 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 37.111 }, + { l: 95, x: 0.0575, y: 37.7479 }, + { l: 95, x: 0.0767, y: 38.2998 }, + { l: 95, x: 0.0833, y: 38.476 }, + { l: 95, x: 0.0958, y: 38.7879 }, + { l: 95, x: 0.115, y: 39.2274 }, + { l: 95, x: 0.1342, y: 39.6295 }, + { l: 95, x: 0.1533, y: 40.0009 }, + { l: 95, x: 0.1667, y: 40.2454 }, + { l: 95, x: 0.1725, y: 40.3489 }, + { l: 95, x: 0.1916, y: 40.6759 }, + { l: 95, x: 0.2108, y: 40.9864 }, + { l: 95, x: 0.23, y: 41.2812 }, + { l: 95, x: 0.2491, y: 41.5623 }, + { l: 95, x: 0.25, y: 41.5747 }, + { l: 95, x: 0.3333, y: 42.6637 }, + { l: 95, x: 0.4167, y: 43.5744 }, + { l: 95, x: 0.5, y: 44.3423 }, + { l: 95, x: 0.5833, y: 44.9953 }, + { l: 95, x: 0.6667, y: 45.5521 }, + { l: 95, x: 0.75, y: 46.0311 }, + { l: 95, x: 0.8333, y: 46.4466 }, + { l: 95, x: 0.9167, y: 46.8102 }, + { l: 95, x: 1, y: 47.1319 }, + { l: 95, x: 1.0833, y: 47.4186 }, + { l: 95, x: 1.1667, y: 47.6771 }, + { l: 95, x: 1.25, y: 47.9125 }, + { l: 95, x: 1.3333, y: 48.1275 }, + { l: 95, x: 1.4167, y: 48.3274 }, + { l: 95, x: 1.5, y: 48.5144 }, + { l: 95, x: 1.5833, y: 48.6919 }, + { l: 95, x: 1.6667, y: 48.8611 }, + { l: 95, x: 1.75, y: 49.0233 }, + { l: 95, x: 1.8333, y: 49.1798 }, + { l: 95, x: 1.9167, y: 49.3309 }, + { l: 95, x: 2, y: 49.4771 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 37.3812 }, + { l: 97, x: 0.0575, y: 38.0211 }, + { l: 97, x: 0.0767, y: 38.5757 }, + { l: 97, x: 0.0833, y: 38.7527 }, + { l: 97, x: 0.0958, y: 39.0663 }, + { l: 97, x: 0.115, y: 39.508 }, + { l: 97, x: 0.1342, y: 39.9121 }, + { l: 97, x: 0.1533, y: 40.2855 }, + { l: 97, x: 0.1667, y: 40.5313 }, + { l: 97, x: 0.1725, y: 40.6353 }, + { l: 97, x: 0.1916, y: 40.964 }, + { l: 97, x: 0.2108, y: 41.2761 }, + { l: 97, x: 0.23, y: 41.5725 }, + { l: 97, x: 0.2491, y: 41.855 }, + { l: 97, x: 0.25, y: 41.8675 }, + { l: 97, x: 0.3333, y: 42.9623 }, + { l: 97, x: 0.4167, y: 43.8778 }, + { l: 97, x: 0.5, y: 44.6496 }, + { l: 97, x: 0.5833, y: 45.306 }, + { l: 97, x: 0.6667, y: 45.8654 }, + { l: 97, x: 0.75, y: 46.3468 }, + { l: 97, x: 0.8333, y: 46.7642 }, + { l: 97, x: 0.9167, y: 47.1294 }, + { l: 97, x: 1, y: 47.4525 }, + { l: 97, x: 1.0833, y: 47.7403 }, + { l: 97, x: 1.1667, y: 47.9999 }, + { l: 97, x: 1.25, y: 48.2363 }, + { l: 97, x: 1.3333, y: 48.452 }, + { l: 97, x: 1.4167, y: 48.6526 }, + { l: 97, x: 1.5, y: 48.8403 }, + { l: 97, x: 1.5833, y: 49.0184 }, + { l: 97, x: 1.6667, y: 49.1882 }, + { l: 97, x: 1.75, y: 49.351 }, + { l: 97, x: 1.8333, y: 49.508 }, + { l: 97, x: 1.9167, y: 49.6596 }, + { l: 97, x: 2, y: 49.8063 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 37.8914 }, + { l: 99, x: 0.0575, y: 38.5371 }, + { l: 99, x: 0.0767, y: 39.0967 }, + { l: 99, x: 0.0833, y: 39.2754 }, + { l: 99, x: 0.0958, y: 39.5919 }, + { l: 99, x: 0.115, y: 40.0378 }, + { l: 99, x: 0.1342, y: 40.446 }, + { l: 99, x: 0.1533, y: 40.8228 }, + { l: 99, x: 0.1667, y: 41.0712 }, + { l: 99, x: 0.1725, y: 41.1762 }, + { l: 99, x: 0.1916, y: 41.508 }, + { l: 99, x: 0.2108, y: 41.8233 }, + { l: 99, x: 0.23, y: 42.1226 }, + { l: 99, x: 0.2491, y: 42.4078 }, + { l: 99, x: 0.25, y: 42.4205 }, + { l: 99, x: 0.3333, y: 43.5262 }, + { l: 99, x: 0.4167, y: 44.4508 }, + { l: 99, x: 0.5, y: 45.23 }, + { l: 99, x: 0.5833, y: 45.8927 }, + { l: 99, x: 0.6667, y: 46.4572 }, + { l: 99, x: 0.75, y: 46.9429 }, + { l: 99, x: 0.8333, y: 47.3641 }, + { l: 99, x: 0.9167, y: 47.7322 }, + { l: 99, x: 1, y: 48.058 }, + { l: 99, x: 1.0833, y: 48.3479 }, + { l: 99, x: 1.1667, y: 48.6095 }, + { l: 99, x: 1.25, y: 48.8477 }, + { l: 99, x: 1.3333, y: 49.0648 }, + { l: 99, x: 1.4167, y: 49.2668 }, + { l: 99, x: 1.5, y: 49.4556 }, + { l: 99, x: 1.5833, y: 49.635 }, + { l: 99, x: 1.6667, y: 49.806 }, + { l: 99, x: 1.75, y: 49.9698 }, + { l: 99, x: 1.8333, y: 50.1278 }, + { l: 99, x: 1.9167, y: 50.2803 }, + { l: 99, x: 2, y: 50.4278 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + female: { + ofc: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 43.9366 }, + { l: 1, x: 2.0833, y: 44.0697 }, + { l: 1, x: 2.1667, y: 44.1982 }, + { l: 1, x: 2.25, y: 44.3219 }, + { l: 1, x: 2.3333, y: 44.4407 }, + { l: 1, x: 2.4167, y: 44.5545 }, + { l: 1, x: 2.5, y: 44.6634 }, + { l: 1, x: 2.5833, y: 44.7676 }, + { l: 1, x: 2.6667, y: 44.8662 }, + { l: 1, x: 2.75, y: 44.9617 }, + { l: 1, x: 2.8333, y: 45.0522 }, + { l: 1, x: 2.9167, y: 45.1402 }, + { l: 1, x: 3, y: 45.2237 }, + { l: 1, x: 3.0833, y: 45.3042 }, + { l: 1, x: 3.1667, y: 45.3818 }, + { l: 1, x: 3.25, y: 45.4568 }, + { l: 1, x: 3.3333, y: 45.5291 }, + { l: 1, x: 3.4167, y: 45.599 }, + { l: 1, x: 3.5, y: 45.6666 }, + { l: 1, x: 3.5833, y: 45.732 }, + { l: 1, x: 3.6667, y: 45.7954 }, + { l: 1, x: 3.75, y: 45.8558 }, + { l: 1, x: 3.8333, y: 45.9156 }, + { l: 1, x: 3.9167, y: 45.9738 }, + { l: 1, x: 4, y: 46.0293 }, + { l: 1, x: 3.0833, y: 45.3042 }, + { l: 1, x: 4.1667, y: 46.1409 }, + { l: 1, x: 4.25, y: 46.1902 }, + { l: 1, x: 4.3333, y: 46.2384 }, + { l: 1, x: 4.4167, y: 46.2856 }, + { l: 1, x: 4.5, y: 46.3433 }, + { l: 1, x: 4.5833, y: 46.3884 }, + { l: 1, x: 4.6667, y: 46.4326 }, + { l: 1, x: 4.75, y: 46.476 }, + { l: 1, x: 4.8333, y: 46.5301 }, + { l: 1, x: 4.9167, y: 46.572 }, + { l: 1, x: 5.0, y: 46.613 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 44.5581 }, + { l: 3, x: 2.0833, y: 44.6922 }, + { l: 3, x: 2.1667, y: 44.8216 }, + { l: 3, x: 2.25, y: 44.9462 }, + { l: 3, x: 2.3333, y: 45.0658 }, + { l: 3, x: 2.4167, y: 45.1803 }, + { l: 3, x: 2.5, y: 45.2898 }, + { l: 3, x: 2.5833, y: 45.3945 }, + { l: 3, x: 2.6667, y: 45.4938 }, + { l: 3, x: 2.75, y: 45.5896 }, + { l: 3, x: 2.8333, y: 45.6807 }, + { l: 3, x: 2.9167, y: 45.769 }, + { l: 3, x: 3, y: 45.8531 }, + { l: 3, x: 3.0833, y: 45.934 }, + { l: 3, x: 3.1667, y: 46.012 }, + { l: 3, x: 3.25, y: 46.0872 }, + { l: 3, x: 3.3333, y: 46.1598 }, + { l: 3, x: 3.4167, y: 46.23 }, + { l: 3, x: 3.5, y: 46.2978 }, + { l: 3, x: 3.5833, y: 46.3635 }, + { l: 3, x: 3.6667, y: 46.4271 }, + { l: 3, x: 3.75, y: 46.4878 }, + { l: 3, x: 3.8333, y: 46.5477 }, + { l: 3, x: 3.9167, y: 46.606 }, + { l: 3, x: 4, y: 46.6618 }, + { l: 3, x: 3.0833, y: 45.934 }, + { l: 3, x: 4.1667, y: 46.7731 }, + { l: 3, x: 4.25, y: 46.823 }, + { l: 3, x: 4.3333, y: 46.8719 }, + { l: 3, x: 4.4167, y: 46.9197 }, + { l: 3, x: 4.5, y: 46.9759 }, + { l: 3, x: 4.5833, y: 47.0216 }, + { l: 3, x: 4.6667, y: 47.0664 }, + { l: 3, x: 4.75, y: 47.1103 }, + { l: 3, x: 4.8333, y: 47.1629 }, + { l: 3, x: 4.9167, y: 47.2053 }, + { l: 3, x: 5.0, y: 47.2469 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 44.8873 }, + { l: 5, x: 2.0833, y: 45.0219 }, + { l: 5, x: 2.1667, y: 45.1517 }, + { l: 5, x: 2.25, y: 45.2767 }, + { l: 5, x: 2.3333, y: 45.3967 }, + { l: 5, x: 2.4167, y: 45.5116 }, + { l: 5, x: 2.5, y: 45.6214 }, + { l: 5, x: 2.5833, y: 45.7264 }, + { l: 5, x: 2.6667, y: 45.8261 }, + { l: 5, x: 2.75, y: 45.9222 }, + { l: 5, x: 2.8333, y: 46.0135 }, + { l: 5, x: 2.9167, y: 46.102 }, + { l: 5, x: 3, y: 46.1863 }, + { l: 5, x: 3.0833, y: 46.2674 }, + { l: 5, x: 3.1667, y: 46.3456 }, + { l: 5, x: 3.25, y: 46.4211 }, + { l: 5, x: 3.3333, y: 46.4938 }, + { l: 5, x: 3.4167, y: 46.5642 }, + { l: 5, x: 3.5, y: 46.6321 }, + { l: 5, x: 3.5833, y: 46.6979 }, + { l: 5, x: 3.6667, y: 46.7615 }, + { l: 5, x: 3.75, y: 46.8225 }, + { l: 5, x: 3.8333, y: 46.8824 }, + { l: 5, x: 3.9167, y: 46.9408 }, + { l: 5, x: 4, y: 46.9967 }, + { l: 5, x: 3.0833, y: 46.2674 }, + { l: 5, x: 4.1667, y: 47.1078 }, + { l: 5, x: 4.25, y: 47.1581 }, + { l: 5, x: 4.3333, y: 47.2074 }, + { l: 5, x: 4.4167, y: 47.2555 }, + { l: 5, x: 4.5, y: 47.3108 }, + { l: 5, x: 4.5833, y: 47.3569 }, + { l: 5, x: 4.6667, y: 47.402 }, + { l: 5, x: 4.75, y: 47.4462 }, + { l: 5, x: 4.8333, y: 47.4979 }, + { l: 5, x: 4.9167, y: 47.5406 }, + { l: 5, x: 5.0, y: 47.5825 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 45.3941 }, + { l: 10, x: 2.0833, y: 45.5295 }, + { l: 10, x: 2.1667, y: 45.6601 }, + { l: 10, x: 2.25, y: 45.7858 }, + { l: 10, x: 2.3333, y: 45.9064 }, + { l: 10, x: 2.4167, y: 46.0219 }, + { l: 10, x: 2.5, y: 46.1322 }, + { l: 10, x: 2.5833, y: 46.2376 }, + { l: 10, x: 2.6667, y: 46.3378 }, + { l: 10, x: 2.75, y: 46.4343 }, + { l: 10, x: 2.8333, y: 46.5261 }, + { l: 10, x: 2.9167, y: 46.6148 }, + { l: 10, x: 3, y: 46.6995 }, + { l: 10, x: 3.0833, y: 46.781 }, + { l: 10, x: 3.1667, y: 46.8595 }, + { l: 10, x: 3.25, y: 46.9352 }, + { l: 10, x: 3.3333, y: 47.0082 }, + { l: 10, x: 3.4167, y: 47.0788 }, + { l: 10, x: 3.5, y: 47.1469 }, + { l: 10, x: 3.5833, y: 47.2128 }, + { l: 10, x: 3.6667, y: 47.2766 }, + { l: 10, x: 3.75, y: 47.3379 }, + { l: 10, x: 3.8333, y: 47.3979 }, + { l: 10, x: 3.9167, y: 47.4564 }, + { l: 10, x: 4, y: 47.5125 }, + { l: 10, x: 3.0833, y: 46.781 }, + { l: 10, x: 4.1667, y: 47.6233 }, + { l: 10, x: 4.25, y: 47.6742 }, + { l: 10, x: 4.3333, y: 47.724 }, + { l: 10, x: 4.4167, y: 47.7726 }, + { l: 10, x: 4.5, y: 47.8267 }, + { l: 10, x: 4.5833, y: 47.8732 }, + { l: 10, x: 4.6667, y: 47.9189 }, + { l: 10, x: 4.75, y: 47.9636 }, + { l: 10, x: 4.8333, y: 48.0139 }, + { l: 10, x: 4.9167, y: 48.057 }, + { l: 10, x: 5.0, y: 48.0994 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 45.7362 }, + { l: 15, x: 2.0833, y: 45.8722 }, + { l: 15, x: 2.1667, y: 46.0033 }, + { l: 15, x: 2.25, y: 46.1294 }, + { l: 15, x: 2.3333, y: 46.2504 }, + { l: 15, x: 2.4167, y: 46.3662 }, + { l: 15, x: 2.5, y: 46.4769 }, + { l: 15, x: 2.5833, y: 46.5827 }, + { l: 15, x: 2.6667, y: 46.6833 }, + { l: 15, x: 2.75, y: 46.7799 }, + { l: 15, x: 2.8333, y: 46.8721 }, + { l: 15, x: 2.9167, y: 46.961 }, + { l: 15, x: 3, y: 47.0459 }, + { l: 15, x: 3.0833, y: 47.1276 }, + { l: 15, x: 3.1667, y: 47.2063 }, + { l: 15, x: 3.25, y: 47.2822 }, + { l: 15, x: 3.3333, y: 47.3554 }, + { l: 15, x: 3.4167, y: 47.4261 }, + { l: 15, x: 3.5, y: 47.4943 }, + { l: 15, x: 3.5833, y: 47.5604 }, + { l: 15, x: 3.6667, y: 47.6243 }, + { l: 15, x: 3.75, y: 47.6857 }, + { l: 15, x: 3.8333, y: 47.7458 }, + { l: 15, x: 3.9167, y: 47.8043 }, + { l: 15, x: 4, y: 47.8606 }, + { l: 15, x: 3.0833, y: 47.1276 }, + { l: 15, x: 4.1667, y: 47.9713 }, + { l: 15, x: 4.25, y: 48.0225 }, + { l: 15, x: 4.3333, y: 48.0727 }, + { l: 15, x: 4.4167, y: 48.1217 }, + { l: 15, x: 4.5, y: 48.1748 }, + { l: 15, x: 4.5833, y: 48.2217 }, + { l: 15, x: 4.6667, y: 48.2677 }, + { l: 15, x: 4.75, y: 48.3127 }, + { l: 15, x: 4.8333, y: 48.3621 }, + { l: 15, x: 4.9167, y: 48.4056 }, + { l: 15, x: 5.0, y: 48.4483 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 47.1822 }, + { l: 50, x: 2.0833, y: 47.3204 }, + { l: 50, x: 2.1667, y: 47.4536 }, + { l: 50, x: 2.25, y: 47.5817 }, + { l: 50, x: 2.3333, y: 47.7045 }, + { l: 50, x: 2.4167, y: 47.8219 }, + { l: 50, x: 2.5, y: 47.934 }, + { l: 50, x: 2.5833, y: 48.041 }, + { l: 50, x: 2.6667, y: 48.1432 }, + { l: 50, x: 2.75, y: 48.2408 }, + { l: 50, x: 2.8333, y: 48.3343 }, + { l: 50, x: 2.9167, y: 48.4239 }, + { l: 50, x: 3, y: 48.5099 }, + { l: 50, x: 3.0833, y: 48.5926 }, + { l: 50, x: 3.1667, y: 48.6722 }, + { l: 50, x: 3.25, y: 48.7489 }, + { l: 50, x: 3.3333, y: 48.8228 }, + { l: 50, x: 3.4167, y: 48.8941 }, + { l: 50, x: 3.5, y: 48.9629 }, + { l: 50, x: 3.5833, y: 49.0294 }, + { l: 50, x: 3.6667, y: 49.0937 }, + { l: 50, x: 3.75, y: 49.156 }, + { l: 50, x: 3.8333, y: 49.2164 }, + { l: 50, x: 3.9167, y: 49.2751 }, + { l: 50, x: 4, y: 49.3321 }, + { l: 50, x: 3.0833, y: 48.5926 }, + { l: 50, x: 4.1667, y: 49.4419 }, + { l: 50, x: 4.25, y: 49.4947 }, + { l: 50, x: 4.3333, y: 49.5464 }, + { l: 50, x: 4.4167, y: 49.5969 }, + { l: 50, x: 4.5, y: 49.6464 }, + { l: 50, x: 4.5833, y: 49.6947 }, + { l: 50, x: 4.6667, y: 49.7421 }, + { l: 50, x: 4.75, y: 49.7885 }, + { l: 50, x: 4.8333, y: 49.8341 }, + { l: 50, x: 4.9167, y: 49.8789 }, + { l: 50, x: 5.0, y: 49.9229 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 48.6282 }, + { l: 85, x: 2.0833, y: 48.7686 }, + { l: 85, x: 2.1667, y: 48.9039 }, + { l: 85, x: 2.25, y: 49.034 }, + { l: 85, x: 2.3333, y: 49.1586 }, + { l: 85, x: 2.4167, y: 49.2776 }, + { l: 85, x: 2.5, y: 49.3911 }, + { l: 85, x: 2.5833, y: 49.4993 }, + { l: 85, x: 2.6667, y: 49.6031 }, + { l: 85, x: 2.75, y: 49.7017 }, + { l: 85, x: 2.8333, y: 49.7965 }, + { l: 85, x: 2.9167, y: 49.8868 }, + { l: 85, x: 3, y: 49.9739 }, + { l: 85, x: 3.0833, y: 50.0576 }, + { l: 85, x: 3.1667, y: 50.1381 }, + { l: 85, x: 3.25, y: 50.2156 }, + { l: 85, x: 3.3333, y: 50.2902 }, + { l: 85, x: 3.4167, y: 50.3621 }, + { l: 85, x: 3.5, y: 50.4315 }, + { l: 85, x: 3.5833, y: 50.4984 }, + { l: 85, x: 3.6667, y: 50.5631 }, + { l: 85, x: 3.75, y: 50.6263 }, + { l: 85, x: 3.8333, y: 50.687 }, + { l: 85, x: 3.9167, y: 50.7459 }, + { l: 85, x: 4, y: 50.8036 }, + { l: 85, x: 3.0833, y: 50.0576 }, + { l: 85, x: 4.1667, y: 50.9125 }, + { l: 85, x: 4.25, y: 50.9669 }, + { l: 85, x: 4.3333, y: 51.0201 }, + { l: 85, x: 4.4167, y: 51.0721 }, + { l: 85, x: 4.5, y: 51.118 }, + { l: 85, x: 4.5833, y: 51.1677 }, + { l: 85, x: 4.6667, y: 51.2165 }, + { l: 85, x: 4.75, y: 51.2643 }, + { l: 85, x: 4.8333, y: 51.3061 }, + { l: 85, x: 4.9167, y: 51.3522 }, + { l: 85, x: 5.0, y: 51.3975 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 48.9703 }, + { l: 90, x: 2.0833, y: 49.1113 }, + { l: 90, x: 2.1667, y: 49.2471 }, + { l: 90, x: 2.25, y: 49.3776 }, + { l: 90, x: 2.3333, y: 49.5026 }, + { l: 90, x: 2.4167, y: 49.6219 }, + { l: 90, x: 2.5, y: 49.7358 }, + { l: 90, x: 2.5833, y: 49.8444 }, + { l: 90, x: 2.6667, y: 49.9486 }, + { l: 90, x: 2.75, y: 50.0473 }, + { l: 90, x: 2.8333, y: 50.1425 }, + { l: 90, x: 2.9167, y: 50.233 }, + { l: 90, x: 3, y: 50.3203 }, + { l: 90, x: 3.0833, y: 50.4042 }, + { l: 90, x: 3.1667, y: 50.4849 }, + { l: 90, x: 3.25, y: 50.5626 }, + { l: 90, x: 3.3333, y: 50.6374 }, + { l: 90, x: 3.4167, y: 50.7094 }, + { l: 90, x: 3.5, y: 50.7789 }, + { l: 90, x: 3.5833, y: 50.846 }, + { l: 90, x: 3.6667, y: 50.9108 }, + { l: 90, x: 3.75, y: 50.9741 }, + { l: 90, x: 3.8333, y: 51.0349 }, + { l: 90, x: 3.9167, y: 51.0938 }, + { l: 90, x: 4, y: 51.1517 }, + { l: 90, x: 3.0833, y: 50.4042 }, + { l: 90, x: 4.1667, y: 51.2605 }, + { l: 90, x: 4.25, y: 51.3152 }, + { l: 90, x: 4.3333, y: 51.3688 }, + { l: 90, x: 4.4167, y: 51.4212 }, + { l: 90, x: 4.5, y: 51.4661 }, + { l: 90, x: 4.5833, y: 51.5162 }, + { l: 90, x: 4.6667, y: 51.5653 }, + { l: 90, x: 4.75, y: 51.6134 }, + { l: 90, x: 4.8333, y: 51.6543 }, + { l: 90, x: 4.9167, y: 51.7008 }, + { l: 90, x: 5.0, y: 51.7464 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 49.4771 }, + { l: 95, x: 2.0833, y: 49.6189 }, + { l: 95, x: 2.1667, y: 49.7555 }, + { l: 95, x: 2.25, y: 49.8867 }, + { l: 95, x: 2.3333, y: 50.0123 }, + { l: 95, x: 2.4167, y: 50.1322 }, + { l: 95, x: 2.5, y: 50.2466 }, + { l: 95, x: 2.5833, y: 50.3556 }, + { l: 95, x: 2.6667, y: 50.4603 }, + { l: 95, x: 2.75, y: 50.5594 }, + { l: 95, x: 2.8333, y: 50.6551 }, + { l: 95, x: 2.9167, y: 50.7458 }, + { l: 95, x: 3, y: 50.8335 }, + { l: 95, x: 3.0833, y: 50.9178 }, + { l: 95, x: 3.1667, y: 50.9988 }, + { l: 95, x: 3.25, y: 51.0767 }, + { l: 95, x: 3.3333, y: 51.1518 }, + { l: 95, x: 3.4167, y: 51.224 }, + { l: 95, x: 3.5, y: 51.2937 }, + { l: 95, x: 3.5833, y: 51.3609 }, + { l: 95, x: 3.6667, y: 51.4259 }, + { l: 95, x: 3.75, y: 51.4895 }, + { l: 95, x: 3.8333, y: 51.5504 }, + { l: 95, x: 3.9167, y: 51.6094 }, + { l: 95, x: 4, y: 51.6675 }, + { l: 95, x: 3.0833, y: 50.9178 }, + { l: 95, x: 4.1667, y: 51.776 }, + { l: 95, x: 4.25, y: 51.8313 }, + { l: 95, x: 4.3333, y: 51.8854 }, + { l: 95, x: 4.4167, y: 51.9383 }, + { l: 95, x: 4.5, y: 51.982 }, + { l: 95, x: 4.5833, y: 52.0325 }, + { l: 95, x: 4.6667, y: 52.0822 }, + { l: 95, x: 4.75, y: 52.1308 }, + { l: 95, x: 4.8333, y: 52.1703 }, + { l: 95, x: 4.9167, y: 52.2172 }, + { l: 95, x: 5.0, y: 52.2633 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 49.8063 }, + { l: 97, x: 2.0833, y: 49.9486 }, + { l: 97, x: 2.1667, y: 50.0856 }, + { l: 97, x: 2.25, y: 50.2172 }, + { l: 97, x: 2.3333, y: 50.3432 }, + { l: 97, x: 2.4167, y: 50.4635 }, + { l: 97, x: 2.5, y: 50.5782 }, + { l: 97, x: 2.5833, y: 50.6875 }, + { l: 97, x: 2.6667, y: 50.7926 }, + { l: 97, x: 2.75, y: 50.892 }, + { l: 97, x: 2.8333, y: 50.9879 }, + { l: 97, x: 2.9167, y: 51.0788 }, + { l: 97, x: 3, y: 51.1667 }, + { l: 97, x: 3.0833, y: 51.2512 }, + { l: 97, x: 3.1667, y: 51.3324 }, + { l: 97, x: 3.25, y: 51.4106 }, + { l: 97, x: 3.3333, y: 51.4858 }, + { l: 97, x: 3.4167, y: 51.5582 }, + { l: 97, x: 3.5, y: 51.628 }, + { l: 97, x: 3.5833, y: 51.6953 }, + { l: 97, x: 3.6667, y: 51.7603 }, + { l: 97, x: 3.75, y: 51.8242 }, + { l: 97, x: 3.8333, y: 51.8851 }, + { l: 97, x: 3.9167, y: 51.9442 }, + { l: 97, x: 4, y: 52.0024 }, + { l: 97, x: 3.0833, y: 51.2512 }, + { l: 97, x: 4.1667, y: 52.1107 }, + { l: 97, x: 4.25, y: 52.1664 }, + { l: 97, x: 4.3333, y: 52.2209 }, + { l: 97, x: 4.4167, y: 52.2741 }, + { l: 97, x: 4.5, y: 52.3169 }, + { l: 97, x: 4.5833, y: 52.3678 }, + { l: 97, x: 4.6667, y: 52.4178 }, + { l: 97, x: 4.75, y: 52.4667 }, + { l: 97, x: 4.8333, y: 52.5053 }, + { l: 97, x: 4.9167, y: 52.5525 }, + { l: 97, x: 5.0, y: 52.5989 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 50.4278 }, + { l: 99, x: 2.0833, y: 50.5711 }, + { l: 99, x: 2.1667, y: 50.709 }, + { l: 99, x: 2.25, y: 50.8415 }, + { l: 99, x: 2.3333, y: 50.9683 }, + { l: 99, x: 2.4167, y: 51.0893 }, + { l: 99, x: 2.5, y: 51.2046 }, + { l: 99, x: 2.5833, y: 51.3144 }, + { l: 99, x: 2.6667, y: 51.4202 }, + { l: 99, x: 2.75, y: 51.5199 }, + { l: 99, x: 2.8333, y: 51.6164 }, + { l: 99, x: 2.9167, y: 51.7076 }, + { l: 99, x: 3, y: 51.7961 }, + { l: 99, x: 3.0833, y: 51.881 }, + { l: 99, x: 3.1667, y: 51.9626 }, + { l: 99, x: 3.25, y: 52.041 }, + { l: 99, x: 3.3333, y: 52.1165 }, + { l: 99, x: 3.4167, y: 52.1892 }, + { l: 99, x: 3.5, y: 52.2592 }, + { l: 99, x: 3.5833, y: 52.3268 }, + { l: 99, x: 3.6667, y: 52.392 }, + { l: 99, x: 3.75, y: 52.4562 }, + { l: 99, x: 3.8333, y: 52.5172 }, + { l: 99, x: 3.9167, y: 52.5764 }, + { l: 99, x: 4, y: 52.6349 }, + { l: 99, x: 3.0833, y: 51.881 }, + { l: 99, x: 4.1667, y: 52.7429 }, + { l: 99, x: 4.25, y: 52.7992 }, + { l: 99, x: 4.3333, y: 52.8544 }, + { l: 99, x: 4.4167, y: 52.9082 }, + { l: 99, x: 4.5, y: 52.9495 }, + { l: 99, x: 4.5833, y: 53.001 }, + { l: 99, x: 4.6667, y: 53.0516 }, + { l: 99, x: 4.75, y: 53.101 }, + { l: 99, x: 4.8333, y: 53.1381 }, + { l: 99, x: 4.9167, y: 53.1858 }, + { l: 99, x: 5.0, y: 53.2328 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + female: { + ofc: [ + { sds: -2.33, centile: 1, data: [] }, + { sds: -1.88, centile: 3, data: [] }, + { sds: -1.64, centile: 5, data: [] }, + { sds: -1.28, centile: 10, data: [] }, + { sds: -1.04, centile: 15, data: [] }, + { sds: 0.0, centile: 50, data: [] }, + { sds: 1.04, centile: 85, data: [] }, + { sds: 1.28, centile: 90, data: [] }, + { sds: 1.64, centile: 95, data: [] }, + { sds: 1.88, centile: 97, data: [] }, + { sds: 2.33, centile: 99, data: [] }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_ofc_male_centile_data.ts b/src/chartdata/who_ofc_male_centile_data.ts new file mode 100644 index 0000000..51f4ceb --- /dev/null +++ b/src/chartdata/who_ofc_male_centile_data.ts @@ -0,0 +1,976 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoOFCMaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + male: { + ofc: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 33.1467 }, + { l: 1, x: 0.0575, y: 33.8054 }, + { l: 1, x: 0.0767, y: 34.3762 }, + { l: 1, x: 0.0833, y: 34.5591 }, + { l: 1, x: 0.0958, y: 34.8833 }, + { l: 1, x: 0.115, y: 35.3409 }, + { l: 1, x: 0.1342, y: 35.76 }, + { l: 1, x: 0.1533, y: 36.1469 }, + { l: 1, x: 0.1667, y: 36.4005 }, + { l: 1, x: 0.1725, y: 36.5076 }, + { l: 1, x: 0.1916, y: 36.846 }, + { l: 1, x: 0.2108, y: 37.1649 }, + { l: 1, x: 0.23, y: 37.4661 }, + { l: 1, x: 0.2491, y: 37.7515 }, + { l: 1, x: 0.25, y: 37.7634 }, + { l: 1, x: 0.3333, y: 38.8541 }, + { l: 1, x: 0.4167, y: 39.7489 }, + { l: 1, x: 0.5, y: 40.4911 }, + { l: 1, x: 0.5833, y: 41.1115 }, + { l: 1, x: 0.6667, y: 41.6336 }, + { l: 1, x: 0.75, y: 42.077 }, + { l: 1, x: 0.8333, y: 42.4581 }, + { l: 1, x: 0.9167, y: 42.7885 }, + { l: 1, x: 1, y: 43.0773 }, + { l: 1, x: 1.0833, y: 43.333 }, + { l: 1, x: 1.1667, y: 43.5598 }, + { l: 1, x: 1.25, y: 43.7659 }, + { l: 1, x: 1.3333, y: 43.9523 }, + { l: 1, x: 1.4167, y: 44.1253 }, + { l: 1, x: 1.5, y: 44.2855 }, + { l: 1, x: 1.5833, y: 44.4361 }, + { l: 1, x: 1.6667, y: 44.5788 }, + { l: 1, x: 1.75, y: 44.7135 }, + { l: 1, x: 1.8333, y: 44.8433 }, + { l: 1, x: 1.9167, y: 44.9667 }, + { l: 1, x: 2, y: 45.085 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 33.6672 }, + { l: 3, x: 0.0575, y: 34.3256 }, + { l: 3, x: 0.0767, y: 34.8964 }, + { l: 3, x: 0.0833, y: 35.0794 }, + { l: 3, x: 0.0958, y: 35.4037 }, + { l: 3, x: 0.115, y: 35.8618 }, + { l: 3, x: 0.1342, y: 36.2814 }, + { l: 3, x: 0.1533, y: 36.6688 }, + { l: 3, x: 0.1667, y: 36.9229 }, + { l: 3, x: 0.1725, y: 37.0303 }, + { l: 3, x: 0.1916, y: 37.3695 }, + { l: 3, x: 0.2108, y: 37.6893 }, + { l: 3, x: 0.23, y: 37.9915 }, + { l: 3, x: 0.2491, y: 38.278 }, + { l: 3, x: 0.25, y: 38.29 }, + { l: 3, x: 0.3333, y: 39.386 }, + { l: 3, x: 0.4167, y: 40.2868 }, + { l: 3, x: 0.5, y: 41.0349 }, + { l: 3, x: 0.5833, y: 41.6609 }, + { l: 3, x: 0.6667, y: 42.1883 }, + { l: 3, x: 0.75, y: 42.6368 }, + { l: 3, x: 0.8333, y: 43.0225 }, + { l: 3, x: 0.9167, y: 43.3571 }, + { l: 3, x: 1, y: 43.6497 }, + { l: 3, x: 1.0833, y: 43.9087 }, + { l: 3, x: 1.1667, y: 44.139 }, + { l: 3, x: 1.25, y: 44.3481 }, + { l: 3, x: 1.3333, y: 44.5376 }, + { l: 3, x: 1.4167, y: 44.7134 }, + { l: 3, x: 1.5, y: 44.8764 }, + { l: 3, x: 1.5833, y: 45.0297 }, + { l: 3, x: 1.6667, y: 45.1749 }, + { l: 3, x: 1.75, y: 45.3124 }, + { l: 3, x: 1.8333, y: 45.4447 }, + { l: 3, x: 1.9167, y: 45.5706 }, + { l: 3, x: 2, y: 45.6914 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 33.9429 }, + { l: 5, x: 0.0575, y: 34.601 }, + { l: 5, x: 0.0767, y: 35.1719 }, + { l: 5, x: 0.0833, y: 35.3549 }, + { l: 5, x: 0.0958, y: 35.6793 }, + { l: 5, x: 0.115, y: 36.1376 }, + { l: 5, x: 0.1342, y: 36.5575 }, + { l: 5, x: 0.1533, y: 36.9452 }, + { l: 5, x: 0.1667, y: 37.1996 }, + { l: 5, x: 0.1725, y: 37.307 }, + { l: 5, x: 0.1916, y: 37.6467 }, + { l: 5, x: 0.2108, y: 37.967 }, + { l: 5, x: 0.23, y: 38.2697 }, + { l: 5, x: 0.2491, y: 38.5568 }, + { l: 5, x: 0.25, y: 38.5689 }, + { l: 5, x: 0.3333, y: 39.6677 }, + { l: 5, x: 0.4167, y: 40.5716 }, + { l: 5, x: 0.5, y: 41.3228 }, + { l: 5, x: 0.5833, y: 41.9518 }, + { l: 5, x: 0.6667, y: 42.482 }, + { l: 5, x: 0.75, y: 42.9332 }, + { l: 5, x: 0.8333, y: 43.3213 }, + { l: 5, x: 0.9167, y: 43.6581 }, + { l: 5, x: 1, y: 43.9528 }, + { l: 5, x: 1.0833, y: 44.2136 }, + { l: 5, x: 1.1667, y: 44.4457 }, + { l: 5, x: 1.25, y: 44.6564 }, + { l: 5, x: 1.3333, y: 44.8476 }, + { l: 5, x: 1.4167, y: 45.0248 }, + { l: 5, x: 1.5, y: 45.1893 }, + { l: 5, x: 1.5833, y: 45.344 }, + { l: 5, x: 1.6667, y: 45.4906 }, + { l: 5, x: 1.75, y: 45.6295 }, + { l: 5, x: 1.8333, y: 45.7631 }, + { l: 5, x: 1.9167, y: 45.8904 }, + { l: 5, x: 2, y: 46.0125 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 34.3674 }, + { l: 10, x: 0.0575, y: 35.0252 }, + { l: 10, x: 0.0767, y: 35.5961 }, + { l: 10, x: 0.0833, y: 35.7792 }, + { l: 10, x: 0.0958, y: 36.1038 }, + { l: 10, x: 0.115, y: 36.5624 }, + { l: 10, x: 0.1342, y: 36.9826 }, + { l: 10, x: 0.1533, y: 37.3709 }, + { l: 10, x: 0.1667, y: 37.6256 }, + { l: 10, x: 0.1725, y: 37.7333 }, + { l: 10, x: 0.1916, y: 38.0737 }, + { l: 10, x: 0.2108, y: 38.3947 }, + { l: 10, x: 0.23, y: 38.6981 }, + { l: 10, x: 0.2491, y: 38.9862 }, + { l: 10, x: 0.25, y: 38.9984 }, + { l: 10, x: 0.3333, y: 40.1015 }, + { l: 10, x: 0.4167, y: 41.0102 }, + { l: 10, x: 0.5, y: 41.7662 }, + { l: 10, x: 0.5833, y: 42.3998 }, + { l: 10, x: 0.6667, y: 42.9343 }, + { l: 10, x: 0.75, y: 43.3896 }, + { l: 10, x: 0.8333, y: 43.7816 }, + { l: 10, x: 0.9167, y: 44.1218 }, + { l: 10, x: 1, y: 44.4195 }, + { l: 10, x: 1.0833, y: 44.6831 }, + { l: 10, x: 1.1667, y: 44.9181 }, + { l: 10, x: 1.25, y: 45.1312 }, + { l: 10, x: 1.3333, y: 45.3249 }, + { l: 10, x: 1.4167, y: 45.5044 }, + { l: 10, x: 1.5, y: 45.6712 }, + { l: 10, x: 1.5833, y: 45.8281 }, + { l: 10, x: 1.6667, y: 45.9768 }, + { l: 10, x: 1.75, y: 46.1179 }, + { l: 10, x: 1.8333, y: 46.2534 }, + { l: 10, x: 1.9167, y: 46.3828 }, + { l: 10, x: 2, y: 46.507 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 34.6539 }, + { l: 15, x: 0.0575, y: 35.3115 }, + { l: 15, x: 0.0767, y: 35.8824 }, + { l: 15, x: 0.0833, y: 36.0655 }, + { l: 15, x: 0.0958, y: 36.3902 }, + { l: 15, x: 0.115, y: 36.8491 }, + { l: 15, x: 0.1342, y: 37.2696 }, + { l: 15, x: 0.1533, y: 37.6581 }, + { l: 15, x: 0.1667, y: 37.9131 }, + { l: 15, x: 0.1725, y: 38.0209 }, + { l: 15, x: 0.1916, y: 38.3618 }, + { l: 15, x: 0.2108, y: 38.6833 }, + { l: 15, x: 0.23, y: 38.9873 }, + { l: 15, x: 0.2491, y: 39.276 }, + { l: 15, x: 0.25, y: 39.2883 }, + { l: 15, x: 0.3333, y: 40.3942 }, + { l: 15, x: 0.4167, y: 41.3063 }, + { l: 15, x: 0.5, y: 42.0655 }, + { l: 15, x: 0.5833, y: 42.7022 }, + { l: 15, x: 0.6667, y: 43.2396 }, + { l: 15, x: 0.75, y: 43.6977 }, + { l: 15, x: 0.8333, y: 44.0922 }, + { l: 15, x: 0.9167, y: 44.4347 }, + { l: 15, x: 1, y: 44.7346 }, + { l: 15, x: 1.0833, y: 45.0 }, + { l: 15, x: 1.1667, y: 45.2369 }, + { l: 15, x: 1.25, y: 45.4516 }, + { l: 15, x: 1.3333, y: 45.6471 }, + { l: 15, x: 1.4167, y: 45.8281 }, + { l: 15, x: 1.5, y: 45.9964 }, + { l: 15, x: 1.5833, y: 46.1548 }, + { l: 15, x: 1.6667, y: 46.305 }, + { l: 15, x: 1.75, y: 46.4475 }, + { l: 15, x: 1.8333, y: 46.5844 }, + { l: 15, x: 1.9167, y: 46.7152 }, + { l: 15, x: 2, y: 46.8408 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 35.8649 }, + { l: 50, x: 0.0575, y: 36.5216 }, + { l: 50, x: 0.0767, y: 37.0926 }, + { l: 50, x: 0.0833, y: 37.2759 }, + { l: 50, x: 0.0958, y: 37.601 }, + { l: 50, x: 0.115, y: 38.0609 }, + { l: 50, x: 0.1342, y: 38.4824 }, + { l: 50, x: 0.1533, y: 38.8724 }, + { l: 50, x: 0.1667, y: 39.1285 }, + { l: 50, x: 0.1725, y: 39.2368 }, + { l: 50, x: 0.1916, y: 39.5797 }, + { l: 50, x: 0.2108, y: 39.9033 }, + { l: 50, x: 0.23, y: 40.2096 }, + { l: 50, x: 0.2491, y: 40.5008 }, + { l: 50, x: 0.25, y: 40.5135 }, + { l: 50, x: 0.3333, y: 41.6317 }, + { l: 50, x: 0.4167, y: 42.5576 }, + { l: 50, x: 0.5, y: 43.3306 }, + { l: 50, x: 0.5833, y: 43.9803 }, + { l: 50, x: 0.6667, y: 44.53 }, + { l: 50, x: 0.75, y: 44.9998 }, + { l: 50, x: 0.8333, y: 45.4051 }, + { l: 50, x: 0.9167, y: 45.7573 }, + { l: 50, x: 1, y: 46.0661 }, + { l: 50, x: 1.0833, y: 46.3395 }, + { l: 50, x: 1.1667, y: 46.5844 }, + { l: 50, x: 1.25, y: 46.806 }, + { l: 50, x: 1.3333, y: 47.0088 }, + { l: 50, x: 1.4167, y: 47.1962 }, + { l: 50, x: 1.5, y: 47.3711 }, + { l: 50, x: 1.5833, y: 47.5357 }, + { l: 50, x: 1.6667, y: 47.6919 }, + { l: 50, x: 1.75, y: 47.8408 }, + { l: 50, x: 1.8333, y: 47.9833 }, + { l: 50, x: 1.9167, y: 48.1201 }, + { l: 50, x: 2, y: 48.2515 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 37.0759 }, + { l: 85, x: 0.0575, y: 37.7317 }, + { l: 85, x: 0.0767, y: 38.3028 }, + { l: 85, x: 0.0833, y: 38.4863 }, + { l: 85, x: 0.0958, y: 38.8118 }, + { l: 85, x: 0.115, y: 39.2727 }, + { l: 85, x: 0.1342, y: 39.6952 }, + { l: 85, x: 0.1533, y: 40.0867 }, + { l: 85, x: 0.1667, y: 40.3439 }, + { l: 85, x: 0.1725, y: 40.4527 }, + { l: 85, x: 0.1916, y: 40.7976 }, + { l: 85, x: 0.2108, y: 41.1233 }, + { l: 85, x: 0.23, y: 41.4319 }, + { l: 85, x: 0.2491, y: 41.7256 }, + { l: 85, x: 0.25, y: 41.7387 }, + { l: 85, x: 0.3333, y: 42.8692 }, + { l: 85, x: 0.4167, y: 43.8089 }, + { l: 85, x: 0.5, y: 44.5957 }, + { l: 85, x: 0.5833, y: 45.2584 }, + { l: 85, x: 0.6667, y: 45.8204 }, + { l: 85, x: 0.75, y: 46.3019 }, + { l: 85, x: 0.8333, y: 46.718 }, + { l: 85, x: 0.9167, y: 47.0799 }, + { l: 85, x: 1, y: 47.3976 }, + { l: 85, x: 1.0833, y: 47.679 }, + { l: 85, x: 1.1667, y: 47.9319 }, + { l: 85, x: 1.25, y: 48.1604 }, + { l: 85, x: 1.3333, y: 48.3705 }, + { l: 85, x: 1.4167, y: 48.5643 }, + { l: 85, x: 1.5, y: 48.7458 }, + { l: 85, x: 1.5833, y: 48.9166 }, + { l: 85, x: 1.6667, y: 49.0788 }, + { l: 85, x: 1.75, y: 49.2341 }, + { l: 85, x: 1.8333, y: 49.3822 }, + { l: 85, x: 1.9167, y: 49.525 }, + { l: 85, x: 2, y: 49.6622 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 37.3624 }, + { l: 90, x: 0.0575, y: 38.018 }, + { l: 90, x: 0.0767, y: 38.5891 }, + { l: 90, x: 0.0833, y: 38.7726 }, + { l: 90, x: 0.0958, y: 39.0982 }, + { l: 90, x: 0.115, y: 39.5594 }, + { l: 90, x: 0.1342, y: 39.9822 }, + { l: 90, x: 0.1533, y: 40.3739 }, + { l: 90, x: 0.1667, y: 40.6314 }, + { l: 90, x: 0.1725, y: 40.7403 }, + { l: 90, x: 0.1916, y: 41.0857 }, + { l: 90, x: 0.2108, y: 41.4119 }, + { l: 90, x: 0.23, y: 41.7211 }, + { l: 90, x: 0.2491, y: 42.0154 }, + { l: 90, x: 0.25, y: 42.0286 }, + { l: 90, x: 0.3333, y: 43.1619 }, + { l: 90, x: 0.4167, y: 44.105 }, + { l: 90, x: 0.5, y: 44.895 }, + { l: 90, x: 0.5833, y: 45.5608 }, + { l: 90, x: 0.6667, y: 46.1257 }, + { l: 90, x: 0.75, y: 46.61 }, + { l: 90, x: 0.8333, y: 47.0286 }, + { l: 90, x: 0.9167, y: 47.3928 }, + { l: 90, x: 1, y: 47.7127 }, + { l: 90, x: 1.0833, y: 47.9959 }, + { l: 90, x: 1.1667, y: 48.2507 }, + { l: 90, x: 1.25, y: 48.4808 }, + { l: 90, x: 1.3333, y: 48.6927 }, + { l: 90, x: 1.4167, y: 48.888 }, + { l: 90, x: 1.5, y: 49.071 }, + { l: 90, x: 1.5833, y: 49.2433 }, + { l: 90, x: 1.6667, y: 49.407 }, + { l: 90, x: 1.75, y: 49.5637 }, + { l: 90, x: 1.8333, y: 49.7132 }, + { l: 90, x: 1.9167, y: 49.8574 }, + { l: 90, x: 2, y: 49.996 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 37.7869 }, + { l: 95, x: 0.0575, y: 38.4422 }, + { l: 95, x: 0.0767, y: 39.0133 }, + { l: 95, x: 0.0833, y: 39.1969 }, + { l: 95, x: 0.0958, y: 39.5227 }, + { l: 95, x: 0.115, y: 39.9842 }, + { l: 95, x: 0.1342, y: 40.4073 }, + { l: 95, x: 0.1533, y: 40.7996 }, + { l: 95, x: 0.1667, y: 41.0574 }, + { l: 95, x: 0.1725, y: 41.1666 }, + { l: 95, x: 0.1916, y: 41.5127 }, + { l: 95, x: 0.2108, y: 41.8396 }, + { l: 95, x: 0.23, y: 42.1495 }, + { l: 95, x: 0.2491, y: 42.4448 }, + { l: 95, x: 0.25, y: 42.4581 }, + { l: 95, x: 0.3333, y: 43.5957 }, + { l: 95, x: 0.4167, y: 44.5436 }, + { l: 95, x: 0.5, y: 45.3384 }, + { l: 95, x: 0.5833, y: 46.0088 }, + { l: 95, x: 0.6667, y: 46.578 }, + { l: 95, x: 0.75, y: 47.0664 }, + { l: 95, x: 0.8333, y: 47.4889 }, + { l: 95, x: 0.9167, y: 47.8565 }, + { l: 95, x: 1, y: 48.1794 }, + { l: 95, x: 1.0833, y: 48.4654 }, + { l: 95, x: 1.1667, y: 48.7231 }, + { l: 95, x: 1.25, y: 48.9556 }, + { l: 95, x: 1.3333, y: 49.17 }, + { l: 95, x: 1.4167, y: 49.3676 }, + { l: 95, x: 1.5, y: 49.5529 }, + { l: 95, x: 1.5833, y: 49.7274 }, + { l: 95, x: 1.6667, y: 49.8932 }, + { l: 95, x: 1.75, y: 50.0521 }, + { l: 95, x: 1.8333, y: 50.2035 }, + { l: 95, x: 1.9167, y: 50.3498 }, + { l: 95, x: 2, y: 50.4905 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 38.0626 }, + { l: 97, x: 0.0575, y: 38.7176 }, + { l: 97, x: 0.0767, y: 39.2888 }, + { l: 97, x: 0.0833, y: 39.4724 }, + { l: 97, x: 0.0958, y: 39.7983 }, + { l: 97, x: 0.115, y: 40.26 }, + { l: 97, x: 0.1342, y: 40.6834 }, + { l: 97, x: 0.1533, y: 41.076 }, + { l: 97, x: 0.1667, y: 41.3341 }, + { l: 97, x: 0.1725, y: 41.4433 }, + { l: 97, x: 0.1916, y: 41.7899 }, + { l: 97, x: 0.2108, y: 42.1173 }, + { l: 97, x: 0.23, y: 42.4277 }, + { l: 97, x: 0.2491, y: 42.7236 }, + { l: 97, x: 0.25, y: 42.737 }, + { l: 97, x: 0.3333, y: 43.8774 }, + { l: 97, x: 0.4167, y: 44.8284 }, + { l: 97, x: 0.5, y: 45.6263 }, + { l: 97, x: 0.5833, y: 46.2997 }, + { l: 97, x: 0.6667, y: 46.8717 }, + { l: 97, x: 0.75, y: 47.3628 }, + { l: 97, x: 0.8333, y: 47.7877 }, + { l: 97, x: 0.9167, y: 48.1575 }, + { l: 97, x: 1, y: 48.4825 }, + { l: 97, x: 1.0833, y: 48.7703 }, + { l: 97, x: 1.1667, y: 49.0298 }, + { l: 97, x: 1.25, y: 49.2639 }, + { l: 97, x: 1.3333, y: 49.48 }, + { l: 97, x: 1.4167, y: 49.679 }, + { l: 97, x: 1.5, y: 49.8658 }, + { l: 97, x: 1.5833, y: 50.0417 }, + { l: 97, x: 1.6667, y: 50.2089 }, + { l: 97, x: 1.75, y: 50.3692 }, + { l: 97, x: 1.8333, y: 50.5219 }, + { l: 97, x: 1.9167, y: 50.6696 }, + { l: 97, x: 2, y: 50.8116 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 38.5831 }, + { l: 99, x: 0.0575, y: 39.2378 }, + { l: 99, x: 0.0767, y: 39.809 }, + { l: 99, x: 0.0833, y: 39.9927 }, + { l: 99, x: 0.0958, y: 40.3187 }, + { l: 99, x: 0.115, y: 40.7809 }, + { l: 99, x: 0.1342, y: 41.2048 }, + { l: 99, x: 0.1533, y: 41.5979 }, + { l: 99, x: 0.1667, y: 41.8565 }, + { l: 99, x: 0.1725, y: 41.966 }, + { l: 99, x: 0.1916, y: 42.3134 }, + { l: 99, x: 0.2108, y: 42.6417 }, + { l: 99, x: 0.23, y: 42.9531 }, + { l: 99, x: 0.2491, y: 43.2501 }, + { l: 99, x: 0.25, y: 43.2636 }, + { l: 99, x: 0.3333, y: 44.4093 }, + { l: 99, x: 0.4167, y: 45.3663 }, + { l: 99, x: 0.5, y: 46.1701 }, + { l: 99, x: 0.5833, y: 46.8491 }, + { l: 99, x: 0.6667, y: 47.4264 }, + { l: 99, x: 0.75, y: 47.9226 }, + { l: 99, x: 0.8333, y: 48.3521 }, + { l: 99, x: 0.9167, y: 48.7261 }, + { l: 99, x: 1, y: 49.0549 }, + { l: 99, x: 1.0833, y: 49.346 }, + { l: 99, x: 1.1667, y: 49.609 }, + { l: 99, x: 1.25, y: 49.8461 }, + { l: 99, x: 1.3333, y: 50.0653 }, + { l: 99, x: 1.4167, y: 50.2671 }, + { l: 99, x: 1.5, y: 50.4567 }, + { l: 99, x: 1.5833, y: 50.6353 }, + { l: 99, x: 1.6667, y: 50.805 }, + { l: 99, x: 1.75, y: 50.9681 }, + { l: 99, x: 1.8333, y: 51.1233 }, + { l: 99, x: 1.9167, y: 51.2735 }, + { l: 99, x: 2, y: 51.418 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + male: { + ofc: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 45.085 }, + { l: 1, x: 2.0833, y: 45.1984 }, + { l: 1, x: 2.1667, y: 45.306 }, + { l: 1, x: 2.25, y: 45.41 }, + { l: 1, x: 2.3333, y: 45.5095 }, + { l: 1, x: 2.4167, y: 45.6046 }, + { l: 1, x: 2.5, y: 45.6941 }, + { l: 1, x: 2.5833, y: 45.7807 }, + { l: 1, x: 2.6667, y: 45.8633 }, + { l: 1, x: 2.75, y: 45.942 }, + { l: 1, x: 2.8333, y: 46.0172 }, + { l: 1, x: 2.9167, y: 46.089 }, + { l: 1, x: 3, y: 46.1578 }, + { l: 1, x: 3.0833, y: 46.2236 }, + { l: 1, x: 3.1667, y: 46.2879 }, + { l: 1, x: 3.25, y: 46.3484 }, + { l: 1, x: 3.3333, y: 46.4067 }, + { l: 1, x: 3.4167, y: 46.4639 }, + { l: 1, x: 3.5, y: 46.518 }, + { l: 1, x: 3.5833, y: 46.5713 }, + { l: 1, x: 3.6667, y: 46.6226 }, + { l: 1, x: 3.75, y: 46.6711 }, + { l: 1, x: 3.8333, y: 46.7191 }, + { l: 1, x: 3.9167, y: 46.7654 }, + { l: 1, x: 4, y: 46.8101 }, + { l: 1, x: 3.0833, y: 46.2236 }, + { l: 1, x: 4.1667, y: 46.893 }, + { l: 1, x: 4.25, y: 46.9371 }, + { l: 1, x: 4.3333, y: 46.9801 }, + { l: 1, x: 4.4167, y: 47.0102 }, + { l: 1, x: 4.5, y: 47.051 }, + { l: 1, x: 4.5833, y: 47.0909 }, + { l: 1, x: 4.6667, y: 47.1181 }, + { l: 1, x: 4.75, y: 47.1564 }, + { l: 1, x: 4.8333, y: 47.194 }, + { l: 1, x: 4.9167, y: 47.231 }, + { l: 1, x: 5.0, y: 47.2556 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 45.6914 }, + { l: 3, x: 2.0833, y: 45.8073 }, + { l: 3, x: 2.1667, y: 45.9175 }, + { l: 3, x: 2.25, y: 46.0238 }, + { l: 3, x: 2.3333, y: 46.1255 }, + { l: 3, x: 2.4167, y: 46.2229 }, + { l: 3, x: 2.5, y: 46.3148 }, + { l: 3, x: 2.5833, y: 46.4035 }, + { l: 3, x: 2.6667, y: 46.4881 }, + { l: 3, x: 2.75, y: 46.5689 }, + { l: 3, x: 2.8333, y: 46.646 }, + { l: 3, x: 2.9167, y: 46.7198 }, + { l: 3, x: 3, y: 46.7904 }, + { l: 3, x: 3.0833, y: 46.8581 }, + { l: 3, x: 3.1667, y: 46.924 }, + { l: 3, x: 3.25, y: 46.9863 }, + { l: 3, x: 3.3333, y: 47.0463 }, + { l: 3, x: 3.4167, y: 47.105 }, + { l: 3, x: 3.5, y: 47.1608 }, + { l: 3, x: 3.5833, y: 47.2155 }, + { l: 3, x: 3.6667, y: 47.2683 }, + { l: 3, x: 3.75, y: 47.3184 }, + { l: 3, x: 3.8333, y: 47.3678 }, + { l: 3, x: 3.9167, y: 47.4154 }, + { l: 3, x: 4, y: 47.4615 }, + { l: 3, x: 3.0833, y: 46.8581 }, + { l: 3, x: 4.1667, y: 47.5475 }, + { l: 3, x: 4.25, y: 47.5922 }, + { l: 3, x: 4.3333, y: 47.6358 }, + { l: 3, x: 4.4167, y: 47.6687 }, + { l: 3, x: 4.5, y: 47.7101 }, + { l: 3, x: 4.5833, y: 47.7505 }, + { l: 3, x: 4.6667, y: 47.7805 }, + { l: 3, x: 4.75, y: 47.8193 }, + { l: 3, x: 4.8333, y: 47.8575 }, + { l: 3, x: 4.9167, y: 47.895 }, + { l: 3, x: 5.0, y: 47.9224 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 46.0125 }, + { l: 5, x: 2.0833, y: 46.1297 }, + { l: 5, x: 2.1667, y: 46.2412 }, + { l: 5, x: 2.25, y: 46.3488 }, + { l: 5, x: 2.3333, y: 46.4517 }, + { l: 5, x: 2.4167, y: 46.5502 }, + { l: 5, x: 2.5, y: 46.6435 }, + { l: 5, x: 2.5833, y: 46.7333 }, + { l: 5, x: 2.6667, y: 46.8189 }, + { l: 5, x: 2.75, y: 46.9008 }, + { l: 5, x: 2.8333, y: 46.979 }, + { l: 5, x: 2.9167, y: 47.0538 }, + { l: 5, x: 3, y: 47.1254 }, + { l: 5, x: 3.0833, y: 47.1941 }, + { l: 5, x: 3.1667, y: 47.2608 }, + { l: 5, x: 3.25, y: 47.324 }, + { l: 5, x: 3.3333, y: 47.3849 }, + { l: 5, x: 3.4167, y: 47.4445 }, + { l: 5, x: 3.5, y: 47.5011 }, + { l: 5, x: 3.5833, y: 47.5567 }, + { l: 5, x: 3.6667, y: 47.6102 }, + { l: 5, x: 3.75, y: 47.6612 }, + { l: 5, x: 3.8333, y: 47.7113 }, + { l: 5, x: 3.9167, y: 47.7596 }, + { l: 5, x: 4, y: 47.8064 }, + { l: 5, x: 3.0833, y: 47.1941 }, + { l: 5, x: 4.1667, y: 47.894 }, + { l: 5, x: 4.25, y: 47.9391 }, + { l: 5, x: 4.3333, y: 47.9829 }, + { l: 5, x: 4.4167, y: 48.0174 }, + { l: 5, x: 4.5, y: 48.0591 }, + { l: 5, x: 4.5833, y: 48.0998 }, + { l: 5, x: 4.6667, y: 48.1313 }, + { l: 5, x: 4.75, y: 48.1704 }, + { l: 5, x: 4.8333, y: 48.2088 }, + { l: 5, x: 4.9167, y: 48.2466 }, + { l: 5, x: 5.0, y: 48.2755 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 46.507 }, + { l: 10, x: 2.0833, y: 46.6262 }, + { l: 10, x: 2.1667, y: 46.7399 }, + { l: 10, x: 2.25, y: 46.8494 }, + { l: 10, x: 2.3333, y: 46.9541 }, + { l: 10, x: 2.4167, y: 47.0544 }, + { l: 10, x: 2.5, y: 47.1496 }, + { l: 10, x: 2.5833, y: 47.2411 }, + { l: 10, x: 2.6667, y: 47.3285 }, + { l: 10, x: 2.75, y: 47.412 }, + { l: 10, x: 2.8333, y: 47.4917 }, + { l: 10, x: 2.9167, y: 47.5681 }, + { l: 10, x: 3, y: 47.6413 }, + { l: 10, x: 3.0833, y: 47.7115 }, + { l: 10, x: 3.1667, y: 47.7795 }, + { l: 10, x: 3.25, y: 47.8442 }, + { l: 10, x: 3.3333, y: 47.9065 }, + { l: 10, x: 3.4167, y: 47.9673 }, + { l: 10, x: 3.5, y: 48.0253 }, + { l: 10, x: 3.5833, y: 48.082 }, + { l: 10, x: 3.6667, y: 48.1367 }, + { l: 10, x: 3.75, y: 48.1891 }, + { l: 10, x: 3.8333, y: 48.2403 }, + { l: 10, x: 3.9167, y: 48.2898 }, + { l: 10, x: 4, y: 48.3376 }, + { l: 10, x: 3.0833, y: 47.7115 }, + { l: 10, x: 4.1667, y: 48.4277 }, + { l: 10, x: 4.25, y: 48.4733 }, + { l: 10, x: 4.3333, y: 48.5176 }, + { l: 10, x: 4.4167, y: 48.5544 }, + { l: 10, x: 4.5, y: 48.5966 }, + { l: 10, x: 4.5833, y: 48.6378 }, + { l: 10, x: 4.6667, y: 48.6715 }, + { l: 10, x: 4.75, y: 48.7111 }, + { l: 10, x: 4.8333, y: 48.7499 }, + { l: 10, x: 4.9167, y: 48.7881 }, + { l: 10, x: 5.0, y: 48.8193 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 46.8408 }, + { l: 15, x: 2.0833, y: 46.9613 }, + { l: 15, x: 2.1667, y: 47.0764 }, + { l: 15, x: 2.25, y: 47.1872 }, + { l: 15, x: 2.3333, y: 47.2932 }, + { l: 15, x: 2.4167, y: 47.3947 }, + { l: 15, x: 2.5, y: 47.4912 }, + { l: 15, x: 2.5833, y: 47.5839 }, + { l: 15, x: 2.6667, y: 47.6724 }, + { l: 15, x: 2.75, y: 47.757 }, + { l: 15, x: 2.8333, y: 47.8378 }, + { l: 15, x: 2.9167, y: 47.9153 }, + { l: 15, x: 3, y: 47.9895 }, + { l: 15, x: 3.0833, y: 48.0607 }, + { l: 15, x: 3.1667, y: 48.1296 }, + { l: 15, x: 3.25, y: 48.1952 }, + { l: 15, x: 3.3333, y: 48.2586 }, + { l: 15, x: 3.4167, y: 48.3202 }, + { l: 15, x: 3.5, y: 48.3791 }, + { l: 15, x: 3.5833, y: 48.4366 }, + { l: 15, x: 3.6667, y: 48.4921 }, + { l: 15, x: 3.75, y: 48.5453 }, + { l: 15, x: 3.8333, y: 48.5973 }, + { l: 15, x: 3.9167, y: 48.6475 }, + { l: 15, x: 4, y: 48.6961 }, + { l: 15, x: 3.0833, y: 48.0607 }, + { l: 15, x: 4.1667, y: 48.788 }, + { l: 15, x: 4.25, y: 48.8338 }, + { l: 15, x: 4.3333, y: 48.8785 }, + { l: 15, x: 4.4167, y: 48.9168 }, + { l: 15, x: 4.5, y: 48.9593 }, + { l: 15, x: 4.5833, y: 49.0008 }, + { l: 15, x: 4.6667, y: 49.0361 }, + { l: 15, x: 4.75, y: 49.076 }, + { l: 15, x: 4.8333, y: 49.1151 }, + { l: 15, x: 4.9167, y: 49.1536 }, + { l: 15, x: 5.0, y: 49.1863 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 48.2515 }, + { l: 50, x: 2.0833, y: 48.3777 }, + { l: 50, x: 2.1667, y: 48.4989 }, + { l: 50, x: 2.25, y: 48.6151 }, + { l: 50, x: 2.3333, y: 48.7264 }, + { l: 50, x: 2.4167, y: 48.8331 }, + { l: 50, x: 2.5, y: 48.9351 }, + { l: 50, x: 2.5833, y: 49.0327 }, + { l: 50, x: 2.6667, y: 49.126 }, + { l: 50, x: 2.75, y: 49.2153 }, + { l: 50, x: 2.8333, y: 49.3007 }, + { l: 50, x: 2.9167, y: 49.3826 }, + { l: 50, x: 3, y: 49.4612 }, + { l: 50, x: 3.0833, y: 49.5367 }, + { l: 50, x: 3.1667, y: 49.6093 }, + { l: 50, x: 3.25, y: 49.6791 }, + { l: 50, x: 3.3333, y: 49.7465 }, + { l: 50, x: 3.4167, y: 49.8116 }, + { l: 50, x: 3.5, y: 49.8745 }, + { l: 50, x: 3.5833, y: 49.9354 }, + { l: 50, x: 3.6667, y: 49.9942 }, + { l: 50, x: 3.75, y: 50.0512 }, + { l: 50, x: 3.8333, y: 50.1064 }, + { l: 50, x: 3.9167, y: 50.1598 }, + { l: 50, x: 4, y: 50.2115 }, + { l: 50, x: 3.0833, y: 49.5367 }, + { l: 50, x: 4.1667, y: 50.3105 }, + { l: 50, x: 4.25, y: 50.3578 }, + { l: 50, x: 4.3333, y: 50.4039 }, + { l: 50, x: 4.4167, y: 50.4488 }, + { l: 50, x: 4.5, y: 50.4926 }, + { l: 50, x: 4.5833, y: 50.5354 }, + { l: 50, x: 4.6667, y: 50.5772 }, + { l: 50, x: 4.75, y: 50.6183 }, + { l: 50, x: 4.8333, y: 50.6587 }, + { l: 50, x: 4.9167, y: 50.6984 }, + { l: 50, x: 5.0, y: 50.7375 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 49.6622 }, + { l: 85, x: 2.0833, y: 49.7941 }, + { l: 85, x: 2.1667, y: 49.9214 }, + { l: 85, x: 2.25, y: 50.043 }, + { l: 85, x: 2.3333, y: 50.1596 }, + { l: 85, x: 2.4167, y: 50.2715 }, + { l: 85, x: 2.5, y: 50.379 }, + { l: 85, x: 2.5833, y: 50.4815 }, + { l: 85, x: 2.6667, y: 50.5796 }, + { l: 85, x: 2.75, y: 50.6736 }, + { l: 85, x: 2.8333, y: 50.7636 }, + { l: 85, x: 2.9167, y: 50.8499 }, + { l: 85, x: 3, y: 50.9329 }, + { l: 85, x: 3.0833, y: 51.0127 }, + { l: 85, x: 3.1667, y: 51.089 }, + { l: 85, x: 3.25, y: 51.163 }, + { l: 85, x: 3.3333, y: 51.2344 }, + { l: 85, x: 3.4167, y: 51.303 }, + { l: 85, x: 3.5, y: 51.3699 }, + { l: 85, x: 3.5833, y: 51.4342 }, + { l: 85, x: 3.6667, y: 51.4963 }, + { l: 85, x: 3.75, y: 51.5571 }, + { l: 85, x: 3.8333, y: 51.6155 }, + { l: 85, x: 3.9167, y: 51.6721 }, + { l: 85, x: 4, y: 51.7269 }, + { l: 85, x: 3.0833, y: 51.0127 }, + { l: 85, x: 4.1667, y: 51.833 }, + { l: 85, x: 4.25, y: 51.8818 }, + { l: 85, x: 4.3333, y: 51.9293 }, + { l: 85, x: 4.4167, y: 51.9808 }, + { l: 85, x: 4.5, y: 52.0259 }, + { l: 85, x: 4.5833, y: 52.07 }, + { l: 85, x: 4.6667, y: 52.1183 }, + { l: 85, x: 4.75, y: 52.1606 }, + { l: 85, x: 4.8333, y: 52.2023 }, + { l: 85, x: 4.9167, y: 52.2432 }, + { l: 85, x: 5.0, y: 52.2887 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 49.996 }, + { l: 90, x: 2.0833, y: 50.1292 }, + { l: 90, x: 2.1667, y: 50.2579 }, + { l: 90, x: 2.25, y: 50.3808 }, + { l: 90, x: 2.3333, y: 50.4987 }, + { l: 90, x: 2.4167, y: 50.6118 }, + { l: 90, x: 2.5, y: 50.7206 }, + { l: 90, x: 2.5833, y: 50.8243 }, + { l: 90, x: 2.6667, y: 50.9235 }, + { l: 90, x: 2.75, y: 51.0186 }, + { l: 90, x: 2.8333, y: 51.1097 }, + { l: 90, x: 2.9167, y: 51.1971 }, + { l: 90, x: 3, y: 51.2811 }, + { l: 90, x: 3.0833, y: 51.3619 }, + { l: 90, x: 3.1667, y: 51.4391 }, + { l: 90, x: 3.25, y: 51.514 }, + { l: 90, x: 3.3333, y: 51.5865 }, + { l: 90, x: 3.4167, y: 51.6559 }, + { l: 90, x: 3.5, y: 51.7237 }, + { l: 90, x: 3.5833, y: 51.7888 }, + { l: 90, x: 3.6667, y: 51.8517 }, + { l: 90, x: 3.75, y: 51.9133 }, + { l: 90, x: 3.8333, y: 51.9725 }, + { l: 90, x: 3.9167, y: 52.0298 }, + { l: 90, x: 4, y: 52.0854 }, + { l: 90, x: 3.0833, y: 51.3619 }, + { l: 90, x: 4.1667, y: 52.1933 }, + { l: 90, x: 4.25, y: 52.2423 }, + { l: 90, x: 4.3333, y: 52.2902 }, + { l: 90, x: 4.4167, y: 52.3432 }, + { l: 90, x: 4.5, y: 52.3886 }, + { l: 90, x: 4.5833, y: 52.433 }, + { l: 90, x: 4.6667, y: 52.4829 }, + { l: 90, x: 4.75, y: 52.5255 }, + { l: 90, x: 4.8333, y: 52.5675 }, + { l: 90, x: 4.9167, y: 52.6087 }, + { l: 90, x: 5.0, y: 52.6557 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 50.4905 }, + { l: 95, x: 2.0833, y: 50.6257 }, + { l: 95, x: 2.1667, y: 50.7566 }, + { l: 95, x: 2.25, y: 50.8814 }, + { l: 95, x: 2.3333, y: 51.0011 }, + { l: 95, x: 2.4167, y: 51.116 }, + { l: 95, x: 2.5, y: 51.2267 }, + { l: 95, x: 2.5833, y: 51.3321 }, + { l: 95, x: 2.6667, y: 51.4331 }, + { l: 95, x: 2.75, y: 51.5298 }, + { l: 95, x: 2.8333, y: 51.6224 }, + { l: 95, x: 2.9167, y: 51.7114 }, + { l: 95, x: 3, y: 51.797 }, + { l: 95, x: 3.0833, y: 51.8793 }, + { l: 95, x: 3.1667, y: 51.9578 }, + { l: 95, x: 3.25, y: 52.0342 }, + { l: 95, x: 3.3333, y: 52.1081 }, + { l: 95, x: 3.4167, y: 52.1787 }, + { l: 95, x: 3.5, y: 52.2479 }, + { l: 95, x: 3.5833, y: 52.3141 }, + { l: 95, x: 3.6667, y: 52.3782 }, + { l: 95, x: 3.75, y: 52.4412 }, + { l: 95, x: 3.8333, y: 52.5015 }, + { l: 95, x: 3.9167, y: 52.56 }, + { l: 95, x: 4, y: 52.6166 }, + { l: 95, x: 3.0833, y: 51.8793 }, + { l: 95, x: 4.1667, y: 52.727 }, + { l: 95, x: 4.25, y: 52.7765 }, + { l: 95, x: 4.3333, y: 52.8249 }, + { l: 95, x: 4.4167, y: 52.8802 }, + { l: 95, x: 4.5, y: 52.9261 }, + { l: 95, x: 4.5833, y: 52.971 }, + { l: 95, x: 4.6667, y: 53.0231 }, + { l: 95, x: 4.75, y: 53.0662 }, + { l: 95, x: 4.8333, y: 53.1086 }, + { l: 95, x: 4.9167, y: 53.1502 }, + { l: 95, x: 5.0, y: 53.1995 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 50.8116 }, + { l: 97, x: 2.0833, y: 50.9481 }, + { l: 97, x: 2.1667, y: 51.0803 }, + { l: 97, x: 2.25, y: 51.2064 }, + { l: 97, x: 2.3333, y: 51.3273 }, + { l: 97, x: 2.4167, y: 51.4433 }, + { l: 97, x: 2.5, y: 51.5554 }, + { l: 97, x: 2.5833, y: 51.6619 }, + { l: 97, x: 2.6667, y: 51.7639 }, + { l: 97, x: 2.75, y: 51.8617 }, + { l: 97, x: 2.8333, y: 51.9554 }, + { l: 97, x: 2.9167, y: 52.0454 }, + { l: 97, x: 3, y: 52.132 }, + { l: 97, x: 3.0833, y: 52.2153 }, + { l: 97, x: 3.1667, y: 52.2946 }, + { l: 97, x: 3.25, y: 52.3719 }, + { l: 97, x: 3.3333, y: 52.4467 }, + { l: 97, x: 3.4167, y: 52.5182 }, + { l: 97, x: 3.5, y: 52.5882 }, + { l: 97, x: 3.5833, y: 52.6553 }, + { l: 97, x: 3.6667, y: 52.7201 }, + { l: 97, x: 3.75, y: 52.784 }, + { l: 97, x: 3.8333, y: 52.845 }, + { l: 97, x: 3.9167, y: 52.9042 }, + { l: 97, x: 4, y: 52.9615 }, + { l: 97, x: 3.0833, y: 52.2153 }, + { l: 97, x: 4.1667, y: 53.0735 }, + { l: 97, x: 4.25, y: 53.1234 }, + { l: 97, x: 4.3333, y: 53.172 }, + { l: 97, x: 4.4167, y: 53.2289 }, + { l: 97, x: 4.5, y: 53.2751 }, + { l: 97, x: 4.5833, y: 53.3203 }, + { l: 97, x: 4.6667, y: 53.3739 }, + { l: 97, x: 4.75, y: 53.4173 }, + { l: 97, x: 4.8333, y: 53.4599 }, + { l: 97, x: 4.9167, y: 53.5018 }, + { l: 97, x: 5.0, y: 53.5526 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 51.418 }, + { l: 99, x: 2.0833, y: 51.557 }, + { l: 99, x: 2.1667, y: 51.6918 }, + { l: 99, x: 2.25, y: 51.8202 }, + { l: 99, x: 2.3333, y: 51.9433 }, + { l: 99, x: 2.4167, y: 52.0616 }, + { l: 99, x: 2.5, y: 52.1761 }, + { l: 99, x: 2.5833, y: 52.2847 }, + { l: 99, x: 2.6667, y: 52.3887 }, + { l: 99, x: 2.75, y: 52.4886 }, + { l: 99, x: 2.8333, y: 52.5842 }, + { l: 99, x: 2.9167, y: 52.6762 }, + { l: 99, x: 3, y: 52.7646 }, + { l: 99, x: 3.0833, y: 52.8498 }, + { l: 99, x: 3.1667, y: 52.9307 }, + { l: 99, x: 3.25, y: 53.0098 }, + { l: 99, x: 3.3333, y: 53.0863 }, + { l: 99, x: 3.4167, y: 53.1593 }, + { l: 99, x: 3.5, y: 53.231 }, + { l: 99, x: 3.5833, y: 53.2995 }, + { l: 99, x: 3.6667, y: 53.3658 }, + { l: 99, x: 3.75, y: 53.4313 }, + { l: 99, x: 3.8333, y: 53.4937 }, + { l: 99, x: 3.9167, y: 53.5542 }, + { l: 99, x: 4, y: 53.6129 }, + { l: 99, x: 3.0833, y: 52.8498 }, + { l: 99, x: 4.1667, y: 53.728 }, + { l: 99, x: 4.25, y: 53.7785 }, + { l: 99, x: 4.3333, y: 53.8277 }, + { l: 99, x: 4.4167, y: 53.8874 }, + { l: 99, x: 4.5, y: 53.9342 }, + { l: 99, x: 4.5833, y: 53.9799 }, + { l: 99, x: 4.6667, y: 54.0363 }, + { l: 99, x: 4.75, y: 54.0802 }, + { l: 99, x: 4.8333, y: 54.1234 }, + { l: 99, x: 4.9167, y: 54.1658 }, + { l: 99, x: 5.0, y: 54.2194 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + male: { + ofc: [ + { sds: -2.33, centile: 1, data: [] }, + { sds: -1.88, centile: 3, data: [] }, + { sds: -1.64, centile: 5, data: [] }, + { sds: -1.28, centile: 10, data: [] }, + { sds: -1.04, centile: 15, data: [] }, + { sds: 0.0, centile: 50, data: [] }, + { sds: 1.04, centile: 85, data: [] }, + { sds: 1.28, centile: 90, data: [] }, + { sds: 1.64, centile: 95, data: [] }, + { sds: 1.88, centile: 97, data: [] }, + { sds: 2.33, centile: 99, data: [] }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_weight_female_centile_data.ts b/src/chartdata/who_weight_female_centile_data.ts new file mode 100644 index 0000000..7f9e4c5 --- /dev/null +++ b/src/chartdata/who_weight_female_centile_data.ts @@ -0,0 +1,1691 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoWeightFemaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + female: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 2.5226 }, + { l: 1, x: 0.0575, y: 2.7341 }, + { l: 1, x: 0.0767, y: 2.9445 }, + { l: 1, x: 0.0833, y: 3.0154 }, + { l: 1, x: 0.0958, y: 3.1439 }, + { l: 1, x: 0.115, y: 3.3302 }, + { l: 1, x: 0.1342, y: 3.504 }, + { l: 1, x: 0.1533, y: 3.6661 }, + { l: 1, x: 0.1667, y: 3.7729 }, + { l: 1, x: 0.1725, y: 3.818 }, + { l: 1, x: 0.1916, y: 3.9613 }, + { l: 1, x: 0.2108, y: 4.0965 }, + { l: 1, x: 0.23, y: 4.2244 }, + { l: 1, x: 0.2491, y: 4.3458 }, + { l: 1, x: 0.25, y: 4.3511 }, + { l: 1, x: 0.3333, y: 4.8148 }, + { l: 1, x: 0.4167, y: 5.194 }, + { l: 1, x: 0.5, y: 5.51 }, + { l: 1, x: 0.5833, y: 5.7804 }, + { l: 1, x: 0.6667, y: 6.0176 }, + { l: 1, x: 0.75, y: 6.2298 }, + { l: 1, x: 0.8333, y: 6.4239 }, + { l: 1, x: 0.9167, y: 6.6059 }, + { l: 1, x: 1, y: 6.7801 }, + { l: 1, x: 1.0833, y: 6.9494 }, + { l: 1, x: 1.1667, y: 7.1154 }, + { l: 1, x: 1.25, y: 7.2796 }, + { l: 1, x: 1.3333, y: 7.442 }, + { l: 1, x: 1.4167, y: 7.6033 }, + { l: 1, x: 1.5, y: 7.7634 }, + { l: 1, x: 1.5833, y: 7.922 }, + { l: 1, x: 1.6667, y: 8.0795 }, + { l: 1, x: 1.75, y: 8.2361 }, + { l: 1, x: 1.8333, y: 8.3923 }, + { l: 1, x: 1.9167, y: 8.5479 }, + { l: 1, x: 2, y: 8.7035 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 2.7019 }, + { l: 3, x: 0.0575, y: 2.9225 }, + { l: 3, x: 0.0767, y: 3.1418 }, + { l: 3, x: 0.0833, y: 3.2157 }, + { l: 3, x: 0.0958, y: 3.3496 }, + { l: 3, x: 0.115, y: 3.5436 }, + { l: 3, x: 0.1342, y: 3.7244 }, + { l: 3, x: 0.1533, y: 3.8931 }, + { l: 3, x: 0.1667, y: 4.0041 }, + { l: 3, x: 0.1725, y: 4.0511 }, + { l: 3, x: 0.1916, y: 4.2001 }, + { l: 3, x: 0.2108, y: 4.3407 }, + { l: 3, x: 0.23, y: 4.4737 }, + { l: 3, x: 0.2491, y: 4.6 }, + { l: 3, x: 0.25, y: 4.6055 }, + { l: 3, x: 0.3333, y: 5.0879 }, + { l: 3, x: 0.4167, y: 5.4827 }, + { l: 3, x: 0.5, y: 5.8119 }, + { l: 3, x: 0.5833, y: 6.0941 }, + { l: 3, x: 0.6667, y: 6.3422 }, + { l: 3, x: 0.75, y: 6.5644 }, + { l: 3, x: 0.8333, y: 6.768 }, + { l: 3, x: 0.9167, y: 6.9588 }, + { l: 3, x: 1, y: 7.1416 }, + { l: 3, x: 1.0833, y: 7.3191 }, + { l: 3, x: 1.1667, y: 7.4931 }, + { l: 3, x: 1.25, y: 7.6651 }, + { l: 3, x: 1.3333, y: 7.8353 }, + { l: 3, x: 1.4167, y: 8.0044 }, + { l: 3, x: 1.5, y: 8.1723 }, + { l: 3, x: 1.5833, y: 8.3388 }, + { l: 3, x: 1.6667, y: 8.5043 }, + { l: 3, x: 1.75, y: 8.6689 }, + { l: 3, x: 1.8333, y: 8.8333 }, + { l: 3, x: 1.9167, y: 8.9973 }, + { l: 3, x: 2, y: 9.1614 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 2.8007 }, + { l: 5, x: 0.0575, y: 3.0264 }, + { l: 5, x: 0.0767, y: 3.2506 }, + { l: 5, x: 0.0833, y: 3.3262 }, + { l: 5, x: 0.0958, y: 3.4631 }, + { l: 5, x: 0.115, y: 3.6613 }, + { l: 5, x: 0.1342, y: 3.846 }, + { l: 5, x: 0.1533, y: 4.0182 }, + { l: 5, x: 0.1667, y: 4.1317 }, + { l: 5, x: 0.1725, y: 4.1796 }, + { l: 5, x: 0.1916, y: 4.3318 }, + { l: 5, x: 0.2108, y: 4.4754 }, + { l: 5, x: 0.23, y: 4.6113 }, + { l: 5, x: 0.2491, y: 4.7403 }, + { l: 5, x: 0.25, y: 4.7459 }, + { l: 5, x: 0.3333, y: 5.2388 }, + { l: 5, x: 0.4167, y: 5.6422 }, + { l: 5, x: 0.5, y: 5.9788 }, + { l: 5, x: 0.5833, y: 6.2678 }, + { l: 5, x: 0.6667, y: 6.522 }, + { l: 5, x: 0.75, y: 6.75 }, + { l: 5, x: 0.8333, y: 6.9588 }, + { l: 5, x: 0.9167, y: 7.1548 }, + { l: 5, x: 1, y: 7.3423 }, + { l: 5, x: 1.0833, y: 7.5245 }, + { l: 5, x: 1.1667, y: 7.7031 }, + { l: 5, x: 1.25, y: 7.8795 }, + { l: 5, x: 1.3333, y: 8.0541 }, + { l: 5, x: 1.4167, y: 8.2276 }, + { l: 5, x: 1.5, y: 8.3999 }, + { l: 5, x: 1.5833, y: 8.5708 }, + { l: 5, x: 1.6667, y: 8.7407 }, + { l: 5, x: 1.75, y: 8.9099 }, + { l: 5, x: 1.8333, y: 9.0789 }, + { l: 5, x: 1.9167, y: 9.2476 }, + { l: 5, x: 2, y: 9.4165 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 2.9582 }, + { l: 10, x: 0.0575, y: 3.192 }, + { l: 10, x: 0.0767, y: 3.4243 }, + { l: 10, x: 0.0833, y: 3.5025 }, + { l: 10, x: 0.0958, y: 3.6441 }, + { l: 10, x: 0.115, y: 3.849 }, + { l: 10, x: 0.1342, y: 4.0401 }, + { l: 10, x: 0.1533, y: 4.2181 }, + { l: 10, x: 0.1667, y: 4.3353 }, + { l: 10, x: 0.1725, y: 4.3849 }, + { l: 10, x: 0.1916, y: 4.5422 }, + { l: 10, x: 0.2108, y: 4.6906 }, + { l: 10, x: 0.23, y: 4.8311 }, + { l: 10, x: 0.2491, y: 4.9645 }, + { l: 10, x: 0.25, y: 4.9703 }, + { l: 10, x: 0.3333, y: 5.48 }, + { l: 10, x: 0.4167, y: 5.8975 }, + { l: 10, x: 0.5, y: 6.2462 }, + { l: 10, x: 0.5833, y: 6.5461 }, + { l: 10, x: 0.6667, y: 6.8104 }, + { l: 10, x: 0.75, y: 7.0477 }, + { l: 10, x: 0.8333, y: 7.2653 }, + { l: 10, x: 0.9167, y: 7.4695 }, + { l: 10, x: 1, y: 7.665 }, + { l: 10, x: 1.0833, y: 7.8548 }, + { l: 10, x: 1.1667, y: 8.0408 }, + { l: 10, x: 1.25, y: 8.2245 }, + { l: 10, x: 1.3333, y: 8.4062 }, + { l: 10, x: 1.4167, y: 8.5868 }, + { l: 10, x: 1.5, y: 8.7663 }, + { l: 10, x: 1.5833, y: 8.9444 }, + { l: 10, x: 1.6667, y: 9.1215 }, + { l: 10, x: 1.75, y: 9.2981 }, + { l: 10, x: 1.8333, y: 9.4746 }, + { l: 10, x: 1.9167, y: 9.6509 }, + { l: 10, x: 2, y: 9.8276 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 3.0684 }, + { l: 15, x: 0.0575, y: 3.3079 }, + { l: 15, x: 0.0767, y: 3.5457 }, + { l: 15, x: 0.0833, y: 3.6257 }, + { l: 15, x: 0.0958, y: 3.7707 }, + { l: 15, x: 0.115, y: 3.9804 }, + { l: 15, x: 0.1342, y: 4.1758 }, + { l: 15, x: 0.1533, y: 4.3579 }, + { l: 15, x: 0.1667, y: 4.4778 }, + { l: 15, x: 0.1725, y: 4.5285 }, + { l: 15, x: 0.1916, y: 4.6894 }, + { l: 15, x: 0.2108, y: 4.8413 }, + { l: 15, x: 0.23, y: 4.985 }, + { l: 15, x: 0.2491, y: 5.1215 }, + { l: 15, x: 0.25, y: 5.1274 }, + { l: 15, x: 0.3333, y: 5.6491 }, + { l: 15, x: 0.4167, y: 6.0766 }, + { l: 15, x: 0.5, y: 6.4339 }, + { l: 15, x: 0.5833, y: 6.7416 }, + { l: 15, x: 0.6667, y: 7.0131 }, + { l: 15, x: 0.75, y: 7.2571 }, + { l: 15, x: 0.8333, y: 7.4811 }, + { l: 15, x: 0.9167, y: 7.6913 }, + { l: 15, x: 1, y: 7.8924 }, + { l: 15, x: 1.0833, y: 8.0877 }, + { l: 15, x: 1.1667, y: 8.279 }, + { l: 15, x: 1.25, y: 8.4679 }, + { l: 15, x: 1.3333, y: 8.6548 }, + { l: 15, x: 1.4167, y: 8.8405 }, + { l: 15, x: 1.5, y: 9.025 }, + { l: 15, x: 1.5833, y: 9.2082 }, + { l: 15, x: 1.6667, y: 9.3906 }, + { l: 15, x: 1.75, y: 9.5724 }, + { l: 15, x: 1.8333, y: 9.7542 }, + { l: 15, x: 1.9167, y: 9.9361 }, + { l: 15, x: 2, y: 10.1183 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 3.5693 }, + { l: 50, x: 0.0575, y: 3.8352 }, + { l: 50, x: 0.0767, y: 4.0987 }, + { l: 50, x: 0.0833, y: 4.1873 }, + { l: 50, x: 0.0958, y: 4.3476 }, + { l: 50, x: 0.115, y: 4.5793 }, + { l: 50, x: 0.1342, y: 4.795 }, + { l: 50, x: 0.1533, y: 4.9959 }, + { l: 50, x: 0.1667, y: 5.1282 }, + { l: 50, x: 0.1725, y: 5.1842 }, + { l: 50, x: 0.1916, y: 5.3618 }, + { l: 50, x: 0.2108, y: 5.5295 }, + { l: 50, x: 0.23, y: 5.6883 }, + { l: 50, x: 0.2491, y: 5.8393 }, + { l: 50, x: 0.25, y: 5.8458 }, + { l: 50, x: 0.3333, y: 6.4237 }, + { l: 50, x: 0.4167, y: 6.8985 }, + { l: 50, x: 0.5, y: 7.297 }, + { l: 50, x: 0.5833, y: 7.6422 }, + { l: 50, x: 0.6667, y: 7.9487 }, + { l: 50, x: 0.75, y: 8.2254 }, + { l: 50, x: 0.8333, y: 8.48 }, + { l: 50, x: 0.9167, y: 8.7192 }, + { l: 50, x: 1, y: 8.9481 }, + { l: 50, x: 1.0833, y: 9.1699 }, + { l: 50, x: 1.1667, y: 9.387 }, + { l: 50, x: 1.25, y: 9.6008 }, + { l: 50, x: 1.3333, y: 9.8124 }, + { l: 50, x: 1.4167, y: 10.0226 }, + { l: 50, x: 1.5, y: 10.2315 }, + { l: 50, x: 1.5833, y: 10.4393 }, + { l: 50, x: 1.6667, y: 10.6464 }, + { l: 50, x: 1.75, y: 10.8534 }, + { l: 50, x: 1.8333, y: 11.0608 }, + { l: 50, x: 1.9167, y: 11.2688 }, + { l: 50, x: 2, y: 11.4775 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 4.1309 }, + { l: 85, x: 0.0575, y: 4.4275 }, + { l: 85, x: 0.0767, y: 4.7206 }, + { l: 85, x: 0.0833, y: 4.8191 }, + { l: 85, x: 0.0958, y: 4.9971 }, + { l: 85, x: 0.115, y: 5.2541 }, + { l: 85, x: 0.1342, y: 5.4933 }, + { l: 85, x: 0.1533, y: 5.7161 }, + { l: 85, x: 0.1667, y: 5.8628 }, + { l: 85, x: 0.1725, y: 5.925 }, + { l: 85, x: 0.1916, y: 6.1221 }, + { l: 85, x: 0.2108, y: 6.3084 }, + { l: 85, x: 0.23, y: 6.485 }, + { l: 85, x: 0.2491, y: 6.6531 }, + { l: 85, x: 0.25, y: 6.6603 }, + { l: 85, x: 0.3333, y: 7.3051 }, + { l: 85, x: 0.4167, y: 7.837 }, + { l: 85, x: 0.5, y: 8.2859 }, + { l: 85, x: 0.5833, y: 8.6775 }, + { l: 85, x: 0.6667, y: 9.0276 }, + { l: 85, x: 0.75, y: 9.3453 }, + { l: 85, x: 0.8333, y: 9.6386 }, + { l: 85, x: 0.9167, y: 9.9144 }, + { l: 85, x: 1, y: 10.1782 }, + { l: 85, x: 1.0833, y: 10.4334 }, + { l: 85, x: 1.1667, y: 10.6827 }, + { l: 85, x: 1.25, y: 10.9276 }, + { l: 85, x: 1.3333, y: 11.1698 }, + { l: 85, x: 1.4167, y: 11.4103 }, + { l: 85, x: 1.5, y: 11.6492 }, + { l: 85, x: 1.5833, y: 11.8872 }, + { l: 85, x: 1.6667, y: 12.1247 }, + { l: 85, x: 1.75, y: 12.3626 }, + { l: 85, x: 1.8333, y: 12.6014 }, + { l: 85, x: 1.9167, y: 12.8414 }, + { l: 85, x: 2, y: 13.0826 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 4.2732 }, + { l: 90, x: 0.0575, y: 4.5777 }, + { l: 90, x: 0.0767, y: 4.8786 }, + { l: 90, x: 0.0833, y: 4.9796 }, + { l: 90, x: 0.0958, y: 5.1621 }, + { l: 90, x: 0.115, y: 5.4257 }, + { l: 90, x: 0.1342, y: 5.671 }, + { l: 90, x: 0.1533, y: 5.8995 }, + { l: 90, x: 0.1667, y: 6.0499 }, + { l: 90, x: 0.1725, y: 6.1137 }, + { l: 90, x: 0.1916, y: 6.3159 }, + { l: 90, x: 0.2108, y: 6.5071 }, + { l: 90, x: 0.23, y: 6.6884 }, + { l: 90, x: 0.2491, y: 6.8609 }, + { l: 90, x: 0.25, y: 6.8684 }, + { l: 90, x: 0.3333, y: 7.5308 }, + { l: 90, x: 0.4167, y: 8.078 }, + { l: 90, x: 0.5, y: 8.5403 }, + { l: 90, x: 0.5833, y: 8.9445 }, + { l: 90, x: 0.6667, y: 9.3065 }, + { l: 90, x: 0.75, y: 9.6354 }, + { l: 90, x: 0.8333, y: 9.9392 }, + { l: 90, x: 0.9167, y: 10.225 }, + { l: 90, x: 1, y: 10.4984 }, + { l: 90, x: 1.0833, y: 10.7626 }, + { l: 90, x: 1.1667, y: 11.0208 }, + { l: 90, x: 1.25, y: 11.2741 }, + { l: 90, x: 1.3333, y: 11.5246 }, + { l: 90, x: 1.4167, y: 11.7733 }, + { l: 90, x: 1.5, y: 12.0203 }, + { l: 90, x: 1.5833, y: 12.2665 }, + { l: 90, x: 1.6667, y: 12.5122 }, + { l: 90, x: 1.75, y: 12.7584 }, + { l: 90, x: 1.8333, y: 13.0056 }, + { l: 90, x: 1.9167, y: 13.2543 }, + { l: 90, x: 2, y: 13.5043 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 4.4909 }, + { l: 95, x: 0.0575, y: 4.8078 }, + { l: 95, x: 0.0767, y: 5.1205 }, + { l: 95, x: 0.0833, y: 5.2255 }, + { l: 95, x: 0.0958, y: 5.4151 }, + { l: 95, x: 0.115, y: 5.6889 }, + { l: 95, x: 0.1342, y: 5.9436 }, + { l: 95, x: 0.1533, y: 6.1808 }, + { l: 95, x: 0.1667, y: 6.3371 }, + { l: 95, x: 0.1725, y: 6.4034 }, + { l: 95, x: 0.1916, y: 6.6136 }, + { l: 95, x: 0.2108, y: 6.8123 }, + { l: 95, x: 0.23, y: 7.0008 }, + { l: 95, x: 0.2491, y: 7.1804 }, + { l: 95, x: 0.25, y: 7.1881 }, + { l: 95, x: 0.3333, y: 7.8782 }, + { l: 95, x: 0.4167, y: 8.4493 }, + { l: 95, x: 0.5, y: 8.9329 }, + { l: 95, x: 0.5833, y: 9.3569 }, + { l: 95, x: 0.6667, y: 9.7377 }, + { l: 95, x: 0.75, y: 10.0844 }, + { l: 95, x: 0.8333, y: 10.405 }, + { l: 95, x: 0.9167, y: 10.7068 }, + { l: 95, x: 1, y: 10.9954 }, + { l: 95, x: 1.0833, y: 11.2741 }, + { l: 95, x: 1.1667, y: 11.5462 }, + { l: 95, x: 1.25, y: 11.8129 }, + { l: 95, x: 1.3333, y: 12.0766 }, + { l: 95, x: 1.4167, y: 12.3382 }, + { l: 95, x: 1.5, y: 12.5981 }, + { l: 95, x: 1.5833, y: 12.8572 }, + { l: 95, x: 1.6667, y: 13.1158 }, + { l: 95, x: 1.75, y: 13.3752 }, + { l: 95, x: 1.8333, y: 13.6358 }, + { l: 95, x: 1.9167, y: 13.8981 }, + { l: 95, x: 2, y: 14.1619 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 4.6367 }, + { l: 97, x: 0.0575, y: 4.9621 }, + { l: 97, x: 0.0767, y: 5.2828 }, + { l: 97, x: 0.0833, y: 5.3905 }, + { l: 97, x: 0.0958, y: 5.5849 }, + { l: 97, x: 0.115, y: 5.8656 }, + { l: 97, x: 0.1342, y: 6.1267 }, + { l: 97, x: 0.1533, y: 6.3699 }, + { l: 97, x: 0.1667, y: 6.5301 }, + { l: 97, x: 0.1725, y: 6.5982 }, + { l: 97, x: 0.1916, y: 6.8137 }, + { l: 97, x: 0.2108, y: 7.0176 }, + { l: 97, x: 0.23, y: 7.2111 }, + { l: 97, x: 0.2491, y: 7.3955 }, + { l: 97, x: 0.25, y: 7.4034 }, + { l: 97, x: 0.3333, y: 8.1123 }, + { l: 97, x: 0.4167, y: 8.6999 }, + { l: 97, x: 0.5, y: 9.1982 }, + { l: 97, x: 0.5833, y: 9.6359 }, + { l: 97, x: 0.6667, y: 10.0298 }, + { l: 97, x: 0.75, y: 10.3888 }, + { l: 97, x: 0.8333, y: 10.7211 }, + { l: 97, x: 0.9167, y: 11.034 }, + { l: 97, x: 1, y: 11.3332 }, + { l: 97, x: 1.0833, y: 11.622 }, + { l: 97, x: 1.1667, y: 11.9039 }, + { l: 97, x: 1.25, y: 12.1799 }, + { l: 97, x: 1.3333, y: 12.4527 }, + { l: 97, x: 1.4167, y: 12.7234 }, + { l: 97, x: 1.5, y: 12.9922 }, + { l: 97, x: 1.5833, y: 13.2602 }, + { l: 97, x: 1.6667, y: 13.5278 }, + { l: 97, x: 1.75, y: 13.7963 }, + { l: 97, x: 1.8333, y: 14.0661 }, + { l: 97, x: 1.9167, y: 14.3378 }, + { l: 97, x: 2, y: 14.6112 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 4.9221 }, + { l: 99, x: 0.0575, y: 5.2642 }, + { l: 99, x: 0.0767, y: 5.6009 }, + { l: 99, x: 0.0833, y: 5.7138 }, + { l: 99, x: 0.0958, y: 5.9178 }, + { l: 99, x: 0.115, y: 6.2121 }, + { l: 99, x: 0.1342, y: 6.486 }, + { l: 99, x: 0.1533, y: 6.7411 }, + { l: 99, x: 0.1667, y: 6.9092 }, + { l: 99, x: 0.1725, y: 6.9807 }, + { l: 99, x: 0.1916, y: 7.207 }, + { l: 99, x: 0.2108, y: 7.4212 }, + { l: 99, x: 0.23, y: 7.6246 }, + { l: 99, x: 0.2491, y: 7.8185 }, + { l: 99, x: 0.25, y: 7.8269 }, + { l: 99, x: 0.3333, y: 8.5738 }, + { l: 99, x: 0.4167, y: 9.1945 }, + { l: 99, x: 0.5, y: 9.7226 }, + { l: 99, x: 0.5833, y: 10.1883 }, + { l: 99, x: 0.6667, y: 10.6087 }, + { l: 99, x: 0.75, y: 10.993 }, + { l: 99, x: 0.8333, y: 11.3493 }, + { l: 99, x: 0.9167, y: 11.685 }, + { l: 99, x: 1, y: 12.006 }, + { l: 99, x: 1.0833, y: 12.3155 }, + { l: 99, x: 1.1667, y: 12.6172 }, + { l: 99, x: 1.25, y: 12.9123 }, + { l: 99, x: 1.3333, y: 13.2038 }, + { l: 99, x: 1.4167, y: 13.4928 }, + { l: 99, x: 1.5, y: 13.7798 }, + { l: 99, x: 1.5833, y: 14.066 }, + { l: 99, x: 1.6667, y: 14.3518 }, + { l: 99, x: 1.75, y: 14.6389 }, + { l: 99, x: 1.8333, y: 14.9275 }, + { l: 99, x: 1.9167, y: 15.2185 }, + { l: 99, x: 2, y: 15.5113 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + female: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 8.7035 }, + { l: 1, x: 2.0833, y: 8.8585 }, + { l: 1, x: 2.1667, y: 9.0122 }, + { l: 1, x: 2.25, y: 9.1637 }, + { l: 1, x: 2.3333, y: 9.3126 }, + { l: 1, x: 2.4167, y: 9.458 }, + { l: 1, x: 2.5, y: 9.6 }, + { l: 1, x: 2.5833, y: 9.7386 }, + { l: 1, x: 2.6667, y: 9.874 }, + { l: 1, x: 2.75, y: 10.0069 }, + { l: 1, x: 2.8333, y: 10.138 }, + { l: 1, x: 2.9167, y: 10.2672 }, + { l: 1, x: 3, y: 10.3954 }, + { l: 1, x: 3.0833, y: 10.5219 }, + { l: 1, x: 3.1667, y: 10.6474 }, + { l: 1, x: 3.25, y: 10.7709 }, + { l: 1, x: 3.3333, y: 10.8933 }, + { l: 1, x: 3.4167, y: 11.0142 }, + { l: 1, x: 3.5, y: 11.1334 }, + { l: 1, x: 3.5833, y: 11.2513 }, + { l: 1, x: 3.6667, y: 11.368 }, + { l: 1, x: 3.75, y: 11.4837 }, + { l: 1, x: 3.8333, y: 11.5982 }, + { l: 1, x: 3.9167, y: 11.7125 }, + { l: 1, x: 4, y: 11.8261 }, + { l: 1, x: 3.0833, y: 10.5219 }, + { l: 1, x: 4.1667, y: 12.052 }, + { l: 1, x: 4.25, y: 12.165 }, + { l: 1, x: 4.3333, y: 12.2774 }, + { l: 1, x: 4.4167, y: 12.3895 }, + { l: 1, x: 4.5, y: 12.5015 }, + { l: 1, x: 4.5833, y: 12.6129 }, + { l: 1, x: 4.6667, y: 12.7235 }, + { l: 1, x: 4.75, y: 12.8336 }, + { l: 1, x: 4.8333, y: 12.9426 }, + { l: 1, x: 4.9167, y: 13.051 }, + { l: 1, x: 5.0, y: 13.1584 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 9.1614 }, + { l: 3, x: 2.0833, y: 9.325 }, + { l: 3, x: 2.1667, y: 9.4874 }, + { l: 3, x: 2.25, y: 9.6477 }, + { l: 3, x: 2.3333, y: 9.8054 }, + { l: 3, x: 2.4167, y: 9.9597 }, + { l: 3, x: 2.5, y: 10.1106 }, + { l: 3, x: 2.5833, y: 10.2581 }, + { l: 3, x: 2.6667, y: 10.4025 }, + { l: 3, x: 2.75, y: 10.5445 }, + { l: 3, x: 2.8333, y: 10.6846 }, + { l: 3, x: 2.9167, y: 10.8231 }, + { l: 3, x: 3, y: 10.9607 }, + { l: 3, x: 3.0833, y: 11.0967 }, + { l: 3, x: 3.1667, y: 11.2318 }, + { l: 3, x: 3.25, y: 11.3652 }, + { l: 3, x: 3.3333, y: 11.4975 }, + { l: 3, x: 3.4167, y: 11.6284 }, + { l: 3, x: 3.5, y: 11.7576 }, + { l: 3, x: 3.5833, y: 11.8857 }, + { l: 3, x: 3.6667, y: 12.0125 }, + { l: 3, x: 3.75, y: 12.1383 }, + { l: 3, x: 3.8333, y: 12.2631 }, + { l: 3, x: 3.9167, y: 12.3875 }, + { l: 3, x: 4, y: 12.5113 }, + { l: 3, x: 3.0833, y: 11.0967 }, + { l: 3, x: 4.1667, y: 12.7577 }, + { l: 3, x: 4.25, y: 12.8808 }, + { l: 3, x: 4.3333, y: 13.0035 }, + { l: 3, x: 4.4167, y: 13.1258 }, + { l: 3, x: 4.5, y: 13.248 }, + { l: 3, x: 4.5833, y: 13.3695 }, + { l: 3, x: 4.6667, y: 13.4902 }, + { l: 3, x: 4.75, y: 13.6103 }, + { l: 3, x: 4.8333, y: 13.7294 }, + { l: 3, x: 4.9167, y: 13.8478 }, + { l: 3, x: 5.0, y: 13.9651 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 9.4165 }, + { l: 5, x: 2.0833, y: 9.5849 }, + { l: 5, x: 2.1667, y: 9.7522 }, + { l: 5, x: 2.25, y: 9.9175 }, + { l: 5, x: 2.3333, y: 10.0802 }, + { l: 5, x: 2.4167, y: 10.2395 }, + { l: 5, x: 2.5, y: 10.3954 }, + { l: 5, x: 2.5833, y: 10.548 }, + { l: 5, x: 2.6667, y: 10.6974 }, + { l: 5, x: 2.75, y: 10.8445 }, + { l: 5, x: 2.8333, y: 10.9898 }, + { l: 5, x: 2.9167, y: 11.1336 }, + { l: 5, x: 3, y: 11.2765 }, + { l: 5, x: 3.0833, y: 11.4179 }, + { l: 5, x: 3.1667, y: 11.5585 }, + { l: 5, x: 3.25, y: 11.6975 }, + { l: 5, x: 3.3333, y: 11.8354 }, + { l: 5, x: 3.4167, y: 11.9721 }, + { l: 5, x: 3.5, y: 12.1071 }, + { l: 5, x: 3.5833, y: 12.2409 }, + { l: 5, x: 3.6667, y: 12.3735 }, + { l: 5, x: 3.75, y: 12.5052 }, + { l: 5, x: 3.8333, y: 12.6359 }, + { l: 5, x: 3.9167, y: 12.7661 }, + { l: 5, x: 4, y: 12.8958 }, + { l: 5, x: 3.0833, y: 11.4179 }, + { l: 5, x: 4.1667, y: 13.1539 }, + { l: 5, x: 4.25, y: 13.2829 }, + { l: 5, x: 4.3333, y: 13.4114 }, + { l: 5, x: 4.4167, y: 13.5396 }, + { l: 5, x: 4.5, y: 13.6676 }, + { l: 5, x: 4.5833, y: 13.795 }, + { l: 5, x: 4.6667, y: 13.9215 }, + { l: 5, x: 4.75, y: 14.0475 }, + { l: 5, x: 4.8333, y: 14.1723 }, + { l: 5, x: 4.9167, y: 14.2965 }, + { l: 5, x: 5.0, y: 14.4195 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 9.8276 }, + { l: 10, x: 2.0833, y: 10.0039 }, + { l: 10, x: 2.1667, y: 10.1792 }, + { l: 10, x: 2.25, y: 10.3526 }, + { l: 10, x: 2.3333, y: 10.5234 }, + { l: 10, x: 2.4167, y: 10.6909 }, + { l: 10, x: 2.5, y: 10.855 }, + { l: 10, x: 2.5833, y: 11.0157 }, + { l: 10, x: 2.6667, y: 11.1735 }, + { l: 10, x: 2.75, y: 11.329 }, + { l: 10, x: 2.8333, y: 11.4828 }, + { l: 10, x: 2.9167, y: 11.6352 }, + { l: 10, x: 3, y: 11.7867 }, + { l: 10, x: 3.0833, y: 11.9371 }, + { l: 10, x: 3.1667, y: 12.0867 }, + { l: 10, x: 3.25, y: 12.2349 }, + { l: 10, x: 3.3333, y: 12.3822 }, + { l: 10, x: 3.4167, y: 12.5282 }, + { l: 10, x: 3.5, y: 12.6727 }, + { l: 10, x: 3.5833, y: 12.8161 }, + { l: 10, x: 3.6667, y: 12.9583 }, + { l: 10, x: 3.75, y: 13.0997 }, + { l: 10, x: 3.8333, y: 13.24 }, + { l: 10, x: 3.9167, y: 13.3799 }, + { l: 10, x: 4, y: 13.5193 }, + { l: 10, x: 3.0833, y: 11.9371 }, + { l: 10, x: 4.1667, y: 13.7969 }, + { l: 10, x: 4.25, y: 13.9356 }, + { l: 10, x: 4.3333, y: 14.0739 }, + { l: 10, x: 4.4167, y: 14.2118 }, + { l: 10, x: 4.5, y: 14.3495 }, + { l: 10, x: 4.5833, y: 14.4866 }, + { l: 10, x: 4.6667, y: 14.6228 }, + { l: 10, x: 4.75, y: 14.7584 }, + { l: 10, x: 4.8333, y: 14.893 }, + { l: 10, x: 4.9167, y: 15.0267 }, + { l: 10, x: 5.0, y: 15.1593 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 10.1183 }, + { l: 15, x: 2.0833, y: 10.3003 }, + { l: 15, x: 2.1667, y: 10.4813 }, + { l: 15, x: 2.25, y: 10.6604 }, + { l: 15, x: 2.3333, y: 10.837 }, + { l: 15, x: 2.4167, y: 11.0103 }, + { l: 15, x: 2.5, y: 11.1803 }, + { l: 15, x: 2.5833, y: 11.3469 }, + { l: 15, x: 2.6667, y: 11.5106 }, + { l: 15, x: 2.75, y: 11.6722 }, + { l: 15, x: 2.8333, y: 11.832 }, + { l: 15, x: 2.9167, y: 11.9906 }, + { l: 15, x: 3, y: 12.1485 }, + { l: 15, x: 3.0833, y: 12.3053 }, + { l: 15, x: 3.1667, y: 12.4614 }, + { l: 15, x: 3.25, y: 12.6163 }, + { l: 15, x: 3.3333, y: 12.7702 }, + { l: 15, x: 3.4167, y: 12.9231 }, + { l: 15, x: 3.5, y: 13.0745 }, + { l: 15, x: 3.5833, y: 13.2248 }, + { l: 15, x: 3.6667, y: 13.374 }, + { l: 15, x: 3.75, y: 13.5223 }, + { l: 15, x: 3.8333, y: 13.6697 }, + { l: 15, x: 3.9167, y: 13.8166 }, + { l: 15, x: 4, y: 13.963 }, + { l: 15, x: 3.0833, y: 12.3053 }, + { l: 15, x: 4.1667, y: 14.2548 }, + { l: 15, x: 4.25, y: 14.4006 }, + { l: 15, x: 4.3333, y: 14.546 }, + { l: 15, x: 4.4167, y: 14.691 }, + { l: 15, x: 4.5, y: 14.8358 }, + { l: 15, x: 4.5833, y: 14.98 }, + { l: 15, x: 4.6667, y: 15.1233 }, + { l: 15, x: 4.75, y: 15.2659 }, + { l: 15, x: 4.8333, y: 15.4075 }, + { l: 15, x: 4.9167, y: 15.5482 }, + { l: 15, x: 5.0, y: 15.6878 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 11.4775 }, + { l: 50, x: 2.0833, y: 11.6864 }, + { l: 50, x: 2.1667, y: 11.8947 }, + { l: 50, x: 2.25, y: 12.1015 }, + { l: 50, x: 2.3333, y: 12.3059 }, + { l: 50, x: 2.4167, y: 12.5073 }, + { l: 50, x: 2.5, y: 12.7055 }, + { l: 50, x: 2.5833, y: 12.9006 }, + { l: 50, x: 2.6667, y: 13.093 }, + { l: 50, x: 2.75, y: 13.2837 }, + { l: 50, x: 2.8333, y: 13.4731 }, + { l: 50, x: 2.9167, y: 13.6618 }, + { l: 50, x: 3, y: 13.8503 }, + { l: 50, x: 3.0833, y: 14.0385 }, + { l: 50, x: 3.1667, y: 14.2265 }, + { l: 50, x: 3.25, y: 14.414 }, + { l: 50, x: 3.3333, y: 14.601 }, + { l: 50, x: 3.4167, y: 14.7873 }, + { l: 50, x: 3.5, y: 14.9727 }, + { l: 50, x: 3.5833, y: 15.1573 }, + { l: 50, x: 3.6667, y: 15.341 }, + { l: 50, x: 3.75, y: 15.524 }, + { l: 50, x: 3.8333, y: 15.7064 }, + { l: 50, x: 3.9167, y: 15.8882 }, + { l: 50, x: 4, y: 16.0697 }, + { l: 50, x: 3.0833, y: 14.0385 }, + { l: 50, x: 4.1667, y: 16.4322 }, + { l: 50, x: 4.25, y: 16.6133 }, + { l: 50, x: 4.3333, y: 16.7942 }, + { l: 50, x: 4.4167, y: 16.9748 }, + { l: 50, x: 4.5, y: 17.1551 }, + { l: 50, x: 4.5833, y: 17.3347 }, + { l: 50, x: 4.6667, y: 17.5136 }, + { l: 50, x: 4.75, y: 17.6916 }, + { l: 50, x: 4.8333, y: 17.8686 }, + { l: 50, x: 4.9167, y: 18.0445 }, + { l: 50, x: 5.0, y: 18.2193 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 13.0826 }, + { l: 85, x: 2.0833, y: 13.3246 }, + { l: 85, x: 2.1667, y: 13.5664 }, + { l: 85, x: 2.25, y: 13.8072 }, + { l: 85, x: 2.3333, y: 14.0459 }, + { l: 85, x: 2.4167, y: 14.2821 }, + { l: 85, x: 2.5, y: 14.5152 }, + { l: 85, x: 2.5833, y: 14.7457 }, + { l: 85, x: 2.6667, y: 14.974 }, + { l: 85, x: 2.75, y: 15.2012 }, + { l: 85, x: 2.8333, y: 15.4276 }, + { l: 85, x: 2.9167, y: 15.6543 }, + { l: 85, x: 3, y: 15.8815 }, + { l: 85, x: 3.0833, y: 16.1095 }, + { l: 85, x: 3.1667, y: 16.3381 }, + { l: 85, x: 3.25, y: 16.5672 }, + { l: 85, x: 3.3333, y: 16.7966 }, + { l: 85, x: 3.4167, y: 17.0259 }, + { l: 85, x: 3.5, y: 17.2552 }, + { l: 85, x: 3.5833, y: 17.4841 }, + { l: 85, x: 3.6667, y: 17.7126 }, + { l: 85, x: 3.75, y: 17.9407 }, + { l: 85, x: 3.8333, y: 18.1687 }, + { l: 85, x: 3.9167, y: 18.3961 }, + { l: 85, x: 4, y: 18.6235 }, + { l: 85, x: 3.0833, y: 16.1095 }, + { l: 85, x: 4.1667, y: 19.0789 }, + { l: 85, x: 4.25, y: 19.3065 }, + { l: 85, x: 4.3333, y: 19.5343 }, + { l: 85, x: 4.4167, y: 19.7619 }, + { l: 85, x: 4.5, y: 19.9891 }, + { l: 85, x: 4.5833, y: 20.2157 }, + { l: 85, x: 4.6667, y: 20.4418 }, + { l: 85, x: 4.75, y: 20.6669 }, + { l: 85, x: 4.8333, y: 20.8911 }, + { l: 85, x: 4.9167, y: 21.114 }, + { l: 85, x: 5.0, y: 21.3359 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 13.5043 }, + { l: 90, x: 2.0833, y: 13.7551 }, + { l: 90, x: 2.1667, y: 14.006 }, + { l: 90, x: 2.25, y: 14.2559 }, + { l: 90, x: 2.3333, y: 14.5039 }, + { l: 90, x: 2.4167, y: 14.7495 }, + { l: 90, x: 2.5, y: 14.9921 }, + { l: 90, x: 2.5833, y: 15.2322 }, + { l: 90, x: 2.6667, y: 15.4702 }, + { l: 90, x: 2.75, y: 15.7073 }, + { l: 90, x: 2.8333, y: 15.944 }, + { l: 90, x: 2.9167, y: 16.1809 }, + { l: 90, x: 3, y: 16.4188 }, + { l: 90, x: 3.0833, y: 16.6578 }, + { l: 90, x: 3.1667, y: 16.8975 }, + { l: 90, x: 3.25, y: 17.1382 }, + { l: 90, x: 3.3333, y: 17.3792 }, + { l: 90, x: 3.4167, y: 17.6205 }, + { l: 90, x: 3.5, y: 17.8619 }, + { l: 90, x: 3.5833, y: 18.1031 }, + { l: 90, x: 3.6667, y: 18.3441 }, + { l: 90, x: 3.75, y: 18.5848 }, + { l: 90, x: 3.8333, y: 18.8256 }, + { l: 90, x: 3.9167, y: 19.0657 }, + { l: 90, x: 4, y: 19.306 }, + { l: 90, x: 3.0833, y: 16.6578 }, + { l: 90, x: 4.1667, y: 19.7874 }, + { l: 90, x: 4.25, y: 20.0281 }, + { l: 90, x: 4.3333, y: 20.2691 }, + { l: 90, x: 4.4167, y: 20.51 }, + { l: 90, x: 4.5, y: 20.7504 }, + { l: 90, x: 4.5833, y: 20.9903 }, + { l: 90, x: 4.6667, y: 21.2298 }, + { l: 90, x: 4.75, y: 21.4682 }, + { l: 90, x: 4.8333, y: 21.7058 }, + { l: 90, x: 4.9167, y: 21.942 }, + { l: 90, x: 5.0, y: 22.1773 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 14.1619 }, + { l: 95, x: 2.0833, y: 14.4268 }, + { l: 95, x: 2.1667, y: 14.6919 }, + { l: 95, x: 2.25, y: 14.9564 }, + { l: 95, x: 2.3333, y: 15.219 }, + { l: 95, x: 2.4167, y: 15.4795 }, + { l: 95, x: 2.5, y: 15.7371 }, + { l: 95, x: 2.5833, y: 15.9924 }, + { l: 95, x: 2.6667, y: 16.2459 }, + { l: 95, x: 2.75, y: 16.4989 }, + { l: 95, x: 2.8333, y: 16.7516 }, + { l: 95, x: 2.9167, y: 17.0051 }, + { l: 95, x: 3, y: 17.2599 }, + { l: 95, x: 3.0833, y: 17.5164 }, + { l: 95, x: 3.1667, y: 17.7739 }, + { l: 95, x: 3.25, y: 18.0329 }, + { l: 95, x: 3.3333, y: 18.2928 }, + { l: 95, x: 3.4167, y: 18.5531 }, + { l: 95, x: 3.5, y: 18.814 }, + { l: 95, x: 3.5833, y: 19.075 }, + { l: 95, x: 3.6667, y: 19.336 }, + { l: 95, x: 3.75, y: 19.597 }, + { l: 95, x: 3.8333, y: 19.8583 }, + { l: 95, x: 3.9167, y: 20.1189 }, + { l: 95, x: 4, y: 20.38 }, + { l: 95, x: 3.0833, y: 17.5164 }, + { l: 95, x: 4.1667, y: 20.9035 }, + { l: 95, x: 4.25, y: 21.1653 }, + { l: 95, x: 4.3333, y: 21.4276 }, + { l: 95, x: 4.4167, y: 21.6899 }, + { l: 95, x: 4.5, y: 21.9518 }, + { l: 95, x: 4.5833, y: 22.2132 }, + { l: 95, x: 4.6667, y: 22.4743 }, + { l: 95, x: 4.75, y: 22.7343 }, + { l: 95, x: 4.8333, y: 22.9937 }, + { l: 95, x: 4.9167, y: 23.2515 }, + { l: 95, x: 5.0, y: 23.5086 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 14.6112 }, + { l: 97, x: 2.0833, y: 14.8859 }, + { l: 97, x: 2.1667, y: 15.1609 }, + { l: 97, x: 2.25, y: 15.4354 }, + { l: 97, x: 2.3333, y: 15.7081 }, + { l: 97, x: 2.4167, y: 15.9789 }, + { l: 97, x: 2.5, y: 16.247 }, + { l: 97, x: 2.5833, y: 16.5129 }, + { l: 97, x: 2.6667, y: 16.7772 }, + { l: 97, x: 2.75, y: 17.0412 }, + { l: 97, x: 2.8333, y: 17.3051 }, + { l: 97, x: 2.9167, y: 17.5701 }, + { l: 97, x: 3, y: 17.8367 }, + { l: 97, x: 3.0833, y: 18.1054 }, + { l: 97, x: 3.1667, y: 18.3754 }, + { l: 97, x: 3.25, y: 18.6473 }, + { l: 97, x: 3.3333, y: 18.9203 }, + { l: 97, x: 3.4167, y: 19.194 }, + { l: 97, x: 3.5, y: 19.4686 }, + { l: 97, x: 3.5833, y: 19.7435 }, + { l: 97, x: 3.6667, y: 20.0187 }, + { l: 97, x: 3.75, y: 20.2939 }, + { l: 97, x: 3.8333, y: 20.5696 }, + { l: 97, x: 3.9167, y: 20.8448 }, + { l: 97, x: 4, y: 21.1205 }, + { l: 97, x: 3.0833, y: 18.1054 }, + { l: 97, x: 4.1667, y: 21.6737 }, + { l: 97, x: 4.25, y: 21.9504 }, + { l: 97, x: 4.3333, y: 22.2279 }, + { l: 97, x: 4.4167, y: 22.5053 }, + { l: 97, x: 4.5, y: 22.7824 }, + { l: 97, x: 4.5833, y: 23.059 }, + { l: 97, x: 4.6667, y: 23.3355 }, + { l: 97, x: 4.75, y: 23.6108 }, + { l: 97, x: 4.8333, y: 23.8856 }, + { l: 97, x: 4.9167, y: 24.1588 }, + { l: 97, x: 5.0, y: 24.4314 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 15.5113 }, + { l: 99, x: 2.0833, y: 15.8058 }, + { l: 99, x: 2.1667, y: 16.1009 }, + { l: 99, x: 2.25, y: 16.3959 }, + { l: 99, x: 2.3333, y: 16.6893 }, + { l: 99, x: 2.4167, y: 16.9812 }, + { l: 99, x: 2.5, y: 17.2706 }, + { l: 99, x: 2.5833, y: 17.5581 }, + { l: 99, x: 2.6667, y: 17.8444 }, + { l: 99, x: 2.75, y: 18.1309 }, + { l: 99, x: 2.8333, y: 18.4178 }, + { l: 99, x: 2.9167, y: 18.7065 }, + { l: 99, x: 3, y: 18.9973 }, + { l: 99, x: 3.0833, y: 19.2912 }, + { l: 99, x: 3.1667, y: 19.5868 }, + { l: 99, x: 3.25, y: 19.8853 }, + { l: 99, x: 3.3333, y: 20.1854 }, + { l: 99, x: 3.4167, y: 20.4868 }, + { l: 99, x: 3.5, y: 20.7898 }, + { l: 99, x: 3.5833, y: 21.0935 }, + { l: 99, x: 3.6667, y: 21.3979 }, + { l: 99, x: 3.75, y: 21.7027 }, + { l: 99, x: 3.8333, y: 22.0085 }, + { l: 99, x: 3.9167, y: 22.3138 }, + { l: 99, x: 4, y: 22.6199 }, + { l: 99, x: 3.0833, y: 19.2912 }, + { l: 99, x: 4.1667, y: 23.2351 }, + { l: 99, x: 4.25, y: 23.5429 }, + { l: 99, x: 4.3333, y: 23.852 }, + { l: 99, x: 4.4167, y: 24.1611 }, + { l: 99, x: 4.5, y: 24.4699 }, + { l: 99, x: 4.5833, y: 24.7784 }, + { l: 99, x: 4.6667, y: 25.0871 }, + { l: 99, x: 4.75, y: 25.3945 }, + { l: 99, x: 4.8333, y: 25.7016 }, + { l: 99, x: 4.9167, y: 26.0071 }, + { l: 99, x: 5.0, y: 26.3122 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + female: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 13.4037 }, + { l: 1, x: 5.17, y: 13.519 }, + { l: 1, x: 5.25, y: 13.6341 }, + { l: 1, x: 5.33, y: 13.7482 }, + { l: 1, x: 5.42, y: 13.8618 }, + { l: 1, x: 5.5, y: 13.9751 }, + { l: 1, x: 5.58, y: 14.0878 }, + { l: 1, x: 5.67, y: 14.2002 }, + { l: 1, x: 5.75, y: 14.3121 }, + { l: 1, x: 5.83, y: 14.424 }, + { l: 1, x: 5.92, y: 14.536 }, + { l: 1, x: 6, y: 14.6479 }, + { l: 1, x: 6.08, y: 14.7603 }, + { l: 1, x: 6.17, y: 14.873 }, + { l: 1, x: 6.25, y: 14.9864 }, + { l: 1, x: 6.33, y: 15.1009 }, + { l: 1, x: 6.42, y: 15.2165 }, + { l: 1, x: 6.5, y: 15.3334 }, + { l: 1, x: 6.58, y: 15.452 }, + { l: 1, x: 6.67, y: 15.572 }, + { l: 1, x: 6.75, y: 15.6941 }, + { l: 1, x: 6.83, y: 15.8177 }, + { l: 1, x: 6.92, y: 15.9438 }, + { l: 1, x: 7, y: 16.0721 }, + { l: 1, x: 7.08, y: 16.2024 }, + { l: 1, x: 7.17, y: 16.3351 }, + { l: 1, x: 7.25, y: 16.4697 }, + { l: 1, x: 7.33, y: 16.6067 }, + { l: 1, x: 7.42, y: 16.7458 }, + { l: 1, x: 7.5, y: 16.8872 }, + { l: 1, x: 7.58, y: 17.0311 }, + { l: 1, x: 7.67, y: 17.1772 }, + { l: 1, x: 7.75, y: 17.3257 }, + { l: 1, x: 7.83, y: 17.4765 }, + { l: 1, x: 7.92, y: 17.63 }, + { l: 1, x: 8, y: 17.786 }, + { l: 1, x: 8.08, y: 17.9443 }, + { l: 1, x: 8.17, y: 18.1056 }, + { l: 1, x: 8.25, y: 18.2691 }, + { l: 1, x: 8.33, y: 18.4353 }, + { l: 1, x: 8.42, y: 18.6039 }, + { l: 1, x: 8.5, y: 18.7751 }, + { l: 1, x: 8.58, y: 18.9481 }, + { l: 1, x: 8.67, y: 19.1239 }, + { l: 1, x: 8.75, y: 19.3018 }, + { l: 1, x: 8.83, y: 19.4815 }, + { l: 1, x: 8.92, y: 19.6635 }, + { l: 1, x: 9, y: 19.8476 }, + { l: 1, x: 9.08, y: 20.0335 }, + { l: 1, x: 9.17, y: 20.2209 }, + { l: 1, x: 9.25, y: 20.411 }, + { l: 1, x: 9.33, y: 20.6025 }, + { l: 1, x: 9.42, y: 20.7967 }, + { l: 1, x: 9.5, y: 20.9928 }, + { l: 1, x: 9.58, y: 21.1915 }, + { l: 1, x: 9.67, y: 21.3926 }, + { l: 1, x: 9.75, y: 21.5968 }, + { l: 1, x: 9.83, y: 21.8031 }, + { l: 1, x: 9.92, y: 22.0129 }, + { l: 1, x: 10, y: 22.2257 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 14.1733 }, + { l: 3, x: 5.17, y: 14.2973 }, + { l: 3, x: 5.25, y: 14.421 }, + { l: 3, x: 5.33, y: 14.5438 }, + { l: 3, x: 5.42, y: 14.666 }, + { l: 3, x: 5.5, y: 14.7879 }, + { l: 3, x: 5.58, y: 14.9093 }, + { l: 3, x: 5.67, y: 15.0303 }, + { l: 3, x: 5.75, y: 15.1509 }, + { l: 3, x: 5.83, y: 15.2715 }, + { l: 3, x: 5.92, y: 15.3922 }, + { l: 3, x: 6, y: 15.5129 }, + { l: 3, x: 6.08, y: 15.634 }, + { l: 3, x: 6.17, y: 15.7555 }, + { l: 3, x: 6.25, y: 15.8779 }, + { l: 3, x: 6.33, y: 16.0013 }, + { l: 3, x: 6.42, y: 16.126 }, + { l: 3, x: 6.5, y: 16.2521 }, + { l: 3, x: 6.58, y: 16.38 }, + { l: 3, x: 6.67, y: 16.5094 }, + { l: 3, x: 6.75, y: 16.6411 }, + { l: 3, x: 6.83, y: 16.7744 }, + { l: 3, x: 6.92, y: 16.9104 }, + { l: 3, x: 7, y: 17.0486 }, + { l: 3, x: 7.08, y: 17.1891 }, + { l: 3, x: 7.17, y: 17.3322 }, + { l: 3, x: 7.25, y: 17.4773 }, + { l: 3, x: 7.33, y: 17.6249 }, + { l: 3, x: 7.42, y: 17.7749 }, + { l: 3, x: 7.5, y: 17.9272 }, + { l: 3, x: 7.58, y: 18.0823 }, + { l: 3, x: 7.67, y: 18.2398 }, + { l: 3, x: 7.75, y: 18.3997 }, + { l: 3, x: 7.83, y: 18.5622 }, + { l: 3, x: 7.92, y: 18.7276 }, + { l: 3, x: 8, y: 18.8956 }, + { l: 3, x: 8.08, y: 19.0663 }, + { l: 3, x: 8.17, y: 19.2399 }, + { l: 3, x: 8.25, y: 19.4161 }, + { l: 3, x: 8.33, y: 19.5951 }, + { l: 3, x: 8.42, y: 19.7767 }, + { l: 3, x: 8.5, y: 19.961 }, + { l: 3, x: 8.58, y: 20.1474 }, + { l: 3, x: 8.67, y: 20.3367 }, + { l: 3, x: 8.75, y: 20.5282 }, + { l: 3, x: 8.83, y: 20.7218 }, + { l: 3, x: 8.92, y: 20.9178 }, + { l: 3, x: 9, y: 21.116 }, + { l: 3, x: 9.08, y: 21.3162 }, + { l: 3, x: 9.17, y: 21.5181 }, + { l: 3, x: 9.25, y: 21.7227 }, + { l: 3, x: 9.33, y: 21.929 }, + { l: 3, x: 9.42, y: 22.1381 }, + { l: 3, x: 9.5, y: 22.3493 }, + { l: 3, x: 9.58, y: 22.5632 }, + { l: 3, x: 9.67, y: 22.7797 }, + { l: 3, x: 9.75, y: 22.9994 }, + { l: 3, x: 9.83, y: 23.2216 }, + { l: 3, x: 9.92, y: 23.4475 }, + { l: 3, x: 10, y: 23.6764 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 14.6073 }, + { l: 5, x: 5.17, y: 14.7364 }, + { l: 5, x: 5.25, y: 14.865 }, + { l: 5, x: 5.33, y: 14.9928 }, + { l: 5, x: 5.42, y: 15.1201 }, + { l: 5, x: 5.5, y: 15.247 }, + { l: 5, x: 5.58, y: 15.3734 }, + { l: 5, x: 5.67, y: 15.4995 }, + { l: 5, x: 5.75, y: 15.6251 }, + { l: 5, x: 5.83, y: 15.7508 }, + { l: 5, x: 5.92, y: 15.8765 }, + { l: 5, x: 6, y: 16.0023 }, + { l: 5, x: 6.08, y: 16.1285 }, + { l: 5, x: 6.17, y: 16.2551 }, + { l: 5, x: 6.25, y: 16.3827 }, + { l: 5, x: 6.33, y: 16.5114 }, + { l: 5, x: 6.42, y: 16.6413 }, + { l: 5, x: 6.5, y: 16.7728 }, + { l: 5, x: 6.58, y: 16.9061 }, + { l: 5, x: 6.67, y: 17.0411 }, + { l: 5, x: 6.75, y: 17.1782 }, + { l: 5, x: 6.83, y: 17.3173 }, + { l: 5, x: 6.92, y: 17.459 }, + { l: 5, x: 7, y: 17.6031 }, + { l: 5, x: 7.08, y: 17.7495 }, + { l: 5, x: 7.17, y: 17.8986 }, + { l: 5, x: 7.25, y: 18.0498 }, + { l: 5, x: 7.33, y: 18.2037 }, + { l: 5, x: 7.42, y: 18.36 }, + { l: 5, x: 7.5, y: 18.5187 }, + { l: 5, x: 7.58, y: 18.6802 }, + { l: 5, x: 7.67, y: 18.8443 }, + { l: 5, x: 7.75, y: 19.011 }, + { l: 5, x: 7.83, y: 19.1803 }, + { l: 5, x: 7.92, y: 19.3526 }, + { l: 5, x: 8, y: 19.5277 }, + { l: 5, x: 8.08, y: 19.7055 }, + { l: 5, x: 8.17, y: 19.8863 }, + { l: 5, x: 8.25, y: 20.0698 }, + { l: 5, x: 8.33, y: 20.2564 }, + { l: 5, x: 8.42, y: 20.4454 }, + { l: 5, x: 8.5, y: 20.6375 }, + { l: 5, x: 8.58, y: 20.8316 }, + { l: 5, x: 8.67, y: 21.0288 }, + { l: 5, x: 8.75, y: 21.2283 }, + { l: 5, x: 8.83, y: 21.4299 }, + { l: 5, x: 8.92, y: 21.634 }, + { l: 5, x: 9, y: 21.8405 }, + { l: 5, x: 9.08, y: 22.0489 }, + { l: 5, x: 9.17, y: 22.2593 }, + { l: 5, x: 9.25, y: 22.4724 }, + { l: 5, x: 9.33, y: 22.6872 }, + { l: 5, x: 9.42, y: 22.905 }, + { l: 5, x: 9.5, y: 23.1249 }, + { l: 5, x: 9.58, y: 23.3477 }, + { l: 5, x: 9.67, y: 23.5731 }, + { l: 5, x: 9.75, y: 23.8019 }, + { l: 5, x: 9.83, y: 24.0333 }, + { l: 5, x: 9.92, y: 24.2685 }, + { l: 5, x: 10, y: 24.5068 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 15.3149 }, + { l: 10, x: 5.17, y: 15.4524 }, + { l: 10, x: 5.25, y: 15.5894 }, + { l: 10, x: 5.33, y: 15.7255 }, + { l: 10, x: 5.42, y: 15.8612 }, + { l: 10, x: 5.5, y: 15.9965 }, + { l: 10, x: 5.58, y: 16.1313 }, + { l: 10, x: 5.67, y: 16.2658 }, + { l: 10, x: 5.75, y: 16.3999 }, + { l: 10, x: 5.83, y: 16.534 }, + { l: 10, x: 5.92, y: 16.6683 }, + { l: 10, x: 6, y: 16.8026 }, + { l: 10, x: 6.08, y: 16.9373 }, + { l: 10, x: 6.17, y: 17.0726 }, + { l: 10, x: 6.25, y: 17.2089 }, + { l: 10, x: 6.33, y: 17.3464 }, + { l: 10, x: 6.42, y: 17.4853 }, + { l: 10, x: 6.5, y: 17.6258 }, + { l: 10, x: 6.58, y: 17.7681 }, + { l: 10, x: 6.67, y: 17.9124 }, + { l: 10, x: 6.75, y: 18.0589 }, + { l: 10, x: 6.83, y: 18.2075 }, + { l: 10, x: 6.92, y: 18.3588 }, + { l: 10, x: 7, y: 18.5128 }, + { l: 10, x: 7.08, y: 18.6692 }, + { l: 10, x: 7.17, y: 18.8284 }, + { l: 10, x: 7.25, y: 18.9899 }, + { l: 10, x: 7.33, y: 19.1542 }, + { l: 10, x: 7.42, y: 19.3211 }, + { l: 10, x: 7.5, y: 19.4906 }, + { l: 10, x: 7.58, y: 19.6631 }, + { l: 10, x: 7.67, y: 19.8382 }, + { l: 10, x: 7.75, y: 20.0162 }, + { l: 10, x: 7.83, y: 20.197 }, + { l: 10, x: 7.92, y: 20.3809 }, + { l: 10, x: 8, y: 20.5677 }, + { l: 10, x: 8.08, y: 20.7575 }, + { l: 10, x: 8.17, y: 20.9506 }, + { l: 10, x: 8.25, y: 21.1465 }, + { l: 10, x: 8.33, y: 21.3455 }, + { l: 10, x: 8.42, y: 21.5473 }, + { l: 10, x: 8.5, y: 21.7522 }, + { l: 10, x: 8.58, y: 21.9594 }, + { l: 10, x: 8.67, y: 22.1697 }, + { l: 10, x: 8.75, y: 22.3826 }, + { l: 10, x: 8.83, y: 22.5978 }, + { l: 10, x: 8.92, y: 22.8156 }, + { l: 10, x: 9, y: 23.0358 }, + { l: 10, x: 9.08, y: 23.2582 }, + { l: 10, x: 9.17, y: 23.4827 }, + { l: 10, x: 9.25, y: 23.71 }, + { l: 10, x: 9.33, y: 23.9393 }, + { l: 10, x: 9.42, y: 24.1715 }, + { l: 10, x: 9.5, y: 24.4062 }, + { l: 10, x: 9.58, y: 24.6438 }, + { l: 10, x: 9.67, y: 24.8842 }, + { l: 10, x: 9.75, y: 25.1282 }, + { l: 10, x: 9.83, y: 25.375 }, + { l: 10, x: 9.92, y: 25.6257 }, + { l: 10, x: 10, y: 25.8799 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 15.8213 }, + { l: 15, x: 5.17, y: 15.9649 }, + { l: 15, x: 5.25, y: 16.108 }, + { l: 15, x: 5.33, y: 16.2504 }, + { l: 15, x: 5.42, y: 16.3922 }, + { l: 15, x: 5.5, y: 16.5336 }, + { l: 15, x: 5.58, y: 16.6746 }, + { l: 15, x: 5.67, y: 16.8154 }, + { l: 15, x: 5.75, y: 16.9557 }, + { l: 15, x: 5.83, y: 17.0961 }, + { l: 15, x: 5.92, y: 17.2366 }, + { l: 15, x: 6, y: 17.3771 }, + { l: 15, x: 6.08, y: 17.5182 }, + { l: 15, x: 6.17, y: 17.6599 }, + { l: 15, x: 6.25, y: 17.8027 }, + { l: 15, x: 6.33, y: 17.9466 }, + { l: 15, x: 6.42, y: 18.0921 }, + { l: 15, x: 6.5, y: 18.2393 }, + { l: 15, x: 6.58, y: 18.3883 }, + { l: 15, x: 6.67, y: 18.5394 }, + { l: 15, x: 6.75, y: 18.6928 }, + { l: 15, x: 6.83, y: 18.8485 }, + { l: 15, x: 6.92, y: 19.007 }, + { l: 15, x: 7, y: 19.1682 }, + { l: 15, x: 7.08, y: 19.332 }, + { l: 15, x: 7.17, y: 19.4986 }, + { l: 15, x: 7.25, y: 19.6678 }, + { l: 15, x: 7.33, y: 19.8398 }, + { l: 15, x: 7.42, y: 20.0145 }, + { l: 15, x: 7.5, y: 20.192 }, + { l: 15, x: 7.58, y: 20.3725 }, + { l: 15, x: 7.67, y: 20.5559 }, + { l: 15, x: 7.75, y: 20.7422 }, + { l: 15, x: 7.83, y: 20.9315 }, + { l: 15, x: 7.92, y: 21.124 }, + { l: 15, x: 8, y: 21.3195 }, + { l: 15, x: 8.08, y: 21.5182 }, + { l: 15, x: 8.17, y: 21.7203 }, + { l: 15, x: 8.25, y: 21.9252 }, + { l: 15, x: 8.33, y: 22.1335 }, + { l: 15, x: 8.42, y: 22.3447 }, + { l: 15, x: 8.5, y: 22.5591 }, + { l: 15, x: 8.58, y: 22.776 }, + { l: 15, x: 8.67, y: 22.996 }, + { l: 15, x: 8.75, y: 23.2188 }, + { l: 15, x: 8.83, y: 23.444 }, + { l: 15, x: 8.92, y: 23.6718 }, + { l: 15, x: 9, y: 23.9022 }, + { l: 15, x: 9.08, y: 24.1349 }, + { l: 15, x: 9.17, y: 24.3698 }, + { l: 15, x: 9.25, y: 24.6076 }, + { l: 15, x: 9.33, y: 24.8476 }, + { l: 15, x: 9.42, y: 25.0905 }, + { l: 15, x: 9.5, y: 25.336 }, + { l: 15, x: 9.58, y: 25.5845 }, + { l: 15, x: 9.67, y: 25.8361 }, + { l: 15, x: 9.75, y: 26.0912 }, + { l: 15, x: 9.83, y: 26.3495 }, + { l: 15, x: 9.92, y: 26.6116 }, + { l: 15, x: 10, y: 26.8774 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 18.2579 }, + { l: 50, x: 5.17, y: 18.4329 }, + { l: 50, x: 5.25, y: 18.6073 }, + { l: 50, x: 5.33, y: 18.7811 }, + { l: 50, x: 5.42, y: 18.9545 }, + { l: 50, x: 5.5, y: 19.1276 }, + { l: 50, x: 5.58, y: 19.3004 }, + { l: 50, x: 5.67, y: 19.473 }, + { l: 50, x: 5.75, y: 19.6455 }, + { l: 50, x: 5.83, y: 19.818 }, + { l: 50, x: 5.92, y: 19.9908 }, + { l: 50, x: 6, y: 20.1639 }, + { l: 50, x: 6.08, y: 20.3377 }, + { l: 50, x: 6.17, y: 20.5124 }, + { l: 50, x: 6.25, y: 20.6885 }, + { l: 50, x: 6.33, y: 20.8661 }, + { l: 50, x: 6.42, y: 21.0457 }, + { l: 50, x: 6.5, y: 21.2274 }, + { l: 50, x: 6.58, y: 21.4113 }, + { l: 50, x: 6.67, y: 21.5979 }, + { l: 50, x: 6.75, y: 21.7872 }, + { l: 50, x: 6.83, y: 21.9795 }, + { l: 50, x: 6.92, y: 22.1751 }, + { l: 50, x: 7, y: 22.374 }, + { l: 50, x: 7.08, y: 22.5762 }, + { l: 50, x: 7.17, y: 22.7816 }, + { l: 50, x: 7.25, y: 22.9904 }, + { l: 50, x: 7.33, y: 23.2025 }, + { l: 50, x: 7.42, y: 23.418 }, + { l: 50, x: 7.5, y: 23.6369 }, + { l: 50, x: 7.58, y: 23.8593 }, + { l: 50, x: 7.67, y: 24.0853 }, + { l: 50, x: 7.75, y: 24.3149 }, + { l: 50, x: 7.83, y: 24.5482 }, + { l: 50, x: 7.92, y: 24.7853 }, + { l: 50, x: 8, y: 25.0262 }, + { l: 50, x: 8.08, y: 25.271 }, + { l: 50, x: 8.17, y: 25.5197 }, + { l: 50, x: 8.25, y: 25.7721 }, + { l: 50, x: 8.33, y: 26.0284 }, + { l: 50, x: 8.42, y: 26.2883 }, + { l: 50, x: 8.5, y: 26.5519 }, + { l: 50, x: 8.58, y: 26.819 }, + { l: 50, x: 8.67, y: 27.0896 }, + { l: 50, x: 8.75, y: 27.3635 }, + { l: 50, x: 8.83, y: 27.6406 }, + { l: 50, x: 8.92, y: 27.9208 }, + { l: 50, x: 9, y: 28.204 }, + { l: 50, x: 9.08, y: 28.4901 }, + { l: 50, x: 9.17, y: 28.7791 }, + { l: 50, x: 9.25, y: 29.0711 }, + { l: 50, x: 9.33, y: 29.3663 }, + { l: 50, x: 9.42, y: 29.6646 }, + { l: 50, x: 9.5, y: 29.9663 }, + { l: 50, x: 9.58, y: 30.2715 }, + { l: 50, x: 9.67, y: 30.5805 }, + { l: 50, x: 9.75, y: 30.8934 }, + { l: 50, x: 9.83, y: 31.2105 }, + { l: 50, x: 9.92, y: 31.5319 }, + { l: 50, x: 10, y: 31.8578 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 21.2879 }, + { l: 85, x: 5.17, y: 21.5059 }, + { l: 85, x: 5.25, y: 21.7233 }, + { l: 85, x: 5.33, y: 21.9405 }, + { l: 85, x: 5.42, y: 22.1575 }, + { l: 85, x: 5.5, y: 22.3744 }, + { l: 85, x: 5.58, y: 22.5913 }, + { l: 85, x: 5.67, y: 22.8083 }, + { l: 85, x: 5.75, y: 23.0256 }, + { l: 85, x: 5.83, y: 23.2431 }, + { l: 85, x: 5.92, y: 23.4611 }, + { l: 85, x: 6, y: 23.6798 }, + { l: 85, x: 6.08, y: 23.8996 }, + { l: 85, x: 6.17, y: 24.1208 }, + { l: 85, x: 6.25, y: 24.3438 }, + { l: 85, x: 6.33, y: 24.569 }, + { l: 85, x: 6.42, y: 24.7968 }, + { l: 85, x: 6.5, y: 25.0274 }, + { l: 85, x: 6.58, y: 25.2606 }, + { l: 85, x: 6.67, y: 25.4976 }, + { l: 85, x: 6.75, y: 25.7378 }, + { l: 85, x: 6.83, y: 25.9821 }, + { l: 85, x: 6.92, y: 26.2304 }, + { l: 85, x: 7, y: 26.4829 }, + { l: 85, x: 7.08, y: 26.7396 }, + { l: 85, x: 7.17, y: 27.0001 }, + { l: 85, x: 7.25, y: 27.2653 }, + { l: 85, x: 7.33, y: 27.5345 }, + { l: 85, x: 7.42, y: 27.808 }, + { l: 85, x: 7.5, y: 28.0859 }, + { l: 85, x: 7.58, y: 28.368 }, + { l: 85, x: 7.67, y: 28.6547 }, + { l: 85, x: 7.75, y: 28.946 }, + { l: 85, x: 7.83, y: 29.2421 }, + { l: 85, x: 7.92, y: 29.5428 }, + { l: 85, x: 8, y: 29.8483 }, + { l: 85, x: 8.08, y: 30.1589 }, + { l: 85, x: 8.17, y: 30.4741 }, + { l: 85, x: 8.25, y: 30.7941 }, + { l: 85, x: 8.33, y: 31.1188 }, + { l: 85, x: 8.42, y: 31.4481 }, + { l: 85, x: 8.5, y: 31.7819 }, + { l: 85, x: 8.58, y: 32.1206 }, + { l: 85, x: 8.67, y: 32.4632 }, + { l: 85, x: 8.75, y: 32.81 }, + { l: 85, x: 8.83, y: 33.1611 }, + { l: 85, x: 8.92, y: 33.5159 }, + { l: 85, x: 9, y: 33.8742 }, + { l: 85, x: 9.08, y: 34.2364 }, + { l: 85, x: 9.17, y: 34.6024 }, + { l: 85, x: 9.25, y: 34.9717 }, + { l: 85, x: 9.33, y: 35.3454 }, + { l: 85, x: 9.42, y: 35.7226 }, + { l: 85, x: 9.5, y: 36.1041 }, + { l: 85, x: 9.58, y: 36.4898 }, + { l: 85, x: 9.67, y: 36.8804 }, + { l: 85, x: 9.75, y: 37.2752 }, + { l: 85, x: 9.83, y: 37.6758 }, + { l: 85, x: 9.92, y: 38.0811 }, + { l: 85, x: 10, y: 38.4923 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 22.1124 }, + { l: 90, x: 5.17, y: 22.3428 }, + { l: 90, x: 5.25, y: 22.5727 }, + { l: 90, x: 5.33, y: 22.8025 }, + { l: 90, x: 5.42, y: 23.0322 }, + { l: 90, x: 5.5, y: 23.262 }, + { l: 90, x: 5.58, y: 23.4917 }, + { l: 90, x: 5.67, y: 23.7216 }, + { l: 90, x: 5.75, y: 23.9521 }, + { l: 90, x: 5.83, y: 24.1827 }, + { l: 90, x: 5.92, y: 24.4141 }, + { l: 90, x: 6, y: 24.6462 }, + { l: 90, x: 6.08, y: 24.8795 }, + { l: 90, x: 6.17, y: 25.1144 }, + { l: 90, x: 6.25, y: 25.3513 }, + { l: 90, x: 6.33, y: 25.5906 }, + { l: 90, x: 6.42, y: 25.8326 }, + { l: 90, x: 6.5, y: 26.0777 }, + { l: 90, x: 6.58, y: 26.3255 }, + { l: 90, x: 6.67, y: 26.5774 }, + { l: 90, x: 6.75, y: 26.8327 }, + { l: 90, x: 6.83, y: 27.0924 }, + { l: 90, x: 6.92, y: 27.3564 }, + { l: 90, x: 7, y: 27.6248 }, + { l: 90, x: 7.08, y: 27.8976 }, + { l: 90, x: 7.17, y: 28.1746 }, + { l: 90, x: 7.25, y: 28.4566 }, + { l: 90, x: 7.33, y: 28.7427 }, + { l: 90, x: 7.42, y: 29.0335 }, + { l: 90, x: 7.5, y: 29.329 }, + { l: 90, x: 7.58, y: 29.6288 }, + { l: 90, x: 7.67, y: 29.9336 }, + { l: 90, x: 7.75, y: 30.2434 }, + { l: 90, x: 7.83, y: 30.5582 }, + { l: 90, x: 7.92, y: 30.8778 }, + { l: 90, x: 8, y: 31.2027 }, + { l: 90, x: 8.08, y: 31.5328 }, + { l: 90, x: 8.17, y: 31.8679 }, + { l: 90, x: 8.25, y: 32.2081 }, + { l: 90, x: 8.33, y: 32.5531 }, + { l: 90, x: 8.42, y: 32.9032 }, + { l: 90, x: 8.5, y: 33.258 }, + { l: 90, x: 8.58, y: 33.6181 }, + { l: 90, x: 8.67, y: 33.982 }, + { l: 90, x: 8.75, y: 34.3507 }, + { l: 90, x: 8.83, y: 34.7238 }, + { l: 90, x: 8.92, y: 35.1009 }, + { l: 90, x: 9, y: 35.4817 }, + { l: 90, x: 9.08, y: 35.8666 }, + { l: 90, x: 9.17, y: 36.2556 }, + { l: 90, x: 9.25, y: 36.6479 }, + { l: 90, x: 9.33, y: 37.0451 }, + { l: 90, x: 9.42, y: 37.4458 }, + { l: 90, x: 9.5, y: 37.8511 }, + { l: 90, x: 9.58, y: 38.2608 }, + { l: 90, x: 9.67, y: 38.6758 }, + { l: 90, x: 9.75, y: 39.095 }, + { l: 90, x: 9.83, y: 39.5205 }, + { l: 90, x: 9.92, y: 39.9508 }, + { l: 90, x: 10, y: 40.3873 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 23.4229 }, + { l: 95, x: 5.17, y: 23.6737 }, + { l: 95, x: 5.25, y: 23.9241 }, + { l: 95, x: 5.33, y: 24.1746 }, + { l: 95, x: 5.42, y: 24.4252 }, + { l: 95, x: 5.5, y: 24.6761 }, + { l: 95, x: 5.58, y: 24.927 }, + { l: 95, x: 5.67, y: 25.1783 }, + { l: 95, x: 5.75, y: 25.4306 }, + { l: 95, x: 5.83, y: 25.683 }, + { l: 95, x: 5.92, y: 25.9363 }, + { l: 95, x: 6, y: 26.1906 }, + { l: 95, x: 6.08, y: 26.4464 }, + { l: 95, x: 6.17, y: 26.704 }, + { l: 95, x: 6.25, y: 26.9639 }, + { l: 95, x: 6.33, y: 27.2265 }, + { l: 95, x: 6.42, y: 27.4922 }, + { l: 95, x: 6.5, y: 27.7613 }, + { l: 95, x: 6.58, y: 28.0334 }, + { l: 95, x: 6.67, y: 28.3101 }, + { l: 95, x: 6.75, y: 28.5906 }, + { l: 95, x: 6.83, y: 28.876 }, + { l: 95, x: 6.92, y: 29.166 }, + { l: 95, x: 7, y: 29.461 }, + { l: 95, x: 7.08, y: 29.7608 }, + { l: 95, x: 7.17, y: 30.0651 }, + { l: 95, x: 7.25, y: 30.3751 }, + { l: 95, x: 7.33, y: 30.6895 }, + { l: 95, x: 7.42, y: 31.0091 }, + { l: 95, x: 7.5, y: 31.3339 }, + { l: 95, x: 7.58, y: 31.6634 }, + { l: 95, x: 7.67, y: 31.9985 }, + { l: 95, x: 7.75, y: 32.3389 }, + { l: 95, x: 7.83, y: 32.6851 }, + { l: 95, x: 7.92, y: 33.0363 }, + { l: 95, x: 8, y: 33.3934 }, + { l: 95, x: 8.08, y: 33.7563 }, + { l: 95, x: 8.17, y: 34.1246 }, + { l: 95, x: 8.25, y: 34.4985 }, + { l: 95, x: 8.33, y: 34.8776 }, + { l: 95, x: 8.42, y: 35.2623 }, + { l: 95, x: 8.5, y: 35.6521 }, + { l: 95, x: 8.58, y: 36.048 }, + { l: 95, x: 8.67, y: 36.4478 }, + { l: 95, x: 8.75, y: 36.8529 }, + { l: 95, x: 8.83, y: 37.263 }, + { l: 95, x: 8.92, y: 37.6773 }, + { l: 95, x: 9, y: 38.0956 }, + { l: 95, x: 9.08, y: 38.5186 }, + { l: 95, x: 9.17, y: 38.946 }, + { l: 95, x: 9.25, y: 39.3769 }, + { l: 95, x: 9.33, y: 39.8133 }, + { l: 95, x: 9.42, y: 40.2534 }, + { l: 95, x: 9.5, y: 40.6985 }, + { l: 95, x: 9.58, y: 41.1483 }, + { l: 95, x: 9.67, y: 41.604 }, + { l: 95, x: 9.75, y: 42.064 }, + { l: 95, x: 9.83, y: 42.5311 }, + { l: 95, x: 9.92, y: 43.0032 }, + { l: 95, x: 10, y: 43.4821 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 24.3357 }, + { l: 97, x: 5.17, y: 24.6013 }, + { l: 97, x: 5.25, y: 24.8664 }, + { l: 97, x: 5.33, y: 25.1319 }, + { l: 97, x: 5.42, y: 25.3975 }, + { l: 97, x: 5.5, y: 25.6636 }, + { l: 97, x: 5.58, y: 25.9299 }, + { l: 97, x: 5.67, y: 26.1967 }, + { l: 97, x: 5.75, y: 26.4647 }, + { l: 97, x: 5.83, y: 26.7329 }, + { l: 97, x: 5.92, y: 27.0022 }, + { l: 97, x: 6, y: 27.2725 }, + { l: 97, x: 6.08, y: 27.5447 }, + { l: 97, x: 6.17, y: 27.8188 }, + { l: 97, x: 6.25, y: 28.0954 }, + { l: 97, x: 6.33, y: 28.375 }, + { l: 97, x: 6.42, y: 28.658 }, + { l: 97, x: 6.5, y: 28.9446 }, + { l: 97, x: 6.58, y: 29.2344 }, + { l: 97, x: 6.67, y: 29.5292 }, + { l: 97, x: 6.75, y: 29.828 }, + { l: 97, x: 6.83, y: 30.1322 }, + { l: 97, x: 6.92, y: 30.4412 }, + { l: 97, x: 7, y: 30.7555 }, + { l: 97, x: 7.08, y: 31.0751 }, + { l: 97, x: 7.17, y: 31.3994 }, + { l: 97, x: 7.25, y: 31.7298 }, + { l: 97, x: 7.33, y: 32.0649 }, + { l: 97, x: 7.42, y: 32.4056 }, + { l: 97, x: 7.5, y: 32.7519 }, + { l: 97, x: 7.58, y: 33.1031 }, + { l: 97, x: 7.67, y: 33.4603 }, + { l: 97, x: 7.75, y: 33.8232 }, + { l: 97, x: 7.83, y: 34.1923 }, + { l: 97, x: 7.92, y: 34.5667 }, + { l: 97, x: 8, y: 34.9474 }, + { l: 97, x: 8.08, y: 35.3344 }, + { l: 97, x: 8.17, y: 35.727 }, + { l: 97, x: 8.25, y: 36.1257 }, + { l: 97, x: 8.33, y: 36.5297 }, + { l: 97, x: 8.42, y: 36.9399 }, + { l: 97, x: 8.5, y: 37.3554 }, + { l: 97, x: 8.58, y: 37.7776 }, + { l: 97, x: 8.67, y: 38.2037 }, + { l: 97, x: 8.75, y: 38.6356 }, + { l: 97, x: 8.83, y: 39.0727 }, + { l: 97, x: 8.92, y: 39.5144 }, + { l: 97, x: 9, y: 39.9603 }, + { l: 97, x: 9.08, y: 40.4112 }, + { l: 97, x: 9.17, y: 40.8668 }, + { l: 97, x: 9.25, y: 41.326 }, + { l: 97, x: 9.33, y: 41.7912 }, + { l: 97, x: 9.42, y: 42.2602 }, + { l: 97, x: 9.5, y: 42.7345 }, + { l: 97, x: 9.58, y: 43.2138 }, + { l: 97, x: 9.67, y: 43.6994 }, + { l: 97, x: 9.75, y: 44.1894 }, + { l: 97, x: 9.83, y: 44.687 }, + { l: 97, x: 9.92, y: 45.1896 }, + { l: 97, x: 10, y: 45.6997 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 26.2081 }, + { l: 99, x: 5.17, y: 26.505 }, + { l: 99, x: 5.25, y: 26.8016 }, + { l: 99, x: 5.33, y: 27.0991 }, + { l: 99, x: 5.42, y: 27.3969 }, + { l: 99, x: 5.5, y: 27.6957 }, + { l: 99, x: 5.58, y: 27.9948 }, + { l: 99, x: 5.67, y: 28.2948 }, + { l: 99, x: 5.75, y: 28.5966 }, + { l: 99, x: 5.83, y: 28.8987 }, + { l: 99, x: 5.92, y: 29.2024 }, + { l: 99, x: 6, y: 29.5075 }, + { l: 99, x: 6.08, y: 29.8149 }, + { l: 99, x: 6.17, y: 30.1246 }, + { l: 99, x: 6.25, y: 30.4373 }, + { l: 99, x: 6.33, y: 30.7537 }, + { l: 99, x: 6.42, y: 31.0739 }, + { l: 99, x: 6.5, y: 31.3985 }, + { l: 99, x: 6.58, y: 31.7267 }, + { l: 99, x: 6.67, y: 32.0607 }, + { l: 99, x: 6.75, y: 32.3994 }, + { l: 99, x: 6.83, y: 32.7443 }, + { l: 99, x: 6.92, y: 33.0947 }, + { l: 99, x: 7, y: 33.451 }, + { l: 99, x: 7.08, y: 33.8134 }, + { l: 99, x: 7.17, y: 34.1812 }, + { l: 99, x: 7.25, y: 34.5563 }, + { l: 99, x: 7.33, y: 34.9363 }, + { l: 99, x: 7.42, y: 35.3229 }, + { l: 99, x: 7.5, y: 35.7161 }, + { l: 99, x: 7.58, y: 36.1146 }, + { l: 99, x: 7.67, y: 36.5201 }, + { l: 99, x: 7.75, y: 36.9321 }, + { l: 99, x: 7.83, y: 37.3513 }, + { l: 99, x: 7.92, y: 37.7763 }, + { l: 99, x: 8, y: 38.2086 }, + { l: 99, x: 8.08, y: 38.6481 }, + { l: 99, x: 8.17, y: 39.0939 }, + { l: 99, x: 8.25, y: 39.5466 }, + { l: 99, x: 8.33, y: 40.0053 }, + { l: 99, x: 8.42, y: 40.471 }, + { l: 99, x: 8.5, y: 40.9429 }, + { l: 99, x: 8.58, y: 41.4225 }, + { l: 99, x: 8.67, y: 41.9062 }, + { l: 99, x: 8.75, y: 42.3966 }, + { l: 99, x: 8.83, y: 42.8931 }, + { l: 99, x: 8.92, y: 43.3947 }, + { l: 99, x: 9, y: 43.9008 }, + { l: 99, x: 9.08, y: 44.413 }, + { l: 99, x: 9.17, y: 44.9303 }, + { l: 99, x: 9.25, y: 45.4516 }, + { l: 99, x: 9.33, y: 45.9799 }, + { l: 99, x: 9.42, y: 46.5122 }, + { l: 99, x: 9.5, y: 47.0504 }, + { l: 99, x: 9.58, y: 47.5942 }, + { l: 99, x: 9.67, y: 48.1454 }, + { l: 99, x: 9.75, y: 48.7008 }, + { l: 99, x: 9.83, y: 49.2653 }, + { l: 99, x: 9.92, y: 49.8349 }, + { l: 99, x: 10, y: 50.4132 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/chartdata/who_weight_male_centile_data.ts b/src/chartdata/who_weight_male_centile_data.ts new file mode 100644 index 0000000..efe9ca6 --- /dev/null +++ b/src/chartdata/who_weight_male_centile_data.ts @@ -0,0 +1,1691 @@ +import { ReferenceGroup } from '../interfaces/CentilesObject'; + +export const whoWeightMaleCentileData: ReferenceGroup = { + centile_data: [ + { + who_2006_infant: { + male: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 0.0383, y: 2.6611 }, + { l: 1, x: 0.0575, y: 2.906 }, + { l: 1, x: 0.0767, y: 3.152 }, + { l: 1, x: 0.0833, y: 3.2358 }, + { l: 1, x: 0.0958, y: 3.3882 }, + { l: 1, x: 0.115, y: 3.6099 }, + { l: 1, x: 0.1342, y: 3.8171 }, + { l: 1, x: 0.1533, y: 4.0109 }, + { l: 1, x: 0.1667, y: 4.1385 }, + { l: 1, x: 0.1725, y: 4.1924 }, + { l: 1, x: 0.1916, y: 4.3629 }, + { l: 1, x: 0.2108, y: 4.523 }, + { l: 1, x: 0.23, y: 4.6735 }, + { l: 1, x: 0.2491, y: 4.8154 }, + { l: 1, x: 0.25, y: 4.8215 }, + { l: 1, x: 0.3333, y: 5.352 }, + { l: 1, x: 0.4167, y: 5.7765 }, + { l: 1, x: 0.5, y: 6.1231 }, + { l: 1, x: 0.5833, y: 6.4145 }, + { l: 1, x: 0.6667, y: 6.6661 }, + { l: 1, x: 0.75, y: 6.8902 }, + { l: 1, x: 0.8333, y: 7.0947 }, + { l: 1, x: 0.9167, y: 7.2858 }, + { l: 1, x: 1, y: 7.467 }, + { l: 1, x: 1.0833, y: 7.6404 }, + { l: 1, x: 1.1667, y: 7.8079 }, + { l: 1, x: 1.25, y: 7.9707 }, + { l: 1, x: 1.3333, y: 8.13 }, + { l: 1, x: 1.4167, y: 8.286 }, + { l: 1, x: 1.5, y: 8.4395 }, + { l: 1, x: 1.5833, y: 8.59 }, + { l: 1, x: 1.6667, y: 8.7389 }, + { l: 1, x: 1.75, y: 8.8862 }, + { l: 1, x: 1.8333, y: 9.0321 }, + { l: 1, x: 1.9167, y: 9.1766 }, + { l: 1, x: 2, y: 9.3197 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 0.0383, y: 2.849 }, + { l: 3, x: 0.0575, y: 3.1049 }, + { l: 3, x: 0.0767, y: 3.3616 }, + { l: 3, x: 0.0833, y: 3.449 }, + { l: 3, x: 0.0958, y: 3.6077 }, + { l: 3, x: 0.115, y: 3.8382 }, + { l: 3, x: 0.1342, y: 4.0534 }, + { l: 3, x: 0.1533, y: 4.2542 }, + { l: 3, x: 0.1667, y: 4.3863 }, + { l: 3, x: 0.1725, y: 4.4421 }, + { l: 3, x: 0.1916, y: 4.6184 }, + { l: 3, x: 0.2108, y: 4.7839 }, + { l: 3, x: 0.23, y: 4.9393 }, + { l: 3, x: 0.2491, y: 5.0857 }, + { l: 3, x: 0.25, y: 5.092 }, + { l: 3, x: 0.3333, y: 5.6396 }, + { l: 3, x: 0.4167, y: 6.0789 }, + { l: 3, x: 0.5, y: 6.4388 }, + { l: 3, x: 0.5833, y: 6.7425 }, + { l: 3, x: 0.6667, y: 7.0054 }, + { l: 3, x: 0.75, y: 7.2399 }, + { l: 3, x: 0.8333, y: 7.4544 }, + { l: 3, x: 0.9167, y: 7.6548 }, + { l: 3, x: 1, y: 7.8451 }, + { l: 3, x: 1.0833, y: 8.0274 }, + { l: 3, x: 1.1667, y: 8.2037 }, + { l: 3, x: 1.25, y: 8.3753 }, + { l: 3, x: 1.3333, y: 8.5433 }, + { l: 3, x: 1.4167, y: 8.708 }, + { l: 3, x: 1.5, y: 8.8702 }, + { l: 3, x: 1.5833, y: 9.0296 }, + { l: 3, x: 1.6667, y: 9.1874 }, + { l: 3, x: 1.75, y: 9.3437 }, + { l: 3, x: 1.8333, y: 9.4987 }, + { l: 3, x: 1.9167, y: 9.6524 }, + { l: 3, x: 2, y: 9.8048 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 0.0383, y: 2.9524 }, + { l: 5, x: 0.0575, y: 3.2143 }, + { l: 5, x: 0.0767, y: 3.4769 }, + { l: 5, x: 0.0833, y: 3.5661 }, + { l: 5, x: 0.0958, y: 3.7283 }, + { l: 5, x: 0.115, y: 3.9637 }, + { l: 5, x: 0.1342, y: 4.1831 }, + { l: 5, x: 0.1533, y: 4.3878 }, + { l: 5, x: 0.1667, y: 4.5223 }, + { l: 5, x: 0.1725, y: 4.5791 }, + { l: 5, x: 0.1916, y: 4.7586 }, + { l: 5, x: 0.2108, y: 4.9269 }, + { l: 5, x: 0.23, y: 5.0849 }, + { l: 5, x: 0.2491, y: 5.2339 }, + { l: 5, x: 0.25, y: 5.2402 }, + { l: 5, x: 0.3333, y: 5.7971 }, + { l: 5, x: 0.4167, y: 6.2444 }, + { l: 5, x: 0.5, y: 6.6117 }, + { l: 5, x: 0.5833, y: 6.9221 }, + { l: 5, x: 0.6667, y: 7.1912 }, + { l: 5, x: 0.75, y: 7.4316 }, + { l: 5, x: 0.8333, y: 7.6515 }, + { l: 5, x: 0.9167, y: 7.8572 }, + { l: 5, x: 1, y: 8.0525 }, + { l: 5, x: 1.0833, y: 8.2398 }, + { l: 5, x: 1.1667, y: 8.421 }, + { l: 5, x: 1.25, y: 8.5974 }, + { l: 5, x: 1.3333, y: 8.7702 }, + { l: 5, x: 1.4167, y: 8.9399 }, + { l: 5, x: 1.5, y: 9.107 }, + { l: 5, x: 1.5833, y: 9.2713 }, + { l: 5, x: 1.6667, y: 9.434 }, + { l: 5, x: 1.75, y: 9.5954 }, + { l: 5, x: 1.8333, y: 9.7555 }, + { l: 5, x: 1.9167, y: 9.9144 }, + { l: 5, x: 2, y: 10.0719 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 0.0383, y: 3.1171 }, + { l: 10, x: 0.0575, y: 3.3884 }, + { l: 10, x: 0.0767, y: 3.6603 }, + { l: 10, x: 0.0833, y: 3.7526 }, + { l: 10, x: 0.0958, y: 3.9202 }, + { l: 10, x: 0.115, y: 4.1631 }, + { l: 10, x: 0.1342, y: 4.3893 }, + { l: 10, x: 0.1533, y: 4.6 }, + { l: 10, x: 0.1667, y: 4.7383 }, + { l: 10, x: 0.1725, y: 4.7967 }, + { l: 10, x: 0.1916, y: 4.9811 }, + { l: 10, x: 0.2108, y: 5.1539 }, + { l: 10, x: 0.23, y: 5.3162 }, + { l: 10, x: 0.2491, y: 5.4689 }, + { l: 10, x: 0.25, y: 5.4755 }, + { l: 10, x: 0.3333, y: 6.047 }, + { l: 10, x: 0.4167, y: 6.507 }, + { l: 10, x: 0.5, y: 6.8858 }, + { l: 10, x: 0.5833, y: 7.207 }, + { l: 10, x: 0.6667, y: 7.4861 }, + { l: 10, x: 0.75, y: 7.7358 }, + { l: 10, x: 0.8333, y: 7.9645 }, + { l: 10, x: 0.9167, y: 8.1786 }, + { l: 10, x: 1, y: 8.382 }, + { l: 10, x: 1.0833, y: 8.5773 }, + { l: 10, x: 1.1667, y: 8.7663 }, + { l: 10, x: 1.25, y: 8.9505 }, + { l: 10, x: 1.3333, y: 9.1312 }, + { l: 10, x: 1.4167, y: 9.3087 }, + { l: 10, x: 1.5, y: 9.4837 }, + { l: 10, x: 1.5833, y: 9.656 }, + { l: 10, x: 1.6667, y: 9.8268 }, + { l: 10, x: 1.75, y: 9.9963 }, + { l: 10, x: 1.8333, y: 10.1647 }, + { l: 10, x: 1.9167, y: 10.3318 }, + { l: 10, x: 2, y: 10.4978 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 0.0383, y: 3.2321 }, + { l: 15, x: 0.0575, y: 3.5099 }, + { l: 15, x: 0.0767, y: 3.7882 }, + { l: 15, x: 0.0833, y: 3.8826 }, + { l: 15, x: 0.0958, y: 4.054 }, + { l: 15, x: 0.115, y: 4.3021 }, + { l: 15, x: 0.1342, y: 4.5329 }, + { l: 15, x: 0.1533, y: 4.7478 }, + { l: 15, x: 0.1667, y: 4.8888 }, + { l: 15, x: 0.1725, y: 4.9483 }, + { l: 15, x: 0.1916, y: 5.136 }, + { l: 15, x: 0.2108, y: 5.312 }, + { l: 15, x: 0.23, y: 5.4771 }, + { l: 15, x: 0.2491, y: 5.6325 }, + { l: 15, x: 0.25, y: 5.6391 }, + { l: 15, x: 0.3333, y: 6.2207 }, + { l: 15, x: 0.4167, y: 6.6895 }, + { l: 15, x: 0.5, y: 7.0764 }, + { l: 15, x: 0.5833, y: 7.4051 }, + { l: 15, x: 0.6667, y: 7.6912 }, + { l: 15, x: 0.75, y: 7.9474 }, + { l: 15, x: 0.8333, y: 8.1824 }, + { l: 15, x: 0.9167, y: 8.4023 }, + { l: 15, x: 1, y: 8.6115 }, + { l: 15, x: 1.0833, y: 8.8124 }, + { l: 15, x: 1.1667, y: 9.007 }, + { l: 15, x: 1.25, y: 9.1967 }, + { l: 15, x: 1.3333, y: 9.3829 }, + { l: 15, x: 1.4167, y: 9.566 }, + { l: 15, x: 1.5, y: 9.7465 }, + { l: 15, x: 1.5833, y: 9.9245 }, + { l: 15, x: 1.6667, y: 10.101 }, + { l: 15, x: 1.75, y: 10.2763 }, + { l: 15, x: 1.8333, y: 10.4505 }, + { l: 15, x: 1.9167, y: 10.6236 }, + { l: 15, x: 2, y: 10.7955 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 0.0383, y: 3.7529 }, + { l: 50, x: 0.0575, y: 4.0603 }, + { l: 50, x: 0.0767, y: 4.3671 }, + { l: 50, x: 0.0833, y: 4.4709 }, + { l: 50, x: 0.0958, y: 4.659 }, + { l: 50, x: 0.115, y: 4.9303 }, + { l: 50, x: 0.1342, y: 5.1817 }, + { l: 50, x: 0.1533, y: 5.4149 }, + { l: 50, x: 0.1667, y: 5.5675 }, + { l: 50, x: 0.1725, y: 5.6319 }, + { l: 50, x: 0.1916, y: 5.8346 }, + { l: 50, x: 0.2108, y: 6.0242 }, + { l: 50, x: 0.23, y: 6.2019 }, + { l: 50, x: 0.2491, y: 6.369 }, + { l: 50, x: 0.25, y: 6.3762 }, + { l: 50, x: 0.3333, y: 7.0023 }, + { l: 50, x: 0.4167, y: 7.5105 }, + { l: 50, x: 0.5, y: 7.934 }, + { l: 50, x: 0.5833, y: 8.297 }, + { l: 50, x: 0.6667, y: 8.6151 }, + { l: 50, x: 0.75, y: 8.9014 }, + { l: 50, x: 0.8333, y: 9.1649 }, + { l: 50, x: 0.9167, y: 9.4122 }, + { l: 50, x: 1, y: 9.6479 }, + { l: 50, x: 1.0833, y: 9.8749 }, + { l: 50, x: 1.1667, y: 10.0953 }, + { l: 50, x: 1.25, y: 10.3108 }, + { l: 50, x: 1.3333, y: 10.5228 }, + { l: 50, x: 1.4167, y: 10.7319 }, + { l: 50, x: 1.5, y: 10.9385 }, + { l: 50, x: 1.5833, y: 11.143 }, + { l: 50, x: 1.6667, y: 11.3462 }, + { l: 50, x: 1.75, y: 11.5486 }, + { l: 50, x: 1.8333, y: 11.7504 }, + { l: 50, x: 1.9167, y: 11.9514 }, + { l: 50, x: 2, y: 12.1515 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 0.0383, y: 4.3336 }, + { l: 85, x: 0.0575, y: 4.6735 }, + { l: 85, x: 0.0767, y: 5.0116 }, + { l: 85, x: 0.0833, y: 5.1256 }, + { l: 85, x: 0.0958, y: 5.3319 }, + { l: 85, x: 0.115, y: 5.6283 }, + { l: 85, x: 0.1342, y: 5.9019 }, + { l: 85, x: 0.1533, y: 6.1549 }, + { l: 85, x: 0.1667, y: 6.3199 }, + { l: 85, x: 0.1725, y: 6.3896 }, + { l: 85, x: 0.1916, y: 6.6083 }, + { l: 85, x: 0.2108, y: 6.8125 }, + { l: 85, x: 0.23, y: 7.0037 }, + { l: 85, x: 0.2491, y: 7.1833 }, + { l: 85, x: 0.25, y: 7.1911 }, + { l: 85, x: 0.3333, y: 7.8653 }, + { l: 85, x: 0.4167, y: 8.4168 }, + { l: 85, x: 0.5, y: 8.8811 }, + { l: 85, x: 0.5833, y: 9.2828 }, + { l: 85, x: 0.6667, y: 9.6374 }, + { l: 85, x: 0.75, y: 9.9582 }, + { l: 85, x: 0.8333, y: 10.2547 }, + { l: 85, x: 0.9167, y: 10.5336 }, + { l: 85, x: 1, y: 10.8001 }, + { l: 85, x: 1.0833, y: 11.0575 }, + { l: 85, x: 1.1667, y: 11.308 }, + { l: 85, x: 1.25, y: 11.5536 }, + { l: 85, x: 1.3333, y: 11.7959 }, + { l: 85, x: 1.4167, y: 12.0355 }, + { l: 85, x: 1.5, y: 12.2728 }, + { l: 85, x: 1.5833, y: 12.5086 }, + { l: 85, x: 1.6667, y: 12.7434 }, + { l: 85, x: 1.75, y: 12.978 }, + { l: 85, x: 1.8333, y: 13.2125 }, + { l: 85, x: 1.9167, y: 13.4467 }, + { l: 85, x: 2, y: 13.6805 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 0.0383, y: 4.4802 }, + { l: 90, x: 0.0575, y: 4.8283 }, + { l: 90, x: 0.0767, y: 5.1742 }, + { l: 90, x: 0.0833, y: 5.2908 }, + { l: 90, x: 0.0958, y: 5.5016 }, + { l: 90, x: 0.115, y: 5.8043 }, + { l: 90, x: 0.1342, y: 6.0834 }, + { l: 90, x: 0.1533, y: 6.3412 }, + { l: 90, x: 0.1667, y: 6.5094 }, + { l: 90, x: 0.1725, y: 6.5803 }, + { l: 90, x: 0.1916, y: 6.8029 }, + { l: 90, x: 0.2108, y: 7.0108 }, + { l: 90, x: 0.23, y: 7.2053 }, + { l: 90, x: 0.2491, y: 7.3881 }, + { l: 90, x: 0.25, y: 7.396 }, + { l: 90, x: 0.3333, y: 8.0821 }, + { l: 90, x: 0.4167, y: 8.6444 }, + { l: 90, x: 0.5, y: 9.1191 }, + { l: 90, x: 0.5833, y: 9.5307 }, + { l: 90, x: 0.6667, y: 9.8947 }, + { l: 90, x: 0.75, y: 10.2244 }, + { l: 90, x: 0.8333, y: 10.5294 }, + { l: 90, x: 0.9167, y: 10.8165 }, + { l: 90, x: 1, y: 11.0909 }, + { l: 90, x: 1.0833, y: 11.3562 }, + { l: 90, x: 1.1667, y: 11.6146 }, + { l: 90, x: 1.25, y: 11.868 }, + { l: 90, x: 1.3333, y: 12.1181 }, + { l: 90, x: 1.4167, y: 12.3658 }, + { l: 90, x: 1.5, y: 12.6111 }, + { l: 90, x: 1.5833, y: 12.8551 }, + { l: 90, x: 1.6667, y: 13.0982 }, + { l: 90, x: 1.75, y: 13.3412 }, + { l: 90, x: 1.8333, y: 13.5843 }, + { l: 90, x: 1.9167, y: 13.8273 }, + { l: 90, x: 2, y: 14.0699 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 0.0383, y: 4.7041 }, + { l: 95, x: 0.0575, y: 5.0647 }, + { l: 95, x: 0.0767, y: 5.4225 }, + { l: 95, x: 0.0833, y: 5.543 }, + { l: 95, x: 0.0958, y: 5.7607 }, + { l: 95, x: 0.115, y: 6.0728 }, + { l: 95, x: 0.1342, y: 6.3603 }, + { l: 95, x: 0.1533, y: 6.6256 }, + { l: 95, x: 0.1667, y: 6.7984 }, + { l: 95, x: 0.1725, y: 6.8713 }, + { l: 95, x: 0.1916, y: 7.0999 }, + { l: 95, x: 0.2108, y: 7.3133 }, + { l: 95, x: 0.23, y: 7.5128 }, + { l: 95, x: 0.2491, y: 7.7003 }, + { l: 95, x: 0.25, y: 7.7084 }, + { l: 95, x: 0.3333, y: 8.4126 }, + { l: 95, x: 0.4167, y: 8.9915 }, + { l: 95, x: 0.5, y: 9.482 }, + { l: 95, x: 0.5833, y: 9.9088 }, + { l: 95, x: 0.6667, y: 10.2872 }, + { l: 95, x: 0.75, y: 10.6306 }, + { l: 95, x: 0.8333, y: 10.9487 }, + { l: 95, x: 0.9167, y: 11.2485 }, + { l: 95, x: 1, y: 11.5353 }, + { l: 95, x: 1.0833, y: 11.8129 }, + { l: 95, x: 1.1667, y: 12.0833 }, + { l: 95, x: 1.25, y: 12.349 }, + { l: 95, x: 1.3333, y: 12.6113 }, + { l: 95, x: 1.4167, y: 12.8714 }, + { l: 95, x: 1.5, y: 13.1291 }, + { l: 95, x: 1.5833, y: 13.3859 }, + { l: 95, x: 1.6667, y: 13.6419 }, + { l: 95, x: 1.75, y: 13.898 }, + { l: 95, x: 1.8333, y: 14.1546 }, + { l: 95, x: 1.9167, y: 14.4112 }, + { l: 95, x: 2, y: 14.6676 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 0.0383, y: 4.8539 }, + { l: 97, x: 0.0575, y: 5.2228 }, + { l: 97, x: 0.0767, y: 5.5886 }, + { l: 97, x: 0.0833, y: 5.7116 }, + { l: 97, x: 0.0958, y: 5.9339 }, + { l: 97, x: 0.115, y: 6.2524 }, + { l: 97, x: 0.1342, y: 6.5454 }, + { l: 97, x: 0.1533, y: 6.8156 }, + { l: 97, x: 0.1667, y: 6.9915 }, + { l: 97, x: 0.1725, y: 7.0657 }, + { l: 97, x: 0.1916, y: 7.2983 }, + { l: 97, x: 0.2108, y: 7.5153 }, + { l: 97, x: 0.23, y: 7.7182 }, + { l: 97, x: 0.2491, y: 7.9087 }, + { l: 97, x: 0.25, y: 7.917 }, + { l: 97, x: 0.3333, y: 8.6333 }, + { l: 97, x: 0.4167, y: 9.2232 }, + { l: 97, x: 0.5, y: 9.7243 }, + { l: 97, x: 0.5833, y: 10.1613 }, + { l: 97, x: 0.6667, y: 10.5495 }, + { l: 97, x: 0.75, y: 10.9022 }, + { l: 97, x: 0.8333, y: 11.2292 }, + { l: 97, x: 0.9167, y: 11.5375 }, + { l: 97, x: 1, y: 11.8327 }, + { l: 97, x: 1.0833, y: 12.1186 }, + { l: 97, x: 1.1667, y: 12.3973 }, + { l: 97, x: 1.25, y: 12.6712 }, + { l: 97, x: 1.3333, y: 12.9419 }, + { l: 97, x: 1.4167, y: 13.2103 }, + { l: 97, x: 1.5, y: 13.4766 }, + { l: 97, x: 1.5833, y: 13.742 }, + { l: 97, x: 1.6667, y: 14.0068 }, + { l: 97, x: 1.75, y: 14.272 }, + { l: 97, x: 1.8333, y: 14.5377 }, + { l: 97, x: 1.9167, y: 14.8035 }, + { l: 97, x: 2, y: 15.0695 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 0.0383, y: 5.1464 }, + { l: 99, x: 0.0575, y: 5.5316 }, + { l: 99, x: 0.0767, y: 5.9128 }, + { l: 99, x: 0.0833, y: 6.0409 }, + { l: 99, x: 0.0958, y: 6.2721 }, + { l: 99, x: 0.115, y: 6.6028 }, + { l: 99, x: 0.1342, y: 6.9066 }, + { l: 99, x: 0.1533, y: 7.1864 }, + { l: 99, x: 0.1667, y: 7.3682 }, + { l: 99, x: 0.1725, y: 7.445 }, + { l: 99, x: 0.1916, y: 7.6852 }, + { l: 99, x: 0.2108, y: 7.9092 }, + { l: 99, x: 0.23, y: 8.1186 }, + { l: 99, x: 0.2491, y: 8.3152 }, + { l: 99, x: 0.25, y: 8.3237 }, + { l: 99, x: 0.3333, y: 9.0634 }, + { l: 99, x: 0.4167, y: 9.6749 }, + { l: 99, x: 0.5, y: 10.1968 }, + { l: 99, x: 0.5833, y: 10.6539 }, + { l: 99, x: 0.6667, y: 11.0613 }, + { l: 99, x: 0.75, y: 11.4323 }, + { l: 99, x: 0.8333, y: 11.7769 }, + { l: 99, x: 0.9167, y: 12.1023 }, + { l: 99, x: 1, y: 12.4141 }, + { l: 99, x: 1.0833, y: 12.7164 }, + { l: 99, x: 1.1667, y: 13.0115 }, + { l: 99, x: 1.25, y: 13.3019 }, + { l: 99, x: 1.3333, y: 13.5891 }, + { l: 99, x: 1.4167, y: 13.8744 }, + { l: 99, x: 1.5, y: 14.1575 }, + { l: 99, x: 1.5833, y: 14.4403 }, + { l: 99, x: 1.6667, y: 14.7227 }, + { l: 99, x: 1.75, y: 15.0057 }, + { l: 99, x: 1.8333, y: 15.2897 }, + { l: 99, x: 1.9167, y: 15.5742 }, + { l: 99, x: 2, y: 15.8591 }, + ], + }, + ], + }, + }, + }, + { + who_2006_child: { + male: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 2, y: 9.3197 }, + { l: 1, x: 2.0833, y: 9.4609 }, + { l: 1, x: 2.1667, y: 9.6 }, + { l: 1, x: 2.25, y: 9.7363 }, + { l: 1, x: 2.3333, y: 9.8697 }, + { l: 1, x: 2.4167, y: 10.0003 }, + { l: 1, x: 2.5, y: 10.128 }, + { l: 1, x: 2.5833, y: 10.253 }, + { l: 1, x: 2.6667, y: 10.3757 }, + { l: 1, x: 2.75, y: 10.4961 }, + { l: 1, x: 2.8333, y: 10.6151 }, + { l: 1, x: 2.9167, y: 10.7328 }, + { l: 1, x: 3, y: 10.8493 }, + { l: 1, x: 3.0833, y: 10.9654 }, + { l: 1, x: 3.1667, y: 11.0808 }, + { l: 1, x: 3.25, y: 11.196 }, + { l: 1, x: 3.3333, y: 11.3108 }, + { l: 1, x: 3.4167, y: 11.4253 }, + { l: 1, x: 3.5, y: 11.5393 }, + { l: 1, x: 3.5833, y: 11.6527 }, + { l: 1, x: 3.6667, y: 11.7658 }, + { l: 1, x: 3.75, y: 11.8779 }, + { l: 1, x: 3.8333, y: 11.9891 }, + { l: 1, x: 3.9167, y: 12.0998 }, + { l: 1, x: 4, y: 12.2096 }, + { l: 1, x: 3.0833, y: 10.9654 }, + { l: 1, x: 4.1667, y: 12.4274 }, + { l: 1, x: 4.25, y: 12.535 }, + { l: 1, x: 4.3333, y: 12.6428 }, + { l: 1, x: 4.4167, y: 12.7496 }, + { l: 1, x: 4.5, y: 12.8562 }, + { l: 1, x: 4.5833, y: 12.9624 }, + { l: 1, x: 4.6667, y: 13.0682 }, + { l: 1, x: 4.75, y: 13.1734 }, + { l: 1, x: 4.8333, y: 13.2782 }, + { l: 1, x: 4.9167, y: 13.3826 }, + { l: 1, x: 5.0, y: 13.4863 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 2, y: 9.8048 }, + { l: 3, x: 2.0833, y: 9.9553 }, + { l: 3, x: 2.1667, y: 10.1036 }, + { l: 3, x: 2.25, y: 10.2491 }, + { l: 3, x: 2.3333, y: 10.3917 }, + { l: 3, x: 2.4167, y: 10.5312 }, + { l: 3, x: 2.5, y: 10.6679 }, + { l: 3, x: 2.5833, y: 10.8016 }, + { l: 3, x: 2.6667, y: 10.933 }, + { l: 3, x: 2.75, y: 11.0619 }, + { l: 3, x: 2.8333, y: 11.1894 }, + { l: 3, x: 2.9167, y: 11.3155 }, + { l: 3, x: 3, y: 11.4404 }, + { l: 3, x: 3.0833, y: 11.5647 }, + { l: 3, x: 3.1667, y: 11.6884 }, + { l: 3, x: 3.25, y: 11.8119 }, + { l: 3, x: 3.3333, y: 11.935 }, + { l: 3, x: 3.4167, y: 12.0578 }, + { l: 3, x: 3.5, y: 12.1802 }, + { l: 3, x: 3.5833, y: 12.3021 }, + { l: 3, x: 3.6667, y: 12.4236 }, + { l: 3, x: 3.75, y: 12.5443 }, + { l: 3, x: 3.8333, y: 12.6641 }, + { l: 3, x: 3.9167, y: 12.7835 }, + { l: 3, x: 4, y: 12.9021 }, + { l: 3, x: 3.0833, y: 11.5647 }, + { l: 3, x: 4.1667, y: 13.1376 }, + { l: 3, x: 4.25, y: 13.2543 }, + { l: 3, x: 4.3333, y: 13.371 }, + { l: 3, x: 4.4167, y: 13.487 }, + { l: 3, x: 4.5, y: 13.6027 }, + { l: 3, x: 4.5833, y: 13.718 }, + { l: 3, x: 4.6667, y: 13.833 }, + { l: 3, x: 4.75, y: 13.9475 }, + { l: 3, x: 4.8333, y: 14.0614 }, + { l: 3, x: 4.9167, y: 14.175 }, + { l: 3, x: 5.0, y: 14.288 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 2, y: 10.0719 }, + { l: 5, x: 2.0833, y: 10.2276 }, + { l: 5, x: 2.1667, y: 10.3812 }, + { l: 5, x: 2.25, y: 10.5319 }, + { l: 5, x: 2.3333, y: 10.6795 }, + { l: 5, x: 2.4167, y: 10.8242 }, + { l: 5, x: 2.5, y: 10.9658 }, + { l: 5, x: 2.5833, y: 11.1045 }, + { l: 5, x: 2.6667, y: 11.2407 }, + { l: 5, x: 2.75, y: 11.3745 }, + { l: 5, x: 2.8333, y: 11.5067 }, + { l: 5, x: 2.9167, y: 11.6376 }, + { l: 5, x: 3, y: 11.7672 }, + { l: 5, x: 3.0833, y: 11.8962 }, + { l: 5, x: 3.1667, y: 12.0246 }, + { l: 5, x: 3.25, y: 12.1527 }, + { l: 5, x: 3.3333, y: 12.2805 }, + { l: 5, x: 3.4167, y: 12.4081 }, + { l: 5, x: 3.5, y: 12.5352 }, + { l: 5, x: 3.5833, y: 12.6619 }, + { l: 5, x: 3.6667, y: 12.7882 }, + { l: 5, x: 3.75, y: 12.9138 }, + { l: 5, x: 3.8333, y: 13.0385 }, + { l: 5, x: 3.9167, y: 13.1628 }, + { l: 5, x: 4, y: 13.2864 }, + { l: 5, x: 3.0833, y: 11.8962 }, + { l: 5, x: 4.1667, y: 13.532 }, + { l: 5, x: 4.25, y: 13.6538 }, + { l: 5, x: 4.3333, y: 13.7757 }, + { l: 5, x: 4.4167, y: 13.8969 }, + { l: 5, x: 4.5, y: 14.0178 }, + { l: 5, x: 4.5833, y: 14.1384 }, + { l: 5, x: 4.6667, y: 14.2586 }, + { l: 5, x: 4.75, y: 14.3783 }, + { l: 5, x: 4.8333, y: 14.4975 }, + { l: 5, x: 4.9167, y: 14.6164 }, + { l: 5, x: 5.0, y: 14.7346 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 2, y: 10.4978 }, + { l: 10, x: 2.0833, y: 10.662 }, + { l: 10, x: 2.1667, y: 10.824 }, + { l: 10, x: 2.25, y: 10.9831 }, + { l: 10, x: 2.3333, y: 11.1391 }, + { l: 10, x: 2.4167, y: 11.292 }, + { l: 10, x: 2.5, y: 11.4417 }, + { l: 10, x: 2.5833, y: 11.5885 }, + { l: 10, x: 2.6667, y: 11.7326 }, + { l: 10, x: 2.75, y: 11.8743 }, + { l: 10, x: 2.8333, y: 12.0143 }, + { l: 10, x: 2.9167, y: 12.1528 }, + { l: 10, x: 3, y: 12.2902 }, + { l: 10, x: 3.0833, y: 12.4269 }, + { l: 10, x: 3.1667, y: 12.5629 }, + { l: 10, x: 3.25, y: 12.6987 }, + { l: 10, x: 3.3333, y: 12.8342 }, + { l: 10, x: 3.4167, y: 12.9694 }, + { l: 10, x: 3.5, y: 13.1043 }, + { l: 10, x: 3.5833, y: 13.2388 }, + { l: 10, x: 3.6667, y: 13.373 }, + { l: 10, x: 3.75, y: 13.5065 }, + { l: 10, x: 3.8333, y: 13.6393 }, + { l: 10, x: 3.9167, y: 13.7717 }, + { l: 10, x: 4, y: 13.9034 }, + { l: 10, x: 3.0833, y: 12.4269 }, + { l: 10, x: 4.1667, y: 14.1656 }, + { l: 10, x: 4.25, y: 14.2959 }, + { l: 10, x: 4.3333, y: 14.4262 }, + { l: 10, x: 4.4167, y: 14.5559 }, + { l: 10, x: 4.5, y: 14.6854 }, + { l: 10, x: 4.5833, y: 14.8146 }, + { l: 10, x: 4.6667, y: 14.9434 }, + { l: 10, x: 4.75, y: 15.0718 }, + { l: 10, x: 4.8333, y: 15.1998 }, + { l: 10, x: 4.9167, y: 15.3273 }, + { l: 10, x: 5.0, y: 15.4543 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 2, y: 10.7955 }, + { l: 15, x: 2.0833, y: 10.9657 }, + { l: 15, x: 2.1667, y: 11.1337 }, + { l: 15, x: 2.25, y: 11.2988 }, + { l: 15, x: 2.3333, y: 11.4608 }, + { l: 15, x: 2.4167, y: 11.6195 }, + { l: 15, x: 2.5, y: 11.7751 }, + { l: 15, x: 2.5833, y: 11.9275 }, + { l: 15, x: 2.6667, y: 12.0774 }, + { l: 15, x: 2.75, y: 12.2247 }, + { l: 15, x: 2.8333, y: 12.3703 }, + { l: 15, x: 2.9167, y: 12.5143 }, + { l: 15, x: 3, y: 12.6572 }, + { l: 15, x: 3.0833, y: 12.7994 }, + { l: 15, x: 3.1667, y: 12.9409 }, + { l: 15, x: 3.25, y: 13.0821 }, + { l: 15, x: 3.3333, y: 13.2231 }, + { l: 15, x: 3.4167, y: 13.3638 }, + { l: 15, x: 3.5, y: 13.5043 }, + { l: 15, x: 3.5833, y: 13.6444 }, + { l: 15, x: 3.6667, y: 13.7842 }, + { l: 15, x: 3.75, y: 13.9235 }, + { l: 15, x: 3.8333, y: 14.062 }, + { l: 15, x: 3.9167, y: 14.2003 }, + { l: 15, x: 4, y: 14.3379 }, + { l: 15, x: 3.0833, y: 12.7994 }, + { l: 15, x: 4.1667, y: 14.612 }, + { l: 15, x: 4.25, y: 14.7484 }, + { l: 15, x: 4.3333, y: 14.8848 }, + { l: 15, x: 4.4167, y: 15.0206 }, + { l: 15, x: 4.5, y: 15.1563 }, + { l: 15, x: 4.5833, y: 15.2918 }, + { l: 15, x: 4.6667, y: 15.4269 }, + { l: 15, x: 4.75, y: 15.5615 }, + { l: 15, x: 4.8333, y: 15.6957 }, + { l: 15, x: 4.9167, y: 15.8296 }, + { l: 15, x: 5.0, y: 15.9629 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 2, y: 12.1515 }, + { l: 50, x: 2.0833, y: 12.3502 }, + { l: 50, x: 2.1667, y: 12.5466 }, + { l: 50, x: 2.25, y: 12.7401 }, + { l: 50, x: 2.3333, y: 12.9303 }, + { l: 50, x: 2.4167, y: 13.1169 }, + { l: 50, x: 2.5, y: 13.3 }, + { l: 50, x: 2.5833, y: 13.4798 }, + { l: 50, x: 2.6667, y: 13.6567 }, + { l: 50, x: 2.75, y: 13.8309 }, + { l: 50, x: 2.8333, y: 14.0031 }, + { l: 50, x: 2.9167, y: 14.1736 }, + { l: 50, x: 3, y: 14.3429 }, + { l: 50, x: 3.0833, y: 14.5113 }, + { l: 50, x: 3.1667, y: 14.6791 }, + { l: 50, x: 3.25, y: 14.8466 }, + { l: 50, x: 3.3333, y: 15.014 }, + { l: 50, x: 3.4167, y: 15.1813 }, + { l: 50, x: 3.5, y: 15.3486 }, + { l: 50, x: 3.5833, y: 15.5158 }, + { l: 50, x: 3.6667, y: 15.6828 }, + { l: 50, x: 3.75, y: 15.8497 }, + { l: 50, x: 3.8333, y: 16.0163 }, + { l: 50, x: 3.9167, y: 16.1827 }, + { l: 50, x: 4, y: 16.3489 }, + { l: 50, x: 3.0833, y: 14.5113 }, + { l: 50, x: 4.1667, y: 16.6811 }, + { l: 50, x: 4.25, y: 16.8471 }, + { l: 50, x: 4.3333, y: 17.0132 }, + { l: 50, x: 4.4167, y: 17.1792 }, + { l: 50, x: 4.5, y: 17.3452 }, + { l: 50, x: 4.5833, y: 17.5111 }, + { l: 50, x: 4.6667, y: 17.6768 }, + { l: 50, x: 4.75, y: 17.8422 }, + { l: 50, x: 4.8333, y: 18.0073 }, + { l: 50, x: 4.9167, y: 18.1722 }, + { l: 50, x: 5.0, y: 18.3366 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 2, y: 13.6805 }, + { l: 85, x: 2.0833, y: 13.9132 }, + { l: 85, x: 2.1667, y: 14.1436 }, + { l: 85, x: 2.25, y: 14.3712 }, + { l: 85, x: 2.3333, y: 14.5954 }, + { l: 85, x: 2.4167, y: 14.8156 }, + { l: 85, x: 2.5, y: 15.0321 }, + { l: 85, x: 2.5833, y: 15.245 }, + { l: 85, x: 2.6667, y: 15.4548 }, + { l: 85, x: 2.75, y: 15.6617 }, + { l: 85, x: 2.8333, y: 15.8664 }, + { l: 85, x: 2.9167, y: 16.0691 }, + { l: 85, x: 3, y: 16.2708 }, + { l: 85, x: 3.0833, y: 16.4713 }, + { l: 85, x: 3.1667, y: 16.6714 }, + { l: 85, x: 3.25, y: 16.8712 }, + { l: 85, x: 3.3333, y: 17.071 }, + { l: 85, x: 3.4167, y: 17.271 }, + { l: 85, x: 3.5, y: 17.4714 }, + { l: 85, x: 3.5833, y: 17.6721 }, + { l: 85, x: 3.6667, y: 17.8728 }, + { l: 85, x: 3.75, y: 18.074 }, + { l: 85, x: 3.8333, y: 18.2755 }, + { l: 85, x: 3.9167, y: 18.477 }, + { l: 85, x: 4, y: 18.6789 }, + { l: 85, x: 3.0833, y: 16.4713 }, + { l: 85, x: 4.1667, y: 19.0839 }, + { l: 85, x: 4.25, y: 19.2871 }, + { l: 85, x: 4.3333, y: 19.4906 }, + { l: 85, x: 4.4167, y: 19.6947 }, + { l: 85, x: 4.5, y: 19.899 }, + { l: 85, x: 4.5833, y: 20.1035 }, + { l: 85, x: 4.6667, y: 20.308 }, + { l: 85, x: 4.75, y: 20.5125 }, + { l: 85, x: 4.8333, y: 20.717 }, + { l: 85, x: 4.9167, y: 20.9215 }, + { l: 85, x: 5.0, y: 21.1257 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 2, y: 14.0699 }, + { l: 90, x: 2.0833, y: 14.3116 }, + { l: 90, x: 2.1667, y: 14.551 }, + { l: 90, x: 2.25, y: 14.7876 }, + { l: 90, x: 2.3333, y: 15.0208 }, + { l: 90, x: 2.4167, y: 15.25 }, + { l: 90, x: 2.5, y: 15.4753 }, + { l: 90, x: 2.5833, y: 15.697 }, + { l: 90, x: 2.6667, y: 15.9156 }, + { l: 90, x: 2.75, y: 16.1313 }, + { l: 90, x: 2.8333, y: 16.3446 }, + { l: 90, x: 2.9167, y: 16.556 }, + { l: 90, x: 3, y: 16.7663 }, + { l: 90, x: 3.0833, y: 16.9754 }, + { l: 90, x: 3.1667, y: 17.1841 }, + { l: 90, x: 3.25, y: 17.3926 }, + { l: 90, x: 3.3333, y: 17.6012 }, + { l: 90, x: 3.4167, y: 17.81 }, + { l: 90, x: 3.5, y: 18.0193 }, + { l: 90, x: 3.5833, y: 18.229 }, + { l: 90, x: 3.6667, y: 18.4388 }, + { l: 90, x: 3.75, y: 18.6492 }, + { l: 90, x: 3.8333, y: 18.8602 }, + { l: 90, x: 3.9167, y: 19.0711 }, + { l: 90, x: 4, y: 19.2828 }, + { l: 90, x: 3.0833, y: 16.9754 }, + { l: 90, x: 4.1667, y: 19.7075 }, + { l: 90, x: 4.25, y: 19.9209 }, + { l: 90, x: 4.3333, y: 20.1346 }, + { l: 90, x: 4.4167, y: 20.349 }, + { l: 90, x: 4.5, y: 20.5638 }, + { l: 90, x: 4.5833, y: 20.7789 }, + { l: 90, x: 4.6667, y: 20.9941 }, + { l: 90, x: 4.75, y: 21.2093 }, + { l: 90, x: 4.8333, y: 21.4245 }, + { l: 90, x: 4.9167, y: 21.6399 }, + { l: 90, x: 5.0, y: 21.8551 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 2, y: 14.6676 }, + { l: 95, x: 2.0833, y: 14.9233 }, + { l: 95, x: 2.1667, y: 15.1768 }, + { l: 95, x: 2.25, y: 15.4276 }, + { l: 95, x: 2.3333, y: 15.6748 }, + { l: 95, x: 2.4167, y: 15.918 }, + { l: 95, x: 2.5, y: 16.1572 }, + { l: 95, x: 2.5833, y: 16.3928 }, + { l: 95, x: 2.6667, y: 16.625 }, + { l: 95, x: 2.75, y: 16.8545 }, + { l: 95, x: 2.8333, y: 17.0814 }, + { l: 95, x: 2.9167, y: 17.3064 }, + { l: 95, x: 3, y: 17.5303 }, + { l: 95, x: 3.0833, y: 17.753 }, + { l: 95, x: 3.1667, y: 17.9753 }, + { l: 95, x: 3.25, y: 18.1974 }, + { l: 95, x: 3.3333, y: 18.4198 }, + { l: 95, x: 3.4167, y: 18.6424 }, + { l: 95, x: 3.5, y: 18.8658 }, + { l: 95, x: 3.5833, y: 19.0898 }, + { l: 95, x: 3.6667, y: 19.3139 }, + { l: 95, x: 3.75, y: 19.539 }, + { l: 95, x: 3.8333, y: 19.7648 }, + { l: 95, x: 3.9167, y: 19.9909 }, + { l: 95, x: 4, y: 20.2178 }, + { l: 95, x: 3.0833, y: 17.753 }, + { l: 95, x: 4.1667, y: 20.674 }, + { l: 95, x: 4.25, y: 20.9035 }, + { l: 95, x: 4.3333, y: 21.1333 }, + { l: 95, x: 4.4167, y: 21.3642 }, + { l: 95, x: 4.5, y: 21.5957 }, + { l: 95, x: 4.5833, y: 21.8275 }, + { l: 95, x: 4.6667, y: 22.0597 }, + { l: 95, x: 4.75, y: 22.2919 }, + { l: 95, x: 4.8333, y: 22.5244 }, + { l: 95, x: 4.9167, y: 22.7571 }, + { l: 95, x: 5.0, y: 22.9897 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 2, y: 15.0695 }, + { l: 97, x: 2.0833, y: 15.3348 }, + { l: 97, x: 2.1667, y: 15.5979 }, + { l: 97, x: 2.25, y: 15.8583 }, + { l: 97, x: 2.3333, y: 16.1152 }, + { l: 97, x: 2.4167, y: 16.368 }, + { l: 97, x: 2.5, y: 16.6167 }, + { l: 97, x: 2.5833, y: 16.8618 }, + { l: 97, x: 2.6667, y: 17.1035 }, + { l: 97, x: 2.75, y: 17.3424 }, + { l: 97, x: 2.8333, y: 17.5786 }, + { l: 97, x: 2.9167, y: 17.813 }, + { l: 97, x: 3, y: 18.0463 }, + { l: 97, x: 3.0833, y: 18.2783 }, + { l: 97, x: 3.1667, y: 18.51 }, + { l: 97, x: 3.25, y: 18.7415 }, + { l: 97, x: 3.3333, y: 18.9734 }, + { l: 97, x: 3.4167, y: 19.2056 }, + { l: 97, x: 3.5, y: 19.4386 }, + { l: 97, x: 3.5833, y: 19.6725 }, + { l: 97, x: 3.6667, y: 19.9066 }, + { l: 97, x: 3.75, y: 20.1418 }, + { l: 97, x: 3.8333, y: 20.3779 }, + { l: 97, x: 3.9167, y: 20.6144 }, + { l: 97, x: 4, y: 20.852 }, + { l: 97, x: 3.0833, y: 18.2783 }, + { l: 97, x: 4.1667, y: 21.3299 }, + { l: 97, x: 4.25, y: 21.5706 }, + { l: 97, x: 4.3333, y: 21.8116 }, + { l: 97, x: 4.4167, y: 22.054 }, + { l: 97, x: 4.5, y: 22.297 }, + { l: 97, x: 4.5833, y: 22.5406 }, + { l: 97, x: 4.6667, y: 22.7845 }, + { l: 97, x: 4.75, y: 23.0287 }, + { l: 97, x: 4.8333, y: 23.2731 }, + { l: 97, x: 4.9167, y: 23.518 }, + { l: 97, x: 5.0, y: 23.7628 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 2, y: 15.8591 }, + { l: 99, x: 2.0833, y: 16.1436 }, + { l: 99, x: 2.1667, y: 16.426 }, + { l: 99, x: 2.25, y: 16.7058 }, + { l: 99, x: 2.3333, y: 16.9821 }, + { l: 99, x: 2.4167, y: 17.2542 }, + { l: 99, x: 2.5, y: 17.522 }, + { l: 99, x: 2.5833, y: 17.7862 }, + { l: 99, x: 2.6667, y: 18.047 }, + { l: 99, x: 2.75, y: 18.3049 }, + { l: 99, x: 2.8333, y: 18.5601 }, + { l: 99, x: 2.9167, y: 18.8133 }, + { l: 99, x: 3, y: 19.0655 }, + { l: 99, x: 3.0833, y: 19.3164 }, + { l: 99, x: 3.1667, y: 19.5671 }, + { l: 99, x: 3.25, y: 19.8177 }, + { l: 99, x: 3.3333, y: 20.0687 }, + { l: 99, x: 3.4167, y: 20.3203 }, + { l: 99, x: 3.5, y: 20.573 }, + { l: 99, x: 3.5833, y: 20.8268 }, + { l: 99, x: 3.6667, y: 21.0811 }, + { l: 99, x: 3.75, y: 21.3368 }, + { l: 99, x: 3.8333, y: 21.594 }, + { l: 99, x: 3.9167, y: 21.8517 }, + { l: 99, x: 4, y: 22.1109 }, + { l: 99, x: 3.0833, y: 19.3164 }, + { l: 99, x: 4.1667, y: 22.6331 }, + { l: 99, x: 4.25, y: 22.8966 }, + { l: 99, x: 4.3333, y: 23.1606 }, + { l: 99, x: 4.4167, y: 23.4264 }, + { l: 99, x: 4.5, y: 23.6931 }, + { l: 99, x: 4.5833, y: 23.9606 }, + { l: 99, x: 4.6667, y: 24.2287 }, + { l: 99, x: 4.75, y: 24.4972 }, + { l: 99, x: 4.8333, y: 24.7663 }, + { l: 99, x: 4.9167, y: 25.036 }, + { l: 99, x: 5.0, y: 25.3058 }, + ], + }, + ], + }, + }, + }, + { + who_2007_child: { + male: { + weight: [ + { + sds: -2.33, + centile: 1, + data: [ + { l: 1, x: 5.08, y: 13.8022 }, + { l: 1, x: 5.17, y: 13.9262 }, + { l: 1, x: 5.25, y: 14.0517 }, + { l: 1, x: 5.33, y: 14.1787 }, + { l: 1, x: 5.42, y: 14.3071 }, + { l: 1, x: 5.5, y: 14.4369 }, + { l: 1, x: 5.58, y: 14.5683 }, + { l: 1, x: 5.67, y: 14.7015 }, + { l: 1, x: 5.75, y: 14.8362 }, + { l: 1, x: 5.83, y: 14.9722 }, + { l: 1, x: 5.92, y: 15.1097 }, + { l: 1, x: 6, y: 15.2482 }, + { l: 1, x: 6.08, y: 15.3877 }, + { l: 1, x: 6.17, y: 15.528 }, + { l: 1, x: 6.25, y: 15.6692 }, + { l: 1, x: 6.33, y: 15.811 }, + { l: 1, x: 6.42, y: 15.9538 }, + { l: 1, x: 6.5, y: 16.0973 }, + { l: 1, x: 6.58, y: 16.2413 }, + { l: 1, x: 6.67, y: 16.386 }, + { l: 1, x: 6.75, y: 16.5309 }, + { l: 1, x: 6.83, y: 16.6766 }, + { l: 1, x: 6.92, y: 16.8222 }, + { l: 1, x: 7, y: 16.9679 }, + { l: 1, x: 7.08, y: 17.1139 }, + { l: 1, x: 7.17, y: 17.2593 }, + { l: 1, x: 7.25, y: 17.4051 }, + { l: 1, x: 7.33, y: 17.551 }, + { l: 1, x: 7.42, y: 17.6963 }, + { l: 1, x: 7.5, y: 17.8418 }, + { l: 1, x: 7.58, y: 17.9869 }, + { l: 1, x: 7.67, y: 18.1315 }, + { l: 1, x: 7.75, y: 18.2762 }, + { l: 1, x: 7.83, y: 18.4203 }, + { l: 1, x: 7.92, y: 18.5642 }, + { l: 1, x: 8, y: 18.708 }, + { l: 1, x: 8.08, y: 18.8512 }, + { l: 1, x: 8.17, y: 18.9942 }, + { l: 1, x: 8.25, y: 19.137 }, + { l: 1, x: 8.33, y: 19.2797 }, + { l: 1, x: 8.42, y: 19.422 }, + { l: 1, x: 8.5, y: 19.5643 }, + { l: 1, x: 8.58, y: 19.706 }, + { l: 1, x: 8.67, y: 19.848 }, + { l: 1, x: 8.75, y: 19.9901 }, + { l: 1, x: 8.83, y: 20.1319 }, + { l: 1, x: 8.92, y: 20.2745 }, + { l: 1, x: 9, y: 20.418 }, + { l: 1, x: 9.08, y: 20.5618 }, + { l: 1, x: 9.17, y: 20.7068 }, + { l: 1, x: 9.25, y: 20.8531 }, + { l: 1, x: 9.33, y: 21.0007 }, + { l: 1, x: 9.42, y: 21.1493 }, + { l: 1, x: 9.5, y: 21.2992 }, + { l: 1, x: 9.58, y: 21.4507 }, + { l: 1, x: 9.67, y: 21.6038 }, + { l: 1, x: 9.75, y: 21.7581 }, + { l: 1, x: 9.83, y: 21.914 }, + { l: 1, x: 9.92, y: 22.0715 }, + { l: 1, x: 10, y: 22.2302 }, + ], + }, + { + sds: -1.88, + centile: 3, + data: [ + { l: 3, x: 5.08, y: 14.58 }, + { l: 3, x: 5.17, y: 14.7113 }, + { l: 3, x: 5.25, y: 14.844 }, + { l: 3, x: 5.33, y: 14.9781 }, + { l: 3, x: 5.42, y: 15.1136 }, + { l: 3, x: 5.5, y: 15.2507 }, + { l: 3, x: 5.58, y: 15.3892 }, + { l: 3, x: 5.67, y: 15.5296 }, + { l: 3, x: 5.75, y: 15.6715 }, + { l: 3, x: 5.83, y: 15.8148 }, + { l: 3, x: 5.92, y: 15.9595 }, + { l: 3, x: 6, y: 16.1052 }, + { l: 3, x: 6.08, y: 16.252 }, + { l: 3, x: 6.17, y: 16.3996 }, + { l: 3, x: 6.25, y: 16.5481 }, + { l: 3, x: 6.33, y: 16.6973 }, + { l: 3, x: 6.42, y: 16.8475 }, + { l: 3, x: 6.5, y: 16.9985 }, + { l: 3, x: 6.58, y: 17.1501 }, + { l: 3, x: 6.67, y: 17.3025 }, + { l: 3, x: 6.75, y: 17.4552 }, + { l: 3, x: 6.83, y: 17.6087 }, + { l: 3, x: 6.92, y: 17.7622 }, + { l: 3, x: 7, y: 17.916 }, + { l: 3, x: 7.08, y: 18.0702 }, + { l: 3, x: 7.17, y: 18.2239 }, + { l: 3, x: 7.25, y: 18.378 }, + { l: 3, x: 7.33, y: 18.5324 }, + { l: 3, x: 7.42, y: 18.6864 }, + { l: 3, x: 7.5, y: 18.8406 }, + { l: 3, x: 7.58, y: 18.9947 }, + { l: 3, x: 7.67, y: 19.1483 }, + { l: 3, x: 7.75, y: 19.3022 }, + { l: 3, x: 7.83, y: 19.4557 }, + { l: 3, x: 7.92, y: 19.6091 }, + { l: 3, x: 8, y: 19.7625 }, + { l: 3, x: 8.08, y: 19.9156 }, + { l: 3, x: 8.17, y: 20.0686 }, + { l: 3, x: 8.25, y: 20.2216 }, + { l: 3, x: 8.33, y: 20.3747 }, + { l: 3, x: 8.42, y: 20.5276 }, + { l: 3, x: 8.5, y: 20.6805 }, + { l: 3, x: 8.58, y: 20.8332 }, + { l: 3, x: 8.67, y: 20.9863 }, + { l: 3, x: 8.75, y: 21.1397 }, + { l: 3, x: 8.83, y: 21.2931 }, + { l: 3, x: 8.92, y: 21.4475 }, + { l: 3, x: 9, y: 21.6029 }, + { l: 3, x: 9.08, y: 21.7591 }, + { l: 3, x: 9.17, y: 21.9165 }, + { l: 3, x: 9.25, y: 22.0756 }, + { l: 3, x: 9.33, y: 22.2361 }, + { l: 3, x: 9.42, y: 22.398 }, + { l: 3, x: 9.5, y: 22.5615 }, + { l: 3, x: 9.58, y: 22.7269 }, + { l: 3, x: 9.67, y: 22.8941 }, + { l: 3, x: 9.75, y: 23.0629 }, + { l: 3, x: 9.83, y: 23.2337 }, + { l: 3, x: 9.92, y: 23.4063 }, + { l: 3, x: 10, y: 23.5805 }, + ], + }, + { + sds: -1.64, + centile: 5, + data: [ + { l: 5, x: 5.08, y: 15.0133 }, + { l: 5, x: 5.17, y: 15.1487 }, + { l: 5, x: 5.25, y: 15.2856 }, + { l: 5, x: 5.33, y: 15.4239 }, + { l: 5, x: 5.42, y: 15.5637 }, + { l: 5, x: 5.5, y: 15.7049 }, + { l: 5, x: 5.58, y: 15.8477 }, + { l: 5, x: 5.67, y: 15.9923 }, + { l: 5, x: 5.75, y: 16.1384 }, + { l: 5, x: 5.83, y: 16.2859 }, + { l: 5, x: 5.92, y: 16.4348 }, + { l: 5, x: 6, y: 16.5848 }, + { l: 5, x: 6.08, y: 16.7358 }, + { l: 5, x: 6.17, y: 16.8878 }, + { l: 5, x: 6.25, y: 17.0406 }, + { l: 5, x: 6.33, y: 17.1941 }, + { l: 5, x: 6.42, y: 17.3487 }, + { l: 5, x: 6.5, y: 17.5042 }, + { l: 5, x: 6.58, y: 17.6602 }, + { l: 5, x: 6.67, y: 17.8171 }, + { l: 5, x: 6.75, y: 17.9743 }, + { l: 5, x: 6.83, y: 18.1324 }, + { l: 5, x: 6.92, y: 18.2907 }, + { l: 5, x: 7, y: 18.4492 }, + { l: 5, x: 7.08, y: 18.6082 }, + { l: 5, x: 7.17, y: 18.7668 }, + { l: 5, x: 7.25, y: 18.9259 }, + { l: 5, x: 7.33, y: 19.0852 }, + { l: 5, x: 7.42, y: 19.2444 }, + { l: 5, x: 7.5, y: 19.4037 }, + { l: 5, x: 7.58, y: 19.5631 }, + { l: 5, x: 7.67, y: 19.7221 }, + { l: 5, x: 7.75, y: 19.8814 }, + { l: 5, x: 7.83, y: 20.0404 }, + { l: 5, x: 7.92, y: 20.1995 }, + { l: 5, x: 8, y: 20.3586 }, + { l: 5, x: 8.08, y: 20.5176 }, + { l: 5, x: 8.17, y: 20.6766 }, + { l: 5, x: 8.25, y: 20.8356 }, + { l: 5, x: 8.33, y: 20.9948 }, + { l: 5, x: 8.42, y: 21.154 }, + { l: 5, x: 8.5, y: 21.3133 }, + { l: 5, x: 8.58, y: 21.4725 }, + { l: 5, x: 8.67, y: 21.6322 }, + { l: 5, x: 8.75, y: 21.7924 }, + { l: 5, x: 8.83, y: 21.9527 }, + { l: 5, x: 8.92, y: 22.1141 }, + { l: 5, x: 9, y: 22.2767 }, + { l: 5, x: 9.08, y: 22.4401 }, + { l: 5, x: 9.17, y: 22.605 }, + { l: 5, x: 9.25, y: 22.7716 }, + { l: 5, x: 9.33, y: 22.9398 }, + { l: 5, x: 9.42, y: 23.1096 }, + { l: 5, x: 9.5, y: 23.2812 }, + { l: 5, x: 9.58, y: 23.4547 }, + { l: 5, x: 9.67, y: 23.6304 }, + { l: 5, x: 9.75, y: 23.8078 }, + { l: 5, x: 9.83, y: 23.9873 }, + { l: 5, x: 9.92, y: 24.1689 }, + { l: 5, x: 10, y: 24.3523 }, + ], + }, + { + sds: -1.28, + centile: 10, + data: [ + { l: 10, x: 5.08, y: 15.7111 }, + { l: 10, x: 5.17, y: 15.8536 }, + { l: 10, x: 5.25, y: 15.9976 }, + { l: 10, x: 5.33, y: 16.143 }, + { l: 10, x: 5.42, y: 16.2899 }, + { l: 10, x: 5.5, y: 16.4382 }, + { l: 10, x: 5.58, y: 16.5881 }, + { l: 10, x: 5.67, y: 16.7398 }, + { l: 10, x: 5.75, y: 16.8931 }, + { l: 10, x: 5.83, y: 17.0477 }, + { l: 10, x: 5.92, y: 17.2038 }, + { l: 10, x: 6, y: 17.361 }, + { l: 10, x: 6.08, y: 17.5192 }, + { l: 10, x: 6.17, y: 17.6783 }, + { l: 10, x: 6.25, y: 17.8384 }, + { l: 10, x: 6.33, y: 17.9994 }, + { l: 10, x: 6.42, y: 18.1614 }, + { l: 10, x: 6.5, y: 18.3243 }, + { l: 10, x: 6.58, y: 18.4879 }, + { l: 10, x: 6.67, y: 18.6524 }, + { l: 10, x: 6.75, y: 18.8174 }, + { l: 10, x: 6.83, y: 18.9833 }, + { l: 10, x: 6.92, y: 19.1495 }, + { l: 10, x: 7, y: 19.3161 }, + { l: 10, x: 7.08, y: 19.4832 }, + { l: 10, x: 7.17, y: 19.6501 }, + { l: 10, x: 7.25, y: 19.8177 }, + { l: 10, x: 7.33, y: 19.9856 }, + { l: 10, x: 7.42, y: 20.1534 }, + { l: 10, x: 7.5, y: 20.3216 }, + { l: 10, x: 7.58, y: 20.4899 }, + { l: 10, x: 7.67, y: 20.658 }, + { l: 10, x: 7.75, y: 20.8266 }, + { l: 10, x: 7.83, y: 20.9951 }, + { l: 10, x: 7.92, y: 21.1638 }, + { l: 10, x: 8, y: 21.3327 }, + { l: 10, x: 8.08, y: 21.5016 }, + { l: 10, x: 8.17, y: 21.6708 }, + { l: 10, x: 8.25, y: 21.8403 }, + { l: 10, x: 8.33, y: 22.01 }, + { l: 10, x: 8.42, y: 22.1799 }, + { l: 10, x: 8.5, y: 22.3502 }, + { l: 10, x: 8.58, y: 22.5205 }, + { l: 10, x: 8.67, y: 22.6916 }, + { l: 10, x: 8.75, y: 22.8632 }, + { l: 10, x: 8.83, y: 23.0354 }, + { l: 10, x: 8.92, y: 23.2088 }, + { l: 10, x: 9, y: 23.3836 }, + { l: 10, x: 9.08, y: 23.5596 }, + { l: 10, x: 9.17, y: 23.7372 }, + { l: 10, x: 9.25, y: 23.9168 }, + { l: 10, x: 9.33, y: 24.0982 }, + { l: 10, x: 9.42, y: 24.2815 }, + { l: 10, x: 9.5, y: 24.4668 }, + { l: 10, x: 9.58, y: 24.6544 }, + { l: 10, x: 9.67, y: 24.8444 }, + { l: 10, x: 9.75, y: 25.0365 }, + { l: 10, x: 9.83, y: 25.2309 }, + { l: 10, x: 9.92, y: 25.4277 }, + { l: 10, x: 10, y: 25.6267 }, + ], + }, + { + sds: -1.04, + centile: 15, + data: [ + { l: 15, x: 5.08, y: 16.2043 }, + { l: 15, x: 5.17, y: 16.3519 }, + { l: 15, x: 5.25, y: 16.5011 }, + { l: 15, x: 5.33, y: 16.6518 }, + { l: 15, x: 5.42, y: 16.8039 }, + { l: 15, x: 5.5, y: 16.9575 }, + { l: 15, x: 5.58, y: 17.1127 }, + { l: 15, x: 5.67, y: 17.2696 }, + { l: 15, x: 5.75, y: 17.4282 }, + { l: 15, x: 5.83, y: 17.5881 }, + { l: 15, x: 5.92, y: 17.7496 }, + { l: 15, x: 6, y: 17.912 }, + { l: 15, x: 6.08, y: 18.0756 }, + { l: 15, x: 6.17, y: 18.2401 }, + { l: 15, x: 6.25, y: 18.4057 }, + { l: 15, x: 6.33, y: 18.5721 }, + { l: 15, x: 6.42, y: 18.7396 }, + { l: 15, x: 6.5, y: 18.908 }, + { l: 15, x: 6.58, y: 19.0773 }, + { l: 15, x: 6.67, y: 19.2475 }, + { l: 15, x: 6.75, y: 19.4183 }, + { l: 15, x: 6.83, y: 19.59 }, + { l: 15, x: 6.92, y: 19.7622 }, + { l: 15, x: 7, y: 19.9347 }, + { l: 15, x: 7.08, y: 20.1079 }, + { l: 15, x: 7.17, y: 20.2811 }, + { l: 15, x: 7.25, y: 20.4549 }, + { l: 15, x: 7.33, y: 20.6291 }, + { l: 15, x: 7.42, y: 20.8035 }, + { l: 15, x: 7.5, y: 20.9783 }, + { l: 15, x: 7.58, y: 21.1533 }, + { l: 15, x: 7.67, y: 21.3282 }, + { l: 15, x: 7.75, y: 21.5038 }, + { l: 15, x: 7.83, y: 21.6794 }, + { l: 15, x: 7.92, y: 21.8553 }, + { l: 15, x: 8, y: 22.0316 }, + { l: 15, x: 8.08, y: 22.208 }, + { l: 15, x: 8.17, y: 22.3849 }, + { l: 15, x: 8.25, y: 22.5621 }, + { l: 15, x: 8.33, y: 22.7397 }, + { l: 15, x: 8.42, y: 22.9177 }, + { l: 15, x: 8.5, y: 23.0962 }, + { l: 15, x: 8.58, y: 23.275 }, + { l: 15, x: 8.67, y: 23.4546 }, + { l: 15, x: 8.75, y: 23.6349 }, + { l: 15, x: 8.83, y: 23.816 }, + { l: 15, x: 8.92, y: 23.9985 }, + { l: 15, x: 9, y: 24.1825 }, + { l: 15, x: 9.08, y: 24.3679 }, + { l: 15, x: 9.17, y: 24.5551 }, + { l: 15, x: 9.25, y: 24.7444 }, + { l: 15, x: 9.33, y: 24.9358 }, + { l: 15, x: 9.42, y: 25.1293 }, + { l: 15, x: 9.5, y: 25.325 }, + { l: 15, x: 9.58, y: 25.5232 }, + { l: 15, x: 9.67, y: 25.7239 }, + { l: 15, x: 9.75, y: 25.927 }, + { l: 15, x: 9.83, y: 26.1326 }, + { l: 15, x: 9.92, y: 26.3408 }, + { l: 15, x: 10, y: 26.5515 }, + ], + }, + { + sds: 0.0, + centile: 50, + data: [ + { l: 50, x: 5.08, y: 18.5057 }, + { l: 50, x: 5.17, y: 18.6802 }, + { l: 50, x: 5.25, y: 18.8563 }, + { l: 50, x: 5.33, y: 19.034 }, + { l: 50, x: 5.42, y: 19.2132 }, + { l: 50, x: 5.5, y: 19.394 }, + { l: 50, x: 5.58, y: 19.5765 }, + { l: 50, x: 5.67, y: 19.7607 }, + { l: 50, x: 5.75, y: 19.9468 }, + { l: 50, x: 5.83, y: 20.1344 }, + { l: 50, x: 5.92, y: 20.3235 }, + { l: 50, x: 6, y: 20.5137 }, + { l: 50, x: 6.08, y: 20.7052 }, + { l: 50, x: 6.17, y: 20.8979 }, + { l: 50, x: 6.25, y: 21.0918 }, + { l: 50, x: 6.33, y: 21.287 }, + { l: 50, x: 6.42, y: 21.4833 }, + { l: 50, x: 6.5, y: 21.681 }, + { l: 50, x: 6.58, y: 21.8799 }, + { l: 50, x: 6.67, y: 22.08 }, + { l: 50, x: 6.75, y: 22.2813 }, + { l: 50, x: 6.83, y: 22.4837 }, + { l: 50, x: 6.92, y: 22.6872 }, + { l: 50, x: 7, y: 22.8915 }, + { l: 50, x: 7.08, y: 23.0968 }, + { l: 50, x: 7.17, y: 23.3029 }, + { l: 50, x: 7.25, y: 23.5101 }, + { l: 50, x: 7.33, y: 23.7182 }, + { l: 50, x: 7.42, y: 23.9272 }, + { l: 50, x: 7.5, y: 24.1371 }, + { l: 50, x: 7.58, y: 24.3479 }, + { l: 50, x: 7.67, y: 24.5595 }, + { l: 50, x: 7.75, y: 24.7722 }, + { l: 50, x: 7.83, y: 24.9858 }, + { l: 50, x: 7.92, y: 25.2005 }, + { l: 50, x: 8, y: 25.4163 }, + { l: 50, x: 8.08, y: 25.6332 }, + { l: 50, x: 8.17, y: 25.8513 }, + { l: 50, x: 8.25, y: 26.0706 }, + { l: 50, x: 8.33, y: 26.2911 }, + { l: 50, x: 8.42, y: 26.5128 }, + { l: 50, x: 8.5, y: 26.7358 }, + { l: 50, x: 8.58, y: 26.9602 }, + { l: 50, x: 8.67, y: 27.1861 }, + { l: 50, x: 8.75, y: 27.4137 }, + { l: 50, x: 8.83, y: 27.6432 }, + { l: 50, x: 8.92, y: 27.875 }, + { l: 50, x: 9, y: 28.1092 }, + { l: 50, x: 9.08, y: 28.3459 }, + { l: 50, x: 9.17, y: 28.5854 }, + { l: 50, x: 9.25, y: 28.8277 }, + { l: 50, x: 9.33, y: 29.0731 }, + { l: 50, x: 9.42, y: 29.3217 }, + { l: 50, x: 9.5, y: 29.5736 }, + { l: 50, x: 9.58, y: 29.8289 }, + { l: 50, x: 9.67, y: 30.0877 }, + { l: 50, x: 9.75, y: 30.3501 }, + { l: 50, x: 9.83, y: 30.616 }, + { l: 50, x: 9.92, y: 30.8854 }, + { l: 50, x: 10, y: 31.1586 }, + ], + }, + { + sds: 1.04, + centile: 85, + data: [ + { l: 85, x: 5.08, y: 21.2118 }, + { l: 85, x: 5.17, y: 21.423 }, + { l: 85, x: 5.25, y: 21.6361 }, + { l: 85, x: 5.33, y: 21.8511 }, + { l: 85, x: 5.42, y: 22.0678 }, + { l: 85, x: 5.5, y: 22.2863 }, + { l: 85, x: 5.58, y: 22.5068 }, + { l: 85, x: 5.67, y: 22.729 }, + { l: 85, x: 5.75, y: 22.9537 }, + { l: 85, x: 5.83, y: 23.18 }, + { l: 85, x: 5.92, y: 23.4081 }, + { l: 85, x: 6, y: 23.6373 }, + { l: 85, x: 6.08, y: 23.8683 }, + { l: 85, x: 6.17, y: 24.1009 }, + { l: 85, x: 6.25, y: 24.3351 }, + { l: 85, x: 6.33, y: 24.5713 }, + { l: 85, x: 6.42, y: 24.8087 }, + { l: 85, x: 6.5, y: 25.0482 }, + { l: 85, x: 6.58, y: 25.2896 }, + { l: 85, x: 6.67, y: 25.5326 }, + { l: 85, x: 6.75, y: 25.7778 }, + { l: 85, x: 6.83, y: 26.0246 }, + { l: 85, x: 6.92, y: 26.2734 }, + { l: 85, x: 7, y: 26.5236 }, + { l: 85, x: 7.08, y: 26.7757 }, + { l: 85, x: 7.17, y: 27.0297 }, + { l: 85, x: 7.25, y: 27.2857 }, + { l: 85, x: 7.33, y: 27.5433 }, + { l: 85, x: 7.42, y: 27.8032 }, + { l: 85, x: 7.5, y: 28.0648 }, + { l: 85, x: 7.58, y: 28.3283 }, + { l: 85, x: 7.67, y: 28.5942 }, + { l: 85, x: 7.75, y: 28.862 }, + { l: 85, x: 7.83, y: 29.1322 }, + { l: 85, x: 7.92, y: 29.4047 }, + { l: 85, x: 8, y: 29.6796 }, + { l: 85, x: 8.08, y: 29.9573 }, + { l: 85, x: 8.17, y: 30.2374 }, + { l: 85, x: 8.25, y: 30.5201 }, + { l: 85, x: 8.33, y: 30.8054 }, + { l: 85, x: 8.42, y: 31.0933 }, + { l: 85, x: 8.5, y: 31.3839 }, + { l: 85, x: 8.58, y: 31.6778 }, + { l: 85, x: 8.67, y: 31.9743 }, + { l: 85, x: 8.75, y: 32.2741 }, + { l: 85, x: 8.83, y: 32.5778 }, + { l: 85, x: 8.92, y: 32.8852 }, + { l: 85, x: 9, y: 33.1963 }, + { l: 85, x: 9.08, y: 33.5118 }, + { l: 85, x: 9.17, y: 33.8315 }, + { l: 85, x: 9.25, y: 34.1551 }, + { l: 85, x: 9.33, y: 34.4834 }, + { l: 85, x: 9.42, y: 34.8164 }, + { l: 85, x: 9.5, y: 35.1544 }, + { l: 85, x: 9.58, y: 35.4969 }, + { l: 85, x: 9.67, y: 35.8441 }, + { l: 85, x: 9.75, y: 36.1966 }, + { l: 85, x: 9.83, y: 36.5537 }, + { l: 85, x: 9.92, y: 36.9156 }, + { l: 85, x: 10, y: 37.283 }, + ], + }, + { + sds: 1.28, + centile: 90, + data: [ + { l: 90, x: 5.08, y: 21.9201 }, + { l: 90, x: 5.17, y: 22.1419 }, + { l: 90, x: 5.25, y: 22.3657 }, + { l: 90, x: 5.33, y: 22.5913 }, + { l: 90, x: 5.42, y: 22.8189 }, + { l: 90, x: 5.5, y: 23.0484 }, + { l: 90, x: 5.58, y: 23.2799 }, + { l: 90, x: 5.67, y: 23.5131 }, + { l: 90, x: 5.75, y: 23.749 }, + { l: 90, x: 5.83, y: 23.9866 }, + { l: 90, x: 5.92, y: 24.226 }, + { l: 90, x: 6, y: 24.4668 }, + { l: 90, x: 6.08, y: 24.7093 }, + { l: 90, x: 6.17, y: 24.9537 }, + { l: 90, x: 6.25, y: 25.1997 }, + { l: 90, x: 6.33, y: 25.448 }, + { l: 90, x: 6.42, y: 25.6975 }, + { l: 90, x: 6.5, y: 25.9494 }, + { l: 90, x: 6.58, y: 26.2034 }, + { l: 90, x: 6.67, y: 26.4592 }, + { l: 90, x: 6.75, y: 26.7174 }, + { l: 90, x: 6.83, y: 26.9774 }, + { l: 90, x: 6.92, y: 27.2397 }, + { l: 90, x: 7, y: 27.5037 }, + { l: 90, x: 7.08, y: 27.7697 }, + { l: 90, x: 7.17, y: 28.0382 }, + { l: 90, x: 7.25, y: 28.3088 }, + { l: 90, x: 7.33, y: 28.5813 }, + { l: 90, x: 7.42, y: 28.8566 }, + { l: 90, x: 7.5, y: 29.1338 }, + { l: 90, x: 7.58, y: 29.4133 }, + { l: 90, x: 7.67, y: 29.6956 }, + { l: 90, x: 7.75, y: 29.9801 }, + { l: 90, x: 7.83, y: 30.2676 }, + { l: 90, x: 7.92, y: 30.5577 }, + { l: 90, x: 8, y: 30.8507 }, + { l: 90, x: 8.08, y: 31.147 }, + { l: 90, x: 8.17, y: 31.4462 }, + { l: 90, x: 8.25, y: 31.7484 }, + { l: 90, x: 8.33, y: 32.0536 }, + { l: 90, x: 8.42, y: 32.3619 }, + { l: 90, x: 8.5, y: 32.6734 }, + { l: 90, x: 8.58, y: 32.9888 }, + { l: 90, x: 8.67, y: 33.3072 }, + { l: 90, x: 8.75, y: 33.6295 }, + { l: 90, x: 8.83, y: 33.9562 }, + { l: 90, x: 8.92, y: 34.2872 }, + { l: 90, x: 9, y: 34.6223 }, + { l: 90, x: 9.08, y: 34.9623 }, + { l: 90, x: 9.17, y: 35.3071 }, + { l: 90, x: 9.25, y: 35.6561 }, + { l: 90, x: 9.33, y: 36.0103 }, + { l: 90, x: 9.42, y: 36.3696 }, + { l: 90, x: 9.5, y: 36.7344 }, + { l: 90, x: 9.58, y: 37.1042 }, + { l: 90, x: 9.67, y: 37.4789 }, + { l: 90, x: 9.75, y: 37.8594 }, + { l: 90, x: 9.83, y: 38.2449 }, + { l: 90, x: 9.92, y: 38.6354 }, + { l: 90, x: 10, y: 39.032 }, + ], + }, + { + sds: 1.64, + centile: 95, + data: [ + { l: 95, x: 5.08, y: 23.0227 }, + { l: 95, x: 5.17, y: 23.2617 }, + { l: 95, x: 5.25, y: 23.5028 }, + { l: 95, x: 5.33, y: 23.746 }, + { l: 95, x: 5.42, y: 23.9912 }, + { l: 95, x: 5.5, y: 24.2386 }, + { l: 95, x: 5.58, y: 24.4881 }, + { l: 95, x: 5.67, y: 24.7395 }, + { l: 95, x: 5.75, y: 24.9938 }, + { l: 95, x: 5.83, y: 25.2499 }, + { l: 95, x: 5.92, y: 25.5081 }, + { l: 95, x: 6, y: 25.7677 }, + { l: 95, x: 6.08, y: 26.0293 }, + { l: 95, x: 6.17, y: 26.293 }, + { l: 95, x: 6.25, y: 26.5587 }, + { l: 95, x: 6.33, y: 26.8269 }, + { l: 95, x: 6.42, y: 27.0966 }, + { l: 95, x: 6.5, y: 27.369 }, + { l: 95, x: 6.58, y: 27.6439 }, + { l: 95, x: 6.67, y: 27.9208 }, + { l: 95, x: 6.75, y: 28.2008 }, + { l: 95, x: 6.83, y: 28.4827 }, + { l: 95, x: 6.92, y: 28.7675 }, + { l: 95, x: 7, y: 29.0544 }, + { l: 95, x: 7.08, y: 29.3438 }, + { l: 95, x: 7.17, y: 29.6363 }, + { l: 95, x: 7.25, y: 29.9314 }, + { l: 95, x: 7.33, y: 30.2289 }, + { l: 95, x: 7.42, y: 30.5298 }, + { l: 95, x: 7.5, y: 30.8332 }, + { l: 95, x: 7.58, y: 31.1396 }, + { l: 95, x: 7.67, y: 31.4496 }, + { l: 95, x: 7.75, y: 31.7623 }, + { l: 95, x: 7.83, y: 32.0788 }, + { l: 95, x: 7.92, y: 32.3987 }, + { l: 95, x: 8, y: 32.7222 }, + { l: 95, x: 8.08, y: 33.0499 }, + { l: 95, x: 8.17, y: 33.3813 }, + { l: 95, x: 8.25, y: 33.7165 }, + { l: 95, x: 8.33, y: 34.0557 }, + { l: 95, x: 8.42, y: 34.3986 }, + { l: 95, x: 8.5, y: 34.7457 }, + { l: 95, x: 8.58, y: 35.0977 }, + { l: 95, x: 8.67, y: 35.4533 }, + { l: 95, x: 8.75, y: 35.8138 }, + { l: 95, x: 8.83, y: 36.18 }, + { l: 95, x: 8.92, y: 36.5512 }, + { l: 95, x: 9, y: 36.9273 }, + { l: 95, x: 9.08, y: 37.3093 }, + { l: 95, x: 9.17, y: 37.6969 }, + { l: 95, x: 9.25, y: 38.0894 }, + { l: 95, x: 9.33, y: 38.488 }, + { l: 95, x: 9.42, y: 38.8924 }, + { l: 95, x: 9.5, y: 39.3032 }, + { l: 95, x: 9.58, y: 39.7195 }, + { l: 95, x: 9.67, y: 40.1413 }, + { l: 95, x: 9.75, y: 40.5696 }, + { l: 95, x: 9.83, y: 41.0035 }, + { l: 95, x: 9.92, y: 41.443 }, + { l: 95, x: 10, y: 41.8893 }, + ], + }, + { + sds: 1.88, + centile: 97, + data: [ + { l: 97, x: 5.08, y: 23.7744 }, + { l: 97, x: 5.17, y: 24.0256 }, + { l: 97, x: 5.25, y: 24.2791 }, + { l: 97, x: 5.33, y: 24.5348 }, + { l: 97, x: 5.42, y: 24.7927 }, + { l: 97, x: 5.5, y: 25.0529 }, + { l: 97, x: 5.58, y: 25.3154 }, + { l: 97, x: 5.67, y: 25.5797 }, + { l: 97, x: 5.75, y: 25.8472 }, + { l: 97, x: 5.83, y: 26.1167 }, + { l: 97, x: 5.92, y: 26.3884 }, + { l: 97, x: 6, y: 26.6615 }, + { l: 97, x: 6.08, y: 26.937 }, + { l: 97, x: 6.17, y: 27.2147 }, + { l: 97, x: 6.25, y: 27.4945 }, + { l: 97, x: 6.33, y: 27.7772 }, + { l: 97, x: 6.42, y: 28.0614 }, + { l: 97, x: 6.5, y: 28.3487 }, + { l: 97, x: 6.58, y: 28.6388 }, + { l: 97, x: 6.67, y: 28.9311 }, + { l: 97, x: 6.75, y: 29.2268 }, + { l: 97, x: 6.83, y: 29.5248 }, + { l: 97, x: 6.92, y: 29.826 }, + { l: 97, x: 7, y: 30.1296 }, + { l: 97, x: 7.08, y: 30.4361 }, + { l: 97, x: 7.17, y: 30.7462 }, + { l: 97, x: 7.25, y: 31.0592 }, + { l: 97, x: 7.33, y: 31.3749 }, + { l: 97, x: 7.42, y: 31.6948 }, + { l: 97, x: 7.5, y: 32.0174 }, + { l: 97, x: 7.58, y: 32.3435 }, + { l: 97, x: 7.67, y: 32.6739 }, + { l: 97, x: 7.75, y: 33.0073 }, + { l: 97, x: 7.83, y: 33.3453 }, + { l: 97, x: 7.92, y: 33.6872 }, + { l: 97, x: 8, y: 34.0332 }, + { l: 97, x: 8.08, y: 34.3843 }, + { l: 97, x: 8.17, y: 34.7396 }, + { l: 97, x: 8.25, y: 35.0993 }, + { l: 97, x: 8.33, y: 35.4637 }, + { l: 97, x: 8.42, y: 35.8323 }, + { l: 97, x: 8.5, y: 36.2059 }, + { l: 97, x: 8.58, y: 36.5852 }, + { l: 97, x: 8.67, y: 36.9687 }, + { l: 97, x: 8.75, y: 37.3578 }, + { l: 97, x: 8.83, y: 37.7535 }, + { l: 97, x: 8.92, y: 38.1548 }, + { l: 97, x: 9, y: 38.5616 }, + { l: 97, x: 9.08, y: 38.9751 }, + { l: 97, x: 9.17, y: 39.3949 }, + { l: 97, x: 9.25, y: 39.8201 }, + { l: 97, x: 9.33, y: 40.2519 }, + { l: 97, x: 9.42, y: 40.6902 }, + { l: 97, x: 9.5, y: 41.1355 }, + { l: 97, x: 9.58, y: 41.5868 }, + { l: 97, x: 9.67, y: 42.044 }, + { l: 97, x: 9.75, y: 42.5081 }, + { l: 97, x: 9.83, y: 42.9783 }, + { l: 97, x: 9.92, y: 43.4546 }, + { l: 97, x: 10, y: 43.938 }, + ], + }, + { + sds: 2.33, + centile: 99, + data: [ + { l: 99, x: 5.08, y: 25.2762 }, + { l: 99, x: 5.17, y: 25.5531 }, + { l: 99, x: 5.25, y: 25.8326 }, + { l: 99, x: 5.33, y: 26.1147 }, + { l: 99, x: 5.42, y: 26.3993 }, + { l: 99, x: 5.5, y: 26.6865 }, + { l: 99, x: 5.58, y: 26.9764 }, + { l: 99, x: 5.67, y: 27.2683 }, + { l: 99, x: 5.75, y: 27.5639 }, + { l: 99, x: 5.83, y: 27.8618 }, + { l: 99, x: 5.92, y: 28.1622 }, + { l: 99, x: 6, y: 28.4642 }, + { l: 99, x: 6.08, y: 28.7691 }, + { l: 99, x: 6.17, y: 29.0767 }, + { l: 99, x: 6.25, y: 29.3868 }, + { l: 99, x: 6.33, y: 29.7006 }, + { l: 99, x: 6.42, y: 30.0161 }, + { l: 99, x: 6.5, y: 30.3354 }, + { l: 99, x: 6.58, y: 30.6581 }, + { l: 99, x: 6.67, y: 30.9836 }, + { l: 99, x: 6.75, y: 31.3133 }, + { l: 99, x: 6.83, y: 31.6459 }, + { l: 99, x: 6.92, y: 31.9826 }, + { l: 99, x: 7, y: 32.3224 }, + { l: 99, x: 7.08, y: 32.6659 }, + { l: 99, x: 7.17, y: 33.0142 }, + { l: 99, x: 7.25, y: 33.3662 }, + { l: 99, x: 7.33, y: 33.7218 }, + { l: 99, x: 7.42, y: 34.0828 }, + { l: 99, x: 7.5, y: 34.4475 }, + { l: 99, x: 7.58, y: 34.8166 }, + { l: 99, x: 7.67, y: 35.1917 }, + { l: 99, x: 7.75, y: 35.5707 }, + { l: 99, x: 7.83, y: 35.9558 }, + { l: 99, x: 7.92, y: 36.346 }, + { l: 99, x: 8, y: 36.7418 }, + { l: 99, x: 8.08, y: 37.1443 }, + { l: 99, x: 8.17, y: 37.5526 }, + { l: 99, x: 8.25, y: 37.9666 }, + { l: 99, x: 8.33, y: 38.3867 }, + { l: 99, x: 8.42, y: 38.8127 }, + { l: 99, x: 8.5, y: 39.2451 }, + { l: 99, x: 8.58, y: 39.6853 }, + { l: 99, x: 8.67, y: 40.1309 }, + { l: 99, x: 8.75, y: 40.5839 }, + { l: 99, x: 8.83, y: 41.0455 }, + { l: 99, x: 8.92, y: 41.5143 }, + { l: 99, x: 9, y: 41.99 }, + { l: 99, x: 9.08, y: 42.4743 }, + { l: 99, x: 9.17, y: 42.9663 }, + { l: 99, x: 9.25, y: 43.4648 }, + { l: 99, x: 9.33, y: 43.9716 }, + { l: 99, x: 9.42, y: 44.4861 }, + { l: 99, x: 9.5, y: 45.0091 }, + { l: 99, x: 9.58, y: 45.5392 }, + { l: 99, x: 9.67, y: 46.0759 }, + { l: 99, x: 9.75, y: 46.6207 }, + { l: 99, x: 9.83, y: 47.1725 }, + { l: 99, x: 9.92, y: 47.7312 }, + { l: 99, x: 10, y: 48.2982 }, + ], + }, + ], + }, + }, + }, + ], +}; diff --git a/src/functions/getDomainsAndData.ts b/src/functions/getDomainsAndData.ts index e55d895..0cc4c86 100644 --- a/src/functions/getDomainsAndData.ts +++ b/src/functions/getDomainsAndData.ts @@ -38,6 +38,15 @@ import { cdcOFCFemaleCentileData } from '../chartdata/cdc_ofc_female_centile_dat import { cdcBMIMaleCentileData } from '../chartdata/cdc_bmi_male_centile_data'; import { cdcBMIFemaleCentileData } from '../chartdata/cdc_bmi_female_centile_data'; +import { whoHeightMaleCentileData } from '../chartdata/who_height_male_centile_data'; +import { whoHeightFemaleCentileData } from '../chartdata/who_height_female_centile_data'; +import { whoWeightMaleCentileData } from '../chartdata/who_weight_male_centile_data'; +import { whoWeightFemaleCentileData } from '../chartdata/who_weight_female_centile_data'; +import { whoOFCMaleCentileData } from '../chartdata/who_ofc_male_centile_data'; +import { whoOFCFemaleCentileData } from '../chartdata/who_ofc_female_centile_data'; +import { whoBMIMaleCentileData } from '../chartdata/who_bmi_male_centile_data'; +import { whoBMIFemaleCentileData } from '../chartdata/who_bmi_female_centile_data'; + import { trisomy21aapHeightMaleCentileData } from '../chartdata/trisomy21aap_height_male_centile_data'; import { trisomy21aapHeightFemaleCentileData } from '../chartdata/trisomy21aap_height_female_centile_data'; import { trisomy21aapWeightMaleCentileData } from '../chartdata/trisomy21aap_weight_male_centile_data'; @@ -189,19 +198,61 @@ const blankFivePercentCentileDataset = [ { centile: 95, data: [] as ICentile[], sds: 1.64 }, ], [ - { centile: 3, data: [] as ICentile[], sds: -1.64 }, + { centile: 3, data: [] as ICentile[], sds: -1.88 }, { centile: 10, data: [] as ICentile[], sds: -1.28 }, { centile: 25, data: [] as ICentile[], sds: -0.67 }, { centile: 50, data: [] as ICentile[], sds: 0 }, { centile: 75, data: [] as ICentile[], sds: 0.67 }, { centile: 90, data: [] as ICentile[], sds: 1.28 }, - { centile: 97, data: [] as ICentile[], sds: 1.64 }, + { centile: 97, data: [] as ICentile[], sds: 1.88 }, + ], +]; + +const blankExtendedWHOCentileDataset = [ + [ + { centile: 1, data: [] as ICentile[], sds: -2.33 }, + { centile: 3, data: [] as ICentile[], sds: -1.88 }, + { centile: 5, data: [] as ICentile[], sds: -1.64 }, + { centile: 10, data: [] as ICentile[], sds: -1.28 }, + { centile: 15, data: [] as ICentile[], sds: -1.04 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 85, data: [] as ICentile[], sds: 1.04 }, + { centile: 90, data: [] as ICentile[], sds: 1.28 }, + { centile: 95, data: [] as ICentile[], sds: 1.64 }, + { centile: 97, data: [] as ICentile[], sds: 1.88 }, + { centile: 99, data: [] as ICentile[], sds: 2.33 }, + ], + [ + { centile: 1, data: [] as ICentile[], sds: -2.33 }, + { centile: 3, data: [] as ICentile[], sds: -1.88 }, + { centile: 5, data: [] as ICentile[], sds: -1.64 }, + { centile: 10, data: [] as ICentile[], sds: -1.28 }, + { centile: 15, data: [] as ICentile[], sds: -1.04 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 85, data: [] as ICentile[], sds: 1.04 }, + { centile: 90, data: [] as ICentile[], sds: 1.28 }, + { centile: 95, data: [] as ICentile[], sds: 1.64 }, + { centile: 97, data: [] as ICentile[], sds: 1.88 }, + { centile: 99, data: [] as ICentile[], sds: 2.33 }, + ], + [ + { centile: 1, data: [] as ICentile[], sds: -2.33 }, + { centile: 3, data: [] as ICentile[], sds: -1.88 }, + { centile: 5, data: [] as ICentile[], sds: -1.64 }, + { centile: 10, data: [] as ICentile[], sds: -1.28 }, + { centile: 15, data: [] as ICentile[], sds: -1.04 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 85, data: [] as ICentile[], sds: 1.04 }, + { centile: 90, data: [] as ICentile[], sds: 1.28 }, + { centile: 95, data: [] as ICentile[], sds: 1.64 }, + { centile: 97, data: [] as ICentile[], sds: 1.88 }, + { centile: 99, data: [] as ICentile[], sds: 2.33 }, ], ]; function makeDefaultDomains( sex: 'male' | 'female', - reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap', + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', ) { const all: IDomainSex = { @@ -224,6 +275,24 @@ function makeDefaultDomains( y: [30.716032000000002, 63.533944000000005], }, }, + who: { + height: { + x: [0.038329911019849415, 19.05], + y: [36.841246, 204.840832], + }, + weight: { + x: [0.038329911019849415, 10.05], + y: [0, 55], + }, + bmi: { + x: [0.038329911019849415, 19.05], + y: [8.878608, 34.219536000000005], + }, + ofc: { + x: [0.038329911019849415, 5.05], + y: [30.716032000000002, 57], + }, + }, 'trisomy-21': { height: { x: [-0.01, 20.05], @@ -239,7 +308,7 @@ function makeDefaultDomains( }, ofc: { x: [-0.01, 18.05], - y: [28.033898999999998, 59.464058], + y: [28.033898999999998, 60], }, }, 'trisomy-21-aap': { @@ -298,6 +367,24 @@ function makeDefaultDomains( y: [30.280771, 60.829982], }, }, + who: { + height: { + x: [-0.01, 19.05], + y: [37.106385, 187.74047], + }, + weight: { + x: [-0.01, 10.05], + y: [0, 50], + }, + bmi: { + x: [-0.01, 19.05], + y: [8.569247, 34.568174], + }, + ofc: { + x: [-0.01, 5.05], + y: [30.280771, 60.829982], + }, + }, 'trisomy-21': { height: { x: [-0.01, 20.05], @@ -612,7 +699,7 @@ function truncate(rawDataSet: any[], lowerX: number, upperX: number, extremeValu function getRelevantDataSets( sex: 'male' | 'female', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', - reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap', + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', lowestChildX: number, highestChildX: number, isSDS: boolean, @@ -822,6 +909,51 @@ function getRelevantDataSets( returnArray.splice(i, 1, allData[i]); } + return returnArray; + } else if (reference === 'who') { + let whoData: Reference[]; + if (measurementMethod === 'height') { + whoData = sex == 'male' ? whoHeightMaleCentileData.centile_data : whoHeightFemaleCentileData.centile_data; + } else if (measurementMethod === 'weight') { + whoData = sex == 'male' ? whoWeightMaleCentileData.centile_data : whoWeightFemaleCentileData.centile_data; + } else if (measurementMethod === 'ofc') { + whoData = sex == 'male' ? whoOFCMaleCentileData.centile_data : whoOFCFemaleCentileData.centile_data; + } else if (measurementMethod === 'bmi') { + whoData = sex == 'male' ? whoBMIMaleCentileData.centile_data : whoBMIFemaleCentileData.centile_data; + } + const dataSetRanges = [ + [0, 2.0], + [2.0, 5.0], + [5.0, 19.0], + ]; + let startingGroup = 0; + let endingGroup = 2; + for (let i = 0; i < dataSetRanges.length; i++) { + const range = dataSetRanges[i]; + if (lowestChildX >= range[0] && lowestChildX < range[1]) { + startingGroup = i; + break; + } + } + for (let i = 0; i < dataSetRanges.length; i++) { + const range = dataSetRanges[i]; + if (highestChildX >= range[0] && highestChildX < range[1]) { + endingGroup = i; + break; + } + } + + const allData: any = [ + whoData[0]['who_2006_infant'][sex][measurementMethod], + whoData[1]['who_2006_child'][sex][measurementMethod], + whoData[2]['who_2007_child'][sex][measurementMethod], + ]; + + let returnArray = deepCopy(blankCDCDataset); + for (let i = startingGroup; i <= endingGroup; i++) { + returnArray.splice(i, 1, allData[i]); + } + return returnArray; } else { throw new Error('No valid reference given to getRelevantDataSets'); @@ -833,7 +965,7 @@ function getDomainsAndData( childMeasurements: Measurement[], sex: 'male' | 'female', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', - reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap', + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', showCorrected: boolean, showChronological: boolean, ) { @@ -895,6 +1027,17 @@ function getDomainsAndData( } } + if (reference === 'who') { + absoluteBottomX = -0.01; + absoluteHighX = 19.05; + if (measurementMethod === 'ofc') { + absoluteHighX = 5.05; + } + if (measurementMethod === 'weight') { + absoluteHighX = 10.05; + } + } + let lowestXForDomain = absoluteBottomX; let highestXForDomain = absoluteHighX; @@ -1118,7 +1261,7 @@ function getDomainsAndData( function getVisibleData( sex: 'male' | 'female', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', - reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap', + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', domains: any, ) { if (!domains) { @@ -1155,6 +1298,7 @@ function getVisibleData( return { chartScaleType, centileData, sdsData }; } +// data for delayed puberty: only relevant for height and UK-WHO reference export const delayedPubertyData = { male: ukwhoHeightMaleCentileData.centile_data[3].uk90_child.male.height[0].data, //ukwhoData.uk90_child.male.height[0].data, female: ukwhoHeightFemaleCentileData.centile_data[3].uk90_child.female.height[0].data, //ukwhoData.uk90_child.female.height[0].data, diff --git a/src/functions/getFilteredMidParentalHeightData.ts b/src/functions/getFilteredMidParentalHeightData.ts index 766b877..a3cd4f7 100644 --- a/src/functions/getFilteredMidParentalHeightData.ts +++ b/src/functions/getFilteredMidParentalHeightData.ts @@ -12,7 +12,7 @@ function isCDCReferences(data: UKWHOReferences | CDCReferences): data is CDCRefe } export const getFilteredMidParentalHeightData = ( - reference: 'uk-who' | 'cdc' | 'turner' | 'trisomy-21' | 'trisomy-21-aap', + reference: 'uk-who' | 'cdc' | 'turner' | 'trisomy-21' | 'trisomy-21-aap' | 'who', childMeasurements: Measurement[], midParentalHeightData: MidParentalHeightObject, sex: 'male' | 'female', diff --git a/src/functions/labelIndexInterval.ts b/src/functions/labelIndexInterval.ts index 43bbcd8..de7f34e 100644 --- a/src/functions/labelIndexInterval.ts +++ b/src/functions/labelIndexInterval.ts @@ -1,7 +1,7 @@ export function labelIndexInterval( chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerChild' = 'biggerChild', index: number, - reference: 'uk-who' | 'cdc' | 'trisomy-21' | 'trisomy-21-aap' | 'turner', + reference: 'uk-who' | 'cdc' | 'trisomy-21' | 'trisomy-21-aap' | 'turner' | 'who', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', ): boolean { // returns true if index of data point in centile data array should be rendered diff --git a/src/functions/nameForReference.ts b/src/functions/nameForReference.ts index f63912d..2fa7364 100644 --- a/src/functions/nameForReference.ts +++ b/src/functions/nameForReference.ts @@ -1,4 +1,6 @@ -export const nameForReference = (reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap'): string => { +export const nameForReference = ( + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', +): string => { /* Returns reference name against supplied reference prop */ @@ -8,6 +10,7 @@ export const nameForReference = (reference: 'uk-who' | 'trisomy-21' | 'turner' | const trisomy = "Trisomy 21 (Down's Syndrome)"; const turnerSyndrome = "Turner's Syndrome"; const trisomy21AAP = "Trisomy 21 (Down's Syndrome) - AAP"; + const whoText = 'World Health Organisation (WHO)'; if (reference === 'trisomy-21') return trisomy; else if (reference === 'turner') return turnerSyndrome; @@ -17,5 +20,7 @@ export const nameForReference = (reference: 'uk-who' | 'trisomy-21' | 'turner' | return cdcText; } else if (reference === 'trisomy-21-aap') { return trisomy21AAP; + } else if (reference === 'who') { + return whoText; } else throw new Error('No reference supplied'); }; diff --git a/src/functions/referenceText.ts b/src/functions/referenceText.ts index 761ea84..ffd7bdc 100644 --- a/src/functions/referenceText.ts +++ b/src/functions/referenceText.ts @@ -1,4 +1,6 @@ -export const referenceText = (reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap'): string => { +export const referenceText = ( + reference: 'uk-who' | 'trisomy-21' | 'turner' | 'cdc' | 'trisomy-21-aap' | 'who', +): string => { /* Returns attribution text against supplied reference prop */ @@ -13,6 +15,8 @@ export const referenceText = (reference: 'uk-who' | 'trisomy-21' | 'turner' | 'c const trisomy21AAP = 'American Academy of Pediatrics (AAP) Trisomy 21 reference. Zemel BS, Pipan M, Stallings VA, Hall W, Schgadt K, Freedman DS, Thorpe P. Growth Charts for Children with Down Syndrome in the U.S. Pediatrics, 2015'; + const whoText = 'World Health Organisation Multicentre Growth Reference Standards (WHO MGRS) (2006/2007)'; + if (reference === 'trisomy-21') return trisomy; else if (reference === 'turner') return turnerSyndrome; else if (reference === 'uk-who') { @@ -21,5 +25,7 @@ export const referenceText = (reference: 'uk-who' | 'trisomy-21' | 'turner' | 'c return cdcText; } else if (reference === 'trisomy-21-aap') { return trisomy21AAP; + } else if (reference === 'who') { + return whoText; } else throw new Error('No reference supplied'); }; diff --git a/src/testParameters/measurements/whoHeightToNineteenGirl.ts b/src/testParameters/measurements/whoHeightToNineteenGirl.ts new file mode 100644 index 0000000..433ab0b --- /dev/null +++ b/src/testParameters/measurements/whoHeightToNineteenGirl.ts @@ -0,0 +1,16940 @@ +import { Measurement } from '../../interfaces/RCPCHMeasurementObject'; + +export const whoToNineteenGirlHeight: Measurement[] = [ + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1759-04-11', + chronological_decimal_age: 0.0, + corrected_decimal_age: 0.0, + chronological_calendar_age: 'Birth date', + corrected_calendar_age: 'Birth date', + corrected_gestational_age: { + corrected_gestation_weeks: 40, + corrected_gestation_days: 0, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 49.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07929359105980113, + corrected_centile: 46.839955192286304, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07929359105980113, + chronological_centile: 46.839955192286304, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.0, + y: 49.0, + b: null, + centile: 46.839955192286304, + sds: -0.07929359105980113, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: 'Birth date', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.0, + y: 49.0, + b: null, + centile: 46.839955192286304, + sds: -0.07929359105980113, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: 'Birth date', + corrected_gestational_age: '40 + 0 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.0, + y: -0.07929359105980113, + b: null, + centile: 46.839955192286304, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: 'Birth date', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.0, + y: -0.07929359105980113, + b: null, + centile: 46.839955192286304, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: 'Birth date', + corrected_gestational_age: '40 + 0 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1759-06-10', + chronological_decimal_age: 0.16427104722792607, + corrected_decimal_age: 0.16427104722792607, + chronological_calendar_age: '1 month, 4 weeks and 2 days', + corrected_calendar_age: '1 month, 4 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 56.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.08872125925899098, + corrected_centile: 46.4651718357451, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.08872125925899098, + chronological_centile: 46.4651718357451, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.16427104722792607, + y: 56.8, + b: null, + centile: 46.4651718357451, + sds: -0.08872125925899098, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.16427104722792607, + y: 56.8, + b: null, + centile: 46.4651718357451, + sds: -0.08872125925899098, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.16427104722792607, + y: -0.08872125925899098, + b: null, + centile: 46.4651718357451, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.16427104722792607, + y: -0.08872125925899098, + b: null, + centile: 46.4651718357451, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1759-08-09', + chronological_decimal_age: 0.32854209445585214, + corrected_decimal_age: 0.32854209445585214, + chronological_calendar_age: '3 months, 4 weeks and 1 day', + corrected_calendar_age: '3 months, 4 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 61.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07802582588811353, + corrected_centile: 46.890375476284596, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07802582588811353, + chronological_centile: 46.890375476284596, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.32854209445585214, + y: 61.8, + b: null, + centile: 46.890375476284596, + sds: -0.07802582588811353, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.32854209445585214, + y: 61.8, + b: null, + centile: 46.890375476284596, + sds: -0.07802582588811353, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.32854209445585214, + y: -0.07802582588811353, + b: null, + centile: 46.890375476284596, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.32854209445585214, + y: -0.07802582588811353, + b: null, + centile: 46.890375476284596, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1759-10-08', + chronological_decimal_age: 0.4928131416837782, + corrected_decimal_age: 0.4928131416837782, + chronological_calendar_age: '5 months, 3 weeks and 6 days', + corrected_calendar_age: '5 months, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 65.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.12883456987887648, + corrected_centile: 44.874427533192055, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.12883456987887648, + chronological_centile: 44.874427533192055, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.4928131416837782, + y: 65.3, + b: null, + centile: 44.874427533192055, + sds: -0.12883456987887648, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.4928131416837782, + y: 65.3, + b: null, + centile: 44.874427533192055, + sds: -0.12883456987887648, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.4928131416837782, + y: -0.12883456987887648, + b: null, + centile: 44.874427533192055, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.4928131416837782, + y: -0.12883456987887648, + b: null, + centile: 44.874427533192055, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1759-12-07', + chronological_decimal_age: 0.6570841889117043, + corrected_decimal_age: 0.6570841889117043, + chronological_calendar_age: '7 months, 3 weeks and 5 days', + corrected_calendar_age: '7 months, 3 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 68.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.13326381811139631, + corrected_centile: 55.30076293543751, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.13326381811139631, + chronological_centile: 55.30076293543751, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.6570841889117043, + y: 68.9, + b: null, + centile: 55.30076293543751, + sds: 0.13326381811139631, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.6570841889117043, + y: 68.9, + b: null, + centile: 55.30076293543751, + sds: 0.13326381811139631, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.6570841889117043, + y: 0.13326381811139631, + b: null, + centile: 55.30076293543751, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.6570841889117043, + y: 0.13326381811139631, + b: null, + centile: 55.30076293543751, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-02-05', + chronological_decimal_age: 0.8213552361396304, + corrected_decimal_age: 0.8213552361396304, + chronological_calendar_age: '9 months, 3 weeks and 4 days', + corrected_calendar_age: '9 months, 3 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 71.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07829426706151243, + corrected_centile: 46.879698884398216, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07829426706151243, + chronological_centile: 46.879698884398216, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.8213552361396304, + y: 71.1, + b: null, + centile: 46.879698884398216, + sds: -0.07829426706151243, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.8213552361396304, + y: 71.1, + b: null, + centile: 46.879698884398216, + sds: -0.07829426706151243, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.8213552361396304, + y: -0.07829426706151243, + b: null, + centile: 46.879698884398216, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.8213552361396304, + y: -0.07829426706151243, + b: null, + centile: 46.879698884398216, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-04-05', + chronological_decimal_age: 0.9856262833675564, + corrected_decimal_age: 0.9856262833675564, + chronological_calendar_age: '11 months, 3 weeks and 4 days', + corrected_calendar_age: '11 months, 3 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 73.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.11829246820404847, + corrected_centile: 45.29179625010587, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.11829246820404847, + chronological_centile: 45.29179625010587, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 0.9856262833675564, + y: 73.5, + b: null, + centile: 45.29179625010587, + sds: -0.11829246820404847, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.9856262833675564, + y: 73.5, + b: null, + centile: 45.29179625010587, + sds: -0.11829246820404847, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 0.9856262833675564, + y: -0.11829246820404847, + b: null, + centile: 45.29179625010587, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 0.9856262833675564, + y: -0.11829246820404847, + b: null, + centile: 45.29179625010587, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-06-04', + chronological_decimal_age: 1.1498973305954825, + corrected_decimal_age: 1.1498973305954825, + chronological_calendar_age: '1 year, 1 month, 3 weeks and 3 days', + corrected_calendar_age: '1 year, 1 month, 3 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 76.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.05627040705457252, + corrected_centile: 47.75631966095084, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.05627040705457252, + chronological_centile: 47.75631966095084, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.1498973305954825, + y: 76.0, + b: null, + centile: 47.75631966095084, + sds: -0.05627040705457252, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 1 month, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.1498973305954825, + y: 76.0, + b: null, + centile: 47.75631966095084, + sds: -0.05627040705457252, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 1 month, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.1498973305954825, + y: -0.05627040705457252, + b: null, + centile: 47.75631966095084, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 1 month, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.1498973305954825, + y: -0.05627040705457252, + b: null, + centile: 47.75631966095084, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 1 month, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-08-03', + chronological_decimal_age: 1.3141683778234086, + corrected_decimal_age: 1.3141683778234086, + chronological_calendar_age: '1 year, 3 months, 3 weeks and 2 days', + corrected_calendar_age: '1 year, 3 months, 3 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 78.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.015712952224336357, + corrected_centile: 50.626830305375606, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.015712952224336357, + chronological_centile: 50.626830305375606, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.3141683778234086, + y: 78.4, + b: null, + centile: 50.626830305375606, + sds: 0.015712952224336357, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 3 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.3141683778234086, + y: 78.4, + b: null, + centile: 50.626830305375606, + sds: 0.015712952224336357, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 3 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.3141683778234086, + y: 0.015712952224336357, + b: null, + centile: 50.626830305375606, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 3 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.3141683778234086, + y: 0.015712952224336357, + b: null, + centile: 50.626830305375606, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 3 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-10-02', + chronological_decimal_age: 1.4784394250513346, + corrected_decimal_age: 1.4784394250513346, + chronological_calendar_age: '1 year, 5 months and 3 weeks', + corrected_calendar_age: '1 year, 5 months and 3 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 80.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.05458788508460203, + corrected_centile: 52.17666046651105, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.05458788508460203, + chronological_centile: 52.17666046651105, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.4784394250513346, + y: 80.6, + b: null, + centile: 52.17666046651105, + sds: 0.05458788508460203, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 5 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.4784394250513346, + y: 80.6, + b: null, + centile: 52.17666046651105, + sds: 0.05458788508460203, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 5 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.4784394250513346, + y: 0.05458788508460203, + b: null, + centile: 52.17666046651105, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 5 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.4784394250513346, + y: 0.05458788508460203, + b: null, + centile: 52.17666046651105, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 5 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1760-12-01', + chronological_decimal_age: 1.6427104722792607, + corrected_decimal_age: 1.6427104722792607, + chronological_calendar_age: '1 year, 7 months, 2 weeks and 6 days', + corrected_calendar_age: '1 year, 7 months, 2 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 82.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09248805901284973, + corrected_centile: 53.6844860958132, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09248805901284973, + chronological_centile: 53.6844860958132, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.6427104722792607, + y: 82.7, + b: null, + centile: 53.6844860958132, + sds: 0.09248805901284973, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 7 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.6427104722792607, + y: 82.7, + b: null, + centile: 53.6844860958132, + sds: 0.09248805901284973, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 7 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.6427104722792607, + y: 0.09248805901284973, + b: null, + centile: 53.6844860958132, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 7 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.6427104722792607, + y: 0.09248805901284973, + b: null, + centile: 53.6844860958132, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 7 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-01-30', + chronological_decimal_age: 1.8069815195071868, + corrected_decimal_age: 1.8069815195071868, + chronological_calendar_age: '1 year, 9 months, 2 weeks and 5 days', + corrected_calendar_age: '1 year, 9 months, 2 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 84.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.03533275704532799, + corrected_centile: 48.59072016427744, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.03533275704532799, + chronological_centile: 48.59072016427744, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.8069815195071868, + y: 84.2, + b: null, + centile: 48.59072016427744, + sds: -0.03533275704532799, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 9 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.8069815195071868, + y: 84.2, + b: null, + centile: 48.59072016427744, + sds: -0.03533275704532799, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 9 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.8069815195071868, + y: -0.03533275704532799, + b: null, + centile: 48.59072016427744, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 9 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.8069815195071868, + y: -0.03533275704532799, + b: null, + centile: 48.59072016427744, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 9 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-03-31', + chronological_decimal_age: 1.9712525667351128, + corrected_decimal_age: 1.9712525667351128, + chronological_calendar_age: '1 year, 11 months, 2 weeks and 6 days', + corrected_calendar_age: '1 year, 11 months, 2 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 86.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09147340163560622, + corrected_centile: 53.64417799832426, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09147340163560622, + chronological_centile: 53.64417799832426, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.9712525667351128, + y: 86.4, + b: null, + centile: 53.64417799832426, + sds: 0.09147340163560622, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 11 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.9712525667351128, + y: 86.4, + b: null, + centile: 53.64417799832426, + sds: 0.09147340163560622, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 11 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.9712525667351128, + y: 0.09147340163560622, + b: null, + centile: 53.64417799832426, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 11 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.9712525667351128, + y: 0.09147340163560622, + b: null, + centile: 53.64417799832426, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 11 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-05-30', + chronological_decimal_age: 2.135523613963039, + corrected_decimal_age: 2.135523613963039, + chronological_calendar_age: '2 years, 1 month, 2 weeks and 5 days', + corrected_calendar_age: '2 years, 1 month, 2 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 87.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.08197287744859298, + corrected_centile: 53.266585924378695, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.08197287744859298, + chronological_centile: 53.266585924378695, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.135523613963039, + y: 87.4, + b: null, + centile: 53.266585924378695, + sds: 0.08197287744859298, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 1 month, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.135523613963039, + y: 87.4, + b: null, + centile: 53.266585924378695, + sds: 0.08197287744859298, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 1 month, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.135523613963039, + y: 0.08197287744859298, + b: null, + centile: 53.266585924378695, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 1 month, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.135523613963039, + y: 0.08197287744859298, + b: null, + centile: 53.266585924378695, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 1 month, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-07-29', + chronological_decimal_age: 2.299794661190965, + corrected_decimal_age: 2.299794661190965, + chronological_calendar_age: '2 years, 3 months, 2 weeks and 4 days', + corrected_calendar_age: '2 years, 3 months, 2 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 89.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.12496581615128124, + corrected_centile: 54.97246935455984, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.12496581615128124, + chronological_centile: 54.97246935455984, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.299794661190965, + y: 89.2, + b: null, + centile: 54.97246935455984, + sds: 0.12496581615128124, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 3 months, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.299794661190965, + y: 89.2, + b: null, + centile: 54.97246935455984, + sds: 0.12496581615128124, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 3 months, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.299794661190965, + y: 0.12496581615128124, + b: null, + centile: 54.97246935455984, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 3 months, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.299794661190965, + y: 0.12496581615128124, + b: null, + centile: 54.97246935455984, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 3 months, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-09-27', + chronological_decimal_age: 2.4640657084188913, + corrected_decimal_age: 2.4640657084188913, + chronological_calendar_age: '2 years, 5 months, 2 weeks and 2 days', + corrected_calendar_age: '2 years, 5 months, 2 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 90.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.09839353471923355, + corrected_centile: 46.080990415841136, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.09839353471923355, + chronological_centile: 46.080990415841136, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.4640657084188913, + y: 90.0, + b: null, + centile: 46.080990415841136, + sds: -0.09839353471923355, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 5 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.4640657084188913, + y: 90.0, + b: null, + centile: 46.080990415841136, + sds: -0.09839353471923355, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 5 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.4640657084188913, + y: -0.09839353471923355, + b: null, + centile: 46.080990415841136, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 5 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.4640657084188913, + y: -0.09839353471923355, + b: null, + centile: 46.080990415841136, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 5 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1761-11-26', + chronological_decimal_age: 2.628336755646817, + corrected_decimal_age: 2.628336755646817, + chronological_calendar_age: '2 years, 7 months, 2 weeks and 1 day', + corrected_calendar_age: '2 years, 7 months, 2 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 91.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.014263162138052529, + corrected_centile: 50.5689985502086, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.014263162138052529, + chronological_centile: 50.5689985502086, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.628336755646817, + y: 91.9, + b: null, + centile: 50.5689985502086, + sds: 0.014263162138052529, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 7 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.628336755646817, + y: 91.9, + b: null, + centile: 50.5689985502086, + sds: 0.014263162138052529, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 7 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.628336755646817, + y: 0.014263162138052529, + b: null, + centile: 50.5689985502086, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 7 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.628336755646817, + y: 0.014263162138052529, + b: null, + centile: 50.5689985502086, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 7 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-01-25', + chronological_decimal_age: 2.7926078028747434, + corrected_decimal_age: 2.7926078028747434, + chronological_calendar_age: '2 years, 9 months and 2 weeks', + corrected_calendar_age: '2 years, 9 months and 2 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 93.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.10989692488044416, + corrected_centile: 54.37544393185656, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.10989692488044416, + chronological_centile: 54.37544393185656, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.7926078028747434, + y: 93.7, + b: null, + centile: 54.37544393185656, + sds: 0.10989692488044416, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 9 months and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.7926078028747434, + y: 93.7, + b: null, + centile: 54.37544393185656, + sds: 0.10989692488044416, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 9 months and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.7926078028747434, + y: 0.10989692488044416, + b: null, + centile: 54.37544393185656, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 9 months and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.7926078028747434, + y: 0.10989692488044416, + b: null, + centile: 54.37544393185656, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 9 months and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-03-26', + chronological_decimal_age: 2.9568788501026693, + corrected_decimal_age: 2.9568788501026693, + chronological_calendar_age: '2 years, 11 months, 2 weeks and 1 day', + corrected_calendar_age: '2 years, 11 months, 2 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 94.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.02417273146849083, + corrected_centile: 49.03574144543583, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.02417273146849083, + chronological_centile: 49.03574144543583, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.9568788501026693, + y: 94.6, + b: null, + centile: 49.03574144543583, + sds: -0.02417273146849083, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 11 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.9568788501026693, + y: 94.6, + b: null, + centile: 49.03574144543583, + sds: -0.02417273146849083, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 11 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.9568788501026693, + y: -0.02417273146849083, + b: null, + centile: 49.03574144543583, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 11 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.9568788501026693, + y: -0.02417273146849083, + b: null, + centile: 49.03574144543583, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 11 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-05-25', + chronological_decimal_age: 3.1211498973305956, + corrected_decimal_age: 3.1211498973305956, + chronological_calendar_age: '3 years, 1 month and 2 weeks', + corrected_calendar_age: '3 years, 1 month and 2 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 96.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09061424482833594, + corrected_centile: 53.610044361813515, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09061424482833594, + chronological_centile: 53.610044361813515, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.1211498973305956, + y: 96.4, + b: null, + centile: 53.610044361813515, + sds: 0.09061424482833594, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 1 month and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.1211498973305956, + y: 96.4, + b: null, + centile: 53.610044361813515, + sds: 0.09061424482833594, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 1 month and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.1211498973305956, + y: 0.09061424482833594, + b: null, + centile: 53.610044361813515, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 1 month and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.1211498973305956, + y: 0.09061424482833594, + b: null, + centile: 53.610044361813515, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 1 month and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-07-24', + chronological_decimal_age: 3.2854209445585214, + corrected_decimal_age: 3.2854209445585214, + chronological_calendar_age: '3 years, 3 months, 1 week and 6 days', + corrected_calendar_age: '3 years, 3 months, 1 week and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 97.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.08328392043413364, + corrected_centile: 53.31871072463525, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.08328392043413364, + chronological_centile: 53.31871072463525, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.2854209445585214, + y: 97.7, + b: null, + centile: 53.31871072463525, + sds: 0.08328392043413364, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 3 months, 1 week and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.2854209445585214, + y: 97.7, + b: null, + centile: 53.31871072463525, + sds: 0.08328392043413364, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 3 months, 1 week and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.2854209445585214, + y: 0.08328392043413364, + b: null, + centile: 53.31871072463525, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 3 months, 1 week and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.2854209445585214, + y: 0.08328392043413364, + b: null, + centile: 53.31871072463525, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 3 months, 1 week and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-09-22', + chronological_decimal_age: 3.4496919917864477, + corrected_decimal_age: 3.4496919917864477, + chronological_calendar_age: '3 years, 5 months, 1 week and 4 days', + corrected_calendar_age: '3 years, 5 months, 1 week and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 98.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.06002099465459752, + corrected_centile: 52.393054324160246, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.06002099465459752, + chronological_centile: 52.393054324160246, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.4496919917864477, + y: 98.9, + b: null, + centile: 52.393054324160246, + sds: 0.06002099465459752, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 5 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4496919917864477, + y: 98.9, + b: null, + centile: 52.393054324160246, + sds: 0.06002099465459752, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 5 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.4496919917864477, + y: 0.06002099465459752, + b: null, + centile: 52.393054324160246, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 5 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4496919917864477, + y: 0.06002099465459752, + b: null, + centile: 52.393054324160246, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 5 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1762-11-21', + chronological_decimal_age: 3.6139630390143735, + corrected_decimal_age: 3.6139630390143735, + chronological_calendar_age: '3 years, 7 months, 1 week and 3 days', + corrected_calendar_age: '3 years, 7 months, 1 week and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 99.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.09963337502629621, + corrected_centile: 46.03176981048201, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.09963337502629621, + chronological_centile: 46.03176981048201, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.6139630390143735, + y: 99.5, + b: null, + centile: 46.03176981048201, + sds: -0.09963337502629621, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 7 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.6139630390143735, + y: 99.5, + b: null, + centile: 46.03176981048201, + sds: -0.09963337502629621, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 7 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.6139630390143735, + y: -0.09963337502629621, + b: null, + centile: 46.03176981048201, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 7 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.6139630390143735, + y: -0.09963337502629621, + b: null, + centile: 46.03176981048201, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 7 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-01-20', + chronological_decimal_age: 3.7782340862423, + corrected_decimal_age: 3.7782340862423, + chronological_calendar_age: '3 years, 9 months, 1 week and 2 days', + corrected_calendar_age: '3 years, 9 months, 1 week and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 101.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0639441935091523, + corrected_centile: 52.54926685360498, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0639441935091523, + chronological_centile: 52.54926685360498, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.7782340862423, + y: 101.4, + b: null, + centile: 52.54926685360498, + sds: 0.0639441935091523, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 9 months, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.7782340862423, + y: 101.4, + b: null, + centile: 52.54926685360498, + sds: 0.0639441935091523, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 9 months, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.7782340862423, + y: 0.0639441935091523, + b: null, + centile: 52.54926685360498, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 9 months, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.7782340862423, + y: 0.0639441935091523, + b: null, + centile: 52.54926685360498, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 9 months, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-03-21', + chronological_decimal_age: 3.9425051334702257, + corrected_decimal_age: 3.9425051334702257, + chronological_calendar_age: '3 years, 11 months, 1 week and 3 days', + corrected_calendar_age: '3 years, 11 months, 1 week and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 102.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07505783781228893, + corrected_centile: 47.0084346852602, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07505783781228893, + chronological_centile: 47.0084346852602, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.9425051334702257, + y: 102.0, + b: null, + centile: 47.0084346852602, + sds: -0.07505783781228893, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 11 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.9425051334702257, + y: 102.0, + b: null, + centile: 47.0084346852602, + sds: -0.07505783781228893, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 11 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.9425051334702257, + y: -0.07505783781228893, + b: null, + centile: 47.0084346852602, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 11 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.9425051334702257, + y: -0.07505783781228893, + b: null, + centile: 47.0084346852602, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 11 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-05-20', + chronological_decimal_age: 4.1067761806981515, + corrected_decimal_age: 4.1067761806981515, + chronological_calendar_age: '4 years, 1 month, 1 week and 2 days', + corrected_calendar_age: '4 years, 1 month, 1 week and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 103.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.04226810523228887, + corrected_centile: 48.31424854452422, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.04226810523228887, + chronological_centile: 48.31424854452422, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.1067761806981515, + y: 103.3, + b: null, + centile: 48.31424854452422, + sds: -0.04226810523228887, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 1 month, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.1067761806981515, + y: 103.3, + b: null, + centile: 48.31424854452422, + sds: -0.04226810523228887, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 1 month, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.1067761806981515, + y: -0.04226810523228887, + b: null, + centile: 48.31424854452422, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 1 month, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.1067761806981515, + y: -0.04226810523228887, + b: null, + centile: 48.31424854452422, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 1 month, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-07-19', + chronological_decimal_age: 4.271047227926078, + corrected_decimal_age: 4.271047227926078, + chronological_calendar_age: '4 years, 3 months, 1 week and 1 day', + corrected_calendar_age: '4 years, 3 months, 1 week and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 105.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.08499478655537358, + corrected_centile: 53.386723228063396, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.08499478655537358, + chronological_centile: 53.386723228063396, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.271047227926078, + y: 105.0, + b: null, + centile: 53.386723228063396, + sds: 0.08499478655537358, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 3 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.271047227926078, + y: 105.0, + b: null, + centile: 53.386723228063396, + sds: 0.08499478655537358, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 3 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.271047227926078, + y: 0.08499478655537358, + b: null, + centile: 53.386723228063396, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 3 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.271047227926078, + y: 0.08499478655537358, + b: null, + centile: 53.386723228063396, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 3 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-09-17', + chronological_decimal_age: 4.435318275154004, + corrected_decimal_age: 4.435318275154004, + chronological_calendar_age: '4 years, 5 months and 6 days', + corrected_calendar_age: '4 years, 5 months and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 105.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.031199859195361345, + corrected_centile: 48.75550761033764, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.031199859195361345, + chronological_centile: 48.75550761033764, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.435318275154004, + y: 105.6, + b: null, + centile: 48.75550761033764, + sds: -0.031199859195361345, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 5 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.435318275154004, + y: 105.6, + b: null, + centile: 48.75550761033764, + sds: -0.031199859195361345, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 5 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.435318275154004, + y: -0.031199859195361345, + b: null, + centile: 48.75550761033764, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 5 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.435318275154004, + y: -0.031199859195361345, + b: null, + centile: 48.75550761033764, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 5 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1763-11-16', + chronological_decimal_age: 4.59958932238193, + corrected_decimal_age: 4.59958932238193, + chronological_calendar_age: '4 years, 7 months and 5 days', + corrected_calendar_age: '4 years, 7 months and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 106.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.11724749143148706, + corrected_centile: 45.33319668484818, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.11724749143148706, + chronological_centile: 45.33319668484818, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.59958932238193, + y: 106.3, + b: null, + centile: 45.33319668484818, + sds: -0.11724749143148706, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 7 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.59958932238193, + y: 106.3, + b: null, + centile: 45.33319668484818, + sds: -0.11724749143148706, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 7 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.59958932238193, + y: -0.11724749143148706, + b: null, + centile: 45.33319668484818, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 7 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.59958932238193, + y: -0.11724749143148706, + b: null, + centile: 45.33319668484818, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 7 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-01-15', + chronological_decimal_age: 4.763860369609857, + corrected_decimal_age: 4.763860369609857, + chronological_calendar_age: '4 years, 9 months and 4 days', + corrected_calendar_age: '4 years, 9 months and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 107.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.08867991810477215, + corrected_centile: 46.46681463385165, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.08867991810477215, + chronological_centile: 46.46681463385165, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.763860369609857, + y: 107.5, + b: null, + centile: 46.46681463385165, + sds: -0.08867991810477215, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 9 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.763860369609857, + y: 107.5, + b: null, + centile: 46.46681463385165, + sds: -0.08867991810477215, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 9 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.763860369609857, + y: -0.08867991810477215, + b: null, + centile: 46.46681463385165, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 9 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.763860369609857, + y: -0.08867991810477215, + b: null, + centile: 46.46681463385165, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 9 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-03-15', + chronological_decimal_age: 4.9281314168377826, + corrected_decimal_age: 4.9281314168377826, + chronological_calendar_age: '4 years, 11 months and 4 days', + corrected_calendar_age: '4 years, 11 months and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 109.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.049208508575031666, + corrected_centile: 51.96234346896653, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.049208508575031666, + chronological_centile: 51.96234346896653, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.9281314168377826, + y: 109.2, + b: null, + centile: 51.96234346896653, + sds: 0.049208508575031666, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 11 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.9281314168377826, + y: 109.2, + b: null, + centile: 51.96234346896653, + sds: 0.049208508575031666, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 11 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.9281314168377826, + y: 0.049208508575031666, + b: null, + centile: 51.96234346896653, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 11 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.9281314168377826, + y: 0.049208508575031666, + b: null, + centile: 51.96234346896653, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 11 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-05-14', + chronological_decimal_age: 5.092402464065708, + corrected_decimal_age: 5.092402464065708, + chronological_calendar_age: '5 years, 1 month and 3 days', + corrected_calendar_age: '5 years, 1 month and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 109.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.005476019602716033, + corrected_centile: 50.218460482961035, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.005476019602716033, + chronological_centile: 50.218460482961035, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.092402464065708, + y: 109.7, + b: null, + centile: 50.218460482961035, + sds: 0.005476019602716033, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 1 month and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.092402464065708, + y: 109.7, + b: null, + centile: 50.218460482961035, + sds: 0.005476019602716033, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 1 month and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.092402464065708, + y: 0.005476019602716033, + b: null, + centile: 50.218460482961035, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 1 month and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.092402464065708, + y: 0.005476019602716033, + b: null, + centile: 50.218460482961035, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 1 month and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-07-13', + chronological_decimal_age: 5.256673511293634, + corrected_decimal_age: 5.256673511293634, + chronological_calendar_age: '5 years, 3 months and 2 days', + corrected_calendar_age: '5 years, 3 months and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 110.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0022923827315139856, + corrected_centile: 50.09145275934864, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0022923827315139856, + chronological_centile: 50.09145275934864, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.256673511293634, + y: 110.7, + b: null, + centile: 50.09145275934864, + sds: 0.0022923827315139856, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 3 months and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.256673511293634, + y: 110.7, + b: null, + centile: 50.09145275934864, + sds: 0.0022923827315139856, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 3 months and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.256673511293634, + y: 0.0022923827315139856, + b: null, + centile: 50.09145275934864, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 3 months and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.256673511293634, + y: 0.0022923827315139856, + b: null, + centile: 50.09145275934864, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 3 months and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-09-11', + chronological_decimal_age: 5.420944558521561, + corrected_decimal_age: 5.420944558521561, + chronological_calendar_age: '5 years and 5 months', + corrected_calendar_age: '5 years and 5 months', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 111.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.005018295376480779, + corrected_centile: 50.20020017983862, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.005018295376480779, + chronological_centile: 50.20020017983862, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.420944558521561, + y: 111.7, + b: null, + centile: 50.20020017983862, + sds: 0.005018295376480779, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years and 5 months', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.420944558521561, + y: 111.7, + b: null, + centile: 50.20020017983862, + sds: 0.005018295376480779, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years and 5 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.420944558521561, + y: 0.005018295376480779, + b: null, + centile: 50.20020017983862, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years and 5 months', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.420944558521561, + y: 0.005018295376480779, + b: null, + centile: 50.20020017983862, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years and 5 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1764-11-10', + chronological_decimal_age: 5.585215605749487, + corrected_decimal_age: 5.585215605749487, + chronological_calendar_age: '5 years, 6 months, 4 weeks and 2 days', + corrected_calendar_age: '5 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 113.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.07927046815751487, + corrected_centile: 53.159125231984284, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.07927046815751487, + chronological_centile: 53.159125231984284, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.585215605749487, + y: 113.1, + b: null, + centile: 53.159125231984284, + sds: 0.07927046815751487, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 6 months, 4 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.585215605749487, + y: 113.1, + b: null, + centile: 53.159125231984284, + sds: 0.07927046815751487, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.585215605749487, + y: 0.07927046815751487, + b: null, + centile: 53.159125231984284, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 6 months, 4 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.585215605749487, + y: 0.07927046815751487, + b: null, + centile: 53.159125231984284, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-01-09', + chronological_decimal_age: 5.749486652977413, + corrected_decimal_age: 5.749486652977413, + chronological_calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 113.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.027053449900818198, + corrected_centile: 51.07914486227415, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.027053449900818198, + chronological_centile: 51.07914486227415, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.749486652977413, + y: 113.8, + b: null, + centile: 51.07914486227415, + sds: 0.027053449900818198, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.749486652977413, + y: 113.8, + b: null, + centile: 51.07914486227415, + sds: 0.027053449900818198, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.749486652977413, + y: 0.027053449900818198, + b: null, + centile: 51.07914486227415, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.749486652977413, + y: 0.027053449900818198, + b: null, + centile: 51.07914486227415, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-03-10', + chronological_decimal_age: 5.9137577002053385, + corrected_decimal_age: 5.9137577002053385, + chronological_calendar_age: '5 years, 10 months, 3 weeks and 6 days', + corrected_calendar_age: '5 years, 10 months, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 114.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.05742152857205303, + corrected_centile: 52.28952930132667, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.05742152857205303, + chronological_centile: 52.28952930132667, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.9137577002053385, + y: 114.9, + b: null, + centile: 52.28952930132667, + sds: 0.05742152857205303, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 10 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.9137577002053385, + y: 114.9, + b: null, + centile: 52.28952930132667, + sds: 0.05742152857205303, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 10 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.9137577002053385, + y: 0.05742152857205303, + b: null, + centile: 52.28952930132667, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 10 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.9137577002053385, + y: 0.05742152857205303, + b: null, + centile: 52.28952930132667, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 10 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-05-09', + chronological_decimal_age: 6.078028747433265, + corrected_decimal_age: 6.078028747433265, + chronological_calendar_age: '6 years and 4 weeks', + corrected_calendar_age: '6 years and 4 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 115.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.05681330818629872, + corrected_centile: 47.734695633115166, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.05681330818629872, + chronological_centile: 47.734695633115166, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.078028747433265, + y: 115.3, + b: null, + centile: 47.734695633115166, + sds: -0.05681330818629872, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.078028747433265, + y: 115.3, + b: null, + centile: 47.734695633115166, + sds: -0.05681330818629872, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.078028747433265, + y: -0.05681330818629872, + b: null, + centile: 47.734695633115166, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.078028747433265, + y: -0.05681330818629872, + b: null, + centile: 47.734695633115166, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-07-08', + chronological_decimal_age: 6.242299794661191, + corrected_decimal_age: 6.242299794661191, + chronological_calendar_age: '6 years, 2 months, 3 weeks and 6 days', + corrected_calendar_age: '6 years, 2 months, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 116.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07881732548649145, + corrected_centile: 46.85889615862367, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07881732548649145, + chronological_centile: 46.85889615862367, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.242299794661191, + y: 116.1, + b: null, + centile: 46.85889615862367, + sds: -0.07881732548649145, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 2 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.242299794661191, + y: 116.1, + b: null, + centile: 46.85889615862367, + sds: -0.07881732548649145, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 2 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.242299794661191, + y: -0.07881732548649145, + b: null, + centile: 46.85889615862367, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 2 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.242299794661191, + y: -0.07881732548649145, + b: null, + centile: 46.85889615862367, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 2 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-09-06', + chronological_decimal_age: 6.406570841889117, + corrected_decimal_age: 6.406570841889117, + chronological_calendar_age: '6 years, 4 months, 3 weeks and 5 days', + corrected_calendar_age: '6 years, 4 months, 3 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 117.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.012763163407014026, + corrected_centile: 50.5091627278083, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.012763163407014026, + chronological_centile: 50.5091627278083, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.406570841889117, + y: 117.5, + b: null, + centile: 50.5091627278083, + sds: 0.012763163407014026, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.406570841889117, + y: 117.5, + b: null, + centile: 50.5091627278083, + sds: 0.012763163407014026, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.406570841889117, + y: 0.012763163407014026, + b: null, + centile: 50.5091627278083, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.406570841889117, + y: 0.012763163407014026, + b: null, + centile: 50.5091627278083, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1765-11-05', + chronological_decimal_age: 6.570841889117043, + corrected_decimal_age: 6.570841889117043, + chronological_calendar_age: '6 years, 6 months, 3 weeks and 4 days', + corrected_calendar_age: '6 years, 6 months, 3 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 118.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.038264631830930276, + corrected_centile: 51.52616550836008, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.038264631830930276, + chronological_centile: 51.52616550836008, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.570841889117043, + y: 118.6, + b: null, + centile: 51.52616550836008, + sds: 0.038264631830930276, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 6 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.570841889117043, + y: 118.6, + b: null, + centile: 51.52616550836008, + sds: 0.038264631830930276, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 6 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.570841889117043, + y: 0.038264631830930276, + b: null, + centile: 51.52616550836008, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 6 months, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.570841889117043, + y: 0.038264631830930276, + b: null, + centile: 51.52616550836008, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 6 months, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-01-04', + chronological_decimal_age: 6.7351129363449695, + corrected_decimal_age: 6.7351129363449695, + chronological_calendar_age: '6 years, 8 months, 3 weeks and 3 days', + corrected_calendar_age: '6 years, 8 months, 3 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 119.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.017971602909313756, + corrected_centile: 50.71692463262827, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.017971602909313756, + chronological_centile: 50.71692463262827, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.7351129363449695, + y: 119.4, + b: null, + centile: 50.71692463262827, + sds: 0.017971602909313756, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 8 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.7351129363449695, + y: 119.4, + b: null, + centile: 50.71692463262827, + sds: 0.017971602909313756, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 8 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.7351129363449695, + y: 0.017971602909313756, + b: null, + centile: 50.71692463262827, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 8 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.7351129363449695, + y: 0.017971602909313756, + b: null, + centile: 50.71692463262827, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 8 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-03-05', + chronological_decimal_age: 6.899383983572895, + corrected_decimal_age: 6.899383983572895, + chronological_calendar_age: '6 years, 10 months, 3 weeks and 1 day', + corrected_calendar_age: '6 years, 10 months, 3 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 120.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.06847089628776878, + corrected_centile: 52.729460645658236, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.06847089628776878, + chronological_centile: 52.729460645658236, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.899383983572895, + y: 120.6, + b: null, + centile: 52.729460645658236, + sds: 0.06847089628776878, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 10 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.899383983572895, + y: 120.6, + b: null, + centile: 52.729460645658236, + sds: 0.06847089628776878, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 10 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.899383983572895, + y: 0.06847089628776878, + b: null, + centile: 52.729460645658236, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 10 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.899383983572895, + y: 0.06847089628776878, + b: null, + centile: 52.729460645658236, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 10 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-05-04', + chronological_decimal_age: 7.063655030800821, + corrected_decimal_age: 7.063655030800821, + chronological_calendar_age: '7 years, 3 weeks and 2 days', + corrected_calendar_age: '7 years, 3 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 121.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.02008073413087075, + corrected_centile: 50.801051550813746, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.02008073413087075, + chronological_centile: 50.801051550813746, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.063655030800821, + y: 121.3, + b: null, + centile: 50.801051550813746, + sds: 0.02008073413087075, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.063655030800821, + y: 121.3, + b: null, + centile: 50.801051550813746, + sds: 0.02008073413087075, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.063655030800821, + y: 0.02008073413087075, + b: null, + centile: 50.801051550813746, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.063655030800821, + y: 0.02008073413087075, + b: null, + centile: 50.801051550813746, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-07-03', + chronological_decimal_age: 7.227926078028747, + corrected_decimal_age: 7.227926078028747, + chronological_calendar_age: '7 years, 2 months, 3 weeks and 1 day', + corrected_calendar_age: '7 years, 2 months, 3 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 121.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.09030017801158209, + corrected_centile: 46.402433934891505, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.09030017801158209, + chronological_centile: 46.402433934891505, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.227926078028747, + y: 121.6, + b: null, + centile: 46.402433934891505, + sds: -0.09030017801158209, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 2 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.227926078028747, + y: 121.6, + b: null, + centile: 46.402433934891505, + sds: -0.09030017801158209, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 2 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.227926078028747, + y: -0.09030017801158209, + b: null, + centile: 46.402433934891505, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 2 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.227926078028747, + y: -0.09030017801158209, + b: null, + centile: 46.402433934891505, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 2 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-09-01', + chronological_decimal_age: 7.392197125256674, + corrected_decimal_age: 7.392197125256674, + chronological_calendar_age: '7 years, 4 months and 3 weeks', + corrected_calendar_age: '7 years, 4 months and 3 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 122.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.04258808121997424, + corrected_centile: 48.3014948339781, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.04258808121997424, + chronological_centile: 48.3014948339781, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.392197125256674, + y: 122.8, + b: null, + centile: 48.3014948339781, + sds: -0.04258808121997424, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 4 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.392197125256674, + y: 122.8, + b: null, + centile: 48.3014948339781, + sds: -0.04258808121997424, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 4 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.392197125256674, + y: -0.04258808121997424, + b: null, + centile: 48.3014948339781, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 4 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.392197125256674, + y: -0.04258808121997424, + b: null, + centile: 48.3014948339781, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 4 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-10-31', + chronological_decimal_age: 7.5564681724846, + corrected_decimal_age: 7.5564681724846, + chronological_calendar_age: '7 years, 6 months, 2 weeks and 6 days', + corrected_calendar_age: '7 years, 6 months, 2 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 123.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.018636084392780482, + corrected_centile: 49.25657083231765, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.018636084392780482, + chronological_centile: 49.25657083231765, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.5564681724846, + y: 123.9, + b: null, + centile: 49.25657083231765, + sds: -0.018636084392780482, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 6 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.5564681724846, + y: 123.9, + b: null, + centile: 49.25657083231765, + sds: -0.018636084392780482, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 6 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.5564681724846, + y: -0.018636084392780482, + b: null, + centile: 49.25657083231765, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 6 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.5564681724846, + y: -0.018636084392780482, + b: null, + centile: 49.25657083231765, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 6 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1766-12-30', + chronological_decimal_age: 7.7207392197125255, + corrected_decimal_age: 7.7207392197125255, + chronological_calendar_age: '7 years, 8 months, 2 weeks and 5 days', + corrected_calendar_age: '7 years, 8 months, 2 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 125.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0655717990961122, + corrected_centile: 52.61406290806884, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0655717990961122, + chronological_centile: 52.61406290806884, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.7207392197125255, + y: 125.3, + b: null, + centile: 52.61406290806884, + sds: 0.0655717990961122, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 8 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.7207392197125255, + y: 125.3, + b: null, + centile: 52.61406290806884, + sds: 0.0655717990961122, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 8 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.7207392197125255, + y: 0.0655717990961122, + b: null, + centile: 52.61406290806884, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 8 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.7207392197125255, + y: 0.0655717990961122, + b: null, + centile: 52.61406290806884, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 8 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-02-28', + chronological_decimal_age: 7.885010266940451, + corrected_decimal_age: 7.885010266940451, + chronological_calendar_age: '7 years, 10 months, 2 weeks and 3 days', + corrected_calendar_age: '7 years, 10 months, 2 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 126.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.020532310684346744, + corrected_centile: 50.81906313469783, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.020532310684346744, + chronological_centile: 50.81906313469783, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.885010266940451, + y: 126.0, + b: null, + centile: 50.81906313469783, + sds: 0.020532310684346744, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 10 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.885010266940451, + y: 126.0, + b: null, + centile: 50.81906313469783, + sds: 0.020532310684346744, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 10 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.885010266940451, + y: 0.020532310684346744, + b: null, + centile: 50.81906313469783, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 10 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.885010266940451, + y: 0.020532310684346744, + b: null, + centile: 50.81906313469783, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 10 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-04-29', + chronological_decimal_age: 8.049281314168377, + corrected_decimal_age: 8.049281314168377, + chronological_calendar_age: '8 years, 2 weeks and 4 days', + corrected_calendar_age: '8 years, 2 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 126.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.007134743940761589, + corrected_centile: 50.28463268692792, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.007134743940761589, + chronological_centile: 50.28463268692792, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.049281314168377, + y: 126.9, + b: null, + centile: 50.28463268692792, + sds: 0.007134743940761589, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.049281314168377, + y: 126.9, + b: null, + centile: 50.28463268692792, + sds: 0.007134743940761589, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.049281314168377, + y: 0.007134743940761589, + b: null, + centile: 50.28463268692792, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.049281314168377, + y: 0.007134743940761589, + b: null, + centile: 50.28463268692792, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-06-28', + chronological_decimal_age: 8.213552361396303, + corrected_decimal_age: 8.213552361396303, + chronological_calendar_age: '8 years, 2 months, 2 weeks and 3 days', + corrected_calendar_age: '8 years, 2 months, 2 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 128.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.1033619483106794, + corrected_centile: 54.11621444035355, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.1033619483106794, + chronological_centile: 54.11621444035355, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.213552361396303, + y: 128.4, + b: null, + centile: 54.11621444035355, + sds: 0.1033619483106794, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 2 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.213552361396303, + y: 128.4, + b: null, + centile: 54.11621444035355, + sds: 0.1033619483106794, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 2 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.213552361396303, + y: 0.1033619483106794, + b: null, + centile: 54.11621444035355, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 2 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.213552361396303, + y: 0.1033619483106794, + b: null, + centile: 54.11621444035355, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 2 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-08-27', + chronological_decimal_age: 8.37782340862423, + corrected_decimal_age: 8.37782340862423, + chronological_calendar_age: '8 years, 4 months, 2 weeks and 2 days', + corrected_calendar_age: '8 years, 4 months, 2 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 128.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.06290258656384567, + corrected_centile: 47.49220375728041, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.06290258656384567, + chronological_centile: 47.49220375728041, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.37782340862423, + y: 128.4, + b: null, + centile: 47.49220375728041, + sds: -0.06290258656384567, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 4 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.37782340862423, + y: 128.4, + b: null, + centile: 47.49220375728041, + sds: -0.06290258656384567, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 4 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.37782340862423, + y: -0.06290258656384567, + b: null, + centile: 47.49220375728041, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 4 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.37782340862423, + y: -0.06290258656384567, + b: null, + centile: 47.49220375728041, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 4 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-10-26', + chronological_decimal_age: 8.542094455852157, + corrected_decimal_age: 8.542094455852157, + chronological_calendar_age: '8 years, 6 months, 2 weeks and 1 day', + corrected_calendar_age: '8 years, 6 months, 2 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 129.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.09401227462599049, + corrected_centile: 46.25497030908649, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.09401227462599049, + chronological_centile: 46.25497030908649, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.542094455852157, + y: 129.2, + b: null, + centile: 46.25497030908649, + sds: -0.09401227462599049, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 6 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.542094455852157, + y: 129.2, + b: null, + centile: 46.25497030908649, + sds: -0.09401227462599049, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 6 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.542094455852157, + y: -0.09401227462599049, + b: null, + centile: 46.25497030908649, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 6 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.542094455852157, + y: -0.09401227462599049, + b: null, + centile: 46.25497030908649, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 6 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1767-12-25', + chronological_decimal_age: 8.706365503080082, + corrected_decimal_age: 8.706365503080082, + chronological_calendar_age: '8 years, 8 months and 2 weeks', + corrected_calendar_age: '8 years, 8 months and 2 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 130.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0022778969256167826, + corrected_centile: 49.90912513918631, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0022778969256167826, + chronological_centile: 49.90912513918631, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.706365503080082, + y: 130.7, + b: null, + centile: 49.90912513918631, + sds: -0.0022778969256167826, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 8 months and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.706365503080082, + y: 130.7, + b: null, + centile: 49.90912513918631, + sds: -0.0022778969256167826, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 8 months and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.706365503080082, + y: -0.0022778969256167826, + b: null, + centile: 49.90912513918631, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 8 months and 2 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.706365503080082, + y: -0.0022778969256167826, + b: null, + centile: 49.90912513918631, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 8 months and 2 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-02-23', + chronological_decimal_age: 8.870636550308008, + corrected_decimal_age: 8.870636550308008, + chronological_calendar_age: '8 years, 10 months, 1 week and 5 days', + corrected_calendar_age: '8 years, 10 months, 1 week and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 132.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0797112762165459, + corrected_centile: 53.17665545650737, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0797112762165459, + chronological_centile: 53.17665545650737, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.870636550308008, + y: 132.2, + b: null, + centile: 53.17665545650737, + sds: 0.0797112762165459, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 10 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.870636550308008, + y: 132.2, + b: null, + centile: 53.17665545650737, + sds: 0.0797112762165459, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 10 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.870636550308008, + y: 0.0797112762165459, + b: null, + centile: 53.17665545650737, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years, 10 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.870636550308008, + y: 0.0797112762165459, + b: null, + centile: 53.17665545650737, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years, 10 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-04-23', + chronological_decimal_age: 9.034907597535934, + corrected_decimal_age: 9.034907597535934, + chronological_calendar_age: '9 years, 1 week and 5 days', + corrected_calendar_age: '9 years, 1 week and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 132.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013497297928789318, + corrected_centile: 50.53844793263779, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.013497297928789318, + chronological_centile: 50.53844793263779, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.034907597535934, + y: 132.8, + b: null, + centile: 50.53844793263779, + sds: 0.013497297928789318, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.034907597535934, + y: 132.8, + b: null, + centile: 50.53844793263779, + sds: 0.013497297928789318, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.034907597535934, + y: 0.013497297928789318, + b: null, + centile: 50.53844793263779, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.034907597535934, + y: 0.013497297928789318, + b: null, + centile: 50.53844793263779, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-06-22', + chronological_decimal_age: 9.19917864476386, + corrected_decimal_age: 9.19917864476386, + chronological_calendar_age: '9 years, 2 months, 1 week and 4 days', + corrected_calendar_age: '9 years, 2 months, 1 week and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 133.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.030189973781313304, + corrected_centile: 48.79577723258651, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.030189973781313304, + chronological_centile: 48.79577723258651, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.19917864476386, + y: 133.5, + b: null, + centile: 48.79577723258651, + sds: -0.030189973781313304, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 2 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.19917864476386, + y: 133.5, + b: null, + centile: 48.79577723258651, + sds: -0.030189973781313304, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 2 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.19917864476386, + y: -0.030189973781313304, + b: null, + centile: 48.79577723258651, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 2 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.19917864476386, + y: -0.030189973781313304, + b: null, + centile: 48.79577723258651, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 2 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-08-21', + chronological_decimal_age: 9.363449691991786, + corrected_decimal_age: 9.363449691991786, + chronological_calendar_age: '9 years, 4 months, 1 week and 3 days', + corrected_calendar_age: '9 years, 4 months, 1 week and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 134.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.06596360745149768, + corrected_centile: 47.37033996848217, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.06596360745149768, + chronological_centile: 47.37033996848217, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.363449691991786, + y: 134.3, + b: null, + centile: 47.37033996848217, + sds: -0.06596360745149768, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 4 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.363449691991786, + y: 134.3, + b: null, + centile: 47.37033996848217, + sds: -0.06596360745149768, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 4 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.363449691991786, + y: -0.06596360745149768, + b: null, + centile: 47.37033996848217, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 4 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.363449691991786, + y: -0.06596360745149768, + b: null, + centile: 47.37033996848217, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 4 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-10-20', + chronological_decimal_age: 9.527720739219713, + corrected_decimal_age: 9.527720739219713, + chronological_calendar_age: '9 years, 6 months, 1 week and 2 days', + corrected_calendar_age: '9 years, 6 months, 1 week and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 135.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0033505472881704035, + corrected_centile: 49.866332752521636, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0033505472881704035, + chronological_centile: 49.866332752521636, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.527720739219713, + y: 135.7, + b: null, + centile: 49.866332752521636, + sds: -0.0033505472881704035, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 6 months, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.527720739219713, + y: 135.7, + b: null, + centile: 49.866332752521636, + sds: -0.0033505472881704035, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 6 months, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.527720739219713, + y: -0.0033505472881704035, + b: null, + centile: 49.866332752521636, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 6 months, 1 week and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.527720739219713, + y: -0.0033505472881704035, + b: null, + centile: 49.866332752521636, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 6 months, 1 week and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1768-12-19', + chronological_decimal_age: 9.69199178644764, + corrected_decimal_age: 9.69199178644764, + chronological_calendar_age: '9 years, 8 months, 1 week and 1 day', + corrected_calendar_age: '9 years, 8 months, 1 week and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 136.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.000872319986440491, + corrected_centile: 49.9651994719505, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.000872319986440491, + chronological_centile: 49.9651994719505, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.69199178644764, + y: 136.7, + b: null, + centile: 49.9651994719505, + sds: -0.000872319986440491, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 8 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.69199178644764, + y: 136.7, + b: null, + centile: 49.9651994719505, + sds: -0.000872319986440491, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 8 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.69199178644764, + y: -0.000872319986440491, + b: null, + centile: 49.9651994719505, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 8 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.69199178644764, + y: -0.000872319986440491, + b: null, + centile: 49.9651994719505, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 8 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-02-17', + chronological_decimal_age: 9.856262833675565, + corrected_decimal_age: 9.856262833675565, + chronological_calendar_age: '9 years, 10 months and 6 days', + corrected_calendar_age: '9 years, 10 months and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 138.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.039203089474083345, + corrected_centile: 51.563576475620565, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.039203089474083345, + chronological_centile: 51.563576475620565, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 9.856262833675565, + y: 138.0, + b: null, + centile: 51.563576475620565, + sds: 0.039203089474083345, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 10 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.856262833675565, + y: 138.0, + b: null, + centile: 51.563576475620565, + sds: 0.039203089474083345, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 10 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 9.856262833675565, + y: 0.039203089474083345, + b: null, + centile: 51.563576475620565, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '9 years, 10 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 9.856262833675565, + y: 0.039203089474083345, + b: null, + centile: 51.563576475620565, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '9 years, 10 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-04-18', + chronological_decimal_age: 10.020533880903491, + corrected_decimal_age: 10.020533880903491, + chronological_calendar_age: '10 years and 1 week', + corrected_calendar_age: '10 years and 1 week', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 138.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.10496720549591818, + corrected_centile: 45.820091557468814, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.10496720549591818, + chronological_centile: 45.820091557468814, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.020533880903491, + y: 138.1, + b: null, + centile: 45.820091557468814, + sds: -0.10496720549591818, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.020533880903491, + y: 138.1, + b: null, + centile: 45.820091557468814, + sds: -0.10496720549591818, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.020533880903491, + y: -0.10496720549591818, + b: null, + centile: 45.820091557468814, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.020533880903491, + y: -0.10496720549591818, + b: null, + centile: 45.820091557468814, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-06-17', + chronological_decimal_age: 10.184804928131417, + corrected_decimal_age: 10.184804928131417, + chronological_calendar_age: '10 years, 2 months and 6 days', + corrected_calendar_age: '10 years, 2 months and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 139.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.05816650963938555, + corrected_centile: 47.68079984869848, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.05816650963938555, + chronological_centile: 47.68079984869848, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.184804928131417, + y: 139.4, + b: null, + centile: 47.68079984869848, + sds: -0.05816650963938555, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 2 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.184804928131417, + y: 139.4, + b: null, + centile: 47.68079984869848, + sds: -0.05816650963938555, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 2 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.184804928131417, + y: -0.05816650963938555, + b: null, + centile: 47.68079984869848, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 2 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.184804928131417, + y: -0.05816650963938555, + b: null, + centile: 47.68079984869848, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 2 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-08-16', + chronological_decimal_age: 10.349075975359343, + corrected_decimal_age: 10.349075975359343, + chronological_calendar_age: '10 years, 4 months and 5 days', + corrected_calendar_age: '10 years, 4 months and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 141.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.024001649415839946, + corrected_centile: 50.95743534782511, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.024001649415839946, + chronological_centile: 50.95743534782511, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.349075975359343, + y: 141.0, + b: null, + centile: 50.95743534782511, + sds: 0.024001649415839946, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 4 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.349075975359343, + y: 141.0, + b: null, + centile: 50.95743534782511, + sds: 0.024001649415839946, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 4 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.349075975359343, + y: 0.024001649415839946, + b: null, + centile: 50.95743534782511, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 4 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.349075975359343, + y: 0.024001649415839946, + b: null, + centile: 50.95743534782511, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 4 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-10-15', + chronological_decimal_age: 10.513347022587268, + corrected_decimal_age: 10.513347022587268, + chronological_calendar_age: '10 years, 6 months and 4 days', + corrected_calendar_age: '10 years, 6 months and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 141.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.058070038053544416, + corrected_centile: 47.68464201375409, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.058070038053544416, + chronological_centile: 47.68464201375409, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.513347022587268, + y: 141.5, + b: null, + centile: 47.68464201375409, + sds: -0.058070038053544416, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 6 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.513347022587268, + y: 141.5, + b: null, + centile: 47.68464201375409, + sds: -0.058070038053544416, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 6 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.513347022587268, + y: -0.058070038053544416, + b: null, + centile: 47.68464201375409, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 6 months and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.513347022587268, + y: -0.058070038053544416, + b: null, + centile: 47.68464201375409, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 6 months and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1769-12-14', + chronological_decimal_age: 10.677618069815194, + corrected_decimal_age: 10.677618069815194, + chronological_calendar_age: '10 years, 8 months and 3 days', + corrected_calendar_age: '10 years, 8 months and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 143.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.030028960910819667, + corrected_centile: 51.19780219428895, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.030028960910819667, + chronological_centile: 51.19780219428895, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.677618069815194, + y: 143.1, + b: null, + centile: 51.19780219428895, + sds: 0.030028960910819667, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 8 months and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.677618069815194, + y: 143.1, + b: null, + centile: 51.19780219428895, + sds: 0.030028960910819667, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 8 months and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.677618069815194, + y: 0.030028960910819667, + b: null, + centile: 51.19780219428895, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 8 months and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.677618069815194, + y: 0.030028960910819667, + b: null, + centile: 51.19780219428895, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 8 months and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-02-12', + chronological_decimal_age: 10.841889117043122, + corrected_decimal_age: 10.841889117043122, + chronological_calendar_age: '10 years, 10 months and 1 day', + corrected_calendar_age: '10 years, 10 months and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 144.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09168143922391464, + corrected_centile: 53.65244276860318, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09168143922391464, + chronological_centile: 53.65244276860318, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 10.841889117043122, + y: 144.6, + b: null, + centile: 53.65244276860318, + sds: 0.09168143922391464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 10 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.841889117043122, + y: 144.6, + b: null, + centile: 53.65244276860318, + sds: 0.09168143922391464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 10 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 10.841889117043122, + y: 0.09168143922391464, + b: null, + centile: 53.65244276860318, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '10 years, 10 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 10.841889117043122, + y: 0.09168143922391464, + b: null, + centile: 53.65244276860318, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '10 years, 10 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-04-13', + chronological_decimal_age: 11.006160164271048, + corrected_decimal_age: 11.006160164271048, + chronological_calendar_age: '11 years and 2 days', + corrected_calendar_age: '11 years and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 145.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0850179972933435, + corrected_centile: 53.38764586298762, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0850179972933435, + chronological_centile: 53.38764586298762, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.006160164271048, + y: 145.6, + b: null, + centile: 53.38764586298762, + sds: 0.0850179972933435, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.006160164271048, + y: 145.6, + b: null, + centile: 53.38764586298762, + sds: 0.0850179972933435, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.006160164271048, + y: 0.0850179972933435, + b: null, + centile: 53.38764586298762, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.006160164271048, + y: 0.0850179972933435, + b: null, + centile: 53.38764586298762, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-06-12', + chronological_decimal_age: 11.170431211498974, + corrected_decimal_age: 11.170431211498974, + chronological_calendar_age: '11 years, 2 months and 1 day', + corrected_calendar_age: '11 years, 2 months and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 145.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.08452864257532526, + corrected_centile: 46.631806542293006, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.08452864257532526, + chronological_centile: 46.631806542293006, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.170431211498974, + y: 145.5, + b: null, + centile: 46.631806542293006, + sds: -0.08452864257532526, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 2 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.170431211498974, + y: 145.5, + b: null, + centile: 46.631806542293006, + sds: -0.08452864257532526, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 2 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.170431211498974, + y: -0.08452864257532526, + b: null, + centile: 46.631806542293006, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 2 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.170431211498974, + y: -0.08452864257532526, + b: null, + centile: 46.631806542293006, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 2 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-08-11', + chronological_decimal_age: 11.3347022587269, + corrected_decimal_age: 11.3347022587269, + chronological_calendar_age: '11 years and 4 months', + corrected_calendar_age: '11 years and 4 months', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 147.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.006777336068853398, + corrected_centile: 50.27037452081405, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.006777336068853398, + chronological_centile: 50.27037452081405, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.3347022587269, + y: 147.2, + b: null, + centile: 50.27037452081405, + sds: 0.006777336068853398, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years and 4 months', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.3347022587269, + y: 147.2, + b: null, + centile: 50.27037452081405, + sds: 0.006777336068853398, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years and 4 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.3347022587269, + y: 0.006777336068853398, + b: null, + centile: 50.27037452081405, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years and 4 months', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.3347022587269, + y: 0.006777336068853398, + b: null, + centile: 50.27037452081405, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years and 4 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-10-10', + chronological_decimal_age: 11.498973305954825, + corrected_decimal_age: 11.498973305954825, + chronological_calendar_age: '11 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '11 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 148.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.033534502358943605, + corrected_centile: 51.337582380381065, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.033534502358943605, + chronological_centile: 51.337582380381065, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.498973305954825, + y: 148.4, + b: null, + centile: 51.337582380381065, + sds: 0.033534502358943605, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.498973305954825, + y: 148.4, + b: null, + centile: 51.337582380381065, + sds: 0.033534502358943605, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.498973305954825, + y: 0.033534502358943605, + b: null, + centile: 51.337582380381065, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.498973305954825, + y: 0.033534502358943605, + b: null, + centile: 51.337582380381065, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1770-12-09', + chronological_decimal_age: 11.663244353182751, + corrected_decimal_age: 11.663244353182751, + chronological_calendar_age: '11 years, 7 months and 4 weeks', + corrected_calendar_age: '11 years, 7 months and 4 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 148.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.07082033671614144, + corrected_centile: 47.17703730518483, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.07082033671614144, + chronological_centile: 47.17703730518483, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.663244353182751, + y: 148.7, + b: null, + centile: 47.17703730518483, + sds: -0.07082033671614144, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 7 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.663244353182751, + y: 148.7, + b: null, + centile: 47.17703730518483, + sds: -0.07082033671614144, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 7 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.663244353182751, + y: -0.07082033671614144, + b: null, + centile: 47.17703730518483, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 7 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.663244353182751, + y: -0.07082033671614144, + b: null, + centile: 47.17703730518483, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 7 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-02-07', + chronological_decimal_age: 11.827515400410677, + corrected_decimal_age: 11.827515400410677, + chronological_calendar_age: '11 years, 9 months, 3 weeks and 6 days', + corrected_calendar_age: '11 years, 9 months, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 150.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0034999602576778785, + corrected_centile: 49.860372072416034, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0034999602576778785, + chronological_centile: 49.860372072416034, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.827515400410677, + y: 150.2, + b: null, + centile: 49.860372072416034, + sds: -0.0034999602576778785, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 9 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.827515400410677, + y: 150.2, + b: null, + centile: 49.860372072416034, + sds: -0.0034999602576778785, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 9 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.827515400410677, + y: -0.0034999602576778785, + b: null, + centile: 49.860372072416034, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 9 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.827515400410677, + y: -0.0034999602576778785, + b: null, + centile: 49.860372072416034, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 9 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-04-08', + chronological_decimal_age: 11.991786447638603, + corrected_decimal_age: 11.991786447638603, + chronological_calendar_age: '11 years, 11 months and 4 weeks', + corrected_calendar_age: '11 years, 11 months and 4 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 151.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.046565193943964606, + corrected_centile: 51.85701134339554, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.046565193943964606, + chronological_centile: 51.85701134339554, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 11.991786447638603, + y: 151.5, + b: null, + centile: 51.85701134339554, + sds: 0.046565193943964606, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 11 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.991786447638603, + y: 151.5, + b: null, + centile: 51.85701134339554, + sds: 0.046565193943964606, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 11 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 11.991786447638603, + y: 0.046565193943964606, + b: null, + centile: 51.85701134339554, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '11 years, 11 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 11.991786447638603, + y: 0.046565193943964606, + b: null, + centile: 51.85701134339554, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '11 years, 11 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-06-07', + chronological_decimal_age: 12.15605749486653, + corrected_decimal_age: 12.15605749486653, + chronological_calendar_age: '12 years, 1 month, 3 weeks and 6 days', + corrected_calendar_age: '12 years, 1 month, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 151.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.10505411003197984, + corrected_centile: 45.816643631147954, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.10505411003197984, + chronological_centile: 45.816643631147954, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.15605749486653, + y: 151.4, + b: null, + centile: 45.816643631147954, + sds: -0.10505411003197984, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 1 month, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.15605749486653, + y: 151.4, + b: null, + centile: 45.816643631147954, + sds: -0.10505411003197984, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 1 month, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.15605749486653, + y: -0.10505411003197984, + b: null, + centile: 45.816643631147954, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 1 month, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.15605749486653, + y: -0.10505411003197984, + b: null, + centile: 45.816643631147954, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 1 month, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-08-06', + chronological_decimal_age: 12.320328542094456, + corrected_decimal_age: 12.320328542094456, + chronological_calendar_age: '12 years, 3 months, 3 weeks and 5 days', + corrected_calendar_age: '12 years, 3 months, 3 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 152.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.09692434350223808, + corrected_centile: 46.139323825072736, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.09692434350223808, + chronological_centile: 46.139323825072736, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.320328542094456, + y: 152.4, + b: null, + centile: 46.139323825072736, + sds: -0.09692434350223808, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 3 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.320328542094456, + y: 152.4, + b: null, + centile: 46.139323825072736, + sds: -0.09692434350223808, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 3 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.320328542094456, + y: -0.09692434350223808, + b: null, + centile: 46.139323825072736, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 3 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.320328542094456, + y: -0.09692434350223808, + b: null, + centile: 46.139323825072736, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 3 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-10-05', + chronological_decimal_age: 12.484599589322382, + corrected_decimal_age: 12.484599589322382, + chronological_calendar_age: '12 years, 5 months, 3 weeks and 3 days', + corrected_calendar_age: '12 years, 5 months, 3 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 154.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0551154865787766, + corrected_centile: 52.19767708037627, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0551154865787766, + chronological_centile: 52.19767708037627, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.484599589322382, + y: 154.3, + b: null, + centile: 52.19767708037627, + sds: 0.0551154865787766, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 5 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.484599589322382, + y: 154.3, + b: null, + centile: 52.19767708037627, + sds: 0.0551154865787766, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 5 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.484599589322382, + y: 0.0551154865787766, + b: null, + centile: 52.19767708037627, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 5 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.484599589322382, + y: 0.0551154865787766, + b: null, + centile: 52.19767708037627, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 5 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1771-12-04', + chronological_decimal_age: 12.648870636550308, + corrected_decimal_age: 12.648870636550308, + chronological_calendar_age: '12 years, 7 months, 3 weeks and 2 days', + corrected_calendar_age: '12 years, 7 months, 3 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 155.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.06569509500884711, + corrected_centile: 52.6189711202576, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.06569509500884711, + chronological_centile: 52.6189711202576, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.648870636550308, + y: 155.2, + b: null, + centile: 52.6189711202576, + sds: 0.06569509500884711, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 7 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.648870636550308, + y: 155.2, + b: null, + centile: 52.6189711202576, + sds: 0.06569509500884711, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 7 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.648870636550308, + y: 0.06569509500884711, + b: null, + centile: 52.6189711202576, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 7 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.648870636550308, + y: 0.06569509500884711, + b: null, + centile: 52.6189711202576, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 7 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-02-02', + chronological_decimal_age: 12.813141683778234, + corrected_decimal_age: 12.813141683778234, + chronological_calendar_age: '12 years, 9 months, 3 weeks and 1 day', + corrected_calendar_age: '12 years, 9 months, 3 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 155.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.04994931938743983, + corrected_centile: 51.991861243115856, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.04994931938743983, + chronological_centile: 51.991861243115856, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.813141683778234, + y: 155.9, + b: null, + centile: 51.991861243115856, + sds: 0.04994931938743983, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 9 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.813141683778234, + y: 155.9, + b: null, + centile: 51.991861243115856, + sds: 0.04994931938743983, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 9 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.813141683778234, + y: 0.04994931938743983, + b: null, + centile: 51.991861243115856, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 9 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.813141683778234, + y: 0.04994931938743983, + b: null, + centile: 51.991861243115856, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 9 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-04-02', + chronological_decimal_age: 12.97741273100616, + corrected_decimal_age: 12.97741273100616, + chronological_calendar_age: '12 years, 11 months, 3 weeks and 1 day', + corrected_calendar_age: '12 years, 11 months, 3 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 156.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.004116860672977872, + corrected_centile: 50.16423851456325, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.004116860672977872, + chronological_centile: 50.16423851456325, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 12.97741273100616, + y: 156.3, + b: null, + centile: 50.16423851456325, + sds: 0.004116860672977872, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 11 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.97741273100616, + y: 156.3, + b: null, + centile: 50.16423851456325, + sds: 0.004116860672977872, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 11 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 12.97741273100616, + y: 0.004116860672977872, + b: null, + centile: 50.16423851456325, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '12 years, 11 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 12.97741273100616, + y: 0.004116860672977872, + b: null, + centile: 50.16423851456325, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '12 years, 11 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-06-01', + chronological_decimal_age: 13.141683778234086, + corrected_decimal_age: 13.141683778234086, + chronological_calendar_age: '13 years, 1 month and 3 weeks', + corrected_calendar_age: '13 years, 1 month and 3 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 157.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.06324341485504427, + corrected_centile: 52.52136630512836, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.06324341485504427, + chronological_centile: 52.52136630512836, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.141683778234086, + y: 157.4, + b: null, + centile: 52.52136630512836, + sds: 0.06324341485504427, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 1 month and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.141683778234086, + y: 157.4, + b: null, + centile: 52.52136630512836, + sds: 0.06324341485504427, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 1 month and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.141683778234086, + y: 0.06324341485504427, + b: null, + centile: 52.52136630512836, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 1 month and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.141683778234086, + y: 0.06324341485504427, + b: null, + centile: 52.52136630512836, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 1 month and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-07-31', + chronological_decimal_age: 13.305954825462011, + corrected_decimal_age: 13.305954825462011, + chronological_calendar_age: '13 years, 3 months, 2 weeks and 6 days', + corrected_calendar_age: '13 years, 3 months, 2 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 157.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0024054252517543384, + corrected_centile: 49.90403750901396, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0024054252517543384, + chronological_centile: 49.90403750901396, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.305954825462011, + y: 157.6, + b: null, + centile: 49.90403750901396, + sds: -0.0024054252517543384, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 3 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.305954825462011, + y: 157.6, + b: null, + centile: 49.90403750901396, + sds: -0.0024054252517543384, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 3 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.305954825462011, + y: -0.0024054252517543384, + b: null, + centile: 49.90403750901396, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 3 months, 2 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.305954825462011, + y: -0.0024054252517543384, + b: null, + centile: 49.90403750901396, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 3 months, 2 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-09-29', + chronological_decimal_age: 13.470225872689939, + corrected_decimal_age: 13.470225872689939, + chronological_calendar_age: '13 years, 5 months, 2 weeks and 4 days', + corrected_calendar_age: '13 years, 5 months, 2 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 158.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.05872209450517853, + corrected_centile: 52.34132695839007, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.05872209450517853, + chronological_centile: 52.34132695839007, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.470225872689939, + y: 158.6, + b: null, + centile: 52.34132695839007, + sds: 0.05872209450517853, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 5 months, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.470225872689939, + y: 158.6, + b: null, + centile: 52.34132695839007, + sds: 0.05872209450517853, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 5 months, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.470225872689939, + y: 0.05872209450517853, + b: null, + centile: 52.34132695839007, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 5 months, 2 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.470225872689939, + y: 0.05872209450517853, + b: null, + centile: 52.34132695839007, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 5 months, 2 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1772-11-28', + chronological_decimal_age: 13.634496919917865, + corrected_decimal_age: 13.634496919917865, + chronological_calendar_age: '13 years, 7 months, 2 weeks and 3 days', + corrected_calendar_age: '13 years, 7 months, 2 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 159.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.10944977795280346, + corrected_centile: 54.3577123119473, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.10944977795280346, + chronological_centile: 54.3577123119473, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.634496919917865, + y: 159.5, + b: null, + centile: 54.3577123119473, + sds: 0.10944977795280346, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 7 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.634496919917865, + y: 159.5, + b: null, + centile: 54.3577123119473, + sds: 0.10944977795280346, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 7 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.634496919917865, + y: 0.10944977795280346, + b: null, + centile: 54.3577123119473, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 7 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.634496919917865, + y: 0.10944977795280346, + b: null, + centile: 54.3577123119473, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 7 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-01-27', + chronological_decimal_age: 13.79876796714579, + corrected_decimal_age: 13.79876796714579, + chronological_calendar_age: '13 years, 9 months, 2 weeks and 2 days', + corrected_calendar_age: '13 years, 9 months, 2 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 159.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.05086912886354881, + corrected_centile: 52.0285097376666, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.05086912886354881, + chronological_centile: 52.0285097376666, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.79876796714579, + y: 159.6, + b: null, + centile: 52.0285097376666, + sds: 0.05086912886354881, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 9 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.79876796714579, + y: 159.6, + b: null, + centile: 52.0285097376666, + sds: 0.05086912886354881, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 9 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.79876796714579, + y: 0.05086912886354881, + b: null, + centile: 52.0285097376666, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 9 months, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.79876796714579, + y: 0.05086912886354881, + b: null, + centile: 52.0285097376666, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 9 months, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-03-28', + chronological_decimal_age: 13.963039014373717, + corrected_decimal_age: 13.963039014373717, + chronological_calendar_age: '13 years, 11 months, 2 weeks and 3 days', + corrected_calendar_age: '13 years, 11 months, 2 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 159.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0018284484477574254, + corrected_centile: 50.07294449868952, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.0018284484477574254, + chronological_centile: 50.07294449868952, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 13.963039014373717, + y: 159.7, + b: null, + centile: 50.07294449868952, + sds: 0.0018284484477574254, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 11 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.963039014373717, + y: 159.7, + b: null, + centile: 50.07294449868952, + sds: 0.0018284484477574254, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 11 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 13.963039014373717, + y: 0.0018284484477574254, + b: null, + centile: 50.07294449868952, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '13 years, 11 months, 2 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 13.963039014373717, + y: 0.0018284484477574254, + b: null, + centile: 50.07294449868952, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '13 years, 11 months, 2 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-05-27', + chronological_decimal_age: 14.127310061601642, + corrected_decimal_age: 14.127310061601642, + chronological_calendar_age: '14 years, 1 month, 2 weeks and 2 days', + corrected_calendar_age: '14 years, 1 month, 2 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 159.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.04385784343748479, + corrected_centile: 48.25088595037675, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.04385784343748479, + chronological_centile: 48.25088595037675, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.127310061601642, + y: 159.8, + b: null, + centile: 48.25088595037675, + sds: -0.04385784343748479, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 1 month, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.127310061601642, + y: 159.8, + b: null, + centile: 48.25088595037675, + sds: -0.04385784343748479, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 1 month, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.127310061601642, + y: -0.04385784343748479, + b: null, + centile: 48.25088595037675, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 1 month, 2 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.127310061601642, + y: -0.04385784343748479, + b: null, + centile: 48.25088595037675, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 1 month, 2 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-07-26', + chronological_decimal_age: 14.291581108829568, + corrected_decimal_age: 14.291581108829568, + chronological_calendar_age: '14 years, 3 months, 2 weeks and 1 day', + corrected_calendar_age: '14 years, 3 months, 2 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 160.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.026092267575159797, + corrected_centile: 48.959187227282804, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.026092267575159797, + chronological_centile: 48.959187227282804, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.291581108829568, + y: 160.3, + b: null, + centile: 48.959187227282804, + sds: -0.026092267575159797, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 3 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.291581108829568, + y: 160.3, + b: null, + centile: 48.959187227282804, + sds: -0.026092267575159797, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 3 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.291581108829568, + y: -0.026092267575159797, + b: null, + centile: 48.959187227282804, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 3 months, 2 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.291581108829568, + y: -0.026092267575159797, + b: null, + centile: 48.959187227282804, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 3 months, 2 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-09-24', + chronological_decimal_age: 14.455852156057494, + corrected_decimal_age: 14.455852156057494, + chronological_calendar_age: '14 years, 5 months, 1 week and 6 days', + corrected_calendar_age: '14 years, 5 months, 1 week and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 160.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.10183459745363245, + corrected_centile: 45.94439817966405, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.10183459745363245, + chronological_centile: 45.94439817966405, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.455852156057494, + y: 160.1, + b: null, + centile: 45.94439817966405, + sds: -0.10183459745363245, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 5 months, 1 week and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.455852156057494, + y: 160.1, + b: null, + centile: 45.94439817966405, + sds: -0.10183459745363245, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 5 months, 1 week and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.455852156057494, + y: -0.10183459745363245, + b: null, + centile: 45.94439817966405, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 5 months, 1 week and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.455852156057494, + y: -0.10183459745363245, + b: null, + centile: 45.94439817966405, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 5 months, 1 week and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1773-11-23', + chronological_decimal_age: 14.620123203285422, + corrected_decimal_age: 14.620123203285422, + chronological_calendar_age: '14 years, 7 months, 1 week and 5 days', + corrected_calendar_age: '14 years, 7 months, 1 week and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 160.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.058972394817402234, + corrected_centile: 47.64870477889097, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.058972394817402234, + chronological_centile: 47.64870477889097, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.620123203285422, + y: 160.7, + b: null, + centile: 47.64870477889097, + sds: -0.058972394817402234, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 7 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.620123203285422, + y: 160.7, + b: null, + centile: 47.64870477889097, + sds: -0.058972394817402234, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 7 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.620123203285422, + y: -0.058972394817402234, + b: null, + centile: 47.64870477889097, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 7 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.620123203285422, + y: -0.058972394817402234, + b: null, + centile: 47.64870477889097, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 7 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-01-22', + chronological_decimal_age: 14.784394250513348, + corrected_decimal_age: 14.784394250513348, + chronological_calendar_age: '14 years, 9 months, 1 week and 4 days', + corrected_calendar_age: '14 years, 9 months, 1 week and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 160.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.06857206622224088, + corrected_centile: 47.26651272192031, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.06857206622224088, + chronological_centile: 47.26651272192031, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.784394250513348, + y: 160.9, + b: null, + centile: 47.26651272192031, + sds: -0.06857206622224088, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 9 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.784394250513348, + y: 160.9, + b: null, + centile: 47.26651272192031, + sds: -0.06857206622224088, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 9 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.784394250513348, + y: -0.06857206622224088, + b: null, + centile: 47.26651272192031, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 9 months, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.784394250513348, + y: -0.06857206622224088, + b: null, + centile: 47.26651272192031, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 9 months, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-03-23', + chronological_decimal_age: 14.948665297741274, + corrected_decimal_age: 14.948665297741274, + chronological_calendar_age: '14 years, 11 months, 1 week and 5 days', + corrected_calendar_age: '14 years, 11 months, 1 week and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 160.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.1160515002976346, + corrected_centile: 45.38058630799996, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.1160515002976346, + chronological_centile: 45.38058630799996, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 14.948665297741274, + y: 160.8, + b: null, + centile: 45.38058630799996, + sds: -0.1160515002976346, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 11 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.948665297741274, + y: 160.8, + b: null, + centile: 45.38058630799996, + sds: -0.1160515002976346, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 11 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 14.948665297741274, + y: -0.1160515002976346, + b: null, + centile: 45.38058630799996, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '14 years, 11 months, 1 week and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 14.948665297741274, + y: -0.1160515002976346, + b: null, + centile: 45.38058630799996, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '14 years, 11 months, 1 week and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-05-22', + chronological_decimal_age: 15.1129363449692, + corrected_decimal_age: 15.1129363449692, + chronological_calendar_age: '15 years, 1 month, 1 week and 4 days', + corrected_calendar_age: '15 years, 1 month, 1 week and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.10077314198282913, + corrected_centile: 54.01347260625171, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.10077314198282913, + chronological_centile: 54.01347260625171, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.1129363449692, + y: 162.5, + b: null, + centile: 54.01347260625171, + sds: 0.10077314198282913, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 1 month, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.1129363449692, + y: 162.5, + b: null, + centile: 54.01347260625171, + sds: 0.10077314198282913, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 1 month, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.1129363449692, + y: 0.10077314198282913, + b: null, + centile: 54.01347260625171, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 1 month, 1 week and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.1129363449692, + y: 0.10077314198282913, + b: null, + centile: 54.01347260625171, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 1 month, 1 week and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-07-21', + chronological_decimal_age: 15.277207392197125, + corrected_decimal_age: 15.277207392197125, + chronological_calendar_age: '15 years, 3 months, 1 week and 3 days', + corrected_calendar_age: '15 years, 3 months, 1 week and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 161.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.08541680176743571, + corrected_centile: 46.5965018049695, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.08541680176743571, + chronological_centile: 46.5965018049695, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.277207392197125, + y: 161.4, + b: null, + centile: 46.5965018049695, + sds: -0.08541680176743571, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 3 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.277207392197125, + y: 161.4, + b: null, + centile: 46.5965018049695, + sds: -0.08541680176743571, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 3 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.277207392197125, + y: -0.08541680176743571, + b: null, + centile: 46.5965018049695, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 3 months, 1 week and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.277207392197125, + y: -0.08541680176743571, + b: null, + centile: 46.5965018049695, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 3 months, 1 week and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-09-19', + chronological_decimal_age: 15.441478439425051, + corrected_decimal_age: 15.441478439425051, + chronological_calendar_age: '15 years, 5 months, 1 week and 1 day', + corrected_calendar_age: '15 years, 5 months, 1 week and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 161.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.03445594845220972, + corrected_centile: 48.625678475742674, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.03445594845220972, + chronological_centile: 48.625678475742674, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.441478439425051, + y: 161.9, + b: null, + centile: 48.625678475742674, + sds: -0.03445594845220972, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 5 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.441478439425051, + y: 161.9, + b: null, + centile: 48.625678475742674, + sds: -0.03445594845220972, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 5 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.441478439425051, + y: -0.03445594845220972, + b: null, + centile: 48.625678475742674, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 5 months, 1 week and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.441478439425051, + y: -0.03445594845220972, + b: null, + centile: 48.625678475742674, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 5 months, 1 week and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1774-11-18', + chronological_decimal_age: 15.605749486652977, + corrected_decimal_age: 15.605749486652977, + chronological_calendar_age: '15 years, 7 months and 1 week', + corrected_calendar_age: '15 years, 7 months and 1 week', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.12125248922696233, + corrected_centile: 54.82544748104894, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.12125248922696233, + chronological_centile: 54.82544748104894, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.605749486652977, + y: 163.1, + b: null, + centile: 54.82544748104894, + sds: 0.12125248922696233, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 7 months and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.605749486652977, + y: 163.1, + b: null, + centile: 54.82544748104894, + sds: 0.12125248922696233, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 7 months and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.605749486652977, + y: 0.12125248922696233, + b: null, + centile: 54.82544748104894, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 7 months and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.605749486652977, + y: 0.12125248922696233, + b: null, + centile: 54.82544748104894, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 7 months and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-01-17', + chronological_decimal_age: 15.770020533880903, + corrected_decimal_age: 15.770020533880903, + chronological_calendar_age: '15 years, 9 months and 6 days', + corrected_calendar_age: '15 years, 9 months and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.06086915332317091, + corrected_centile: 52.42682920203215, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.06086915332317091, + chronological_centile: 52.42682920203215, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.770020533880903, + y: 162.8, + b: null, + centile: 52.42682920203215, + sds: 0.06086915332317091, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 9 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.770020533880903, + y: 162.8, + b: null, + centile: 52.42682920203215, + sds: 0.06086915332317091, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 9 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.770020533880903, + y: 0.06086915332317091, + b: null, + centile: 52.42682920203215, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 9 months and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.770020533880903, + y: 0.06086915332317091, + b: null, + centile: 52.42682920203215, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 9 months and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-03-18', + chronological_decimal_age: 15.93429158110883, + corrected_decimal_age: 15.93429158110883, + chronological_calendar_age: '15 years, 11 months and 1 week', + corrected_calendar_age: '15 years, 11 months and 1 week', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09132847572812594, + corrected_centile: 53.6384203913296, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09132847572812594, + chronological_centile: 53.6384203913296, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 15.93429158110883, + y: 163.1, + b: null, + centile: 53.6384203913296, + sds: 0.09132847572812594, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 11 months and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.93429158110883, + y: 163.1, + b: null, + centile: 53.6384203913296, + sds: 0.09132847572812594, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 11 months and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 15.93429158110883, + y: 0.09132847572812594, + b: null, + centile: 53.6384203913296, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '15 years, 11 months and 1 week', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 15.93429158110883, + y: 0.09132847572812594, + b: null, + centile: 53.6384203913296, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '15 years, 11 months and 1 week', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-05-17', + chronological_decimal_age: 16.098562628336754, + corrected_decimal_age: 16.098562628336754, + chronological_calendar_age: '16 years, 1 month and 6 days', + corrected_calendar_age: '16 years, 1 month and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.08323541322466327, + corrected_centile: 46.68321773722855, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.08323541322466327, + chronological_centile: 46.68321773722855, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.098562628336754, + y: 162.0, + b: null, + centile: 46.68321773722855, + sds: -0.08323541322466327, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 1 month and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.098562628336754, + y: 162.0, + b: null, + centile: 46.68321773722855, + sds: -0.08323541322466327, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 1 month and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.098562628336754, + y: -0.08323541322466327, + b: null, + centile: 46.68321773722855, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 1 month and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.098562628336754, + y: -0.08323541322466327, + b: null, + centile: 46.68321773722855, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 1 month and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-07-16', + chronological_decimal_age: 16.262833675564682, + corrected_decimal_age: 16.262833675564682, + chronological_calendar_age: '16 years, 3 months and 5 days', + corrected_calendar_age: '16 years, 3 months and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0788291376531305, + corrected_centile: 46.85842638300518, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0788291376531305, + chronological_centile: 46.85842638300518, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.262833675564682, + y: 162.1, + b: null, + centile: 46.85842638300518, + sds: -0.0788291376531305, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 3 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.262833675564682, + y: 162.1, + b: null, + centile: 46.85842638300518, + sds: -0.0788291376531305, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 3 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.262833675564682, + y: -0.0788291376531305, + b: null, + centile: 46.85842638300518, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 3 months and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.262833675564682, + y: -0.0788291376531305, + b: null, + centile: 46.85842638300518, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 3 months and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-09-14', + chronological_decimal_age: 16.427104722792606, + corrected_decimal_age: 16.427104722792606, + chronological_calendar_age: '16 years, 5 months and 3 days', + corrected_calendar_age: '16 years, 5 months and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.1198583183197452, + corrected_centile: 54.77023082337986, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.1198583183197452, + chronological_centile: 54.77023082337986, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.427104722792606, + y: 163.5, + b: null, + centile: 54.77023082337986, + sds: 0.1198583183197452, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 5 months and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.427104722792606, + y: 163.5, + b: null, + centile: 54.77023082337986, + sds: 0.1198583183197452, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 5 months and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.427104722792606, + y: 0.1198583183197452, + b: null, + centile: 54.77023082337986, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 5 months and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.427104722792606, + y: 0.1198583183197452, + b: null, + centile: 54.77023082337986, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 5 months and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1775-11-13', + chronological_decimal_age: 16.591375770020534, + corrected_decimal_age: 16.591375770020534, + chronological_calendar_age: '16 years, 7 months and 2 days', + corrected_calendar_age: '16 years, 7 months and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09721723780886185, + corrected_centile: 53.87230604525608, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09721723780886185, + chronological_centile: 53.87230604525608, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.591375770020534, + y: 163.4, + b: null, + centile: 53.87230604525608, + sds: 0.09721723780886185, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 7 months and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.591375770020534, + y: 163.4, + b: null, + centile: 53.87230604525608, + sds: 0.09721723780886185, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 7 months and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.591375770020534, + y: 0.09721723780886185, + b: null, + centile: 53.87230604525608, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 7 months and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.591375770020534, + y: 0.09721723780886185, + b: null, + centile: 53.87230604525608, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 7 months and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-01-12', + chronological_decimal_age: 16.75564681724846, + corrected_decimal_age: 16.75564681724846, + chronological_calendar_age: '16 years, 9 months and 1 day', + corrected_calendar_age: '16 years, 9 months and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09054649341793133, + corrected_centile: 53.607352537225196, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09054649341793133, + chronological_centile: 53.607352537225196, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.75564681724846, + y: 163.4, + b: null, + centile: 53.607352537225196, + sds: 0.09054649341793133, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 9 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.75564681724846, + y: 163.4, + b: null, + centile: 53.607352537225196, + sds: 0.09054649341793133, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 9 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.75564681724846, + y: 0.09054649341793133, + b: null, + centile: 53.607352537225196, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 9 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.75564681724846, + y: 0.09054649341793133, + b: null, + centile: 53.607352537225196, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 9 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-03-12', + chronological_decimal_age: 16.919917864476385, + corrected_decimal_age: 16.919917864476385, + chronological_calendar_age: '16 years, 11 months and 1 day', + corrected_calendar_age: '16 years, 11 months and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.08449317098755581, + corrected_centile: 53.366783390512985, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.08449317098755581, + chronological_centile: 53.366783390512985, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 16.919917864476385, + y: 163.4, + b: null, + centile: 53.366783390512985, + sds: 0.08449317098755581, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 11 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.919917864476385, + y: 163.4, + b: null, + centile: 53.366783390512985, + sds: 0.08449317098755581, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 11 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 16.919917864476385, + y: 0.08449317098755581, + b: null, + centile: 53.366783390512985, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '16 years, 11 months and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 16.919917864476385, + y: 0.08449317098755581, + b: null, + centile: 53.366783390512985, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '16 years, 11 months and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-05-11', + chronological_decimal_age: 17.084188911704313, + corrected_decimal_age: 17.084188911704313, + chronological_calendar_age: '17 years and 1 month', + corrected_calendar_age: '17 years and 1 month', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.09347247690783811, + corrected_centile: 53.72358929035863, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.09347247690783811, + chronological_centile: 53.72358929035863, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.084188911704313, + y: 163.5, + b: null, + centile: 53.72358929035863, + sds: 0.09347247690783811, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years and 1 month', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.084188911704313, + y: 163.5, + b: null, + centile: 53.72358929035863, + sds: 0.09347247690783811, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.084188911704313, + y: 0.09347247690783811, + b: null, + centile: 53.72358929035863, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years and 1 month', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.084188911704313, + y: 0.09347247690783811, + b: null, + centile: 53.72358929035863, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-07-10', + chronological_decimal_age: 17.248459958932237, + corrected_decimal_age: 17.248459958932237, + chronological_calendar_age: '17 years, 2 months, 4 weeks and 1 day', + corrected_calendar_age: '17 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013247415177915483, + corrected_centile: 50.52847994449433, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.013247415177915483, + chronological_centile: 50.52847994449433, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.248459958932237, + y: 163.0, + b: null, + centile: 50.52847994449433, + sds: 0.013247415177915483, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.248459958932237, + y: 163.0, + b: null, + centile: 50.52847994449433, + sds: 0.013247415177915483, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.248459958932237, + y: 0.013247415177915483, + b: null, + centile: 50.52847994449433, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.248459958932237, + y: 0.013247415177915483, + b: null, + centile: 50.52847994449433, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-09-08', + chronological_decimal_age: 17.412731006160165, + corrected_decimal_age: 17.412731006160165, + chronological_calendar_age: '17 years, 4 months and 4 weeks', + corrected_calendar_age: '17 years, 4 months and 4 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.052013416619060296, + corrected_centile: 47.92590014846129, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.052013416619060296, + chronological_centile: 47.92590014846129, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.412731006160165, + y: 162.6, + b: null, + centile: 47.92590014846129, + sds: -0.052013416619060296, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 4 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.412731006160165, + y: 162.6, + b: null, + centile: 47.92590014846129, + sds: -0.052013416619060296, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 4 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.412731006160165, + y: -0.052013416619060296, + b: null, + centile: 47.92590014846129, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 4 months and 4 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.412731006160165, + y: -0.052013416619060296, + b: null, + centile: 47.92590014846129, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 4 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1776-11-07', + chronological_decimal_age: 17.57700205338809, + corrected_decimal_age: 17.57700205338809, + chronological_calendar_age: '17 years, 6 months, 3 weeks and 6 days', + corrected_calendar_age: '17 years, 6 months, 3 weeks and 6 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.002846292230016176, + corrected_centile: 50.11355047797388, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.002846292230016176, + chronological_centile: 50.11355047797388, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.57700205338809, + y: 163.0, + b: null, + centile: 50.11355047797388, + sds: 0.002846292230016176, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 6 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.57700205338809, + y: 163.0, + b: null, + centile: 50.11355047797388, + sds: 0.002846292230016176, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 6 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.57700205338809, + y: 0.002846292230016176, + b: null, + centile: 50.11355047797388, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 6 months, 3 weeks and 6 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.57700205338809, + y: 0.002846292230016176, + b: null, + centile: 50.11355047797388, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 6 months, 3 weeks and 6 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-01-06', + chronological_decimal_age: 17.741273100616016, + corrected_decimal_age: 17.741273100616016, + chronological_calendar_age: '17 years, 8 months, 3 weeks and 5 days', + corrected_calendar_age: '17 years, 8 months, 3 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.04334948472954373, + corrected_centile: 51.728852741983204, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.04334948472954373, + chronological_centile: 51.728852741983204, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.741273100616016, + y: 163.3, + b: null, + centile: 51.728852741983204, + sds: 0.04334948472954373, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 8 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.741273100616016, + y: 163.3, + b: null, + centile: 51.728852741983204, + sds: 0.04334948472954373, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 8 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.741273100616016, + y: 0.04334948472954373, + b: null, + centile: 51.728852741983204, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 8 months, 3 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.741273100616016, + y: 0.04334948472954373, + b: null, + centile: 51.728852741983204, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 8 months, 3 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-03-07', + chronological_decimal_age: 17.905544147843944, + corrected_decimal_age: 17.905544147843944, + chronological_calendar_age: '17 years, 10 months, 3 weeks and 3 days', + corrected_calendar_age: '17 years, 10 months, 3 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.05178635733106064, + corrected_centile: 47.93494631188295, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.05178635733106064, + chronological_centile: 47.93494631188295, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 17.905544147843944, + y: 162.7, + b: null, + centile: 47.93494631188295, + sds: -0.05178635733106064, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 10 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.905544147843944, + y: 162.7, + b: null, + centile: 47.93494631188295, + sds: -0.05178635733106064, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 10 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 17.905544147843944, + y: -0.05178635733106064, + b: null, + centile: 47.93494631188295, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '17 years, 10 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 17.905544147843944, + y: -0.05178635733106064, + b: null, + centile: 47.93494631188295, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '17 years, 10 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-05-06', + chronological_decimal_age: 18.069815195071868, + corrected_decimal_age: 18.069815195071868, + chronological_calendar_age: '18 years, 3 weeks and 4 days', + corrected_calendar_age: '18 years, 3 weeks and 4 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.004296242330784602, + corrected_centile: 50.17139474400113, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.004296242330784602, + chronological_centile: 50.17139474400113, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.069815195071868, + y: 163.1, + b: null, + centile: 50.17139474400113, + sds: 0.004296242330784602, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.069815195071868, + y: 163.1, + b: null, + centile: 50.17139474400113, + sds: 0.004296242330784602, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.069815195071868, + y: 0.004296242330784602, + b: null, + centile: 50.17139474400113, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 3 weeks and 4 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.069815195071868, + y: 0.004296242330784602, + b: null, + centile: 50.17139474400113, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 3 weeks and 4 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-07-05', + chronological_decimal_age: 18.234086242299796, + corrected_decimal_age: 18.234086242299796, + chronological_calendar_age: '18 years, 2 months, 3 weeks and 3 days', + corrected_calendar_age: '18 years, 2 months, 3 weeks and 3 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.06004936195043044, + corrected_centile: 47.605816022068225, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.06004936195043044, + chronological_centile: 47.605816022068225, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.234086242299796, + y: 162.7, + b: null, + centile: 47.605816022068225, + sds: -0.06004936195043044, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 2 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.234086242299796, + y: 162.7, + b: null, + centile: 47.605816022068225, + sds: -0.06004936195043044, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 2 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.234086242299796, + y: -0.06004936195043044, + b: null, + centile: 47.605816022068225, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 2 months, 3 weeks and 3 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.234086242299796, + y: -0.06004936195043044, + b: null, + centile: 47.605816022068225, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 2 months, 3 weeks and 3 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-09-03', + chronological_decimal_age: 18.39835728952772, + corrected_decimal_age: 18.39835728952772, + chronological_calendar_age: '18 years, 4 months, 3 weeks and 2 days', + corrected_calendar_age: '18 years, 4 months, 3 weeks and 2 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 162.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.06334572539095486, + corrected_centile: 47.47456026269779, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.06334572539095486, + chronological_centile: 47.47456026269779, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.39835728952772, + y: 162.7, + b: null, + centile: 47.47456026269779, + sds: -0.06334572539095486, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 4 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.39835728952772, + y: 162.7, + b: null, + centile: 47.47456026269779, + sds: -0.06334572539095486, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 4 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.39835728952772, + y: -0.06334572539095486, + b: null, + centile: 47.47456026269779, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 4 months, 3 weeks and 2 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.39835728952772, + y: -0.06334572539095486, + b: null, + centile: 47.47456026269779, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 4 months, 3 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1777-11-02', + chronological_decimal_age: 18.562628336755647, + corrected_decimal_age: 18.562628336755647, + chronological_calendar_age: '18 years, 6 months, 3 weeks and 1 day', + corrected_calendar_age: '18 years, 6 months, 3 weeks and 1 day', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.07094114234982653, + corrected_centile: 52.82777005086143, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.07094114234982653, + chronological_centile: 52.82777005086143, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.562628336755647, + y: 163.6, + b: null, + centile: 52.82777005086143, + sds: 0.07094114234982653, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 6 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.562628336755647, + y: 163.6, + b: null, + centile: 52.82777005086143, + sds: 0.07094114234982653, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 6 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.562628336755647, + y: 0.07094114234982653, + b: null, + centile: 52.82777005086143, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 6 months, 3 weeks and 1 day', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.562628336755647, + y: 0.07094114234982653, + b: null, + centile: 52.82777005086143, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 6 months, 3 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1778-01-01', + chronological_decimal_age: 18.72689938398357, + corrected_decimal_age: 18.72689938398357, + chronological_calendar_age: '18 years, 8 months and 3 weeks', + corrected_calendar_age: '18 years, 8 months and 3 weeks', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0069403591970184616, + corrected_centile: 49.72312195031944, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: -0.0069403591970184616, + chronological_centile: 49.72312195031944, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.72689938398357, + y: 163.1, + b: null, + centile: 49.72312195031944, + sds: -0.0069403591970184616, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 8 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.72689938398357, + y: 163.1, + b: null, + centile: 49.72312195031944, + sds: -0.0069403591970184616, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 8 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.72689938398357, + y: -0.0069403591970184616, + b: null, + centile: 49.72312195031944, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 8 months and 3 weeks', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.72689938398357, + y: -0.0069403591970184616, + b: null, + centile: 49.72312195031944, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 8 months and 3 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'female', + }, + measurement_dates: { + observation_date: '1778-03-02', + chronological_decimal_age: 18.8911704312115, + corrected_decimal_age: 18.8911704312115, + chronological_calendar_age: '18 years, 10 months, 2 weeks and 5 days', + corrected_calendar_age: '18 years, 10 months, 2 weeks and 5 days', + corrected_gestational_age: { + corrected_gestation_weeks: null, + corrected_gestation_days: null, + }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_corrected_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + clinician_chronological_decimal_age_comment: 'Born at term. No correction for gestation has been made.', + lay_chronological_decimal_age_comment: + 'Your child was born at term. No correction for gestation has been made.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'height', + observation_value: 163.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.053037422724629114, + corrected_centile: 52.11489546810045, + corrected_centile_band: 'This height measurement is on or near the 50th centile.', + chronological_sds: 0.053037422724629114, + chronological_centile: 52.11489546810045, + chronological_centile_band: 'This height measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 18.8911704312115, + y: 163.5, + b: null, + centile: 52.11489546810045, + sds: 0.053037422724629114, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 10 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.8911704312115, + y: 163.5, + b: null, + centile: 52.11489546810045, + sds: 0.053037422724629114, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 10 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 18.8911704312115, + y: 0.053037422724629114, + b: null, + centile: 52.11489546810045, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '18 years, 10 months, 2 weeks and 5 days', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 18.8911704312115, + y: 0.053037422724629114, + b: null, + centile: 52.11489546810045, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '18 years, 10 months, 2 weeks and 5 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born at term. No correction for gestation has been made.', + clinician_comment: 'Born at term. No correction for gestation has been made.', + age_error: null, + centile_band: 'This height measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { + events_text: null, + }, + }, +];