{"links":[],"processes":[{"categories":["math > trigonometric"],"description":"Computes the arc cosine of `x`. The arc cosine is the inverse function of the cosine so that *`arccos(cos(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":1},"returns":0}],"id":"arccos","links":[{"href":"http://mathworld.wolfram.com/InverseCosine.html","rel":"about","title":"Inverse cosine explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse cosine"},{"categories":["math > trigonometric"],"description":"Computes the inverse hyperbolic cosine of `x`. It is the inverse function of the hyperbolic cosine so that *`arcosh(cosh(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":1},"returns":0}],"id":"arcosh","links":[{"href":"http://mathworld.wolfram.com/InverseHyperbolicCosine.html","rel":"about","title":"Inverse hyperbolic cosine explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse hyperbolic cosine"},{"categories":["math","math > exponential & logarithmic"],"description":"Computes the exponentiation for the base `base` raised to the power of `p`.\n\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`.","examples":[{"arguments":{"base":0,"p":2},"returns":0},{"arguments":{"base":2.5,"p":0},"returns":1},{"arguments":{"base":3,"p":3},"returns":27},{"arguments":{"base":5,"p":-1},"returns":0.2},{"arguments":{"base":1,"p":0.5},"returns":1},{"arguments":{"base":1,"p":null},"returns":null},{"arguments":{"base":null,"p":2},"returns":null}],"id":"power","links":[{"href":"http://mathworld.wolfram.com/Power.html","rel":"about","title":"Power explained by Wolfram MathWorld"}],"parameters":[{"description":"The numerical base.","name":"base","schema":{"type":["number","null"]}},{"description":"The numerical exponent.","name":"p","schema":{"type":["number","null"]}}],"returns":{"description":"The computed value for `base` raised to the power of `p`.","schema":{"type":["number","null"]}},"summary":"Exponentiation"},{"categories":["arrays","reducer"],"description":"Gives the last element of an array.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":2},{"arguments":{"data":["A","B",null]},"returns":"B"},{"arguments":{"data":[0,1,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null}],"id":"last","parameters":[{"description":"An array with elements of any data type.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if the last value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The last element of the input array.","schema":{"description":"Any data type is allowed."}},"summary":"Last element"},{"categories":["math"],"description":"Subtracts argument `y` from the argument `x` (*`x - y`*) and returns the computed result.\n\nNo-data values are taken into account so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.","examples":[{"arguments":{"x":5,"y":2.5},"returns":2.5},{"arguments":{"x":-2,"y":4},"returns":-6},{"arguments":{"x":1,"y":null},"returns":null}],"id":"subtract","links":[{"href":"http://mathworld.wolfram.com/Subtraction.html","rel":"about","title":"Subtraction explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"The minuend.","name":"x","schema":{"type":["number","null"]}},{"description":"The subtrahend.","name":"y","schema":{"type":["number","null"]}}],"returns":{"description":"The computed result.","schema":{"type":["number","null"]}},"summary":"Subtraction of two numbers"},{"categories":["logic"],"description":"Inverts a single boolean so that `true` gets `false` and `false` gets `true`.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":null},"returns":null},{"arguments":{"x":false},"returns":true},{"arguments":{"x":true},"returns":false}],"id":"not","parameters":[{"description":"Boolean value to invert.","name":"x","schema":{"type":["boolean","null"]}}],"returns":{"description":"Inverted boolean value.","schema":{"type":["boolean","null"]}},"summary":"Inverting a boolean"},{"categories":["math > trigonometric"],"description":"Computes the hyperbolic cosine of `x`.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":1}],"id":"cosh","links":[{"href":"http://mathworld.wolfram.com/HyperbolicCosine.html","rel":"about","title":"Hyperbolic cosine explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed hyperbolic cosine of `x`.","schema":{"type":["number","null"]}},"summary":"Hyperbolic cosine"},{"categories":["math > trigonometric"],"description":"Computes the inverse hyperbolic tangent of `x`. It is the inverse function of the hyperbolic tangent so that *`artanh(tanh(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"artanh","links":[{"href":"http://mathworld.wolfram.com/InverseHyperbolicTangent.html","rel":"about","title":"Inverse hyperbolic tangent explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse hyperbolic tangent"},{"categories":["comparison"],"description":"Checks whether the specified value `x` is valid. The following values are considered valid:\n\n* Any finite numerical value (integers and floating-point numbers). The definition of finite numbers follows the [IEEE Standard 754](https://ieeexplore.ieee.org/document/4610935) and excludes the special value `NaN` (not a number).\n* Any other value that is not a no-data value according to ``is_nodata()``. Thus all arrays, objects and strings are valid, regardless of their content.","examples":[{"arguments":{"x":1},"returns":true},{"arguments":{"x":"Test"},"returns":true},{"arguments":{"x":null},"returns":false},{"arguments":{"x":[null,null]},"returns":true}],"id":"is_valid","links":[{"href":"https://ieeexplore.ieee.org/document/4610935","rel":"about","title":"IEEE Standard 754-2008 for Floating-Point Arithmetic"}],"parameters":[{"description":"The data to check.","name":"x","schema":{"description":"Any data type is allowed."}}],"returns":{"description":"`true` if the data is valid, otherwise `false`.","schema":{"type":"boolean"}},"summary":"Value is valid data"},{"categories":["arrays","reducer"],"description":"Gives the first element of an array.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":1},{"arguments":{"data":[null,"A","B"]},"returns":"A"},{"arguments":{"data":[null,2,3],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null}],"id":"first","parameters":[{"description":"An array with elements of any data type.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if the first value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The first element of the input array.","schema":{"description":"Any data type is allowed."}},"summary":"First element"},{"categories":["math > statistics","reducer"],"description":"The statistical median of an array of numbers is the value separating the higher half from the lower half of the data.\n\nAn array without non-`null` elements resolves always with `null`.\n\n**Remarks:**\n\n* For symmetric arrays, the result is equal to the ``mean()``.\n* The median can also be calculated by computing the ``quantiles()`` with a probability of *0.5*.","examples":[{"arguments":{"data":[1,3,3,6,7,8,9]},"returns":6},{"arguments":{"data":[1,2,3,4,5,6,8,9]},"returns":4.5},{"arguments":{"data":[-1,-0.5,null,1]},"returns":-0.5},{"arguments":{"data":[-1,0,null,1],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null},{"arguments":{"data":[null,null]},"description":"The input array has only `null` elements: return `null`.","returns":null}],"id":"median","links":[{"href":"http://mathworld.wolfram.com/StatisticalMedian.html","rel":"about","title":"Statistical Median explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"array_element":{"arguments":{"data":{"from_node":"quantiles"},"index":0,"return_nodata":true},"process_id":"array_element","result":true},"quantiles":{"arguments":{"data":{"from_parameter":"data"},"ignore_nodata":{"from_parameter":"ignore_nodata"},"probabilities":[0.5]},"process_id":"quantiles"}},"returns":{"description":"The computed statistical median.","schema":{"type":["number","null"]}},"summary":"Statistical median"},{"categories":["texts","comparison"],"description":"Compares whether `x` is strictly equal to `y`.\n\n**Remarks:**\n\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*. Nevertheless, an integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`.\n* If any operand is `null`, the return value is `null`.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":null,"y":null},"returns":null},{"arguments":{"x":1,"y":1},"returns":true},{"arguments":{"x":1,"y":"1"},"returns":false},{"arguments":{"x":0,"y":false},"returns":false},{"arguments":{"delta":0.01,"x":1.02,"y":1},"returns":false},{"arguments":{"delta":0.01,"x":-1,"y":-1.001},"returns":true},{"arguments":{"delta":10,"x":115,"y":110},"returns":true},{"arguments":{"x":"Test","y":"test"},"returns":false},{"arguments":{"case_sensitive":false,"x":"Test","y":"test"},"returns":true},{"arguments":{"case_sensitive":false,"x":"\u00c4","y":"\u00e4"},"returns":true},{"arguments":{"x":"2018-01-01T00:00:00Z","y":"2018-01-01T00:00:00+00:00"},"returns":false},{"arguments":{"x":null,"y":null},"returns":null}],"id":"eq","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}},{"default":null,"description":"Only applicable for comparing two numbers. If this optional parameter is set to a positive non-zero number the equality of two numbers is checked against a delta value. This is especially useful to circumvent problems with floating-point inaccuracy in machine-based computation.\n\nThis option is basically an alias for the following computation: `lte(abs(minus([x, y]), delta)`","name":"delta","optional":true,"schema":{"type":["number","null"]}},{"default":true,"description":"Only applicable for comparing two strings. Case sensitive comparison can be disabled by setting this parameter to `false`.","name":"case_sensitive","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"`true` if `x` is equal to `y`, `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Equal to comparison"},{"categories":["math"],"description":"Computes the absolute value of a real number `x`, which is the \"unsigned\" portion of x and often denoted as *|x|*.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"x":3.5},"returns":3.5},{"arguments":{"x":-0.4},"returns":0.4},{"arguments":{"x":-3.5},"returns":3.5}],"id":"absolute","links":[{"href":"http://mathworld.wolfram.com/AbsoluteValue.html","rel":"about","title":"Absolute value explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"process_graph":{"if":{"arguments":{"accept":{"from_node":"multiply"},"reject":{"from_parameter":"x"},"value":{"from_node":"lt"}},"process_id":"if","result":true},"lt":{"arguments":{"x":{"from_parameter":"x"},"y":0},"process_id":"lt"},"multiply":{"arguments":{"x":{"from_parameter":"x"},"y":-1},"process_id":"multiply"}},"returns":{"description":"The computed absolute value.","schema":{"minimum":0,"type":["number","null"]}},"summary":"Absolute value"},{"categories":["math > trigonometric"],"description":"Computes the arc tangent of two numbers `x` and `y`. It is similar to calculating the arc tangent of *`y / x`*, except that the signs of both arguments are used to determine the quadrant of the result.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`.","examples":[{"arguments":{"x":0,"y":0},"returns":0},{"arguments":{"x":1.5,"y":null},"returns":null}],"id":"arctan2","links":[{"href":"https://en.wikipedia.org/wiki/Atan2","rel":"about","title":"Two-argument inverse tangent explained by Wikipedia"}],"parameters":[{"description":"A number to be used as the dividend.","name":"y","schema":{"type":["number","null"]}},{"description":"A number to be used as the divisor.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse tangent of two numbers"},{"categories":["arrays"],"description":"Gives all labels for a labeled array or gives all indices for an array without labels. If the array is not labeled, an array with the zero-based indices is returned. The labels or indices have the same order as in the array.","id":"array_labels","parameters":[{"description":"An array.","name":"data","schema":{"type":"array"}}],"returns":{"description":"The labels or indices as array.","schema":{"items":{"type":["number","string"]},"type":"array"}},"summary":"Get the labels for an array"},{"categories":["math"],"description":"Divides argument `x` by the argument `y` (*`x / y`*) and returns the computed result.\n\nNo-data values are taken into account so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it. Therefore, a division by zero results in \u00b1infinity if the processing environment supports it. Otherwise, a `DivisionByZero` exception must the thrown.","examples":[{"arguments":{"x":5,"y":2.5},"returns":2},{"arguments":{"x":-2,"y":4},"returns":-0.5},{"arguments":{"x":1,"y":null},"returns":null}],"exceptions":{"DivisionByZero":{"message":"Division by zero is not supported."}},"id":"divide","links":[{"href":"http://mathworld.wolfram.com/Division.html","rel":"about","title":"Division explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"The dividend.","name":"x","schema":{"type":["number","null"]}},{"description":"The divisor.","name":"y","schema":{"type":["number","null"]}}],"returns":{"description":"The computed result.","schema":{"type":["number","null"]}},"summary":"Division of two numbers"},{"categories":["comparison","math > constants"],"description":"Checks whether the specified value `x` is *not* a number. Numbers are all integers and floating-point numbers, except for the special value `NaN` as defined by the [IEEE Standard 754](https://ieeexplore.ieee.org/document/4610935).","examples":[{"arguments":{"x":1},"returns":false},{"arguments":{"x":"Test"},"returns":true},{"arguments":{"x":null},"returns":true}],"id":"is_nan","links":[{"href":"https://ieeexplore.ieee.org/document/4610935","rel":"about","title":"IEEE Standard 754-2008 for Floating-Point Arithmetic"},{"href":"http://mathworld.wolfram.com/NaN.html","rel":"about","title":"NaN explained by Wolfram MathWorld"}],"parameters":[{"description":"The data to check.","name":"x","schema":{"description":"Any data type is allowed."}}],"returns":{"description":"Returns `true` for `NaN` and all non-numeric data types, otherwise returns `false`.","schema":{"type":"boolean"}},"summary":"Value is not a number"},{"categories":["logic","reducer"],"description":"Checks if **all** of the values in `data` are true. If no value is given (i.e. the array is empty) the process returns `null`.\n\nBy default all no-data values are ignored so that the process returns `null` if all values are no-data, `true` if all values are true and `false` otherwise. Setting the `ignore_nodata` flag to `false` takes no-data values into account and the array values are reduced pairwise according to the following truth table:\n\n```\n      || null  | false | true\n----- || ----- | ----- | -----\nnull  || null  | false | null\nfalse || false | false | false\ntrue  || null  | false | true\n```\n\n**Remark:** The process evaluates all values from the first to the last element and stops once the outcome is unambiguous. A result is ambiguous unless a value is `false` or all values have been taken into account.","examples":[{"arguments":{"data":[false,null]},"returns":false},{"arguments":{"data":[true,null]},"returns":true},{"arguments":{"data":[false,null],"ignore_nodata":false},"returns":false},{"arguments":{"data":[true,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[true,false,true,false]},"returns":false},{"arguments":{"data":[true,false]},"returns":false},{"arguments":{"data":[true,true]},"returns":true},{"arguments":{"data":[true]},"returns":true},{"arguments":{"data":[null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"returns":null}],"id":"all","parameters":[{"description":"A set of boolean values.","name":"data","schema":{"items":{"type":["boolean","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not and ignores them by default.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"Boolean result of the logical operation.","schema":{"type":["boolean","null"]}},"summary":"Are all of the values true?"},{"categories":["math > rounding"],"description":"Rounds a real number `x` to specified precision `p`.\n\nIf `x` is halfway between closest numbers of precision `p`, it is rounded to the closest even number of precision `p`.\nThis behavior follows [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) and is often called \"round to nearest (even)\" or \"banker's rounding\". It minimizes rounding errors that result from consistently rounding a midpoint value in a single direction.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"p":1,"x":3.56},"returns":3.6},{"arguments":{"p":2,"x":-0.4444444},"returns":-0.44},{"arguments":{"x":-2.5},"returns":-2},{"arguments":{"x":-3.5},"returns":-4},{"arguments":{"p":1,"x":0.25},"returns":0.2},{"arguments":{"p":1,"x":0.35},"returns":0.4},{"arguments":{"p":-2,"x":1234.5},"returns":1200}],"id":"round","links":[{"href":"http://mathworld.wolfram.com/AbsoluteValue.html","rel":"about","title":"Absolute value explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"A number to round.","name":"x","schema":{"type":["number","null"]}},{"default":0,"description":"A positive number specifies the number of digits after the decimal point to round to. A negative number means rounding to a power of ten, so for example *-2* rounds to the nearest hundred. Defaults to *0*.","name":"p","optional":true,"schema":{"type":"integer"}}],"returns":{"description":"The rounded number.","schema":{"type":["number","null"]}},"summary":"Round to a specified precision"},{"categories":["math","math > statistics","reducer"],"description":"Computes the smallest value of an array of numbers, which is equal to the last element of a sorted (i.e., ordered) version of the array.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":0},{"arguments":{"data":[5,2.5,null,-0.7]},"returns":-0.7},{"arguments":{"data":[1,0,3,null,2],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"returns":null}],"id":"min","links":[{"href":"http://mathworld.wolfram.com/Minimum.html","rel":"about","title":"Minimum explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The minimum value.","schema":{"type":["number","null"]}},"summary":"Minimum value"},{"categories":["logic","reducer"],"description":"Checks if **any** (i.e. at least one) value in `data` is `true`. If no value is given (i.e. the array is empty) the process returns `null`.\n\nBy default all no-data values are ignored so that the process returns `null` if all values are no-data, `true` if at least one value is true and `false` otherwise. Setting the `ignore_nodata` flag to `false` takes no-data values into account and the array values are reduced pairwise according to the following truth table:\n\n```\n      || null | false | true\n----- || ---- | ----- | ----\nnull  || null | null  | true\nfalse || null | false | true\ntrue  || true | true  | true\n```\n\n**Remark:** The process evaluates all values from the first to the last element and stops once the outcome is unambiguous. A result is ambiguous unless a value is `true`.","examples":[{"arguments":{"data":[false,null]},"returns":false},{"arguments":{"data":[true,null]},"returns":true},{"arguments":{"data":[false,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[true,null],"ignore_nodata":false},"returns":true},{"arguments":{"data":[true,false,true,false]},"returns":true},{"arguments":{"data":[true,false]},"returns":true},{"arguments":{"data":[false,false]},"returns":false},{"arguments":{"data":[true]},"returns":true},{"arguments":{"data":[null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"returns":null}],"id":"any","parameters":[{"description":"A set of boolean values.","name":"data","schema":{"items":{"type":["boolean","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not and ignores them by default.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"Boolean result of the logical operation.","schema":{"type":["boolean","null"]}},"summary":"Is at least one value true?"},{"categories":["comparison"],"description":"Compares whether `x` is greater than or equal to `y`.\n\n**Remarks:**\n\n* If any operand is `null`, the return value is `null`.\n* If the operands are not equal (see process ``eq()``) and any of them is not a `number`, the process returns `false`.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":0,"y":0},"returns":true},{"arguments":{"x":1,"y":2},"returns":false},{"arguments":{"x":-0.5,"y":-0.6},"returns":true},{"arguments":{"x":"2018-01-01T00:00:00Z","y":"2018-01-01T00:00:00+00:00"},"returns":false},{"arguments":{"x":true,"y":false},"returns":false},{"arguments":{"x":null,"y":null},"returns":null}],"id":"gte","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}}],"process_graph":{"eq":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"eq"},"gt":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"gt"},"or":{"arguments":{"x":{"from_node":"gt"},"y":{"from_node":"eq"}},"process_id":"or","result":true}},"returns":{"description":"`true` if `x` is greater than or equal to `y`, `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Greater than or equal to comparison"},{"categories":["math > trigonometric"],"description":"Computes the cosine of `x`.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":1}],"id":"cos","links":[{"href":"http://mathworld.wolfram.com/Cosine.html","rel":"about","title":"Cosine explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed cosine of `x`.","schema":{"type":["number","null"]}},"summary":"Cosine"},{"categories":["comparison"],"description":"By default, this process checks whether `x` is greater than or equal to `min` and lower than or equal to `max`, which is the same as computing `and(gte(x, min), lte(x, max))`. Therefore, all definitions from ``and()``, ``gte()`` and ``lte()`` apply here as well.\n\nIf `exclude_max` is set to `true` the upper bound is excluded so that the process checks whether `x` is greater than or equal to `min` and lower than `max`. In this case, the process works the same as computing `and(gte(x, min), lt(x, max))`.\n\nLower and upper bounds are not allowed to be swapped. So `min` MUST be lower than or equal to `max` or otherwise the process always returns `false`.","examples":[{"arguments":{"max":1,"min":0,"x":null},"returns":null},{"arguments":{"max":1,"min":0,"x":1},"returns":true},{"arguments":{"exclude_max":true,"max":1,"min":0,"x":1},"returns":false},{"arguments":{"max":0,"min":1,"x":0.5},"description":"Swapped bounds (min is greater than max) MUST always return `false`.","returns":false},{"arguments":{"max":0,"min":-1,"x":-0.5},"returns":true}],"id":"between","parameters":[{"description":"The value to check.","name":"x","schema":{"description":"Any data type is allowed."}},{"description":"Lower boundary (inclusive) to check against.","name":"min","schema":{"type":"number"}},{"description":"Upper boundary (inclusive) to check against.","name":"max","schema":{"type":"number"}},{"default":false,"description":"Exclude the upper boundary `max` if set to `true`. Defaults to `false`.","name":"exclude_max","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"and":{"arguments":{"x":{"from_node":"gte"},"y":{"from_node":"if"}},"process_id":"and","result":true},"gte":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"min"}},"process_id":"gte"},"if":{"arguments":{"accept":{"from_node":"lte"},"reject":{"from_node":"lt"},"value":{"from_parameter":"exclude_max"}},"process_id":"if"},"lt":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"max"}},"process_id":"lt"},"lte":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"max"}},"process_id":"lte"}},"returns":{"description":"`true` if `x` is between the specified bounds, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Between comparison"},{"categories":["arrays","math > statistics","reducer"],"description":"Gives the number of elements in an array that matches the specified condition.\n\n**Remarks:**\n\n* Counts the number of valid elements by default (`condition` is set to `null`). A valid element is every element for which ``is_valid()`` returns `true`.\n* To count all elements in a list set the `condition` parameter to boolean `true`.","examples":[{"arguments":{"data":[]},"returns":0},{"arguments":{"data":[1,0,3,2]},"returns":4},{"arguments":{"data":["ABC",null]},"returns":1},{"arguments":{"condition":true,"data":[false,null]},"returns":2},{"arguments":{"condition":{"gt":{"arguments":{"x":{"from_parameter":"element"},"y":2},"process_id":"gt","result":true}},"data":[0,1,2,3,4,5,null]},"returns":3}],"id":"count","parameters":[{"description":"An array with elements of any data type.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"default":null,"description":"A condition consists of one or more processes, which in the end return a boolean value. It is evaluated against each element in the array. An element is counted only if the condition returns `true`. Defaults to count valid elements in a list (see ``is_valid()``). Setting this parameter to boolean `true` counts all elements in the list. `false` is not a valid value for this parameter.","name":"condition","optional":true,"schema":[{"description":"A logical expression that is evaluated against each element in the array.","parameters":[{"description":"The value of the current element being processed.","name":"x","schema":{"description":"Any data type."}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"`true` if the element should increase the counter, otherwise `false`.","schema":{"type":"boolean"}},"subtype":"process-graph","title":"Condition","type":"object"},{"const":true,"description":"Boolean `true` counts all elements in the list.","title":"All elements","type":"boolean"},{"description":"`null` counts valid elements in the list.","title":"Valid elements","type":"null"}]},{"default":null,"description":"Additional data to be passed to the condition.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The counted number of elements.","schema":{"type":"number"}},"summary":"Count the number of elements"},{"categories":["logic"],"description":"Checks if **exactly one** of the values is true. If a component is `null`, the result will be `null` if the outcome is ambiguous.\n\n**Truth table:**\n\n```\na \\ b || null | false | true\n----- || ---- | ----- | -----\nnull  || null | null  | null\nfalse || null | false | true\ntrue  || null | true  | false\n```","examples":[{"arguments":{"x":true,"y":true},"returns":false},{"arguments":{"x":false,"y":false},"returns":false},{"arguments":{"x":true,"y":false},"returns":true},{"arguments":{"x":true,"y":null},"returns":null},{"arguments":{"x":false,"y":null},"returns":null}],"id":"xor","parameters":[{"description":"A boolean value.","name":"x","schema":{"type":["boolean","null"]}},{"description":"A boolean value.","name":"y","schema":{"type":["boolean","null"]}}],"process_graph":{"and1":{"arguments":{"x":{"from_node":"not_x"},"y":{"from_parameter":"y"}},"process_id":"and"},"and2":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_node":"not_y"}},"process_id":"and"},"not_x":{"arguments":{"x":{"from_parameter":"x"}},"process_id":"not"},"not_y":{"arguments":{"x":{"from_parameter":"y"}},"process_id":"not"},"or":{"arguments":{"x":{"from_node":"and1"},"y":{"from_node":"and2"}},"process_id":"or","result":true}},"returns":{"description":"Boolean result of the logical XOR.","schema":{"type":["boolean","null"]}},"summary":"Logical XOR (exclusive or)"},{"categories":["math > statistics"],"description":"Two element array containing the minimum and the maximum values of `data`.\n\nThis process is basically an alias for calling both ``min()`` and ``max()``, but may be implemented more performant by back-ends as it only needs to iterate over the data once instead of twice.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":[0,3]},{"arguments":{"data":[5,2.5,null,-0.7]},"returns":[-0.7,5]},{"arguments":{"data":[1,0,3,null,2],"ignore_nodata":false},"returns":[null,null]},{"arguments":{"data":[]},"description":"The input array is empty: return two `null` values.","returns":[null,null]}],"id":"extrema","parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that an array with two `null` values is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"An array containing the minimum and maximum values for the specified numbers. The first element is the minimum, the second element is the maximum. If the input array is empty both elements are set to `null`.","schema":[{"items":{"type":"number"},"maxItems":2,"minItems":2,"type":"array"},{"items":{"type":"null"},"maxItems":2,"minItems":2,"type":"array"}]},"summary":"Minimum and maximum values"},{"categories":["logic"],"description":"Checks if **both** values are true.\n\nEvaluates parameter `x` before `y` and stops once the outcome is unambiguous. If any argument is `null`, the result will be `null` if the outcome is ambiguous.\n\n**Truth table:**\n\n```\na \\ b || null  | false | true\n----- || ----- | ----- | -----\nnull  || null  | false | null\nfalse || false | false | false\ntrue  || null  | false | true\n```","examples":[{"arguments":{"x":true,"y":true},"returns":true},{"arguments":{"x":true,"y":false},"returns":false},{"arguments":{"x":false,"y":false},"returns":false},{"arguments":{"x":false,"y":null},"returns":false},{"arguments":{"x":true,"y":null},"returns":null}],"id":"and","parameters":[{"description":"A boolean value.","name":"x","schema":{"type":["boolean","null"]}},{"description":"A boolean value.","name":"y","schema":{"type":["boolean","null"]}}],"process_graph":{"all":{"arguments":{"data":[{"from_parameter":"x"},{"from_parameter":"y"}],"ignore_nodata":false},"process_id":"all","result":true}},"returns":{"description":"Boolean result of the logical AND.","schema":{"type":["boolean","null"]}},"summary":"Logical AND"},{"categories":["math > statistics","reducer"],"description":"Computes the sample variance of an array of numbers by calculating the square of the standard deviation (see ``sd()``). It is defined to be the expectation of the squared deviation of a random variable from its expected value. Basically, it measures how far the numbers in the array are spread out from their average value.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[-1,1,3]},"returns":4},{"arguments":{"data":[2,3,3,null,4,4,5]},"returns":1.1},{"arguments":{"data":[-1,1,null,3],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null}],"id":"variance","links":[{"href":"http://mathworld.wolfram.com/Variance.html","rel":"about","title":"Variance explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"apply":{"arguments":{"context":{"from_node":"mean"},"data":{"from_parameter":"data"},"process":{"process-graph":{"power":{"arguments":{"base":{"from_node":"subtract"},"p":2},"process_id":"power","result":true},"subtract":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"context"}},"process_id":"subtract"}}}},"process_id":"apply"},"mean":{"arguments":{"data":{"from_parameter":"data"}},"process_id":"mean"},"mean2":{"arguments":{"data":{"from_node":"apply"},"ignore_nodata":{"from_parameter":"ignore_nodata"}},"process_id":"mean","result":true}},"returns":{"description":"The computed sample variance.","schema":{"type":["number","null"]}},"summary":"Variance"},{"categories":["logic"],"description":"Checks if **at least one** of the values is true. Evaluates parameter `x` before `y` and stops once the outcome is unambiguous. If a component is `null`, the result will be `null` if the outcome is ambiguous.\n\n**Truth table:**\n\n```\na \\ b || null | false | true\n----- || ---- | ----- | ----\nnull  || null | null  | true\nfalse || null | false | true\ntrue  || true | true  | true\n```","examples":[{"arguments":{"x":true,"y":true},"returns":true},{"arguments":{"x":false,"y":false},"returns":false},{"arguments":{"x":true,"y":null},"returns":true},{"arguments":{"x":null,"y":true},"returns":true},{"arguments":{"x":false,"y":null},"returns":null}],"id":"or","parameters":[{"description":"A boolean value.","name":"x","schema":{"type":["boolean","null"]}},{"description":"A boolean value.","name":"y","schema":{"type":["boolean","null"]}}],"process_graph":{"any":{"arguments":{"data":[{"from_parameter":"x"},{"from_parameter":"y"}],"ignore_nodata":false},"process_id":"any","result":true}},"returns":{"description":"Boolean result of the logical OR.","schema":{"type":["boolean","null"]}},"summary":"Logical OR"},{"categories":["math","reducer"],"description":"Sums up all elements in a sequential array of numbers and returns the computed sum.\n\nBy default no-data values are ignored. Setting `ignore_nodata` to `false` considers no-data values so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.","examples":[{"arguments":{"data":[5,1]},"returns":6},{"arguments":{"data":[-2,4,2.5]},"returns":4.5},{"arguments":{"data":[1,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[100]},"returns":100},{"arguments":{"data":[null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"returns":null}],"id":"sum","links":[{"href":"http://mathworld.wolfram.com/Sum.html","rel":"about","title":"Sum explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The computed sum of the sequence of numbers.","schema":{"type":["number","null"]}},"summary":"Compute the sum by adding up numbers"},{"categories":["math > trigonometric"],"description":"Computes the sine of `x`.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"sin","links":[{"href":"http://mathworld.wolfram.com/Sine.html","rel":"about","title":"Sine explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed sine of `x`.","schema":{"type":["number","null"]}},"summary":"Sine"},{"categories":["math > trigonometric"],"description":"Computes the hyperbolic sine of `x`.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"sinh","links":[{"href":"http://mathworld.wolfram.com/HyperbolicSine.html","rel":"about","title":"Hyperbolic sine explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed hyperbolic sine of `x`.","schema":{"type":["number","null"]}},"summary":"Hyperbolic sine"},{"categories":["math","reducer"],"description":"Multiplies all elements in a sequential array of numbers and returns the computed product.\n\nBy default no-data values are ignored. Setting `ignore_nodata` to `false` considers no-data values so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.","examples":[{"arguments":{"data":[5,0]},"returns":0},{"arguments":{"data":[-2,4,2.5]},"returns":-20},{"arguments":{"data":[1,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[-1]},"returns":-1},{"arguments":{"data":[null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"returns":null}],"id":"product","links":[{"href":"http://mathworld.wolfram.com/Product.html","rel":"about","title":"Product explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The computed product of the sequence of numbers.","schema":{"type":["number","null"]}},"summary":"Compute the product by multiplying numbers"},{"categories":["math > exponential & logarithmic"],"description":"Exponential function to the base *e* raised to the power of `p`.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"p":0},"returns":1},{"arguments":{"p":null},"returns":null}],"id":"exp","links":[{"href":"http://mathworld.wolfram.com/ExponentialFunction.html","rel":"about","title":"Exponential function explained by Wolfram MathWorld"}],"parameters":[{"description":"The numerical exponent.","name":"p","schema":{"type":["number","null"]}}],"process_graph":{"e":{"arguments":{},"process_id":"e"},"power":{"arguments":{"base":{"from_node":"e"},"p":{"from_parameter":"p"}},"process_id":"power","result":true}},"returns":{"description":"The computed value for *e* raised to the power of `p`.","schema":{"type":["number","null"]}},"summary":"Exponentiation to the base e"},{"categories":["texts","comparison"],"description":"Compares whether `x` is **not** strictly equal to `y`.\n\n**Remarks:**\n\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*. Nevertheless, an integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`.\n* If any operand is `null`, the return value is `null`.\n* Strings are expected to be encoded in UTF-8 by default.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":1,"y":1},"returns":false},{"arguments":{"x":1,"y":"1"},"returns":true},{"arguments":{"x":0,"y":false},"returns":true},{"arguments":{"delta":0.01,"x":1.02,"y":1},"returns":true},{"arguments":{"delta":0.01,"x":-1,"y":-1.001},"returns":false},{"arguments":{"delta":10,"x":115,"y":110},"returns":false},{"arguments":{"x":"Test","y":"test"},"returns":true},{"arguments":{"case_sensitive":false,"x":"Test","y":"test"},"returns":false},{"arguments":{"case_sensitive":false,"x":"\u00c4","y":"\u00e4"},"returns":false},{"arguments":{"x":"2018-01-01T00:00:00Z","y":"2018-01-01T00:00:00+00:00"},"returns":true},{"arguments":{"x":null,"y":null},"returns":null}],"id":"neq","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}},{"default":null,"description":"Only applicable for comparing two numbers. If this optional parameter is set to a positive non-zero number the non-equality of two numbers is checked against a delta value. This is especially useful to circumvent problems with floating-point inaccuracy in machine-based computation.\n\nThis option is basically an alias for the following computation: `gt(abs(minus([x, y]), delta)`","name":"delta","optional":true,"schema":{"type":["number","null"]}},{"default":true,"description":"Only applicable for comparing two strings. Case sensitive comparison can be disabled by setting this parameter to `false`.","name":"case_sensitive","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"eq":{"arguments":{"case_sensitive":{"from_parameter":"case_sensitive"},"delta":{"from_parameter":"delta"},"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"eq"},"not":{"arguments":{"x":{"from_node":"eq"}},"process_id":"not","result":true}},"returns":{"description":"`true` if `x` is *not* equal to `y`, `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Not equal to comparison"},{"categories":["math > statistics","reducer"],"description":"Computes the sample standard deviation, which quantifies the amount of variation of an array of numbers. It is defined to be the square root of the corresponding variance (see ``variance()``).\n\nA low standard deviation indicates that the values tend to be close to the expected value, while a high standard deviation indicates that the values are spread out over a wider range.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[-1,1,3,null]},"returns":2},{"arguments":{"data":[-1,1,3,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null}],"id":"sd","links":[{"href":"http://mathworld.wolfram.com/StandardDeviation.html","rel":"about","title":"Standard deviation explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"power":{"arguments":{"base":{"from_node":"variance"},"p":0.5},"process_id":"power","result":true},"variance":{"arguments":{"data":{"from_parameter":"data"},"ignore_nodata":{"from_parameter":"ignore_nodata"}},"process_id":"variance"}},"returns":{"description":"The computed sample standard deviation.","schema":{"type":["number","null"]}},"summary":"Standard deviation"},{"categories":["arrays","sorting"],"description":"Sorts an array into ascending (default) or descending order.\n\n**Remarks:**\n\n* The ordering of ties is implementation-dependent.\n* Temporal strings can *not* be compared based on their string representation due to the time zone/time-offset representations.","examples":[{"arguments":{"data":[6,-1,2,null,7,4,null,8,3,9,9]},"returns":[-1,2,3,4,6,7,8,9,9]},{"arguments":{"asc":false,"data":[6,-1,2,null,7,4,null,8,3,9,9],"nodata":true},"returns":[9,9,8,7,6,4,3,2,-1,null,null]}],"id":"sort","parameters":[{"description":"An array with data to sort.","name":"data","schema":{"items":{"anyOf":[{"type":"number"},{"type":"null"},{"format":"date-time","subtype":"date-time","type":"string"},{"format":"date","subtype":"date","type":"string"}]},"type":"array"}},{"default":true,"description":"The default sort order is ascending, with smallest values first. To sort in reverse (descending) order, set this parameter to `false`.","name":"asc","optional":true,"schema":{"type":"boolean"}},{"default":null,"description":"Controls the handling of no-data values (`null`). By default, they are removed. If set to `true`, missing values in the data are put last; if set to `false`, they are put first.","name":"nodata","optional":true,"schema":{"type":["boolean","null"]}}],"process_graph":{"order":{"arguments":{"asc":{"from_parameter":"asc"},"data":{"from_parameter":"data"},"nodata":{"from_parameter":"nodata"}},"process_id":"order"},"rearrange":{"arguments":{"data":{"from_parameter":"data"},"order":{"from_node":"order"}},"process_id":"rearrange","result":true}},"returns":{"description":"The sorted array.","schema":{"items":{"anyOf":[{"type":"number"},{"type":"null"},{"format":"date-time","subtype":"date-time","type":"string"},{"format":"date","subtype":"date","type":"string"}]},"type":"array"}},"summary":"Sort data"},{"categories":["math > trigonometric"],"description":"Computes the inverse hyperbolic sine of `x`. It is the inverse function of the hyperbolic sine so that *`arsinh(sinh(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"arsinh","links":[{"href":"http://mathworld.wolfram.com/InverseHyperbolicSine.html","rel":"about","title":"Inverse hyperbolic sine explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse hyperbolic sine"},{"categories":["math","math > rounding"],"description":"The integer part of the real number `x`.\n\nThis process is *not* an alias for the ``floor()`` process as defined by some mathematicians, see the examples for negative numbers in both processes for differences.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"x":3.5},"returns":3},{"arguments":{"x":-0.4},"returns":0},{"arguments":{"x":-3.5},"returns":-3}],"id":"int","links":[{"href":"http://mathworld.wolfram.com/IntegerPart.html","rel":"about","title":"Integer Part explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"Integer part of the number.","schema":{"type":["integer","null"]}},"summary":"Integer part of a number"},{"categories":["arrays","sorting"],"description":"Computes the ranked (sorted) element positions in the original list (i.e., a permutation), either in ascending or descending order. The process ``rearrange()`` allows sorting the data based on the computed permutation.\n\n**Remarks:**\n\n* The positions in the result are zero-based.\n* The ordering of ties is implementation-dependent.\n* Temporal strings can *not* be compared based on their string representation due to the time zone/time-offset representations.","examples":[{"arguments":{"data":[6,-1,2,null,7,4,null,8,3,9,9]},"returns":[1,2,8,5,0,4,7,9,10]},{"arguments":{"data":[6,-1,2,null,7,4,null,8,3,9,9],"nodata":true},"returns":[1,2,8,5,0,4,7,9,10,3,6]},{"arguments":{"asc":false,"data":[6,-1,2,null,7,4,null,8,3,9,9],"nodata":true},"returns":[9,10,7,4,0,5,8,2,1,3,6]},{"arguments":{"asc":false,"data":[6,-1,2,null,7,4,null,8,3,9,9],"nodata":false},"returns":[3,6,9,10,7,4,0,5,8,2,1]}],"id":"order","links":[{"href":"http://mathworld.wolfram.com/Permutation.html","rel":"about","title":"Permutation explained by Wolfram MathWorld"}],"parameters":[{"description":"An array to compute the order for.","name":"data","schema":{"items":{"anyOf":[{"type":"number"},{"type":"null"},{"format":"date-time","subtype":"date-time","type":"string"},{"format":"date","subtype":"date","type":"string"}]},"type":"array"}},{"default":true,"description":"The default sort order is ascending, with smallest values first. To sort in reverse (descending) order, set this parameter to `false`.","name":"asc","optional":true,"schema":{"type":"boolean"}},{"default":null,"description":"Controls the handling of no-data values (`null`). By default, they are removed. If set to `true`, missing values in the data are put last; if set to `false`, they are put first.","name":"nodata","optional":true,"schema":{"type":["boolean","null"]}}],"returns":{"description":"The computed permutation.","schema":{"items":{"minimum":0,"type":"integer"},"type":"array"}},"summary":"Get the order of array elements"},{"categories":["arrays","reducer"],"description":"Returns the zero-based index of the first (or last) occurrence of the value specified by `value` in the array specified by `data` or `null` if there is no match. Use the parameter `reverse` to switch from the first to the last match.\n\n**Remarks:**\n\n* Use ``array_contains()`` to check if an array contains a value regardless of the position.\n* Use ``array_find_label()`` to find the index for a label.\n* All definitions for the process ``eq()`` regarding the comparison of values apply here as well. A `null` return value from ``eq()`` is handled exactly as `false` (no match).\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*.\n* An integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`. Still, this process may return unexpectedly `false` when comparing floating-point numbers due to floating-point inaccuracy in machine-based computation.\n* Temporal strings are treated as normal strings and MUST NOT be interpreted.\n* If the specified value is an array, object or null, the process always returns `null`. See the examples for one to find `null` values.","examples":[{"arguments":{"data":[1,2,3,2,3],"value":2},"returns":1},{"arguments":{"data":[1,2,3,2,3],"reverse":true,"value":2},"returns":3},{"arguments":{"data":["A","B","C"],"value":"b"},"returns":null},{"arguments":{"data":[1,2,3],"value":"2"},"returns":null},{"arguments":{"data":[1,null,2,null],"value":null},"returns":null},{"arguments":{"data":[[1,2],[3,4]],"value":[1,2]},"returns":null},{"arguments":{"data":[[1,2],[3,4]],"value":2},"returns":null},{"arguments":{"data":[{"a":"b"},{"c":"d"}],"value":{"a":"b"}},"returns":null}],"id":"array_find","links":[{"href":"https://raw.githubusercontent.com/Open-EO/openeo-community-examples/main/processes/array_find_nodata.json","rel":"example","title":"Find no-data values in arrays","type":"application/json"}],"parameters":[{"description":"List to find the value in.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"Value to find in `data`. If the value is `null`, this process returns always `null`.","name":"value","schema":{"description":"Any data type is allowed."}},{"default":false,"description":"By default, this process finds the index of the first match. To return the index of the last match instead, set this flag to `true`.","name":"reverse","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The index of the first element with the specified value. If no element was found, `null` is returned.","schema":[{"type":"null"},{"minimum":0,"type":"integer"}]},"summary":"Get the index for a value in an array"},{"categories":["math","math > exponential & logarithmic"],"description":"Computes the square root of a real number `x`, which is equal to calculating `x` to the power of *0.5*.\n\nA square root of x is a number a such that *`a\u00b2 = x`*. Therefore, the square root is the inverse function of a to the power of 2, but only for *a >= 0*.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"x":1},"returns":1},{"arguments":{"x":9},"returns":3},{"arguments":{"x":null},"returns":null}],"id":"sqrt","links":[{"href":"http://mathworld.wolfram.com/SquareRoot.html","rel":"about","title":"Square root explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"process_graph":{"power":{"arguments":{"base":{"from_parameter":"x"},"p":0.5},"process_id":"power","result":true}},"returns":{"description":"The computed square root.","schema":{"type":["number","null"]}},"summary":"Square root"},{"categories":["math"],"description":"Sums up the two numbers `x` and `y` (*`x + y`*) and returns the computed sum.\n\nNo-data values are taken into account so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.","examples":[{"arguments":{"x":5,"y":2.5},"returns":7.5},{"arguments":{"x":-2,"y":-4},"returns":-6},{"arguments":{"x":1,"y":null},"returns":null}],"id":"add","links":[{"href":"http://mathworld.wolfram.com/Sum.html","rel":"about","title":"Sum explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"The first summand.","name":"x","schema":{"type":["number","null"]}},{"description":"The second summand.","name":"y","schema":{"type":["number","null"]}}],"process_graph":{"sum":{"arguments":{"data":[{"from_parameter":"x"},{"from_parameter":"y"}],"ignore_nodata":false},"process_id":"sum","result":true}},"returns":{"description":"The computed sum of the two numbers.","schema":{"type":["number","null"]}},"summary":"Addition of two numbers"},{"categories":["math > constants","math > exponential & logarithmic"],"description":"The real number *e* is a mathematical constant that is the base of the natural logarithm such that *`ln(e) = 1`*. The numerical value is approximately *2.71828*.","id":"e","links":[{"href":"http://mathworld.wolfram.com/e.html","rel":"about","title":"Mathematical constant e explained by Wolfram MathWorld"}],"parameters":[],"returns":{"description":"The numerical value of Euler's number.","schema":{"type":"number"}},"summary":"Euler's number (e)"},{"categories":["math > trigonometric"],"description":"Computes the tangent of `x`. The tangent is defined to be the sine of x divided by the cosine of x.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"tan","links":[{"href":"http://mathworld.wolfram.com/Tangent.html","rel":"about","title":"Tangent explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed tangent of `x`.","schema":{"type":["number","null"]}},"summary":"Tangent"},{"categories":["math > statistics","reducer"],"description":"The arithmetic mean of an array of numbers is the quantity commonly called the average. It is defined as the sum of all elements divided by the number of elements.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":1.5},{"arguments":{"data":[9,2.5,null,-2.5]},"returns":3},{"arguments":{"data":[1,null],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null},{"arguments":{"data":[null,null]},"description":"The input array has only `null` elements: return `null`.","returns":null}],"id":"mean","links":[{"href":"http://mathworld.wolfram.com/ArithmeticMean.html","rel":"about","title":"Arithmetic mean explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"process_graph":{"count":{"arguments":{"condition":{"from_node":"count_condition"},"data":{"from_parameter":"data"}},"process_id":"count"},"count_condition":{"arguments":{"accept":null,"reject":true,"value":{"from_parameter":"ignore_nodata"}},"process_id":"if"},"divide":{"arguments":{"x":{"from_node":"sum"},"y":{"from_node":"count"}},"process_id":"divide"},"if":{"arguments":{"accept":{"from_node":"divide"},"value":{"from_node":"neq"}},"process_id":"if","result":true},"neq":{"arguments":{"x":{"from_node":"count"},"y":0},"process_id":"neq"},"sum":{"arguments":{"data":{"from_parameter":"data"},"ignore_nodata":{"from_parameter":"ignore_nodata"}},"process_id":"sum"}},"returns":{"description":"The computed arithmetic mean.","schema":{"type":["number","null"]}},"summary":"Arithmetic mean (average)"},{"categories":["arrays","filter"],"description":"Filters the array elements based on a logical expression so that afterwards an array is returned that only contains the values, indices and/or labels conforming to the condition.","id":"array_filter","parameters":[{"description":"An array.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"A condition that is evaluated against each value, index and/or label in the array. Only the array elements for which the condition returns `true` are preserved.","name":"condition","schema":{"parameters":[{"description":"The value of the current element being processed.","name":"x","schema":{"description":"Any data type."}},{"description":"The zero-based index of the current element being processed.","name":"index","schema":{"minimum":0,"type":"integer"}},{"default":null,"description":"The label of the current element being processed. Only populated for labeled arrays.","name":"label","optional":true,"schema":[{"type":"number"},{"type":"string"},{"type":"null"}]},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"`true` if the value should be kept in the array, otherwise `false`.","schema":{"type":"boolean"}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"Additional data to be passed to the condition.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"An array filtered by the specified condition. The number of elements are less than or equal compared to the original array.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Filter an array based on a condition"},{"categories":["math"],"description":"Remainder after a division of `x` by `y` for both integers and floating-point numbers.\n\nThe result of a modulo operation has the sign of the divisor. The handling regarding the sign of the result [differs between programming languages](https://en.wikipedia.org/wiki/Modulo_operation#In_programming_languages) and needs careful consideration to avoid unexpected results.\n\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`. A modulo by zero results in \u00b1infinity if the processing environment supports it. Otherwise, a `DivisionByZero` exception must the thrown.","examples":[{"arguments":{"x":27,"y":5},"returns":2},{"arguments":{"x":-27,"y":5},"returns":3},{"arguments":{"x":3.14,"y":-2},"returns":-0.86},{"arguments":{"x":-27,"y":-5},"returns":-2},{"arguments":{"x":27,"y":null},"returns":null},{"arguments":{"x":null,"y":5},"returns":null}],"exceptions":{"DivisionByZero":{"message":"Division by zero is not supported."}},"id":"mod","links":[{"href":"https://en.wikipedia.org/wiki/Modulo_operation","rel":"about","title":"Modulo explained by Wikipedia"}],"parameters":[{"description":"A number to be used as the dividend.","name":"x","schema":{"type":["number","null"]}},{"description":"A number to be used as the divisor.","name":"y","schema":{"type":["number","null"]}}],"returns":{"description":"The remainder after division.","schema":{"type":["number","null"]}},"summary":"Modulo"},{"categories":["math"],"description":"Multiplies the two numbers `x` and `y` (*`x * y`*) and returns the computed product.\n\nNo-data values are taken into account so that `null` is returned if any element is such a value.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it.","examples":[{"arguments":{"x":5,"y":2.5},"returns":12.5},{"arguments":{"x":-2,"y":-4},"returns":8},{"arguments":{"x":1,"y":null},"returns":null}],"exceptions":{"MultiplicandMissing":{"message":"Multiplication requires at least two numbers."}},"id":"multiply","links":[{"href":"http://mathworld.wolfram.com/Product.html","rel":"about","title":"Product explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"The multiplier.","name":"x","schema":{"type":["number","null"]}},{"description":"The multiplicand.","name":"y","schema":{"type":["number","null"]}}],"process_graph":{"product":{"arguments":{"data":[{"from_parameter":"x"},{"from_parameter":"y"}],"ignore_nodata":false},"process_id":"product","result":true}},"returns":{"description":"The computed product of the two numbers.","schema":{"type":["number","null"]}},"summary":"Multiplication of two numbers"},{"categories":["comparison"],"description":"Compares whether `x` is less than or equal to `y`.\n\n**Remarks:**\n\n* If any operand is `null`, the return value is `null`.\n* If the operands are not equal (see process ``eq()``) and any of them is not a `number`, the process returns `false`.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":0,"y":0},"returns":true},{"arguments":{"x":1,"y":2},"returns":true},{"arguments":{"x":-0.5,"y":-0.6},"returns":false},{"arguments":{"x":"2018-01-01T00:00:00Z","y":"2018-01-01T00:00:00+00:00"},"returns":false},{"arguments":{"x":false,"y":true},"returns":false},{"arguments":{"x":null,"y":null},"returns":null}],"id":"lte","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}}],"process_graph":{"eq":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"eq"},"lt":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"lt"},"or":{"arguments":{"x":{"from_node":"lt"},"y":{"from_node":"eq"}},"process_id":"or","result":true}},"returns":{"description":"`true` if `x` is less than or equal to `y`, `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Less than or equal to comparison"},{"categories":["math > constants","math > trigonometric"],"description":"The real number Pi (\u03c0) is a mathematical constant that is the ratio of the circumference of a circle to its diameter. The numerical value is approximately *3.14159*.","id":"pi","links":[{"href":"http://mathworld.wolfram.com/Pi.html","rel":"about","title":"Mathematical constant Pi explained by Wolfram MathWorld"}],"parameters":[],"returns":{"description":"The numerical value of Pi.","schema":{"type":"number"}},"summary":"Pi (\u03c0)"},{"categories":["math > rounding"],"description":"The least integer greater than or equal to the number `x`.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"x":3.5},"returns":4},{"arguments":{"x":-0.4},"returns":0},{"arguments":{"x":-3.5},"returns":-3}],"id":"ceil","links":[{"href":"http://mathworld.wolfram.com/CeilingFunction.html","rel":"about","title":"Ceiling explained by Wolfram MathWorld"}],"parameters":[{"description":"A number to round up.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The number rounded up.","schema":{"type":["integer","null"]}},"summary":"Round fractions up"},{"categories":["math > trigonometric"],"description":"Computes the hyperbolic tangent of `x`. The tangent is defined to be the hyperbolic sine of x divided by the hyperbolic cosine of x.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"tanh","links":[{"href":"http://mathworld.wolfram.com/HyperbolicTangent.html","rel":"about","title":"Hyperbolic tangent explained by Wolfram MathWorld"}],"parameters":[{"description":"An angle in radians.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed hyperbolic tangent of `x`.","schema":{"type":["number","null"]}},"summary":"Hyperbolic tangent"},{"categories":["math > trigonometric"],"description":"Computes the arc tangent of `x`. The arc tangent is the inverse function of the tangent so that *`arctan(tan(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"arctan","links":[{"href":"http://mathworld.wolfram.com/InverseTangent.html","rel":"about","title":"Inverse tangent explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse tangent"},{"categories":["math > rounding"],"description":"The greatest integer less than or equal to the number `x`.\n\nThis process is *not* an alias for the ``int()`` process as defined by some mathematicians, see the examples for negative numbers in both processes for differences.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0},{"arguments":{"x":3.5},"returns":3},{"arguments":{"x":-0.4},"returns":-1},{"arguments":{"x":-3.5},"returns":-4}],"id":"floor","links":[{"href":"http://mathworld.wolfram.com/FloorFunction.html","rel":"about","title":"Floor explained by Wolfram MathWorld"}],"parameters":[{"description":"A number to round down.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The number rounded down.","schema":{"type":["integer","null"]}},"summary":"Round fractions down"},{"categories":["arrays","reducer"],"description":"Gives the element with the specified index or label from the array.\n\nEither the parameter `index` or `label` must be specified, otherwise the `ArrayElementParameterMissing` exception is thrown. If both parameters are set the `ArrayElementParameterConflict` exception is thrown.","examples":[{"arguments":{"data":[9,8,7,6,5],"index":2},"returns":7},{"arguments":{"data":["A","B","C"],"index":0},"returns":"A"},{"arguments":{"data":[],"index":0,"return_nodata":true},"returns":null}],"exceptions":{"ArrayElementNotAvailable":{"message":"The array has no element with the specified index or label."},"ArrayElementParameterConflict":{"message":"The process `array_element` only allows that either the `index` or the `labels` parameter is set."},"ArrayElementParameterMissing":{"message":"The process `array_element` requires either the `index` or `labels` parameter to be set."},"ArrayNotLabeled":{"message":"The array is not a labeled array, but the `label` parameter is set. Use the `index` instead."}},"id":"array_element","parameters":[{"description":"An array.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"The zero-based index of the element to retrieve.","name":"index","optional":true,"schema":{"minimum":0,"type":"integer"}},{"description":"The label of the element to retrieve. Throws an `ArrayNotLabeled` exception, if the given array is not a labeled array and this parameter is set.","name":"label","optional":true,"schema":[{"type":"number"},{"type":"string"}]},{"default":false,"description":"By default this process throws an `ArrayElementNotAvailable` exception if the index or label is invalid. If you want to return `null` instead, set this flag to `true`.","name":"return_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The value of the requested element.","schema":{"description":"Any data type is allowed."}},"summary":"Get an element from an array"},{"categories":["math"],"description":"Clips a number between specified minimum and maximum values. A value larger than the maximum value is set to the maximum value, a value lower than the minimum value is set to the minimum value.\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"max":1,"min":-1,"x":-5},"returns":-1},{"arguments":{"max":10,"min":1,"x":10.001},"returns":10},{"arguments":{"max":0.02,"min":0,"x":1e-06},"returns":1e-06},{"arguments":{"max":1,"min":0,"x":null},"returns":null}],"id":"clip","parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}},{"description":"Minimum value. If the value is lower than this value, the process will return the value of this parameter.","name":"min","schema":{"type":"number"}},{"description":"Maximum value. If the value is greater than this value, the process will return the value of this parameter.","name":"max","schema":{"type":"number"}}],"process_graph":{"max":{"arguments":{"data":[{"from_parameter":"min"},{"from_node":"min"}]},"process_id":"max","result":true},"min":{"arguments":{"data":[{"from_parameter":"max"},{"from_parameter":"x"}]},"process_id":"min"}},"returns":{"description":"The value clipped to the specified range.","schema":{"type":["number","null"]}},"summary":"Clip a value between a minimum and a maximum"},{"categories":["math"],"description":"The signum (also known as *sign*) of `x` is defined as:\n\n* *1* if *x > 0*\n* *0* if *x = 0*\n* *-1* if *x < 0*\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":-2},"returns":-1},{"arguments":{"x":3.5},"returns":1},{"arguments":{"x":0},"returns":0},{"arguments":{"x":null},"returns":null}],"id":"sgn","links":[{"href":"http://mathworld.wolfram.com/Sign.html","rel":"about","title":"Sign explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"process_graph":{"gt0":{"arguments":{"x":{"from_parameter":"x"},"y":0},"process_id":"gt"},"if_gt0":{"arguments":{"accept":1,"reject":{"from_parameter":"x"},"value":{"from_node":"gt0"}},"process_id":"if"},"if_lt0":{"arguments":{"accept":-1,"reject":{"from_node":"if_gt0"},"value":{"from_node":"lt0"}},"process_id":"if","result":true},"lt0":{"arguments":{"x":{"from_parameter":"x"},"y":0},"process_id":"lt"}},"returns":{"description":"The computed signum value of `x`.","schema":{"type":["number","null"]}},"summary":"Signum"},{"categories":["math > statistics"],"description":"Calculates quantiles, which are cut points dividing the range of a sample distribution into either\n\n1. intervals corresponding to the given probabilities *or*\n2. equal-sized intervals (q-quantiles).\n\nEither the parameter `probabilities` or `q` must be specified, otherwise the `QuantilesParameterMissing` exception is thrown. If both parameters are set the `QuantilesParameterConflict` exception is thrown.\n\nSample quantiles can be computed with several different algorithms. Hyndman and Fan (1996) have concluded on nine different types, which are commonly implemented in statistical software packages. This process is implementing type 7, which is implemented widely and often also the default type (e.g. in Excel, Julia, Python, R and S).","examples":[{"arguments":{"data":[2,4,4,4,5,5,7,9],"probabilities":[0.005,0.01,0.02,0.05,0.1,0.5]},"returns":[2.07,2.14,2.28,2.7,3.4,4.5]},{"arguments":{"data":[2,4,4,4,5,5,7,9],"probabilities":4},"returns":[4,4.5,5.5]},{"arguments":{"data":[-1,-0.5,null,1],"probabilities":2},"returns":[-0.5]},{"arguments":{"data":[-1,-0.5,null,1],"ignore_nodata":false,"probabilities":4},"returns":[null,null,null]},{"arguments":{"data":[],"probabilities":[0.1,0.5]},"returns":[null,null],"title":"Empty array"}],"exceptions":{"AscendingProbabilitiesRequired":{"message":"The values passed for parameter `probabilities` must be sorted in ascending order."},"QuantilesParameterConflict":{"message":"The process `quantiles` only allows that either the `probabilities` or the `q` parameter is set."},"QuantilesParameterMissing":{"message":"The process `quantiles` requires either the `probabilities` or `q` parameter to be set."}},"id":"quantiles","links":[{"href":"https://en.wikipedia.org/wiki/Quantile","rel":"about","title":"Quantiles explained by Wikipedia"},{"href":"https://www.amherst.edu/media/view/129116/original/Sample+Quantiles.pdf","rel":"about","title":"Hyndman and Fan (1996): Sample Quantiles in Statistical Packages","type":"application/pdf"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"description":"Quantiles to calculate. Either a list of probabilities or the number of intervals:\n\n* Provide an array with a sorted list of probabilities in ascending order to calculate quantiles for. The probabilities must be between 0 and 1 (inclusive). If not sorted in ascending order, an `AscendingProbabilitiesRequired` exception is thrown.\n* Provide an integer to specify the number of intervals to calculate quantiles for. Calculates q-quantiles with equal-sized intervals.","name":"probabilities","optional":true,"schema":[{"items":{"maximum":1,"minimum":0,"type":"number"},"title":"List of probabilities","type":"array","uniqueItems":true},{"minimum":2,"title":"Number of intervals (q-quantiles)","type":"integer"}]},{"deprecated":true,"description":"Number of intervals to calculate quantiles for. Calculates q-quantiles with equal-sized intervals.\n\nThis parameter has been **deprecated**. Please use the parameter `probabilities` instead.","name":"q","optional":true,"schema":{"minimum":2,"type":"integer"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that an array with `null` values is returned if any element is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"An array with the computed quantiles. The list has either\n\n* as many elements as the given list of `probabilities` had or\n* *`q`-1* elements.\n\nIf the input array is empty the resulting array is filled with as many `null` values as required according to the list above. See the 'Empty array' example for an example.","schema":{"items":{"type":["number","null"]},"type":"array"}},"summary":"Quantiles"},{"categories":["math > trigonometric"],"description":"Computes the arc sine of `x`. The arc sine is the inverse function of the sine so that *`arcsin(sin(x)) = x`*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"x":0},"returns":0}],"id":"arcsin","links":[{"href":"http://mathworld.wolfram.com/InverseSine.html","rel":"about","title":"Inverse sine explained by Wolfram MathWorld"}],"parameters":[{"description":"A number.","name":"x","schema":{"type":["number","null"]}}],"returns":{"description":"The computed angle in radians.","schema":{"type":["number","null"]}},"summary":"Inverse sine"},{"categories":["arrays","sorting"],"description":"Rearranges an array based on a ranked list of element positions in the original list (i.e., a permutation). The positions must be zero-based. The process ``order()`` can compute such a permutation.","examples":[{"arguments":{"data":[5,4,3],"order":[2,1,0]},"returns":[3,4,5],"title":"Reverse a list"},{"arguments":{"data":[5,4,3,2],"order":[1,3]},"returns":[4,2],"title":"Remove two elements"},{"arguments":{"data":[5,4,3,2],"order":[0,2,1,3]},"returns":[5,3,4,2],"title":"Swap two elements"}],"id":"rearrange","links":[{"href":"http://mathworld.wolfram.com/Permutation.html","rel":"about","title":"Permutation explained by Wolfram MathWorld"}],"parameters":[{"description":"The array to rearrange.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"The permutation used for rearranging.","name":"order","schema":{"items":{"minimum":0,"type":"integer"},"type":"array"}}],"returns":{"description":"The rearranged array.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Sort an array based on a permutation"},{"categories":["arrays","comparison","reducer"],"description":"Checks whether the array specified for `data` contains the value specified in `value`. Returns `true` if there's a match, otherwise `false`.\n\n**Remarks:**\n\n* To get the index or the label of the value found, use ``array_find()``.\n* All definitions for the process ``eq()`` regarding the comparison of values apply here as well. A `null` return value from ``eq()`` is handled exactly as `false` (no match).\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*.\n* An integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`. Still, this process may return unexpectedly `false` when comparing floating-point numbers due to floating-point inaccuracy in machine-based computation.\n* Temporal strings are treated as normal strings and MUST NOT be interpreted.","examples":[{"arguments":{"data":[1,2,3],"value":2},"returns":true},{"arguments":{"data":["A","B","C"],"value":"b"},"returns":false},{"arguments":{"data":[1,2,3],"value":"2"},"returns":false},{"arguments":{"data":[1,2,null],"value":null},"returns":false},{"arguments":{"data":[[1,2],[3,4]],"value":2},"returns":false}],"id":"array_contains","links":[{"href":"https://raw.githubusercontent.com/Open-EO/openeo-community-examples/main/processes/array_contains_nodata.json","rel":"example","title":"Check for no-data values in arrays","type":"application/json"}],"parameters":[{"description":"List to find the value in.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"Value to find in `data`. If the value is `null`, this process returns always `false`.","name":"value","schema":{"type":["number","boolean","string","null"]}}],"process_graph":{"find":{"arguments":{"data":{"from_parameter":"data"},"value":{"from_parameter":"value"}},"process_id":"array_find"},"is_nodata":{"arguments":{"x":{"from_node":"find"}},"process_id":"is_nodata"},"not":{"arguments":{"x":{"from_node":"is_nodata"}},"process_id":"not","result":true}},"returns":{"description":"`true` if the list contains the value, false` otherwise.","schema":{"type":"boolean"}},"summary":"Check whether the array contains a given value"},{"categories":["comparison"],"description":"Checks whether the specified data is missing data, i.e. equals to `null` or any of the no-data values specified in the metadata.\n\nThe special numerical value `NaN` (not a number) as defined by the [IEEE Standard 754](https://ieeexplore.ieee.org/document/4610935) is only considered as no-data value if specified as no-data value in the metadata.","examples":[{"arguments":{"x":1},"returns":false},{"arguments":{"x":"Test"},"returns":false},{"arguments":{"x":null},"returns":true},{"arguments":{"x":[null,null]},"returns":false}],"id":"is_nodata","parameters":[{"description":"The data to check.","name":"x","schema":{"description":"Any data type is allowed."}}],"returns":{"description":"`true` if the data is a no-data value, otherwise `false`.","schema":{"type":"boolean"}},"summary":"Value is a no-data value"},{"categories":["comparison"],"description":"Compares whether `x` is strictly greater than `y`.\n\n**Remarks:**\n\n* If any operand is `null`, the return value is `null`.\n* If any operand is not a `number`, the process returns `false`.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":0,"y":0},"returns":false},{"arguments":{"x":2,"y":1},"returns":true},{"arguments":{"x":-0.5,"y":-0.6},"returns":true},{"arguments":{"x":"2018-01-02T00:00:00Z","y":"2018-01-01T00:00:00Z"},"returns":false},{"arguments":{"x":true,"y":0},"returns":false},{"arguments":{"x":true,"y":false},"returns":false},{"arguments":{"x":null,"y":null},"returns":null}],"id":"gt","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}}],"returns":{"description":"`true` if `x` is strictly greater than `y` or `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Greater than comparison"},{"categories":["math > exponential & logarithmic"],"description":"The natural logarithm is the logarithm to the base *e* of the number `x`, which equals to using the *log* process with the base set to *e*. The natural logarithm is the inverse function of taking *e* to the power x.\n\nThe no-data value `null` is passed through.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it. Therefore, *`ln(0)`* results in \u00b1infinity if the processing environment supports it or otherwise an exception is thrown.","examples":[{"arguments":{"x":1},"returns":0}],"id":"ln","links":[{"href":"http://mathworld.wolfram.com/NaturalLogarithm.html","rel":"about","title":"Natural logarithm explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"A number to compute the natural logarithm for.","name":"x","schema":{"type":["number","null"]}}],"process_graph":{"e":{"arguments":{},"process_id":"e"},"log":{"arguments":{"base":{"from_node":"e"},"x":{"from_parameter":"x"}},"process_id":"log","result":true}},"returns":{"description":"The computed natural logarithm.","schema":{"type":["number","null"]}},"summary":"Natural logarithm"},{"categories":["math > exponential & logarithmic"],"description":"Logarithm to the base `base` of the number `x` is defined to be the inverse function of taking b to the power of x.\n\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`.\n\nThe computations follow [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229) whenever the processing environment supports it. Therefore, `log(0, 2)` results in \u00b1infinity if the processing environment supports it or otherwise an exception is thrown.","examples":[{"arguments":{"base":10,"x":10},"returns":1},{"arguments":{"base":2,"x":2},"returns":1},{"arguments":{"base":2,"x":4},"returns":2},{"arguments":{"base":16,"x":1},"returns":0}],"id":"log","links":[{"href":"http://mathworld.wolfram.com/Logarithm.html","rel":"about","title":"Logarithm explained by Wolfram MathWorld"},{"href":"https://ieeexplore.ieee.org/document/8766229","rel":"about","title":"IEEE Standard 754-2019 for Floating-Point Arithmetic"}],"parameters":[{"description":"A number to compute the logarithm for.","name":"x","schema":{"type":["number","null"]}},{"description":"The numerical base.","name":"base","schema":{"type":["number","null"]}}],"returns":{"description":"The computed logarithm.","schema":{"type":["number","null"]}},"summary":"Logarithm to a base"},{"categories":["math","math > statistics","reducer"],"description":"Computes the largest value of an array of numbers, which is equal to the first element of a sorted (i.e., ordered) version of the array.\n\nAn array without non-`null` elements resolves always with `null`.","examples":[{"arguments":{"data":[1,0,3,2]},"returns":3},{"arguments":{"data":[5,2.5,null,-0.7]},"returns":5},{"arguments":{"data":[1,0,3,null,2],"ignore_nodata":false},"returns":null},{"arguments":{"data":[]},"description":"The input array is empty: return `null`.","returns":null}],"id":"max","links":[{"href":"http://mathworld.wolfram.com/Maximum.html","rel":"about","title":"Maximum explained by Wolfram MathWorld"}],"parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"default":true,"description":"Indicates whether no-data values are ignored or not. Ignores them by default. Setting this flag to `false` considers no-data values so that `null` is returned if any value is such a value.","name":"ignore_nodata","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"The maximum value.","schema":{"type":["number","null"]}},"summary":"Maximum value"},{"categories":["comparison"],"description":"Compares whether `x` is strictly less than `y`.\n\n**Remarks:**\n\n* If any operand is `null`, the return value is `null`.\n* If any operand is not a `number`, the process returns `false`.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.","examples":[{"arguments":{"x":1,"y":null},"returns":null},{"arguments":{"x":0,"y":0},"returns":false},{"arguments":{"x":1,"y":2},"returns":true},{"arguments":{"x":-0.5,"y":-0.6},"returns":false},{"arguments":{"x":"2018-01-01T00:00:00Z","y":"2018-01-02T00:00:00Z"},"returns":false},{"arguments":{"x":0,"y":true},"returns":false},{"arguments":{"x":false,"y":true},"returns":false},{"arguments":{"x":null,"y":null},"returns":null}],"id":"lt","parameters":[{"description":"First operand.","name":"x","schema":{"type":["number","boolean","string","null"]}},{"description":"Second operand.","name":"y","schema":{"type":["number","boolean","string","null"]}}],"returns":{"description":"`true` if `x` is strictly less than `y`, `null` if any operand is `null`, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Less than comparison"},{"categories":["cubes","import"],"description":"Loads a collection from the current back-end by its id and returns it as a processable data cube. The data that is added to the data cube can be restricted with the parameters `spatial_extent`, `temporal_extent`, `bands` and `properties`. If no data is available for the given extents, a `NoDataAvailable` exception is thrown.\n\n**Remarks:**\n\n* The bands (and all dimensions that specify nominal dimension labels) are expected to be ordered as specified in the metadata if the `bands` parameter is set to `null`.\n* If no additional parameter is specified this would imply that the whole data set is expected to be loaded. Due to the large size of many data sets, this is not recommended and may be optimized by back-ends to only load the data that is actually required after evaluating subsequent processes such as filters. This means that the values in the data cube should be processed only after the data has been limited to the required extent and as a consequence also to a manageable size.","examples":[{"arguments":{"id":"Sentinel-2","properties":{"eo:cloud_cover":{"process_graph":{"cc":{"arguments":{"max":50,"min":0,"x":{"from_parameter":"value"}},"process_id":"between","result":true}}},"platform":{"process_graph":{"pf":{"arguments":{"case_sensitive":false,"x":{"from_parameter":"value"},"y":"Sentinel-2B"},"process_id":"eq","result":true}}}},"spatial_extent":{"east":16.6,"north":48.6,"south":47.2,"west":16.1},"temporal_extent":["2018-01-01","2019-01-01"]},"description":"Loading `Sentinel-2B` data from a `Sentinel-2` collection for 2018, but only with cloud cover between 0 and 50%."}],"exceptions":{"NoDataAvailable":{"message":"There is no data available for the given extents."},"TemporalExtentEmpty":{"message":"The temporal extent is empty. The second instant in time must always be greater/later than the first instant in time."}},"id":"load_collection","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html","rel":"about","title":"Data Cubes explained in the openEO documentation"},{"href":"https://proj.org/usage/projections.html","rel":"about","title":"PROJ parameters for cartographic projections"},{"href":"http://www.epsg-registry.org","rel":"about","title":"Official EPSG code registry"},{"href":"http://www.epsg.io","rel":"about","title":"Unofficial EPSG code database"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"},{"href":"https://github.com/radiantearth/stac-spec/tree/master/extensions/eo#common-band-names","rel":"about","title":"List of common band names as specified by the STAC specification"},{"href":"https://www.rfc-editor.org/rfc/rfc3339.html","rel":"about","title":"RFC3339: Details about formatting temporal strings"}],"parameters":[{"description":"The collection id.","name":"id","schema":{"pattern":"^[\\w\\-\\.~/]+$","subtype":"collection-id","type":"string"}},{"description":"Limits the data to load from the collection to the specified bounding box or polygons.\n\n* For raster data, the process loads the pixel into the data cube if the point at the pixel center intersects with the bounding box or any of the polygons (as defined in the Simple Features standard by the OGC).\n* For vector data, the process loads the geometry into the data cube if the geometry is fully *within* the bounding box or any of the polygons (as defined in the Simple Features standard by the OGC). Empty geometries may only be in the data cube if no spatial extent has been provided.\n\nThe GeoJSON can be one of the following feature types:\n\n* A `Polygon` or `MultiPolygon` geometry,\n* a `Feature` with a `Polygon` or `MultiPolygon` geometry, or\n* a `FeatureCollection` containing at least one `Feature` with `Polygon` or `MultiPolygon` geometries.\n* Empty geometries are ignored.\n\nSet this parameter to `null` to set no limit for the spatial extent. Be careful with this when loading large datasets! It is recommended to use this parameter instead of using ``filter_bbox()`` or ``filter_spatial()`` directly after loading unbounded data.","name":"spatial_extent","schema":[{"properties":{"base":{"default":null,"description":"Base (optional, lower left corner, coordinate axis 3).","type":["number","null"]},"crs":{"anyOf":[{"examples":[3857],"minimum":1000,"subtype":"epsg-code","title":"EPSG Code","type":"integer"},{"subtype":"wkt2-definition","title":"WKT2","type":"string"}],"default":4326,"description":"Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system."},"east":{"description":"East (upper right corner, coordinate axis 1).","type":"number"},"height":{"default":null,"description":"Height (optional, upper right corner, coordinate axis 3).","type":["number","null"]},"north":{"description":"North (upper right corner, coordinate axis 2).","type":"number"},"south":{"description":"South (lower left corner, coordinate axis 2).","type":"number"},"west":{"description":"West (lower left corner, coordinate axis 1).","type":"number"}},"required":["west","south","east","north"],"subtype":"bounding-box","title":"Bounding Box","type":"object"},{"deprecated":true,"description":"Deprecated in favor of ``load_geojson()``. Limits the data cube to the bounding box of the given geometries. For raster data, all pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`).\n\nThe GeoJSON type `GeometryCollection` is not supported. Empty geometries are ignored.","subtype":"geojson","title":"GeoJSON","type":"object"},{"description":"Limits the data cube to the bounding box of the given geometries in the vector data cube. For raster data, all pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`). Empty geometries are ignored.","dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector data cube","type":"object"},{"description":"Don't filter spatially. All data is included in the data cube.","title":"No filter","type":"null"}]},{"description":"Limits the data to load from the collection to the specified left-closed temporal interval. Applies to all temporal dimensions. The interval has to be specified as an array with exactly two elements:\n\n1. The first element is the start of the temporal interval. The specified time instant is **included** in the interval.\n2. The second element is the end of the temporal interval. The specified time instant is **excluded** from the interval.\n\nThe second element must always be greater/later than the first element. Otherwise, a `TemporalExtentEmpty` exception is thrown.\n\nAlso supports unbounded intervals by setting one of the boundaries to `null`, but never both.\n\nSet this parameter to `null` to set no limit for the temporal extent. Be careful with this when loading large datasets! It is recommended to use this parameter instead of using ``filter_temporal()`` directly after loading unbounded data.","name":"temporal_extent","schema":[{"examples":[["2015-01-01T00:00:00Z","2016-01-01T00:00:00Z"],["2015-01-01","2016-01-01"]],"items":{"anyOf":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"type":"null"}]},"maxItems":2,"minItems":2,"subtype":"temporal-interval","type":"array","uniqueItems":true},{"description":"Don't filter temporally. All data is included in the data cube.","title":"No filter","type":"null"}]},{"default":null,"description":"Only adds the specified bands into the data cube so that bands that don't match the list of band names are not available. Applies to all dimensions of type `bands`.\n\nEither the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands) can be specified. If the unique band name and the common name conflict, the unique band name has a higher priority.\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order.\n\nIt is recommended to use this parameter instead of using ``filter_bands()`` directly after loading unbounded data.","name":"bands","optional":true,"schema":[{"items":{"subtype":"band-name","type":"string"},"minItems":1,"type":"array"},{"description":"Don't filter bands. All bands are included in the data cube.","title":"No filter","type":"null"}]},{"default":null,"description":"Limits the data by metadata properties to include only data in the data cube which all given conditions return `true` for (AND operation).\n\nSpecify key-value-pairs with the key being the name of the metadata property, which can be retrieved with the openEO Data Discovery for Collections. The value must be a condition (user-defined process) to be evaluated against the collection metadata, see the example.","name":"properties","optional":true,"schema":[{"additionalProperties":{"parameters":[{"description":"The property value to be checked against.","name":"value","schema":{"description":"Any data type."}}],"returns":{"description":"`true` if the data should be loaded into the data cube, otherwise `false`.","schema":{"type":"boolean"}},"subtype":"process-graph","type":"object"},"description":"A list of filters to check against. Specify key-value-pairs with the key being the name of the metadata property name and the value being a process evaluated against the metadata values.","subtype":"metadata-filter","title":"Filters","type":"object"},{"description":"Don't filter by metadata properties.","title":"No filter","type":"null"}]}],"returns":{"description":"A data cube for further processing. The dimensions and dimension properties (name, type, labels, reference system and resolution) correspond to the collection's metadata, but the dimension labels are restricted as specified in the parameters.","schema":{"subtype":"datacube","type":"object"}},"summary":"Load a collection"},{"categories":["import"],"description":"Queries a STAC to construct a FeatureCollection of STAC Items with the results","examples":[{"arguments":{"spatial_extent":{"east":16.6,"north":48.6,"south":47.2,"west":16.1},"temporal_extent":["2018-01-01","2019-01-01"],"url":"https://example.com/collections/SENTINEL2"},"title":"Load from a STAC API"}],"experimental":true,"id":"query_stac","links":[{"href":"https://proj.org/usage/projections.html","rel":"about","title":"PROJ parameters for cartographic projections"},{"href":"http://www.epsg-registry.org","rel":"about","title":"Official EPSG code registry"},{"href":"http://www.epsg.io","rel":"about","title":"Unofficial EPSG code database"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"},{"href":"https://www.rfc-editor.org/rfc/rfc3339.html","rel":"about","title":"RFC3339: Details about formatting temporal strings"}],"parameters":[{"description":"The URL to a static STAC Collection","name":"url","schema":{"format":"uri","pattern":"^https?://","subtype":"uri","title":"URL","type":"string"}},{"description":"Limits the data to load to the specified bounding box.","name":"spatial_extent","optional":false,"schema":[{"properties":{"base":{"default":null,"description":"Base (optional, lower left corner, coordinate axis 3).","type":["number","null"]},"crs":{"anyOf":[{"examples":[3857],"minimum":1000,"subtype":"epsg-code","title":"EPSG Code","type":"integer"},{"subtype":"wkt2-definition","title":"WKT2","type":"string"}],"default":4326,"description":"Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system."},"east":{"description":"East (upper right corner, coordinate axis 1).","type":"number"},"height":{"default":null,"description":"Height (optional, upper right corner, coordinate axis 3).","type":["number","null"]},"north":{"description":"North (upper right corner, coordinate axis 2).","type":"number"},"south":{"description":"South (lower left corner, coordinate axis 2).","type":"number"},"west":{"description":"West (lower left corner, coordinate axis 1).","type":"number"}},"required":["west","south","east","north"],"subtype":"bounding-box","title":"Bounding Box","type":"object"}]},{"description":"Limits the data to load to the specified left-closed temporal interval. Applies to all temporal dimensions. The interval has to be specified as an array with exactly two elements:\n\n1. The first element is the start of the temporal interval. The specified instance in time is **included** in the interval.\n2. The second element is the end of the temporal interval. The specified instance in time is **excluded** from the interval.\n\nThe second element must always be greater/later than the first element. Otherwise, a `TemporalExtentEmpty` exception is thrown.\n\nAlso supports open intervals by setting one of the boundaries to `null`, but never both.","name":"temporal_extent","optional":false,"schema":[{"examples":[["2015-01-01T00:00:00Z","2016-01-01T00:00:00Z"],["2015-01-01","2016-01-01"]],"items":{"anyOf":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"type":"null"}]},"maxItems":2,"minItems":2,"subtype":"temporal-interval","type":"array","uniqueItems":true}]}],"returns":{"description":"A GeoJSON FeatureCollection ","schema":{"subtype":"geojson","type":"object"}},"summary":"Queries STAC"},{"categories":["cubes","export"],"description":"Makes the processed data available in the given file format to the corresponding medium that is relevant for the context this processes is applied in:\n\n* For **batch jobs** the data is stored on the back-end. STAC-compatible metadata is usually made available with the processed data.\n* For **synchronous processing** the data is sent to the client as a direct response to the request.\n* **Secondary web services** are provided with the processed data so that it can make use of it (e.g., visualize it). Web service may require the data in a certain format. Please refer to the documentation of the individual service types for details.","exceptions":{"DataCubeEmpty":{"message":"The file format doesn't support storing empty data cubes."},"FormatUnsuitable":{"message":"Data can't be transformed into the requested output format."}},"id":"save_result","links":[{"href":"https://gdal.org/drivers/raster/index.html","rel":"about","title":"GDAL Raster Formats"},{"href":"https://gdal.org/drivers/vector/index.html","rel":"about","title":"OGR Vector Formats"}],"parameters":[{"description":"The data to deliver in the given file format.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"The file format to use. It must be one of the values that the server reports as supported output file formats, which usually correspond to the short GDAL/OGR codes. This parameter is *case insensitive*.\n\n* If the data cube is empty and the file format can't store empty data cubes, a `DataCubeEmpty` exception is thrown.\n* If the file format is otherwise not suitable for storing the underlying data structure, a `FormatUnsuitable` exception is thrown.","name":"format","schema":{"subtype":"output-format","type":"string"}},{"default":{},"description":"The file format parameters to be used to create the file(s). Must correspond to the parameters that the server reports as supported parameters for the chosen `format`. The parameter names and valid values usually correspond to the GDAL/OGR format options.","name":"options","optional":true,"schema":{"subtype":"output-format-options","type":"object"}}],"returns":{"description":"Always returns `true` as in case of an error an exception is thrown which aborts the execution of the process.","schema":{"const":true,"type":"boolean"}},"summary":"Save processed data"},{"categories":["machine learning","import"],"description":"Saves a machine learning model as part of a batch job.\n\nThe model will be accompanied by a separate STAC Item that implements the [ml-model extension](https://github.com/stac-extensions/ml-model).","experimental":true,"id":"save_ml_model","links":[{"href":"https://github.com/stac-extensions/ml-model","rel":"about","title":"STAC ml-model extension","type":"text/html"}],"parameters":[{"description":"The data to store as a machine learning model.","name":"data","schema":{"subtype":"ml-model","type":"object"}},{"default":{},"description":"Additional parameters to create the file(s).","name":"options","optional":true,"schema":{"additionalParameters":false,"type":"object"}}],"returns":{"description":"Returns `false` if the process failed to store the model, `true` otherwise.","schema":{"type":"boolean"}},"summary":"Save a ML model"},{"categories":["machine learning","import"],"description":"Loads a machine learning model from a STAC Item.\n\nSuch a model could be trained and saved as part of a previous batch job with processes such as ``fit_random_forest()`` and ``save_ml_model()``.","experimental":true,"id":"load_ml_model","links":[{"href":"https://github.com/stac-extensions/ml-model","rel":"about","title":"STAC ml-model extension","type":"text/html"}],"parameters":[{"description":"The STAC Item to load the machine learning model from. The STAC Item must implement the `ml-model` extension.","name":"id","schema":[{"format":"uri","pattern":"^https?://","subtype":"uri","title":"URL","type":"string"},{"description":"Loading a model by batch job ID is possible only if a single model has been saved by the job. Otherwise, you have to load a specific model from a batch job by URL.","pattern":"^[\\w\\-\\.~]+$","subtype":"job-id","title":"Batch Job ID","type":"string"},{"pattern":"^[^\r\n\\:'\"]+$","subtype":"file-path","title":"User-uploaded Files","type":"string"}]}],"returns":{"description":"A machine learning model to be used with machine learning processes such as ``predict_random_forest()``.","schema":{"subtype":"ml-model","type":"object"}},"summary":"Load a ML model"},{"categories":["cubes","import"],"description":"Loads one or more user-uploaded files from the server-side workspace of the authenticated user and returns them as a single data cube. The files must have been stored by the authenticated user on the back-end currently connected to.","exceptions":{"FormatUnsuitable":{"message":"Data can't be loaded with the requested input format."}},"experimental":true,"id":"load_uploaded_files","parameters":[{"description":"The files to read. Folders can't be specified, specify all files instead. An exception is thrown if a file can't be read.","name":"paths","schema":{"items":{"pattern":"^[^\r\n\\:'\"]+$","subtype":"file-path","type":"string"},"subtype":"file-paths","type":"array"}},{"description":"The file format to read from. It must be one of the values that the server reports as supported input file formats, which usually correspond to the short GDAL/OGR codes. If the format is not suitable for loading the data, a `FormatUnsuitable` exception will be thrown. This parameter is *case insensitive*.","name":"format","schema":{"subtype":"input-format","type":"string"}},{"default":{},"description":"The file format parameters to be used to read the files. Must correspond to the parameters that the server reports as supported parameters for the chosen `format`. The parameter names and valid values usually correspond to the GDAL/OGR format options.","name":"options","optional":true,"schema":{"subtype":"input-format-options","type":"object"}}],"returns":{"description":"A data cube for further processing.","schema":{"subtype":"datacube","type":"object"}},"summary":"Load files from the user workspace"},{"categories":["import","vector"],"description":"Converts GeoJSON data as defined by [RFC 7946](https://www.rfc-editor.org/rfc/rfc7946.html) into a vector data cube. Feature properties are preserved.","experimental":true,"id":"load_geojson","links":[{"href":"https://www.rfc-editor.org/rfc/rfc7946.html","rel":"about","title":"RFC 7946: The GeoJSON Format","type":"text/html"}],"parameters":[{"description":"A GeoJSON object to convert into a vector data cube. The GeoJSON type `GeometryCollection` is not supported. Each geometry in the GeoJSON data results in a dimension label in the `geometries` dimension.","name":"data","schema":{"subtype":"geojson","type":"object"}},{"default":[],"description":"A list of properties from the GeoJSON file to construct an additional dimension from. A new dimension with the name `properties` and type `other` is created if at least one property is provided. Only applies for GeoJSON Features and FeatureCollections. Missing values are generally set to no-data (`null`).\n\nDepending on the number of properties provided, the process creates the dimension differently:\n\n- Single property with scalar values: A single dimension label with the name of the property and a single value per geometry.\n- Single property of type array: The dimension labels correspond to the array indices. There are as many values and labels per geometry as there are for the largest array.\n- Multiple properties with scalar values: The dimension labels correspond to the property names. There are as many values and labels per geometry as there are properties provided here.","name":"properties","optional":true,"schema":{"items":{"type":"string"},"type":"array","uniqueItems":true}}],"returns":{"description":"A vector data cube containing the geometries, either one or two dimensional.","schema":{"dimensions":[{"type":"geometry"}],"subtype":"datacube","type":"object"}},"summary":"Converts GeoJSON into a vector data cube"},{"categories":["cubes","import"],"description":"Loads a file from a URL (supported protocols: HTTP and HTTPS).","exceptions":{"FormatUnsuitable":{"message":"Data can't be loaded with the requested input format."}},"experimental":true,"id":"load_url","parameters":[{"description":"The URL to read from. Authentication details such as API keys or tokens may need to be included in the URL.","name":"url","schema":{"format":"uri","pattern":"^https?://","subtype":"uri","title":"URL","type":"string"}},{"description":"The file format to use when loading the data. It must be one of the values that the server reports as supported input file formats, which usually correspond to the short GDAL/OGR codes. If the format is not suitable for loading the data, a `FormatUnsuitable` exception will be thrown. This parameter is *case insensitive*.","name":"format","schema":{"subtype":"input-format","type":"string"}},{"default":{},"description":"The file format parameters to use when reading the data. Must correspond to the parameters that the server reports as supported parameters for the chosen `format`. The parameter names and valid values usually correspond to the GDAL/OGR format options.","name":"options","optional":true,"schema":{"subtype":"input-format-options","type":"object"}}],"returns":{"description":"A data cube for further processing.","schema":{"subtype":"datacube","type":"object"}},"summary":"Load data from a URL"},{"categories":["cubes","import"],"description":"Loads data from a static STAC catalog or a STAC API Collection and returns the data as a processable data cube. A batch job result can be loaded by providing a reference to it.\n\nIf supported by the underlying metadata and file format, the data that is added to the data cube can be restricted with the parameters `spatial_extent`, `temporal_extent` and `bands`. If no data is available for the given extents, a `NoDataAvailable` exception is thrown.\n\n**Remarks:**\n\n* The bands (and all dimensions that specify nominal dimension labels) are expected to be ordered as specified in the metadata if the `bands` parameter is set to `null`.\n* If no additional parameter is specified this would imply that the whole data set is expected to be loaded. Due to the large size of many data sets, this is not recommended and may be optimized by back-ends to only load the data that is actually required after evaluating subsequent processes such as filters. This means that the values should be processed only after the data has been limited to the required extent and as a consequence also to a manageable size.","examples":[{"arguments":{"url":"https://example.com/api/v1.0/jobs/123/results"},"title":"Load from a static STAC / batch job result"},{"arguments":{"properties":{"eo:cloud_cover":{"process_graph":{"cc":{"arguments":{"max":50,"min":0,"x":{"from_parameter":"value"}},"process_id":"between","result":true}}},"platform":{"process_graph":{"pf":{"arguments":{"case_sensitive":false,"x":{"from_parameter":"value"},"y":"Sentinel-2B"},"process_id":"eq","result":true}}}},"spatial_extent":{"east":16.6,"north":48.6,"south":47.2,"west":16.1},"temporal_extent":["2018-01-01","2019-01-01"],"url":"https://example.com/collections/SENTINEL2"},"title":"Load from a STAC API"}],"exceptions":{"NoDataAvailable":{"message":"There is no data available for the given extents."},"TemporalExtentEmpty":{"message":"The temporal extent is empty. The second instant in time must always be greater/later than the first instant in time."}},"experimental":true,"id":"load_stac","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html","rel":"about","title":"Data Cubes explained in the openEO documentation"},{"href":"https://proj.org/usage/projections.html","rel":"about","title":"PROJ parameters for cartographic projections"},{"href":"http://www.epsg-registry.org","rel":"about","title":"Official EPSG code registry"},{"href":"http://www.epsg.io","rel":"about","title":"Unofficial EPSG code database"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"},{"href":"https://github.com/radiantearth/stac-spec/tree/master/extensions/eo#common-band-names","rel":"about","title":"List of common band names as specified by the STAC specification"},{"href":"https://www.rfc-editor.org/rfc/rfc3339.html","rel":"about","title":"RFC3339: Details about formatting temporal strings"}],"parameters":[{"description":"The URL to a static STAC catalog (STAC Item, STAC Collection, or STAC Catalog) or a specific STAC API Collection that allows to filter items and to download assets. This includes batch job results, which itself are compliant to STAC. For external URLs, authentication details such as API keys or tokens may need to be included in the URL.\n\nBatch job results can be specified in two ways:\n\n- For Batch job results at the same back-end, a URL pointing to the corresponding batch job results endpoint should be provided. The URL usually ends with `/jobs/{id}/results` and `{id}` is the corresponding batch job ID.\n- For external results, a signed URL must be provided. Not all back-ends support signed URLs, which are provided as a link with the link relation `canonical` in the batch job result metadata.","name":"url","schema":{"format":"uri","pattern":"^https?://","subtype":"uri","title":"URL","type":"string"}},{"default":null,"description":"Limits the data to load to the specified bounding box or polygons.\n\n* For raster data, the process loads the pixel into the data cube if the point at the pixel center intersects with the bounding box or any of the polygons (as defined in the Simple Features standard by the OGC).\n* For vector data, the process loads the geometry into the data cube if the geometry is fully within the bounding box or any of the polygons (as defined in the Simple Features standard by the OGC). Empty geometries may only be in the data cube if no spatial extent has been provided.\n\nThe GeoJSON can be one of the following feature types:\n\n* A `Polygon` or `MultiPolygon` geometry,\n* a `Feature` with a `Polygon` or `MultiPolygon` geometry, or\n* a `FeatureCollection` containing at least one `Feature` with `Polygon` or `MultiPolygon` geometries.\n\nSet this parameter to `null` to set no limit for the spatial extent. Be careful with this when loading large datasets! It is recommended to use this parameter instead of using ``filter_bbox()`` or ``filter_spatial()`` directly after loading unbounded data.","name":"spatial_extent","optional":true,"schema":[{"properties":{"base":{"default":null,"description":"Base (optional, lower left corner, coordinate axis 3).","type":["number","null"]},"crs":{"anyOf":[{"examples":[3857],"minimum":1000,"subtype":"epsg-code","title":"EPSG Code","type":"integer"},{"subtype":"wkt2-definition","title":"WKT2","type":"string"}],"default":4326,"description":"Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system."},"east":{"description":"East (upper right corner, coordinate axis 1).","type":"number"},"height":{"default":null,"description":"Height (optional, upper right corner, coordinate axis 3).","type":["number","null"]},"north":{"description":"North (upper right corner, coordinate axis 2).","type":"number"},"south":{"description":"South (lower left corner, coordinate axis 2).","type":"number"},"west":{"description":"West (lower left corner, coordinate axis 1).","type":"number"}},"required":["west","south","east","north"],"subtype":"bounding-box","title":"Bounding Box","type":"object"},{"description":"Limits the data cube to the bounding box of the given geometries. For raster data, all pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`).\n\nThe GeoJSON type `GeometryCollection` is not supported. Empty geometries are ignored.","subtype":"geojson","title":"GeoJSON","type":"object"},{"description":"Limits the data cube to the bounding box of the given geometries in the vector data cube. All pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`). Empty geometries are ignored.","dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector data cube","type":"object"},{"description":"Don't filter spatially. All data is included in the data cube.","title":"No filter","type":"null"}]},{"default":null,"description":"Limits the data to load to the specified left-closed temporal interval. Applies to all temporal dimensions. The interval has to be specified as an array with exactly two elements:\n\n1. The first element is the start of the temporal interval. The specified instance in time is **included** in the interval.\n2. The second element is the end of the temporal interval. The specified instance in time is **excluded** from the interval.\n\nThe second element must always be greater/later than the first element. Otherwise, a `TemporalExtentEmpty` exception is thrown.\n\nAlso supports open intervals by setting one of the boundaries to `null`, but never both.\n\nSet this parameter to `null` to set no limit for the temporal extent. Be careful with this when loading large datasets! It is recommended to use this parameter instead of using ``filter_temporal()`` directly after loading unbounded data.","name":"temporal_extent","optional":true,"schema":[{"examples":[["2015-01-01T00:00:00Z","2016-01-01T00:00:00Z"],["2015-01-01","2016-01-01"]],"items":{"anyOf":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"type":"null"}]},"maxItems":2,"minItems":2,"subtype":"temporal-interval","type":"array","uniqueItems":true},{"description":"Don't filter temporally. All data is included in the data cube.","title":"No filter","type":"null"}]},{"default":null,"description":"Only adds the specified bands into the data cube so that bands that don't match the list of band names are not available. Applies to all dimensions of type `bands`.\n\nEither the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands) can be specified. If the unique band name and the common name conflict, the unique band name has a higher priority.\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order.\n\nIt is recommended to use this parameter instead of using ``filter_bands()`` directly after loading unbounded data.","name":"bands","optional":true,"schema":[{"items":{"subtype":"band-name","type":"string"},"minItems":1,"type":"array"},{"description":"Don't filter bands. All bands are included in the data cube.","title":"No filter","type":"null"}]},{"default":null,"description":"Limits the data by metadata properties to include only data in the data cube which all given conditions return `true` for (AND operation).\n\nSpecify key-value-pairs with the key being the name of the metadata property, which can be retrieved with the openEO Data Discovery for Collections. The value must be a condition (user-defined process) to be evaluated against a STAC API. This parameter is not supported for static STAC.","name":"properties","optional":true,"schema":[{"additionalProperties":{"parameters":[{"description":"The property value to be checked against.","name":"value","schema":{"description":"Any data type."}}],"returns":{"description":"`true` if the data should be loaded into the data cube, otherwise `false`.","schema":{"type":"boolean"}},"subtype":"process-graph","type":"object"},"description":"A list of filters to check against. Specify key-value-pairs with the key being the name of the metadata property name and the value being a process evaluated against the metadata values.","subtype":"metadata-filter","title":"Filters","type":"object"},{"description":"Don't filter by metadata properties.","title":"No filter","type":"null"}]}],"returns":{"description":"A data cube for further processing.","schema":{"subtype":"datacube","type":"object"}},"summary":"Loads data from STAC"},{"categories":["export","stac"],"description":"Exports the given processing results made available through a STAC resource (e.g., a STAC Collection) to the given user workspace. The STAC resource itself is exported with all STAC resources and assets underneath.","experimental":true,"id":"export_workspace","parameters":[{"description":"The data to export to the user workspace as a STAC resource.","name":"data","schema":{"subtype":"stac","type":"object"}},{"description":"The identifier of the workspace to export to.","name":"workspace","schema":{"pattern":"^[\\w\\-\\.~]+$","subtype":"workspace-id","type":"string"}},{"default":null,"description":"Provides a cloud-specific path identifier to a STAC resource to merge the given STAC resource into. If not provided, the STAC resource is kept separate from any other STAC resources in the workspace.","name":"merge","optional":true,"schema":{"type":["string","null"]}}],"returns":{"description":"Returns the potentially updated STAC resource.","schema":{"subtype":"stac","type":"object"}},"summary":"Export data to a cloud user workspace"},{"categories":["cubes"],"description":"Applies a process to each value in the data cube (i.e. a local operation). In contrast, the process ``apply_dimension()`` applies a process to all values along a particular dimension.","id":"apply","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#apply","rel":"about","title":"Apply explained in the openEO documentation"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"A process that accepts and returns a single value and is applied on each individual value in the data cube. The process may consist of multiple sub-processes and could, for example, consist of processes such as ``absolute()`` or ``linear_scale_range()``.","name":"process","schema":{"parameters":[{"description":"The value to process.","name":"x","schema":{"description":"Any data type."}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"Additional data to be passed to the process.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A data cube with the newly computed values and the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"subtype":"datacube","type":"object"}},"summary":"Apply a process to each value"},{"categories":["cubes"],"description":"Applies a process to all values along a dimension of a data cube. For example, if the temporal dimension is specified the process will work on the values of a time series.\n\nThe process ``reduce_dimension()`` also applies a process to values along a dimension, but drops the dimension afterwards. The process ``apply()`` applies a process to each value in the data cube.\n\nThe target dimension is the source dimension if not specified otherwise in the `target_dimension` parameter. The values in the target dimension get replaced by the computed values. The name, type and reference system are preserved.\n\nThe dimension labels are preserved when the target dimension is the source dimension and the number of values in the source dimension is equal to the number of values computed by the process. Otherwise, the dimension labels will be incrementing integers starting from zero, which can be changed using ``rename_labels()`` afterwards. The number of labels will be equal to the number of values computed by the process.","exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"apply_dimension","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#apply","rel":"about","title":"Apply explained in the openEO documentation"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"Process to be applied on all values along the given dimension. The specified process needs to accept an array and must return an array with at least one element. A process may consist of multiple sub-processes.","name":"process","schema":{"parameters":[{"description":"A labeled array with elements of any type.","name":"data","schema":{"items":{"description":"Any data type."},"subtype":"labeled-array","type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"items":{"description":"Any data type."},"type":"array"}},"subtype":"process-graph","type":"object"}},{"description":"The name of the source dimension to apply the process on. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","schema":{"type":"string"}},{"default":null,"description":"The name of the target dimension or `null` (the default) to use the source dimension specified in the parameter `dimension`.\n\nBy specifying a target dimension, the source dimension is removed. The target dimension with the specified name and the type `other` (see ``add_dimension()``) is created, if it doesn't exist yet.","name":"target_dimension","optional":true,"schema":{"type":["string","null"]}},{"default":null,"description":"Additional data to be passed to the process.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A data cube with the newly computed values.\n\nAll dimensions stay the same, except for the dimensions specified in corresponding parameters. There are three cases how the dimensions can change:\n\n1. The source dimension is the target dimension:\n   - The (number of) dimensions remain unchanged as the source dimension is the target dimension.\n   - The source dimension properties name and type remain unchanged.\n   - The dimension labels, the reference system and the resolution are preserved only if the number of values in the source dimension is equal to the number of values computed by the process. Otherwise, all other dimension properties change as defined in the list below.\n2. The source dimension is not the target dimension. The target dimension exists with a single label only:\n   - The number of dimensions decreases by one as the source dimension is 'dropped' and the target dimension is filled with the processed data that originates from the source dimension.\n   - The target dimension properties name and type remain unchanged. All other dimension properties change as defined in the list below.\n3. The source dimension is not the target dimension and the latter does not exist:\n   - The number of dimensions remain unchanged, but the source dimension is replaced with the target dimension.\n   - The target dimension has the specified name and the type other. All other dimension properties are set as defined in the list below.\n\nUnless otherwise stated above, for the given (target) dimension the following applies:\n\n- the number of dimension labels is equal to the number of values computed by the process,\n- the dimension labels are incrementing integers starting from zero,\n- the resolution changes, and\n- the reference system is undefined.","schema":{"subtype":"datacube","type":"object"}},"summary":"Apply a process to all values along a dimension"},{"categories":["cubes"],"description":"Applies a focal process to a data cube.\n\nA focal process is a process that works on a 'neighborhood' of pixels. The neighborhood can extend into multiple dimensions, this extent is specified by the `size` argument. It is not only (part of) the size of the input window, but also the size of the output for a given position of the sliding window. The sliding window moves with multiples of `size`.\n\nAn overlap can be specified so that neighborhoods can have overlapping boundaries. This allows for continuity of the output. The overlap region must be included in the data cube or array returned by `process`, but any changed values will be ignored. The missing overlap at the borders of the original data cube is made available as no-data (`null`) in the sub-data cubes.\n\nThe neighborhood size should be kept small enough, to avoid running beyond computational resources, but a too-small size will result in a larger number of process invocations, which may slow down processing. Window sizes for spatial dimensions typically range from 64 to 512 pixels, while overlaps of 8 to 32 pixels are common.\n\nFor the special case of 2D convolution, it is recommended to use ``apply_kernel()``.","examples":[{"arguments":{"data":{"from_parameter":"data"},"overlap":[{"dimension":"x","unit":"px","value":16},{"dimension":"y","unit":"px","value":16},{"dimension":"t","value":"P3D"}],"process":{"process_graph":{"udf":{"arguments":{"data":{"from_parameter":"data"},"runtime":"Python","udf":"ml.py"},"process_id":"run_udf","result":true}}},"size":[{"dimension":"x","unit":"px","value":128},{"dimension":"y","unit":"px","value":128},{"dimension":"t","value":"P5D"}]}}],"exceptions":{"DataCubePropertiesImmutable":{"message":"The dimension properties (name, type, labels, reference system and resolution) must remain unchanged."},"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"apply_neighborhood","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#apply","rel":"about","title":"Apply explained in the openEO documentation"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"Process to be applied on all neighborhoods.","name":"process","schema":{"parameters":[{"description":"The input data, which is a subset of the data cube as specified in `size` and `overlap`. If the given size and overlap result in a one-dimensional data cube it is converted to a labeled array.","name":"data","schema":[{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","title":"Multi-dimensional data","type":"object"},{"subtype":"labeled-array","title":"One-dimensional data","type":"array"}]},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"An array or data cube with the newly computed values. The data type and dimensionality must correspond to the input data.\n\n* Data cubes must have the same dimensions and the dimension properties (name, type, labels, reference system and resolution) must remain unchanged. Otherwise, a `DataCubePropertiesImmutable` exception will be thrown.\n* Arrays can be returned with or without labels.","schema":[{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","title":"Multi-dimensional data","type":"object"},{"title":"One-dimensional data","type":"array"}]},"subtype":"process-graph","type":"object"}},{"description":"Neighborhood sizes along each dimension.\n\nThis object maps dimension names to either a physical measure (e.g. 100 m, 10 days) or pixels (e.g. 32 pixels). For dimensions not specified, the default is to provide all values. Be aware that including all values from overly large dimensions may not be processed at once.","name":"size","schema":{"items":{"properties":{"dimension":{"type":"string"},"unit":{"anyOf":[{"title":"Default unit","type":"null"},{"enum":["px","m"],"title":"Specific unit","type":"string"}],"default":null,"description":"The unit the values are given in, either in meters (`m`) or pixels (`px`). If no unit or `null` is given, uses the unit specified for the dimension or otherwise the default unit of the reference system."},"value":{"anyOf":[{"title":"All values","type":"null"},{"description":"See the `unit` parameter for more information.","minimum":0,"type":"number"},{"description":"[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations), e.g. `P1D` for one day.","pattern":"^(-?)P(?=\\d|T\\d)(?:(\\d+)Y)?(?:(\\d+)M)?(?:(\\d+)([DW]))?(?:T(?:(\\d+)H)?(?:(\\d+)M)?(?:(\\d+(?:\\.\\d+)?)S)?)?$","subtype":"duration","type":"string"}],"default":null}},"required":["dimension","value"],"subtype":"chunk-size","type":"object"},"type":"array"}},{"default":null,"description":"Overlap of neighborhoods along each dimension to avoid border effects. By default no overlap is provided.\n\nFor instance a temporal dimension can add 1 month before and after a neighborhood. In the spatial dimensions, this is often a number of pixels. The overlap specified is added before and after, so an overlap of 8 pixels will add 8 pixels on both sides of the window, so 16 in total.\n\nBe aware that large overlaps increase the need for computational resources and modifying overlapping data in subsequent operations have no effect.","name":"overlap","optional":true,"schema":[{"title":"Without overlap","type":"null"},{"items":{"properties":{"dimension":{"type":"string"},"unit":{"anyOf":[{"title":"Default unit","type":"null"},{"enum":["px","m"],"title":"Specific unit","type":"string"}],"default":null,"description":"The unit the values are given in, either in meters (`m`) or pixels (`px`). If no unit or `null` is given, uses the unit specified for the dimension or otherwise the default unit of the reference system."},"value":{"anyOf":[{"title":"No values","type":"null"},{"description":"See the `unit` parameter for more information.","minimum":0,"type":"number"},{"description":"[ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations), e.g. `P1D` for one day.","pattern":"^(-?)P(?=\\d|T\\d)(?:(\\d+)Y)?(?:(\\d+)M)?(?:(\\d+)([DW]))?(?:T(?:(\\d+)H)?(?:(\\d+)M)?(?:(\\d+(?:\\.\\d+)?)S)?)?$","subtype":"duration","type":"string"}],"default":null}},"required":["dimension","value"],"subtype":"chunk-size","type":"object"},"title":"With overlap","type":"array"}]},{"default":null,"description":"Additional data to be passed to the process.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A raster data cube with the newly computed values and the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Apply a process to pixels in a n-dimensional neighborhood"},{"categories":["cubes"],"description":"Applies a process to segments of the data cube that are defined by the given polygons. For each polygon provided, all pixels for which the point at the pixel center intersects with the polygon (as defined in the Simple Features standard by the OGC) are collected into sub data cubes. If a pixel is part of multiple of the provided polygons (e.g., when the polygons overlap), the `GeometriesOverlap` exception is thrown. Each sub data cube is passed individually to the given process.","exceptions":{"GeometriesOverlap":{"message":"Geometries are not allowed to overlap to avoid that pixel values are processed multiple times."}},"experimental":true,"id":"apply_polygon","links":[{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"subtype":"raster-cube","type":"object"}},{"description":"A vector data cube containing at least one polygon. The provided vector data can be one of the following:\n\n* A `Polygon` or `MultiPolygon` geometry,\n* a `Feature` with a `Polygon` or `MultiPolygon` geometry, or\n* a `FeatureCollection` containing at least one `Feature` with `Polygon` or `MultiPolygon` geometries.\n* Empty geometries are ignored.","name":"polygons","schema":{"dimensions":[{"geometry_type":["Polygon","MultiPolygon"],"type":"geometry"}],"subtype":"datacube","type":"object"}},{"description":"A process that accepts and returns a single data cube and is applied on each individual sub data cube. The process may consist of multiple sub-processes.","name":"process","schema":{"parameters":[{"description":"A sub data cube of the original data cube. The sub data cubes provided cover the smallest possible grid-aligned extent of the corresponding polygon and all pixels outside of the polygon are replaced with the value given in `mask_value`.","name":"data","schema":{"subtype":"raster-cube","type":"object"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The updated sub data cube with the newly computed values and the same dimensions. The dimension properties (name, type, reference system and resolution) must remain unchanged. The labels can change, but the number of labels must remain unchanged.","schema":{"description":"A data cube.","schema":{"subtype":"raster-cube","type":"object"}}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"All pixels for which the point at the pixel center **does not** intersect with the polygon are replaced with the given value, which defaults to `null` (no data).\n\nIt can provide a distinction between no data values within the polygon and masked pixels outside of it.","name":"mask_value","optional":true,"schema":[{"type":"number"},{"type":"boolean"},{"type":"string"},{"type":"null"}]},{"default":null,"description":"Additional data to be passed to the process.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A data cube with the newly computed values and the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Apply a process to segments of the data cube"},{"categories":["cubes","reducer"],"description":"Applies a reducer to a data cube dimension by collapsing all the values along the specified dimension into an output value computed by the reducer.\n\nThe dimension is dropped. To avoid this, use ``apply_dimension()`` instead.","exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"reduce_dimension","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#reduce","rel":"about","title":"Reducers explained in the openEO documentation"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"A reducer to apply on the specified dimension. A reducer is a single process such as ``mean()`` or a set of processes, which computes a single value for a list of values, see the category 'reducer' for such processes.","name":"reducer","schema":{"parameters":[{"description":"A labeled array with elements of any type.","name":"data","schema":{"items":{"description":"Any data type."},"subtype":"labeled-array","type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"description":"The name of the dimension over which to reduce. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","schema":{"type":"string"}},{"default":null,"description":"Additional data to be passed to the reducer.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A data cube with the newly computed values. It is missing the given dimension, the number of dimensions decreases by one. The dimension properties (name, type, labels, reference system and resolution) for all other dimensions remain unchanged.","schema":{"subtype":"datacube","type":"object"}},"summary":"Reduce dimensions"},{"categories":["cubes"],"description":"The process merges two 'compatible' data cubes.\n\nThe data cubes have to be compatible, which means that they must share a common subset of equal dimensions. To conveniently get to such a subset of equal dimensions, the process tries to align the horizontal spatial dimensions (axes `x` and `y`) implicitly with ``resample_cube_spatial()`` if required. `cube1` is the target data cube for resampling and the default parameters of ``resample_cube_spatial()`` apply. The equality for geometries follows the definition in the Simple Features standard by the OGC.\n\nAll dimensions share the same properties, such as name, type, reference system, and resolution. Dimensions can have disjoint or overlapping labels. If there is any overlap between the dimension labels, the parameter `overlap_resolver` must be specified to combine the two values for these overlapping labels. A merge operation without overlap should be reversible with (a set of) filter operations for each of the two cubes, if no implicit resampling was applied.\n\nIt is not possible to merge a vector and a raster data cube. Merging vector data cubes with different base geometry types (points, lines/line strings, polygons) is not possible and throws the `IncompatibleGeometryTypes` exception. The base geometry types can be merged with their corresponding multi geometry types.\n\nAfter the merge, the dimensions with a natural/inherent label order (with a reference system this is each spatial and temporal dimensions) still have all dimension labels sorted. For other dimensions without inherent order, including bands, the dimension labels keep the order in which they are present in the original data cubes, and the dimension labels of `cube2` get appended to the dimension labels of `cube1`.\n\n**Examples for merging two data cubes:**\n\n1. Data cubes with the dimensions (`x`, `y`, `t`, `bands`) have the same dimension labels in `x`, `y` and `t`, but the labels for the dimension `bands` are `B1` and `B2` for the base data cube and `B3` and `B4` for the other. An overlap resolver is *not needed*. The merged data cube has the dimensions `x`, `y`, `t`, `bands`, and the dimension `bands` has four dimension labels: `B1`, `B2`, `B3`, `B4`.\n2. Data cubes with the dimensions (`x`, `y`, `t`, `bands`) have the same dimension labels in `x`, `y` and `t`, but the labels for the dimension `bands` are `B1` and `B2` for the base data cube and `B2` and `B3` for the other. An overlap resolver is *required* to resolve overlap in band `B2`. The merged data cube has the dimensions `x`, `y`, `t` and `bands` and the dimension `bands` has three dimension labels: `B1`, `B2`, `B3`.\n3. Data cubes with the dimensions (`x`, `y`, `t`) have the same dimension labels in `x`, `y` and `t`. There are two options:\n   1. Keep the overlapping values separately in the merged data cube: An overlap resolver is *not needed*, but for each data cube you need to add a new dimension using ``add_dimension()``. The new dimensions must be equal, except that the labels for the new dimensions must differ. The merged data cube has the same dimensions and labels as the original data cubes, plus the dimension added with ``add_dimension()``, which has the two dimension labels after the merge.\n   2. Combine the overlapping values into a single value: An overlap resolver is *required* to resolve the overlap for all values. The merged data cube has the same dimensions and labels as the original data cubes, but all values have been processed by the overlap resolver.\n4. A data cube with dimensions (`x`, `y`, `t` / `bands`) or (`x`, `y`, `t`, `bands`) and another data cube with dimensions (`x`, `y`) have the same dimension labels in `x` and `y`. Merging them will join dimensions `x` and `y`, so the lower dimension cube is merged with each time step and band available in the higher dimensional cube. A use case for this is applying a digital elevation model to a spatio-temporal data cube. An overlap resolver is *required* to resolve the overlap for all pixels.","exceptions":{"IncompatibleGeometryTypes":{"message":"The geometry types are not compatible and can't be merged."},"OverlapResolverMissing":{"message":"Overlapping data cubes, but no overlap resolver has been specified."}},"id":"merge_cubes","links":[{"href":"https://en.wikipedia.org/wiki/Reduction_Operator","rel":"about","title":"Background information on reduction operators (binary reducers) by Wikipedia"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"The base data cube.","name":"cube1","schema":{"subtype":"datacube","type":"object"}},{"description":"The other data cube to be merged with the base data cube.","name":"cube2","schema":{"subtype":"datacube","type":"object"}},{"default":null,"description":"A reduction operator that resolves the conflict if the data overlaps. The reducer must return a value of the same data type as the input values are. The reduction operator may be a single process such as ``multiply()`` or consist of multiple sub-processes. `null` (the default) can be specified if no overlap resolver is required.","name":"overlap_resolver","optional":true,"schema":{"parameters":[{"description":"The overlapping value from the base data cube `cube1`.","name":"x","schema":{"description":"Any data type."}},{"description":"The overlapping value from the other data cube `cube2`.","name":"y","schema":{"description":"Any data type."}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the merged data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"Additional data to be passed to the overlap resolver.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The merged data cube. See the process description for details regarding the dimensions and dimension properties (name, type, labels, reference system and resolution).","schema":{"subtype":"datacube","type":"object"}},"summary":"Merge two data cubes"},{"categories":["cubes","masks"],"description":"Applies a mask to a raster data cube. To apply a polygon as a mask, use ``mask_polygon()``.\n\nA mask is a raster data cube for which corresponding pixels among `data` and `mask` are compared and those pixels in `data` are replaced whose pixels in `mask` are non-zero (for numbers) or `true` (for boolean values). The pixel values are replaced with the value specified for `replacement`, which defaults to `null` (no data).\n\nThe data cubes have to be compatible except that the horizontal spatial dimensions (axes `x` and `y`) will be aligned implicitly by ``resample_cube_spatial()``. `data` is the target data cube for resampling and the default parameters of ``resample_cube_spatial()`` apply. All other dimensions in the mask must also be available in the raster data cube with the same name, type, reference system, resolution and labels. Dimensions can be missing in the mask with the result that the mask is applied to each label of the dimension in `data` that is missing in the data cube of the mask. The process fails if there's an incompatibility found between the raster data cube and the mask.","id":"mask","parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"A mask as a raster data cube. Every pixel in `data` must have a corresponding element in `mask`.","name":"mask","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"default":null,"description":"The value used to replace masked values with.","name":"replacement","optional":true,"schema":{"type":["number","boolean","string","null"]}}],"returns":{"description":"A masked raster data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Apply a raster mask"},{"categories":["cubes","masks"],"description":"Applies a (multi) polygon mask to a raster data cube. To apply a raster mask use ``mask()``.\n\nAll pixels for which the point at the pixel center **does not** intersect with any polygon (as defined in the Simple Features standard by the OGC) are replaced. This behavior can be inverted by setting the parameter `inside` to `true`. The pixel values are replaced with the value specified for `replacement`, which defaults to `null` (no data). No data values in `data` will be left untouched by the masking operation.","id":"mask_polygon","links":[{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"A GeoJSON object or a vector data cube containing at least one polygon. The provided vector data can be one of the following:\n\n* A `Polygon` or `MultiPolygon` geometry,\n* a `Feature` with a `Polygon` or `MultiPolygon` geometry, or\n* a `FeatureCollection` containing at least one `Feature` with `Polygon` or `MultiPolygon` geometries.\n* Empty geometries are ignored.","name":"mask","schema":[{"dimensions":[{"geometry_type":["Polygon","MultiPolygon"],"type":"geometry"}],"subtype":"datacube","title":"Vector Data Cube","type":"object"},{"deprecated":true,"description":"Deprecated in favor of ``load_geojson()``. The GeoJSON type `GeometryCollection` is not supported.","subtype":"geojson","title":"GeoJSON","type":"object"}]},{"default":null,"description":"The value used to replace masked values with.","name":"replacement","optional":true,"schema":[{"type":"number"},{"type":"boolean"},{"type":"string"},{"type":"null"}]},{"default":false,"description":"If set to `true` all pixels for which the point at the pixel center **does** intersect with any polygon are replaced.","name":"inside","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"A masked raster data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Apply a polygon mask"},{"categories":["cubes"],"description":"Adds a new named dimension to the data cube.\n\nAfterwards, the dimension can be referred to with the specified `name`. If a dimension with the specified name exists, the process fails with a `DimensionExists` exception. The dimension label of the dimension is set to the specified `label`.","exceptions":{"DimensionExists":{"message":"A dimension with the specified name already exists."}},"id":"add_dimension","parameters":[{"description":"A data cube to add the dimension to.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"Name for the dimension.","name":"name","schema":{"type":"string"}},{"description":"A dimension label.","name":"label","schema":[{"type":"number"},{"type":"string"}]},{"default":"other","description":"The type of dimension, defaults to `other`.","name":"type","optional":true,"schema":{"enum":["bands","geometry","spatial","temporal","other"],"type":"string"}}],"returns":{"description":"The data cube with a newly added dimension. The new dimension has exactly one dimension label. All other dimensions remain unchanged.","schema":{"subtype":"datacube","type":"object"}},"summary":"Add a new dimension"},{"categories":["cubes"],"description":"Drops a dimension from the data cube.\n\nDropping a dimension only works on dimensions with a single dimension label left, otherwise the process fails with a `DimensionLabelCountMismatch` exception. Dimension values can be reduced to a single value with a filter such as ``filter_bands()`` or the ``reduce_dimension()`` process. If a dimension with the specified name does not exist, the process fails with a `DimensionNotAvailable` exception.","exceptions":{"DimensionLabelCountMismatch":{"message":"The number of dimension labels exceeds one, which requires a reducer."},"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"drop_dimension","parameters":[{"description":"The data cube to drop a dimension from.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"Name of the dimension to drop.","name":"name","schema":{"type":"string"}}],"returns":{"description":"A data cube without the specified dimension. The number of dimensions decreases by one, but the dimension properties (name, type, labels, reference system and resolution) for all other dimensions remain unchanged.","schema":{"subtype":"datacube","type":"object"}},"summary":"Remove a dimension"},{"categories":["cubes"],"description":"Renames a dimension in the data cube while preserving all other properties.","exceptions":{"DimensionExists":{"message":"A dimension with the specified name already exists."},"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"rename_dimension","parameters":[{"description":"The data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"The current name of the dimension. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"source","schema":{"type":"string"}},{"description":"A new Name for the dimension. Fails with a `DimensionExists` exception if a dimension with the specified name exists.","name":"target","schema":{"type":"string"}}],"returns":{"description":"A data cube with the same dimensions, but the name of one of the dimensions changes. The old name can not be referred to any longer. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"subtype":"datacube","type":"object"}},"summary":"Rename a dimension"},{"categories":["cubes"],"description":"Renames the labels of the specified dimension in the data cube from `source` to `target`.\n\nIf the array for the source labels is empty (the default), the dimension labels are expected to be enumerated with zero-based numbering (0,1,2,3,...) so that the dimension labels directly map to the indices of the array specified for the parameter `target`. Otherwise, the number of the source and target labels must be equal. If none of these requirements is fulfilled, the `LabelMismatch` exception is thrown.\n\nThis process doesn't change the order of the labels and their corresponding data.","examples":[{"arguments":{"data":{"from_parameter":"data"},"dimension":"bands","source":["B1","B2","B3"],"target":["red","green","blue"]},"description":"Renaming the bands from `B1` to `red`, from `B2` to `green` and from `B3` to `blue`.","title":"Rename named labels"}],"exceptions":{"LabelExists":{"message":"A label with the specified name exists."},"LabelMismatch":{"message":"The number of labels in the parameters `source` and `target` don't match."},"LabelNotAvailable":{"message":"A label with the specified name does not exist."},"LabelsNotEnumerated":{"message":"The dimension labels are not enumerated."}},"id":"rename_labels","parameters":[{"description":"The data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"The name of the dimension to rename the labels for.","name":"dimension","schema":{"type":"string"}},{"description":"The new names for the labels.\n\nIf a target dimension label already exists in the data cube, a `LabelExists` exception is thrown.","name":"target","schema":{"items":{"type":["number","string"]},"type":"array"}},{"default":[],"description":"The original names of the labels to be renamed to corresponding array elements in the parameter `target`. It is allowed to only specify a subset of labels to rename, as long as the `target` and `source` parameter have the same length. The order of the labels doesn't need to match the order of the dimension labels in the data cube. By default, the array is empty so that the dimension labels in the data cube are expected to be enumerated.\n\nIf the dimension labels are not enumerated and the given array is empty, the `LabelsNotEnumerated` exception is thrown. If one of the source dimension labels doesn't exist, the `LabelNotAvailable` exception is thrown.","name":"source","optional":true,"schema":{"items":{"type":["number","string"]},"type":"array"}}],"returns":{"description":"The data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that for the given dimension the labels change. The old labels can not be referred to any longer. The number of labels remains the same.","schema":{"subtype":"datacube","type":"object"}},"summary":"Rename dimension labels"},{"categories":["cubes"],"description":"Gives all labels for a dimension in the data cube. The labels have the same order as in the data cube.\n\nIf a dimension with the specified name does not exist, the process fails with a `DimensionNotAvailable` exception.","exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"id":"dimension_labels","parameters":[{"description":"The data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"The name of the dimension to get the labels for.","name":"dimension","schema":{"type":"string"}}],"returns":{"description":"The labels as an array.","schema":{"items":{"type":["number","string"]},"type":"array"}},"summary":"Get the dimension labels"},{"categories":["cubes","filter"],"description":"Limits the data cube to the specified interval of dates and/or times.\n\nMore precisely, the filter checks whether each of the temporal dimension labels is greater than or equal to the lower boundary (start date/time) and less than the value of the upper boundary (end date/time). This corresponds to a left-closed interval, which contains the lower boundary but not the upper boundary.","exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."},"TemporalExtentEmpty":{"message":"The temporal extent is empty. The second instant in time must always be greater/later than the first instant in time."}},"id":"filter_temporal","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#filter","rel":"about","title":"Filters explained in the openEO documentation"},{"href":"https://www.rfc-editor.org/rfc/rfc3339.html","rel":"about","title":"RFC3339: Details about formatting temporal strings"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},{"description":"Left-closed temporal interval, i.e. an array with exactly two elements:\n\n1. The first element is the start of the temporal interval. The specified time instant is **included** in the interval.\n2. The second element is the end of the temporal interval. The specified time instant is **excluded** from the interval.\n\nThe second element must always be greater/later than the first element. Otherwise, a `TemporalExtentEmpty` exception is thrown.\n\nAlso supports unbounded intervals by setting one of the boundaries to `null`, but never both.","name":"extent","schema":{"examples":[["2015-01-01T00:00:00Z","2016-01-01T00:00:00Z"],["2015-01-01","2016-01-01"]],"items":{"anyOf":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"type":"null"}]},"maxItems":2,"minItems":2,"subtype":"temporal-interval","type":"array"}},{"default":null,"description":"The name of the temporal dimension to filter on. If no specific dimension is specified, the filter applies to all temporal dimensions. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","optional":true,"schema":{"type":["string","null"]}}],"returns":{"description":"A data cube restricted to the specified temporal extent. The dimensions and dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that the temporal dimensions (determined by `dimensions` parameter) may have less dimension labels.","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},"summary":"Temporal filter based on temporal intervals"},{"categories":["cubes","filter"],"description":"Filters the dimension labels in the data cube for the given dimension. Only the dimension labels that match the specified condition are preserved, all other labels with their corresponding data get removed.","examples":[{"arguments":{"condition":{"process_graph":{"eq":{"arguments":{"case_sensitive":false,"x":{"from_parameter":"value"},"y":"Sentinel-2A"},"process_id":"eq","result":true}}},"data":{"from_parameter":"sentinel2_data"},"dimension":"platform"},"description":"Filters the data cube to only contain data from platform Sentinel-2A. This example assumes that the data cube has a dimension `platform` so that computations can distinguish between Sentinel-2A and Sentinel-2B data."}],"exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."}},"experimental":true,"id":"filter_labels","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#filter","rel":"about","title":"Filters explained in the openEO documentation"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"description":"A condition that is evaluated against each dimension label in the specified dimension. A dimension label and the corresponding data is preserved for the given dimension, if the condition returns `true`.","name":"condition","schema":{"parameters":[{"description":"A single dimension label to compare against. The data type of the parameter depends on the dimension labels set for the dimension. Please note that for some dimension types a representation is used, e.g.\n\n* dates and/or times are usually strings compliant to [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601),\n* geometries can be a WKT string or an identifier.","name":"value","schema":[{"type":"number"},{"type":"string"}]},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"`true` if the dimension label should be kept in the data cube, otherwise `false`.","schema":{"type":"boolean"}},"subtype":"process-graph","type":"object"}},{"description":"The name of the dimension to filter on. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","schema":{"type":"string"}},{"default":null,"description":"Additional data to be passed to the condition.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that the given dimension has less (or the same) dimension labels.","schema":{"subtype":"datacube","type":"object"}},"summary":"Filter dimension labels based on a condition"},{"categories":["cubes","filter"],"description":"Limits the data cube to the specified bounding box.\n\n* For raster data cubes, the filter retains a pixel in the data cube if the point at the pixel center intersects with the bounding box (as defined in the Simple Features standard by the OGC). Alternatively, ``filter_spatial()`` can be used to filter by geometry.\n* For vector data cubes, the filter retains the geometry in the data cube if the geometry is fully within the bounding box (as defined in the Simple Features standard by the OGC). All geometries that were empty or not contained fully within the bounding box will be removed from the data cube.\n\nAlternatively, ``filter_vector()`` can be used to filter by geometry.","id":"filter_bbox","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#filter","rel":"about","title":"Filters explained in the openEO documentation"},{"href":"https://proj.org/usage/projections.html","rel":"about","title":"PROJ parameters for cartographic projections"},{"href":"http://www.epsg-registry.org","rel":"about","title":"Official EPSG code registry"},{"href":"http://www.epsg.io","rel":"about","title":"Unofficial EPSG code database"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"A data cube.","name":"data","schema":[{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","title":"Raster data cube","type":"object"},{"dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector data cube","type":"object"}]},{"description":"A bounding box, which may include a vertical axis (see `base` and `height`).","name":"extent","schema":{"properties":{"base":{"default":null,"description":"Base (optional, lower left corner, coordinate axis 3).","type":["number","null"]},"crs":{"anyOf":[{"examples":[3857],"minimum":1000,"subtype":"epsg-code","title":"EPSG Code","type":"integer"},{"subtype":"wkt2-definition","title":"WKT2","type":"string"}],"default":4326,"description":"Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system."},"east":{"description":"East (upper right corner, coordinate axis 1).","type":"number"},"height":{"default":null,"description":"Height (optional, upper right corner, coordinate axis 3).","type":["number","null"]},"north":{"description":"North (upper right corner, coordinate axis 2).","type":"number"},"south":{"description":"South (lower left corner, coordinate axis 2).","type":"number"},"west":{"description":"West (lower left corner, coordinate axis 1).","type":"number"}},"required":["west","south","east","north"],"subtype":"bounding-box","type":"object"}}],"returns":{"description":"A data cube restricted to the bounding box. The dimensions and dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that the spatial dimensions have less (or the same) dimension labels.","schema":[{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","title":"Raster data cube","type":"object"},{"dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector data cube","type":"object"}]},"summary":"Spatial filter using a bounding box"},{"categories":["cubes","filter"],"description":"Limits the raster data cube over the spatial dimensions to the specified geometries.\n\n- For **polygons**, the filter retains a pixel in the data cube if the point at the pixel center intersects with at least one of the polygons (as defined in the Simple Features standard by the OGC).\n- For **points**, the process considers the closest pixel center.\n- For **lines** (line strings), the process considers all the pixels whose centers are closest to at least one point on the line.\n\nMore specifically, pixels outside of the bounding box of the given geometry will not be available after filtering. All pixels inside the bounding box that are not retained will be set to `null` (no data).\n\n Alternatively, use ``filter_bbox()`` to filter by bounding box.","id":"filter_spatial","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#filter","rel":"about","title":"Filters explained in the openEO documentation"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"One or more geometries used for filtering, given as GeoJSON or vector data cube. If multiple geometries are provided, the union of them is used. Empty geometries are ignored.\n\nLimits the data cube to the bounding box of the given geometries. No implicit masking gets applied. To mask the pixels of the data cube use ``mask_polygon()``.","name":"geometries","schema":[{"dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector Data Cube","type":"object"},{"deprecated":true,"description":"Deprecated in favor of ``load_geojson()``. The GeoJSON type `GeometryCollection` is not supported.","subtype":"geojson","title":"GeoJSON","type":"object"}]}],"returns":{"description":"A raster data cube restricted to the specified geometries. The dimensions and dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that the spatial dimensions have less (or the same) dimension labels.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Spatial filter raster data cubes using geometries"},{"categories":["cubes","filter"],"description":"Filters the bands in the data cube so that bands that don't match any of the criteria are dropped from the data cube. The data cube is expected to have only one dimension of type `bands`. Fails with a `DimensionMissing` exception if no such dimension exists.\n\nThe following criteria can be used to select bands:\n\n* `bands`: band name or common band name (e.g. `B01`, `B8A`, `red` or `nir`)\n* `wavelengths`: ranges of wavelengths in micrometers (\u03bcm) (e.g. 0.5 - 0.6)\n\nAll these information are exposed in the band metadata of the collection. To keep algorithms interoperable it is recommended to prefer the common band names or the wavelengths over band names that are specific to the collection and/or back-end.\n\nIf multiple criteria are specified, any of them must match and not all of them, i.e. they are combined with an OR-operation. If no criteria are specified, the `BandFilterParameterMissing` exception must be thrown.\n\n**Important:** The order of the specified array defines the order of the bands in the data cube, which can be important for subsequent processes. If multiple bands are matched by a single criterion (e.g. a range of wavelengths), they stay in the original order.","exceptions":{"BandFilterParameterMissing":{"message":"The process `filter_bands` requires any of the parameters `bands`, `common_names` or `wavelengths` to be set."},"DimensionMissing":{"message":"A band dimension is missing."}},"id":"filter_bands","links":[{"href":"https://github.com/radiantearth/stac-spec/tree/master/extensions/eo#common-band-names","rel":"about","title":"List of common band names as specified by the STAC specification"},{"href":"https://openeo.org/documentation/1.0/datacubes.html#filter","rel":"about","title":"Filters explained in the openEO documentation"}],"parameters":[{"description":"A data cube with bands.","name":"data","schema":{"dimensions":[{"type":"bands"}],"subtype":"datacube","type":"object"}},{"default":[],"description":"A list of band names. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If the unique band name and the common name conflict, the unique band name has a higher priority.\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order.","name":"bands","optional":true,"schema":{"items":{"subtype":"band-name","type":"string"},"type":"array"}},{"default":[],"description":"A list of sub-lists with each sub-list consisting of two elements. The first element is the minimum wavelength and the second element is the maximum wavelength. Wavelengths are specified in micrometers (\u03bcm).\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match the wavelengths, all matched bands are included in the original order.","name":"wavelengths","optional":true,"schema":{"items":{"examples":[[[0.45,0.5],[0.6,0.7]]],"items":{"type":"number"},"maxItems":2,"minItems":2,"type":"array"},"type":"array"}}],"returns":{"description":"A data cube limited to a subset of its original bands. The dimensions and dimension properties (name, type, labels, reference system and resolution) remain unchanged, except that the dimension of type `bands` has less (or the same) dimension labels.","schema":{"dimensions":[{"type":"bands"}],"subtype":"datacube","type":"object"}},"summary":"Filter the bands by names"},{"categories":["cubes","reproject"],"description":"Resamples the spatial dimensions (x,y) of the data cube to a specified resolution and/or warps the data cube to the target projection. At least `resolution` or `projection` must be specified.\n\nRelated processes:\n\n* Use ``filter_bbox()`` to set the target spatial extent.\n* To spatially align two data cubes with each other (e.g. for merging), better use the process ``resample_cube_spatial()``.","id":"resample_spatial","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#resample","rel":"about","title":"Resampling explained in the openEO documentation"},{"href":"https://proj.org/usage/projections.html","rel":"about","title":"PROJ parameters for cartographic projections"},{"href":"http://www.epsg-registry.org","rel":"about","title":"Official EPSG code registry"},{"href":"http://www.epsg.io","rel":"about","title":"Unofficial EPSG code database"},{"href":"https://gdal.org/programs/gdalwarp.html#cmdoption-gdalwarp-r","rel":"about","title":"gdalwarp resampling methods"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"default":0,"description":"Resamples the data cube to the target resolution, which can be specified either as separate values for x and y or as a single value for both axes. Specified in the units of the target projection. Doesn't change the resolution by default (`0`).","name":"resolution","optional":true,"schema":[{"description":"A single number used as the resolution for both x and y.","minimum":0,"type":"number"},{"description":"A two-element array to specify separate resolutions for x (first element) and y (second element).","items":{"minimum":0,"type":"number"},"maxItems":2,"minItems":2,"type":"array"}]},{"default":null,"description":"Warps the data cube to the target projection, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). By default (`null`), the projection is not changed.","name":"projection","optional":true,"schema":[{"examples":[3857],"minimum":1000,"subtype":"epsg-code","title":"EPSG Code","type":"integer"},{"subtype":"wkt2-definition","title":"WKT2","type":"string"},{"title":"Don't change projection","type":"null"}]},{"default":"near","description":"Resampling method to use. The following options are available and are meant to align with [`gdalwarp`](https://gdal.org/programs/gdalwarp.html#cmdoption-gdalwarp-r):\n\n* `average`: average (mean) resampling, computes the weighted average of all valid pixels\n* `bilinear`: bilinear resampling\n* `cubic`: cubic resampling\n* `cubicspline`: cubic spline resampling\n* `lanczos`: Lanczos windowed sinc resampling\n* `max`: maximum resampling, selects the maximum value from all valid pixels\n* `med`: median resampling, selects the median value of all valid pixels\n* `min`: minimum resampling, selects the minimum value from all valid pixels\n* `mode`: mode resampling, selects the value which appears most often of all the sampled points\n* `near`: nearest neighbour resampling (default)\n* `q1`: first quartile resampling, selects the first quartile value of all valid pixels\n* `q3`: third quartile resampling, selects the third quartile value of all valid pixels\n* `rms` root mean square (quadratic mean) of all valid pixels\n* `sum`: compute the weighted sum of all valid pixels\n\nValid pixels are determined based on the function ``is_valid()``.","name":"method","optional":true,"schema":{"enum":["average","bilinear","cubic","cubicspline","lanczos","max","med","min","mode","near","q1","q3","rms","sum"],"type":"string"}},{"default":"upper-left","description":"Specifies to which corner of the spatial extent the new resampled data is aligned to.","name":"align","optional":true,"schema":{"enum":["lower-left","upper-left","lower-right","upper-right"],"type":"string"}}],"returns":{"description":"A raster data cube with values warped onto the new projection. It has the same dimensions and the same dimension properties (name, type, labels, reference system and resolution) for all non-spatial or vertical spatial dimensions. For the horizontal spatial dimensions the name and type remain unchanged, but reference system, labels and resolution may change depending on the given parameters.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Resample and warp the spatial dimensions"},{"categories":["cubes","reproject"],"description":"Resamples the spatial dimensions (x,y) from a source data cube to align with the corresponding dimensions of the given target data cube. Returns a new data cube with the resampled dimensions.\n\nTo resample a data cube to a specific resolution or projection regardless of an existing target data cube, refer to ``resample_spatial()``.","id":"resample_cube_spatial","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#resample","rel":"about","title":"Resampling explained in the openEO documentation"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"A raster data cube that describes the spatial target resolution.","name":"target","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"default":"near","description":"Resampling method to use. The following options are available and are meant to align with [`gdalwarp`](https://gdal.org/programs/gdalwarp.html#cmdoption-gdalwarp-r):\n\n* `average`: average (mean) resampling, computes the weighted average of all valid pixels\n* `bilinear`: bilinear resampling\n* `cubic`: cubic resampling\n* `cubicspline`: cubic spline resampling\n* `lanczos`: Lanczos windowed sinc resampling\n* `max`: maximum resampling, selects the maximum value from all valid pixels\n* `med`: median resampling, selects the median value of all valid pixels\n* `min`: minimum resampling, selects the minimum value from all valid pixels\n* `mode`: mode resampling, selects the value which appears most often of all the sampled points\n* `near`: nearest neighbour resampling (default)\n* `q1`: first quartile resampling, selects the first quartile value of all valid pixels\n* `q3`: third quartile resampling, selects the third quartile value of all valid pixels\n* `rms` root mean square (quadratic mean) of all valid pixels\n* `sum`: compute the weighted sum of all valid pixels\n\nValid pixels are determined based on the function ``is_valid()``.","name":"method","optional":true,"schema":{"enum":["average","bilinear","cubic","cubicspline","lanczos","max","med","min","mode","near","q1","q3","rms","sum"],"type":"string"}}],"returns":{"description":"A raster data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged, except for the resolution and dimension labels of the spatial dimensions.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Resample the spatial dimensions to match a target data cube"},{"categories":["cubes","math > indices","vegetation indices"],"description":"Computes the Normalized Difference Vegetation Index (NDVI). The NDVI is computed as *`(nir - red) / (nir + red)`*.\n\nThe `data` parameter expects a raster data cube with a dimension of type `bands` or a `DimensionAmbiguous` exception is thrown otherwise. By default, the dimension must have at least two bands with the common names `red` and `nir` assigned. Otherwise, the user has to specify the parameters `nir` and `red`. If neither is the case, either the exception `NirBandAmbiguous` or `RedBandAmbiguous` is thrown. The common names for each band are specified in the collection's band metadata and are *not* equal to the band names.\n\nBy default, the dimension of type `bands` is dropped by this process. To keep the dimension specify a new band name in the parameter `target_band`. This adds a new dimension label with the specified name to the dimension, which can be used to access the computed values. If a band with the specified name exists, a `BandExists` is thrown.\n\nThis process is very similar to the process ``normalized_difference()``, but determines the bands automatically based on the common names (`red`/`nir`) specified in the metadata.","exceptions":{"BandExists":{"message":"A band with the specified target name exists."},"DimensionAmbiguous":{"message":"dimension of type `bands` is not available or is ambiguous.."},"NirBandAmbiguous":{"message":"The NIR band can't be resolved, please specify the specific NIR band name."},"RedBandAmbiguous":{"message":"The red band can't be resolved, please specify the specific red band name."}},"id":"ndvi","links":[{"href":"https://en.wikipedia.org/wiki/Normalized_difference_vegetation_index","rel":"about","title":"NDVI explained by Wikipedia"},{"href":"https://earthobservatory.nasa.gov/features/MeasuringVegetation/measuring_vegetation_2.php","rel":"about","title":"NDVI explained by NASA"},{"href":"https://github.com/radiantearth/stac-spec/tree/master/extensions/eo#common-band-names","rel":"about","title":"List of common band names as specified by the STAC specification"}],"parameters":[{"description":"A raster data cube with two bands that have the common names `red` and `nir` assigned.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"},{"type":"bands"}],"subtype":"datacube","type":"object"}},{"default":"nir","description":"The name of the NIR band. Defaults to the band that has the common name `nir` assigned.\n\nEither the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands) can be specified. If the unique band name and the common name conflict, the unique band name has a higher priority.","name":"nir","optional":true,"schema":{"subtype":"band-name","type":"string"}},{"default":"red","description":"The name of the red band. Defaults to the band that has the common name `red` assigned.\n\nEither the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands) can be specified. If the unique band name and the common name conflict, the unique band name has a higher priority.","name":"red","optional":true,"schema":{"subtype":"band-name","type":"string"}},{"default":null,"description":"By default, the dimension of type `bands` is dropped. To keep the dimension specify a new band name in this parameter so that a new dimension label with the specified name will be added for the computed values.","name":"target_band","optional":true,"schema":[{"pattern":"^\\w+$","type":"string"},{"type":"null"}]}],"returns":{"description":"A raster data cube containing the computed NDVI values. The structure of the data cube differs depending on the value passed to `target_band`:\n\n* `target_band` is `null`: The data cube does not contain the dimension of type `bands`, the number of dimensions decreases by one. The dimension properties (name, type, labels, reference system and resolution) for all other dimensions remain unchanged.\n* `target_band` is a string: The data cube keeps the same dimensions. The dimension properties remain unchanged, but the number of dimension labels for the dimension of type `bands` increases by one. The additional label is named as specified in `target_band`.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Normalized Difference Vegetation Index"},{"categories":["cubes","math > image filter"],"description":"Applies a 2D convolution (i.e. a focal operation with a weighted kernel) on the horizontal spatial dimensions (axes `x` and `y`) of a raster data cube.\n\nEach value in the kernel is multiplied with the corresponding pixel value and all products are summed up afterwards. The sum is then multiplied with the factor.\n\nThe process can't handle non-numerical or infinite numerical values in the data cube. Boolean values are converted to integers (`false` = 0, `true` = 1), but all other non-numerical or infinite values are replaced with zeroes by default (see parameter `replace_invalid`).\n\nFor cases requiring more generic focal operations or non-numerical values, see ``apply_neighborhood()``.","exceptions":{"KernelDimensionsUneven":{"message":"Each dimension of the kernel must have an uneven number of elements."}},"id":"apply_kernel","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#apply","rel":"about","title":"Apply explained in the openEO documentation"},{"href":"http://www.songho.ca/dsp/convolution/convolution.html","rel":"about","title":"Convolutions explained"},{"href":"http://www.songho.ca/dsp/convolution/convolution2d_example.html","rel":"about","title":"Example of 2D Convolution"}],"parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"Kernel as a two-dimensional array of weights. The inner level of the nested array aligns with the `x` axis and the outer level aligns with the `y` axis. Each level of the kernel must have an uneven number of elements, otherwise the process throws a `KernelDimensionsUneven` exception.","name":"kernel","schema":{"description":"A two-dimensional array of numbers.","items":{"items":{"type":"number"},"type":"array"},"subtype":"kernel","type":"array"}},{"default":1,"description":"A factor that is multiplied to each value after the kernel has been applied.\n\nThis is basically a shortcut for explicitly multiplying each value by a factor afterwards, which is often required for some kernel-based algorithms such as the Gaussian blur.","name":"factor","optional":true,"schema":{"type":"number"}},{"default":0,"description":"Determines how the data is extended when the kernel overlaps with the borders. Defaults to fill the border with zeroes.\n\nThe following options are available:\n\n* *numeric value* - fill with a user-defined constant number `n`: `nnnnnn|abcdefgh|nnnnnn` (default, with `n` = 0)\n* `replicate` - repeat the value from the pixel at the border: `aaaaaa|abcdefgh|hhhhhh`\n* `reflect` - mirror/reflect from the border: `fedcba|abcdefgh|hgfedc`\n* `reflect_pixel` - mirror/reflect from the center of the pixel at the border: `gfedcb|abcdefgh|gfedcb`\n* `wrap` - repeat/wrap the image: `cdefgh|abcdefgh|abcdef`","name":"border","optional":true,"schema":[{"enum":["replicate","reflect","reflect_pixel","wrap"],"type":"string"},{"type":"number"}]},{"default":0,"description":"This parameter specifies the value to replace non-numerical or infinite numerical values with. By default, those values are replaced with zeroes.","name":"replace_invalid","optional":true,"schema":{"type":"number"}}],"returns":{"description":"A data cube with the newly computed values and the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Apply a spatial convolution with a kernel"},{"categories":["math"],"description":"Performs a linear transformation between the input and output range.\n\nThe given number in `x` is clipped to the bounds specified in `inputMin` and `inputMax` so that the underlying formula *`((x - inputMin) / (inputMax - inputMin)) * (outputMax - outputMin) + outputMin`* never returns any value lower than `outputMin` or greater than `outputMax`.\n\nPotential use case include\n\n* scaling values to the 8-bit range (0 - 255) often used for numeric representation of values in one of the channels of the [RGB colour model](https://en.wikipedia.org/wiki/RGB_color_model#Numeric_representations) or\n* calculating percentages (0 - 100).\n\nThe no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"inputMax":1,"inputMin":-1,"outputMax":255,"outputMin":0,"x":0.3},"returns":165.75},{"arguments":{"inputMax":255,"inputMin":0,"x":25.5},"returns":0.1},{"arguments":{"inputMax":100,"inputMin":0,"x":null},"returns":null},{"arguments":{"inputMax":1,"inputMin":0,"outputMax":255,"outputMin":0,"x":1.12},"description":"Shows that the input data is clipped.","returns":255}],"id":"linear_scale_range","parameters":[{"description":"A number to transform. The number gets clipped to the bounds specified in `inputMin` and `inputMax`.","name":"x","schema":{"type":["number","null"]}},{"description":"Minimum value the input can obtain.","name":"inputMin","schema":{"type":"number"}},{"description":"Maximum value the input can obtain.","name":"inputMax","schema":{"type":"number"}},{"default":0,"description":"Minimum value of the desired output range.","name":"outputMin","optional":true,"schema":{"type":"number"}},{"default":1,"description":"Maximum value of the desired output range.","name":"outputMax","optional":true,"schema":{"type":"number"}}],"process_graph":{"add":{"arguments":{"x":{"from_node":"multiply"},"y":{"from_parameter":"outputMin"}},"process_id":"add","result":true},"divide":{"arguments":{"x":{"from_node":"subtract1"},"y":{"from_node":"subtract2"}},"process_id":"divide"},"multiply":{"arguments":{"x":{"from_node":"divide"},"y":{"from_node":"subtract3"}},"process_id":"multiply"},"subtract1":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"inputMin"}},"process_id":"subtract"},"subtract2":{"arguments":{"x":{"from_parameter":"inputMax"},"y":{"from_parameter":"inputMin"}},"process_id":"subtract"},"subtract3":{"arguments":{"x":{"from_parameter":"outputMax"},"y":{"from_parameter":"outputMin"}},"process_id":"subtract"}},"returns":{"description":"The transformed number.","schema":{"type":["number","null"]}},"summary":"Linear transformation between two ranges"},{"categories":["cubes","aggregate"],"description":"Aggregates statistics for one or more geometries (e.g. zonal statistics for polygons) over the spatial dimensions. The given data cube can have multiple additional dimensions and for all these dimensions results will be computed individually.\n\nAn 'unbounded' aggregation over the full extent of the horizontal spatial dimensions can be computed with the process ``reduce_spatial()``.\n\nThis process passes a list of values to the reducer. The list of values has an undefined order, therefore processes such as ``last()`` and ``first()`` that depend on the order of the values will lead to unpredictable results.","exceptions":{"TargetDimensionExists":{"message":"A dimension with the specified target dimension name already exists."}},"id":"aggregate_spatial","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#aggregate","rel":"about","title":"Aggregation explained in the openEO documentation"},{"href":"http://www.opengeospatial.org/standards/sfa","rel":"about","title":"Simple Features standard by the OGC"}],"parameters":[{"description":"A raster data cube with at least two spatial dimensions.\n\nThe data cube implicitly gets restricted to the bounds of the geometries as if ``filter_spatial()`` would have been used with the same values for the corresponding parameters immediately before this process.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"Geometries for which the aggregation will be computed. Feature properties are preserved for vector data cubes and all GeoJSON Features.\n\nOne value will be computed per label in the dimension of type `geometries`, GeoJSON `Feature` or `Geometry`. For a `FeatureCollection` multiple values will be computed, one value per contained `Feature`. No values will be computed for empty geometries. For example, a single value will be computed for a `MultiPolygon`, but two values will be computed for a `FeatureCollection` containing two polygons.\n\n- For **polygons**, the process considers all pixels for which the point at the pixel center intersects with the corresponding polygon (as defined in the Simple Features standard by the OGC).\n- For **points**, the process considers the closest pixel center.\n- For **lines** (line strings), the process considers all the pixels whose centers are closest to at least one point on the line.\n\nThus, pixels may be part of multiple geometries and be part of multiple aggregations. No operation is applied to geometries that are outside of the bounds of the data.","name":"geometries","schema":[{"dimensions":[{"type":"geometry"}],"subtype":"datacube","title":"Vector Data Cube","type":"object"},{"deprecated":true,"description":"Deprecated in favor of ``load_geojson()``. The GeoJSON type `GeometryCollection` is not supported.","subtype":"geojson","title":"GeoJSON","type":"object"}]},{"description":"A reducer to be applied on all values of each geometry. A reducer is a single process such as ``mean()`` or a set of processes, which computes a single value for a list of values, see the category 'reducer' for such processes.","name":"reducer","schema":{"parameters":[{"description":"An array with elements of any type.","name":"data","schema":{"items":{"description":"Any data type."},"type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the vector data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"By default (which is `null`), the process only computes the results and doesn't add a new dimension.\n\nIf this parameter contains a new dimension name, the computation also stores information about the total count of pixels (valid + invalid pixels) and the number of valid pixels (see ``is_valid()``) for each computed value. These values are added as a new dimension. The new dimension of type `other` has the dimension labels `value`, `total_count` and `valid_count`.\n\nFails with a `TargetDimensionExists` exception if a dimension with the specified name exists.","name":"target_dimension","optional":true,"schema":{"type":["string","null"]}},{"default":null,"description":"Additional data to be passed to the reducer.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A vector data cube with the computed results. Empty geometries still exist but without any aggregated values (i.e. no-data). The spatial dimensions are replaced by a dimension of type 'geometries' and if `target_dimension` is not `null`, a new dimension is added.","schema":{"dimensions":[{"type":"geometry"}],"subtype":"datacube","type":"object"}},"summary":"Zonal statistics for geometries"},{"categories":["cubes","aggregate"],"description":"Aggregates statistics over the horizontal spatial dimensions (axes `x` and `y`) of the data cube.\n\nThe pixel grid for the axes `x` and `y` is divided into non-overlapping windows with the size specified in the parameter `size`. If the number of values for the axes `x` and `y` is not a multiple of the corresponding window size, the behavior specified in the parameters `boundary` and `align` is applied.\nFor each of these windows, the reducer process computes the result.","experimental":true,"id":"aggregate_spatial_window","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#aggregate","rel":"about","title":"Aggregation explained in the openEO documentation"}],"parameters":[{"description":"A raster data cube with exactly two horizontal spatial dimensions and an arbitrary number of additional dimensions. The process is applied to all additional dimensions individually.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"A reducer to be applied on the list of values, which contain all pixels covered by the window. A reducer is a single process such as ``mean()`` or a set of processes, which computes a single value for a list of values, see the category 'reducer' for such processes.","name":"reducer","schema":{"parameters":[{"description":"An array with elements of any type.","name":"data","schema":{"items":{"description":"Any data type."},"type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"description":"Window size in pixels along the horizontal spatial dimensions.\n\nThe first value corresponds to the `x` axis, the second value corresponds to the `y` axis.","name":"size","schema":{"items":{"minimum":1,"type":"integer"},"maxItems":2,"minItems":2,"type":"array"}},{"default":"pad","description":"Behavior to apply if the number of values for the axes `x` and `y` is not a multiple of the corresponding value in the `size` parameter. Options are:\n\n- `pad` (default): pad the data cube with the no-data value `null` to fit the required window size.\n\n- `trim`: trim the data cube to fit the required window size.\n\nSet the parameter `align` to specifies to which corner the data is aligned to.","name":"boundary","optional":true,"schema":{"enum":["pad","trim"],"type":"string"}},{"default":"upper-left","description":"If the data requires padding or trimming (see parameter `boundary`), specifies to which corner of the spatial extent the data is aligned to. For example, if the data is aligned to the upper left, the process pads/trims at the lower-right.","name":"align","optional":true,"schema":{"enum":["lower-left","upper-left","lower-right","upper-right"],"type":"string"}},{"default":null,"description":"Additional data to be passed to the reducer.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A raster data cube with the newly computed values and the same dimensions.\n\nThe resolution will change depending on the chosen values for the `size` and `boundary` parameter. It usually decreases for the dimensions which have the corresponding parameter `size` set to values greater than 1.\n\nThe dimension labels will be set to the coordinate at the center of the window. The other dimension properties (name, type and reference system) remain unchanged.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Zonal statistics for rectangular windows"},{"categories":["cubes","import","udf"],"description":"Runs a UDF in one of the supported runtime environments.\n\nThe process can either:\n\n1. load and run a UDF stored in a file on the server-side workspace of the authenticated user. The path to the UDF file must be relative to the root directory of the user's workspace.\n2. fetch and run a remotely stored and published UDF by absolute URI.\n3. run the source code specified inline as string.\n\nThe loaded UDF can be executed in several processes such as ``aggregate_spatial()``, ``apply()``, ``apply_dimension()`` and ``reduce_dimension()``. The user must ensure that the data is given in a way that the UDF code can make sense of it.","exceptions":{"InvalidRuntime":{"message":"The specified UDF runtime is not supported."},"InvalidVersion":{"message":"The specified UDF runtime version is not supported."}},"id":"run_udf","parameters":[{"description":"The data to be passed to the UDF.","name":"data","schema":[{"items":{"description":"Any data type."},"minItems":1,"title":"Array","type":"array"},{"description":"A single value of any data type.","title":"Single Value"}]},{"description":"Either source code, an absolute URL or a path to a UDF script.","name":"udf","schema":[{"description":"Absolute URL to a UDF","format":"uri","pattern":"^https?://","subtype":"uri","type":"string"},{"description":"Path to a UDF uploaded to the server.","pattern":"^[^\r\n\\:'\"]+$","subtype":"file-path","type":"string"},{"description":"The multi-line source code of a UDF, must contain a newline/line-break.","pattern":"(\r\n|\r|\n)","subtype":"udf-code","type":"string"}]},{"description":"A UDF runtime identifier available at the back-end.","name":"runtime","schema":{"subtype":"udf-runtime","type":"string"}},{"default":null,"description":"An UDF runtime version. If set to `null`, the default runtime version specified for each runtime is used.","name":"version","optional":true,"schema":[{"subtype":"udf-runtime-version","type":"string"},{"title":"Default runtime version","type":"null"}]},{"default":{},"description":"Additional data such as configuration options to be passed to the UDF.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The data processed by the UDF. The returned value can be of any data type and is exactly what the UDF code returns.","schema":{"description":"Any data type.","title":"Any"}},"summary":"Run a UDF"},{"categories":["cubes","aggregate"],"description":"Computes a temporal aggregation based on an array of temporal intervals.\n\nFor common regular calendar hierarchies such as year, month, week or seasons ``aggregate_temporal_period()`` can be used. Other calendar hierarchies must be transformed into specific intervals by the clients.\n\nFor each interval, all data along the dimension will be passed through the reducer.\n\nThe computed values will be projected to the labels. If no labels are specified, the start of the temporal interval will be used as label for the corresponding values. In case of a conflict (i.e. the user-specified values for the start times of the temporal intervals are not distinct), the user-defined labels must be specified in the parameter `labels` as otherwise a `DistinctDimensionLabelsRequired` exception would be thrown. The number of user-defined labels and the number of intervals need to be equal.\n\nIf the dimension is not set or is set to `null`, the data cube is expected to only have one temporal dimension.","examples":[{"arguments":{"data":{"from_parameter":"data"},"intervals":[["2015-01-01","2016-01-01"],["2016-01-01","2017-01-01"],["2017-01-01","2018-01-01"],["2018-01-01","2019-01-01"],["2019-01-01","2020-01-01"]],"labels":["2015","2016","2017","2018","2019"],"reducer":{"process_graph":{"mean1":{"arguments":{"data":{"from_parameter":"data"}},"process_id":"mean","result":true}}}}}],"exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."},"DistinctDimensionLabelsRequired":{"message":"The dimension labels have duplicate values. Distinct labels must be specified."},"TemporalExtentEmpty":{"message":"At least one of the intervals is empty. The second instant in time must always be greater/later than the first instant."},"TooManyDimensions":{"message":"The data cube contains multiple temporal dimensions. The parameter `dimension` must be specified."}},"id":"aggregate_temporal","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#aggregate","rel":"about","title":"Aggregation explained in the openEO documentation"},{"href":"https://www.rfc-editor.org/rfc/rfc3339.html","rel":"about","title":"RFC3339: Details about formatting temporal strings"}],"parameters":[{"description":"A data cube.","name":"data","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},{"description":"Left-closed temporal intervals, which are allowed to overlap. Each temporal interval in the array has exactly two elements:\n\n1. The first element is the start of the temporal interval. The specified time instant is **included** in the interval.\n2. The second element is the end of the temporal interval. The specified time instant is **excluded** from the interval.\n\nThe second element must always be greater/later than the first element, except when using time without date. Otherwise, a `TemporalExtentEmpty` exception is thrown.","name":"intervals","schema":{"examples":[[["2015-01-01","2016-01-01"],["2016-01-01","2017-01-01"],["2017-01-01","2018-01-01"]],[["06:00:00","18:00:00"],["18:00:00","06:00:00"]]],"items":{"items":{"anyOf":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"description":"Time only, formatted as `HH:MM:SS`. The time zone is UTC.","pattern":"^\\d{2}:\\d{2}:\\d{2}$","subtype":"time","type":"string"},{"type":"null"}]},"maxItems":2,"minItems":2,"subtype":"temporal-interval","type":"array","uniqueItems":true},"minItems":1,"subtype":"temporal-intervals","type":"array"}},{"description":"A reducer to be applied for the values contained in each interval. A reducer is a single process such as ``mean()`` or a set of processes, which computes a single value for a list of values, see the category 'reducer' for such processes. Intervals may not contain any values, which for most reducers leads to no-data (`null`) values by default.","name":"reducer","schema":{"parameters":[{"description":"A labeled array with elements of any type. If there's no data for the interval, the array is empty.","name":"data","schema":{"items":{"description":"Any data type."},"subtype":"labeled-array","type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":[],"description":"Distinct labels for the intervals, which can contain dates and/or times. Is only required to be specified if the values for the start of the temporal intervals are not distinct and thus the default labels would not be unique. The number of labels and the number of groups need to be equal.","name":"labels","optional":true,"schema":{"items":{"type":["number","string"]},"type":"array"}},{"default":null,"description":"The name of the temporal dimension for aggregation. All data along the dimension is passed through the specified reducer. If the dimension is not set or set to `null`, the data cube is expected to only have one temporal dimension. Fails with a `TooManyDimensions` exception if it has more dimensions. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","optional":true,"schema":{"type":["string","null"]}},{"default":null,"description":"Additional data to be passed to the reducer.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A new data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged, except for the resolution and dimension labels of the given temporal dimension.","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},"summary":"Temporal aggregations"},{"categories":["aggregate","climatology","cubes"],"description":"Computes a temporal aggregation based on calendar hierarchies such as years, months or seasons. For other calendar hierarchies ``aggregate_temporal()`` can be used.\n\nFor each interval, all data along the dimension will be passed through the reducer.\n\nIf the dimension is not set or is set to `null`, the data cube is expected to only have one temporal dimension.","exceptions":{"DimensionNotAvailable":{"message":"A dimension with the specified name does not exist."},"DistinctDimensionLabelsRequired":{"message":"The dimension labels have duplicate values. Distinct labels must be specified."},"TooManyDimensions":{"message":"The data cube contains multiple temporal dimensions. The parameter `dimension` must be specified."}},"id":"aggregate_temporal_period","links":[{"href":"https://openeo.org/documentation/1.0/datacubes.html#aggregate","rel":"about","title":"Aggregation explained in the openEO documentation"}],"parameters":[{"description":"The source data cube.","name":"data","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},{"description":"The time intervals to aggregate. The following pre-defined values are available:\n\n* `hour`: Hour of the day\n* `day`: Day of the year\n* `week`: Week of the year\n* `dekad`: Ten day periods, counted per year with three periods per month (day 1 - 10, 11 - 20 and 21 - end of month). The third dekad of the month can range from 8 to 11 days. For example, the third dekad of a year spans from January 21 till January 31 (11 days), the fourth dekad spans from February 1 till February 10 (10 days) and the sixth dekad spans from February 21 till February 28 or February 29 in a leap year (8 or 9 days respectively).\n* `month`: Month of the year\n* `season`: Three month periods of the calendar seasons (December - February, March - May, June - August, September - November).\n* `tropical-season`: Six month periods of the tropical seasons (November - April, May - October).\n* `year`: Proleptic years\n* `decade`: Ten year periods ([0-to-9 decade](https://en.wikipedia.org/wiki/Decade#0-to-9_decade)), from a year ending in a 0 to the next year ending in a 9.\n* `decade-ad`: Ten year periods ([1-to-0 decade](https://en.wikipedia.org/wiki/Decade#1-to-0_decade)) better aligned with the anno Domini (AD) calendar era, from a year ending in a 1 to the next year ending in a 0.","name":"period","schema":{"enum":["hour","day","week","dekad","month","season","tropical-season","year","decade","decade-ad"],"type":"string"}},{"description":"A reducer to be applied for the values contained in each period. A reducer is a single process such as ``mean()`` or a set of processes, which computes a single value for a list of values, see the category 'reducer' for such processes. Periods may not contain any values, which for most reducers leads to no-data (`null`) values by default.","name":"reducer","schema":{"parameters":[{"description":"A labeled array with elements of any type. If there's no data for the period, the array is empty.","name":"data","schema":{"items":{"description":"Any data type."},"subtype":"labeled-array","type":"array"}},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new data cube.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"The name of the temporal dimension for aggregation. All data along the dimension is passed through the specified reducer. If the dimension is not set or set to `null`, the source data cube is expected to only have one temporal dimension. Fails with a `TooManyDimensions` exception if it has more dimensions. Fails with a `DimensionNotAvailable` exception if the specified dimension does not exist.","name":"dimension","optional":true,"schema":{"type":["string","null"]}},{"default":null,"description":"Additional data to be passed to the reducer.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"A new data cube with the same dimensions. The dimension properties (name, type, labels, reference system and resolution) remain unchanged, except for the resolution and dimension labels of the given temporal dimension. The specified temporal dimension has the following dimension labels (`YYYY` = four-digit year, `MM` = two-digit month, `DD` two-digit day of month):\n\n* `hour`: `YYYY-MM-DD-00` - `YYYY-MM-DD-23`\n* `day`: `YYYY-001` - `YYYY-365`\n* `week`: `YYYY-01` - `YYYY-52`\n* `dekad`: `YYYY-00` - `YYYY-36`\n* `month`: `YYYY-01` - `YYYY-12`\n* `season`: `YYYY-djf` (December - February), `YYYY-mam` (March - May), `YYYY-jja` (June - August), `YYYY-son` (September - November).\n* `tropical-season`: `YYYY-ndjfma` (November - April), `YYYY-mjjaso` (May - October).\n* `year`: `YYYY`\n* `decade`: `YYY0`\n* `decade-ad`: `YYY1`\n\nThe dimension labels in the new data cube are complete for the whole extent of the source data cube. For example, if `period` is set to `day` and the source data cube has two dimension labels at the beginning of the year (`2020-01-01`) and the end of a year (`2020-12-31`), the process returns a data cube with 365 dimension labels (`2020-001`, `2020-002`, ..., `2020-365`). In contrast, if `period` is set to `day` and the source data cube has just one dimension label `2020-01-05`, the process returns a data cube with just a single dimension label (`2020-005`).","schema":{"dimensions":[{"type":"temporal"}],"subtype":"datacube","type":"object"}},"summary":"Temporal aggregations based on calendar hierarchies"},{"categories":["machine learning"],"description":"Executes the fit of a random forest classification based on training data. The process does not include a separate split of the data in test, validation and training data. The Random Forest classification model is based on the approach by Breiman (2001).","experimental":true,"id":"fit_class_random_forest","links":[{"href":"https://doi.org/10.1023/A:1010933404324","rel":"about","title":"Breiman (2001): Random Forests","type":"text/html"}],"parameters":[{"description":"The predictors for the classification model as a vector data cube. Aggregated to the features (vectors) of the target input variable.","name":"predictors","schema":{"subtype":"vector-cube","type":"object"}},{"description":"The training sites for the classification model as a vector data cube. This is associated with the target variable for the Random Forest model. The geometry has to be associated with a value to predict (e.g. fractional forest canopy cover).","name":"target","schema":{"subtype":"vector-cube","type":"object"}},{"description":"Specifies how many split variables will be used at a node.\n\nThe following options are available:\n\n- *integer*: The given number of variables are considered for each split.\n- `all`: All variables are considered for each split.\n- `log2`: The logarithm with base 2 of the number of variables are considered for each split.\n- `onethird`: A third of the number of variables are considered for each split.\n- `sqrt`: The square root of the number of variables are considered for each split. This is often the default for classification.","name":"max_variables","schema":[{"minimum":1,"type":"integer"},{"enum":["all","log2","onethird","sqrt"],"type":"string"}]},{"default":100,"description":"The number of trees build within the Random Forest classification.","name":"num_trees","optional":true,"schema":{"minimum":1,"type":"integer"}},{"default":null,"description":"A randomization seed to use for the random sampling in training. If not given or `null`, no seed is used and results may differ on subsequent use.","name":"seed","optional":true,"schema":{"type":["integer","null"]}}],"returns":{"description":"A model object that can be saved with ``save_ml_model()`` and restored with ``load_ml_model()``.","schema":{"subtype":"ml-model","type":"object"}},"summary":"Train a random forest classification model"},{"categories":["machine learning"],"description":"Executes the fit of a catboost classification based on training data. The process does not include a separate split of the data in test, validation and training data.","experimental":true,"id":"fit_class_catboost","links":[],"parameters":[{"description":"The predictors for the classification model as a vector data cube. Aggregated to the features (vectors) of the target input variable.","name":"predictors","schema":{"subtype":"vector-cube","type":"object"}},{"description":"The training sites for the classification model as a vector data cube. This is associated with the target variable for the Catboost model. The geometry has to be associated with a value to predict (e.g. fractional forest canopy cover).","name":"target","schema":{"subtype":"vector-cube","type":"object"}},{"default":5,"description":"The maximum number of trees that can be built during the training process.","name":"iterations","optional":true,"schema":{"maximum":500,"minimum":1,"type":"integer"}},{"default":5,"description":"Depth of the trees.","name":"depth","optional":true,"schema":{"maximum":16,"minimum":1,"type":"integer"}},{"default":0,"description":"The random seed used for training, for reproducibility.","name":"seed","optional":true,"schema":{"maximum":2147483647,"minimum":0,"type":"integer"}}],"returns":{"description":"A model object that can be saved with ``save_ml_model()`` and restored with ``load_ml_model()``.","schema":{"subtype":"ml-model","type":"object"}},"summary":"Train a catboost classification model"},{"categories":["machine learning"],"description":"Applies an onnx machine learning model to an datacube.","experimental":true,"id":"predict_onnx","parameters":[{"description":"A raster data cube.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},{"description":"A url to an onnx model.","name":"model","schema":{"type":"string"}}],"returns":{"description":"A raster data cube with the newly computed values","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"}],"subtype":"datacube","type":"object"}},"summary":"Predict class probabilities from an onnx machine learning model"},{"categories":["machine learning","reducer"],"description":"Applies a Random Forest machine learning model to an array and predicts a value for it.","experimental":true,"id":"predict_random_forest","parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"description":"A model object that can be trained with the processes ``fit_regr_random_forest()`` (regression) and ``fit_class_random_forest()`` (classification).","name":"model","schema":{"subtype":"ml-model","type":"object"}}],"returns":{"description":"The predicted value. Returns `null` if any of the given values in the array is a no-data value.","schema":{"type":["number","null"]}},"summary":"Predict values from a Random Forest model"},{"categories":["machine learning","reducer"],"description":"Applies a Catboost machine learning model to an array and predicts a value for it.","experimental":true,"id":"predict_catboost","parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"description":"A model object that can be trained with the processes ``fit_regr_catboost()`` (regression) and ``fit_class_catboost()`` (classification).","name":"model","schema":{"subtype":"ml-model","type":"object"}}],"returns":{"description":"The predicted value.","schema":{"type":["number","null"]}},"summary":"Predict values from a Catboost model"},{"categories":["machine learning","reducer"],"description":"Applies a machine learning model to an array and predicts a probability for each class.","experimental":true,"id":"predict_probabilities","parameters":[{"description":"An array of numbers.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}},{"description":"A model object that can be trained with the processes ``fit_regr_<model_name>()`` (regression) and ``fit_class_<model_name>()`` (classification).","name":"model","schema":{"subtype":"ml-model","type":"object"}}],"returns":{"description":"A probability for each class","schema":{"items":{"type":["number","null"]},"type":"array"}},"summary":"Predict class probabilities from a machine learning model"},{"description":"Add a buffer around a geometry.","id":"vector_buffer","parameters":[{"description":"Input geometry to add buffer to, vector-cube or GeoJSON(deprecated).","name":"geometries","optional":false,"schema":[{"dimensions":[{"type":"geometry"}],"subtype":"datacube","type":"object"},{"subtype":"geojson","type":"object"}]},{"description":"The distance of the buffer in meters.","name":"distance","optional":false,"schema":{"type":"number"}}],"returns":{"description":"Output geometry (GeoJSON object) with the added or subtracted buffer","schema":{"subtype":"geojson","type":"object"}}},{"description":"Reads vector data from a file or a URL or get geometries from a FeatureCollection","id":"get_geometries","parameters":[{"description":"filename or http url of a vector file","name":"filename","optional":true,"schema":{"type":"string"}},{"description":"feature collection","name":"feature_collection","optional":true,"schema":{"type":"object"}}],"returns":{"description":"TODO","schema":{"subtype":"vector-cube","type":"object"}}},{"description":"Reads vector data from a file or a URL.","id":"read_vector","parameters":[{"description":"Vector file reference: a HTTP(S) URL or a file path.","name":"filename","optional":false,"schema":[{"description":"Public URL to a vector file.","pattern":"^https?://","subtype":"uri","type":"string"},{"description":"File path (resolvable back-end-side) to a vector file.","pattern":"^[^\r\n\\:'\"]+$","subtype":"file-path","type":"string"}]}],"returns":{"description":"GeoJSON-style feature collection","schema":{"subtype":"geojson","type":"object"}}},{"description":"[EXPERIMENTAL:] Converts given data (e.g. GeoJson object) to a vector cube.","id":"to_vector_cube","parameters":[{"description":"GeoJson object.","name":"data","optional":false,"schema":{"subtype":"geojson","type":"object"}}],"returns":{"description":"vector-cube","schema":{"subtype":"vector-cube","type":"object"}}},{"description":"Converts this raster data cube into a vector data cube.","experimental":true,"id":"raster_to_vector","parameters":[{"description":"A raster data cube.","name":"data","optional":false,"schema":{"subtype":"raster-cube","type":"object"}}],"returns":{"description":"vector-cube","schema":{"subtype":"vector-cube","type":"object"}}},{"description":"Creates a raster cube as output based on a vector cube.","experimental":true,"id":"vector_to_raster","parameters":[{"description":"A vector data cube.","name":"data","optional":false,"schema":{"subtype":"vector-cube","type":"object"}},{"description":"A raster data cube used as reference.","name":"target","optional":false,"schema":{"subtype":"raster-cube","type":"object"}}],"returns":{"description":"raster-cube","schema":{"subtype":"raster-cube","type":"object"}}},{"categories":["cubes","optical"],"description":"Applies an atmospheric correction that converts top of atmosphere reflectance values into bottom of atmosphere/top of canopy reflectance values.","exceptions":{"DigitalElevationModelInvalid":{"message":"The digital elevation model specified is either not a DEM or can't be used with the data cube given."}},"experimental":true,"id":"atmospheric_correction","links":[{"href":"https://bok.eo4geo.eu/IP1-7-1","rel":"about","title":"Atmospheric correction explained by EO4GEO body of knowledge."}],"parameters":[{"description":"Data cube containing multi-spectral optical top of atmosphere reflectances to be corrected.","name":"data","optional":false,"schema":{"subtype":"raster-cube","type":"object"}},{"description":"The atmospheric correction method to use.","name":"method","optional":true,"schema":{"type":"string"}},{"description":"The digital elevation model to use.","name":"elevation_model","optional":true,"schema":{"type":"string"}},{"description":"non-standard mission Id, currently defaults to sentinel2","name":"missionId","optional":true,"schema":{"type":"string"}},{"description":"non-standard if set, overrides sun zenith angle values [deg]","name":"sza","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set, overrides sensor zenith angle values [deg]","name":"vza","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set, overrides rel. azimuth angle values [deg]","name":"raa","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set, overrides ground elevation [km]","name":"gnd","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set, overrides aerosol optical thickness [], usually 0.1..0.2","name":"aot","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set, overrides water vapor [], usually 0..7","name":"cwv","optional":true,"schema":{"type":"number"}},{"description":"non-standard if set to 1, saves debug bands","name":"appendDebugBands","optional":true,"schema":{"type":"number"}}],"returns":{"description":"the corrected data as a data cube","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Apply atmospheric correction"},{"categories":["cubes","sar"],"description":"Computes backscatter from SAR input.\n\nNote that backscatter computation may require instrument specific metadata that is tightly coupled to the original SAR products. As a result, this process may only work in combination with loading data from specific collections, not with general data cubes.\n\nThis process uses bilinear interpolation, both for resampling the DEM and the backscatter.","exceptions":{"DigitalElevationModelInvalid":{"message":"The digital elevation model specified is either not a DEM or can't be used with the data cube given."}},"experimental":true,"id":"sar_backscatter","links":[{"href":"https://bok.eo4geo.eu/PP2-2-4-3","rel":"about","title":"Gamma nought (0) explained by EO4GEO body of knowledge."},{"href":"https://bok.eo4geo.eu/PP2-2-4-2","rel":"about","title":"Sigma nought (0) explained by EO4GEO body of knowledge."},{"href":"https://www.geo.uzh.ch/microsite/rsl-documents/research/publications/peer-reviewed-articles/201108-TGRS-Small-tcGamma-3809999360/201108-TGRS-Small-tcGamma.pdf","rel":"about","title":"Flattening Gamma: Radiometric Terrain Correction for SAR Imagery"},{"href":"https://doi.org/10.3390/data4030093","rel":"about","title":"Reasoning behind the choice of bilinear resampling"}],"parameters":[{"description":"The source data cube containing SAR input.","name":"data","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"},{"type":"bands"}],"subtype":"datacube","type":"object"}},{"default":"gamma0-terrain","description":"Select the radiometric correction coefficient. The following options are available:\n\n* `beta0`: radar brightness\n* `sigma0-ellipsoid`: ground area computed with ellipsoid earth model\n* `sigma0-terrain`: ground area computed with terrain earth model\n* `gamma0-ellipsoid`: ground area computed with ellipsoid earth model in sensor line of sight\n* `gamma0-terrain`: ground area computed with terrain earth model in sensor line of sight (default)\n* `null`: non-normalized backscatter","name":"coefficient","optional":true,"schema":[{"enum":["beta0","sigma0-ellipsoid","sigma0-terrain","gamma0-ellipsoid","gamma0-terrain"],"type":"string"},{"title":"Non-normalized backscatter","type":"null"}]},{"default":null,"description":"The digital elevation model to use. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility.","name":"elevation_model","optional":true,"schema":[{"subtype":"collection-id","type":"string"},{"type":"null"}]},{"default":false,"description":"If set to `true`, a data mask is added to the bands with the name `mask`. It indicates which values are valid (1), invalid (0) or contain no-data (null).","name":"mask","optional":true,"schema":{"type":"boolean"}},{"default":false,"description":"If set to `true`, a DEM-based local contributing area band named `contributing_area` is added. The values are given in square meters.","name":"contributing_area","optional":true,"schema":{"type":"boolean"}},{"default":false,"description":"If set to `true`, a DEM-based local incidence angle band named `local_incidence_angle` is added. The values are given in degrees.","name":"local_incidence_angle","optional":true,"schema":{"type":"boolean"}},{"default":false,"description":"If set to `true`, an ellipsoidal incidence angle band named `ellipsoid_incidence_angle` is added. The values are given in degrees.","name":"ellipsoid_incidence_angle","optional":true,"schema":{"type":"boolean"}},{"default":true,"description":"If set to `false`, no noise removal is applied. Defaults to `true`, which removes noise.","name":"noise_removal","optional":true,"schema":{"type":"boolean"}},{"default":{},"description":"Proprietary options for the backscatter computations. Specifying proprietary options will reduce portability.","name":"options","optional":true,"schema":{"additionalProperties":false,"type":"object"}}],"returns":{"description":"Backscatter values corresponding to the chosen parametrization. The values are given in linear scale.","schema":{"dimensions":[{"axis":["x","y"],"type":"spatial"},{"type":"bands"}],"subtype":"datacube","type":"object"}},"summary":"Computes backscatter from SAR input"},{"categories":["cubes","optical"],"description":"Resolution merging algorithms try to improve the spatial resolution of lower resolution bands (e.g. Sentinel-2 20M) based on higher resolution bands. (e.g. Sentinel-2 10M).\n ","experimental":true,"id":"resolution_merge","links":[{"href":"https://bok.eo4geo.eu/IP2-1-3","rel":"about","title":"Pansharpening explained by EO4GEO body of knowledge."},{"href":"https://doi.org/10.1109/TGRS.2016.2537929","rel":"about","title":"Scientific publication: Improving the Spatial Resolution of Land Surface Phenology by Fusing Medium- and Coarse-Resolution Inputs"}],"parameters":[{"description":"Data cube containing multiple spectral bands, with different source resolutions.","name":"data","schema":{"subtype":"raster-cube","type":"object"}},{"default":null,"description":"The method to use.\\n\\nThe supported algorithms can vary between back-ends. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility..","name":"method","optional":true,"schema":{"type":["string","null"]}},{"default":[],"description":"A list of band names to use as 'high-resolution' band. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority.\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order.\n These bands will remain unmodified.","name":"high_resolution_bands","optional":false,"schema":{"items":{"subtype":"band-name","type":"string"},"type":"array"}},{"default":[],"description":"A list of band names for which the spatial resolution should be increased. Either the unique band name (metadata field `name` in bands) or one of the common band names (metadata field `common_name` in bands). If unique band name and common name conflict, the unique band name has higher priority.\n\nThe order of the specified array defines the order of the bands in the data cube. If multiple bands match a common name, all matched bands are included in the original order.\n These bands will be modified by the process.","name":"low_resolution_bands","optional":false,"schema":{"items":{"subtype":"band-name","type":"string"},"type":"array"}}],"returns":{"description":"A datacube with the same bands and metadata as the input, but algorithmically increased spatial resolution for the selected bands.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Resolution merging or pansharpening: increase the spatial resolution of low-resolution bands, based on higher resolution bands."},{"categories":["cubes","ard"],"deprecated":true,"description":"[Deprecated: consider using to_scl_dilation_mask] Mask clouds by dilating Sen2Cor sceneclassification. This dilation algorithm removes pixels in the neighbourhood of clouds in a fairly aggressive manner, to avoid any type of contamination. Nevertheless, some outliers can sometimes still remain.","experimental":true,"id":"mask_scl_dilation","parameters":[{"description":"The source data cube containing Sentinel-2 input.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"default":null,"description":"The name of the band containing the Sen2Cor sceneclassification.","name":"scl_band_name","optional":true,"schema":[{"type":"string"},{"type":"null"}]}],"process_graph":{"apply1":{"arguments":{"data":{"from_node":"applykernel1"},"process":{"process_graph":{"gt1":{"arguments":{"x":{"from_parameter":"x"},"y":0.057},"process_id":"gt","result":true}}}},"process_id":"apply"},"apply2":{"arguments":{"data":{"from_node":"applykernel2"},"process":{"process_graph":{"gt2":{"arguments":{"x":{"from_parameter":"x"},"y":0.025},"process_id":"gt","result":true}}}},"process_id":"apply"},"applykernel1":{"arguments":{"border":0,"data":{"from_node":"reducedimension1"},"factor":1.0,"kernel":[[6.872607261923617e-06,1.7492979057400437e-05,3.931036344580996e-05,7.799223670318583e-05,0.00013661447741263532,0.000211272566600721,0.0002884632716289383,0.00034772744916723784,0.00037007390091435473,0.00034772744916723784,0.0002884632716289383,0.000211272566600721,0.00013661447741263532,7.799223670318583e-05,3.931036344580996e-05,1.7492979057400437e-05,6.872607261923617e-06],[1.7492979057400437e-05,4.452521505164559e-05,0.00010005742191994265,0.0001985151357109238,0.00034772744916723784,0.0005377561152701768,0.0007342310970381059,0.0008850773446150938,0.0009419561967772516,0.0008850773446150938,0.0007342310970381059,0.0005377561152701768,0.00034772744916723784,0.0001985151357109238,0.00010005742191994265,4.452521505164559e-05,1.7492979057400437e-05],[3.931036344580996e-05,0.00010005742191994265,0.00022484984451288814,0.00044610481203253546,0.000781415924754435,0.0012084498739243883,0.0016499700355825442,0.0019889529382219554,0.002116771552966652,0.0019889529382219554,0.0016499700355825442,0.0012084498739243883,0.000781415924754435,0.00044610481203253546,0.00022484984451288814,0.00010005742191994265,3.931036344580996e-05],[7.799223670318583e-05,0.0001985151357109238,0.00044610481203253546,0.000885077344615094,0.0015503386492750101,0.0023975791712272233,0.0032735605140286252,0.003946106694310862,0.004199700372476264,0.003946106694310862,0.0032735605140286252,0.0023975791712272233,0.0015503386492750101,0.000885077344615094,0.00044610481203253546,0.0001985151357109238,7.799223670318583e-05],[0.00013661447741263532,0.00034772744916723784,0.000781415924754435,0.0015503386492750101,0.002715638290889853,0.004199700372476263,0.005734106082950569,0.006912166218663649,0.0073563715560430705,0.006912166218663649,0.005734106082950569,0.004199700372476263,0.002715638290889853,0.0015503386492750101,0.000781415924754435,0.00034772744916723784,0.00013661447741263532],[0.000211272566600721,0.0005377561152701768,0.0012084498739243883,0.0023975791712272233,0.004199700372476263,0.006494783667525125,0.00886772274981251,0.010689577894273768,0.011376535847071307,0.010689577894273768,0.00886772274981251,0.006494783667525125,0.004199700372476263,0.0023975791712272233,0.0012084498739243883,0.0005377561152701768,0.000211272566600721],[0.0002884632716289383,0.0007342310970381059,0.0016499700355825442,0.0032735605140286252,0.005734106082950569,0.00886772274981251,0.012107640653334839,0.01459513017391471,0.015533075604899122,0.01459513017391471,0.012107640653334839,0.00886772274981251,0.005734106082950569,0.0032735605140286252,0.0016499700355825442,0.0007342310970381059,0.0002884632716289383],[0.00034772744916723784,0.0008850773446150938,0.0019889529382219554,0.003946106694310862,0.006912166218663649,0.010689577894273768,0.01459513017391471,0.01759366922859935,0.0187243135922042,0.01759366922859935,0.01459513017391471,0.010689577894273768,0.006912166218663649,0.003946106694310862,0.0019889529382219554,0.0008850773446150938,0.00034772744916723784],[0.00037007390091435473,0.0009419561967772516,0.002116771552966652,0.004199700372476264,0.0073563715560430705,0.011376535847071307,0.015533075604899122,0.0187243135922042,0.019927617993936483,0.0187243135922042,0.015533075604899122,0.011376535847071307,0.0073563715560430705,0.004199700372476264,0.002116771552966652,0.0009419561967772516,0.00037007390091435473],[0.00034772744916723784,0.0008850773446150938,0.0019889529382219554,0.003946106694310862,0.006912166218663649,0.010689577894273768,0.01459513017391471,0.01759366922859935,0.0187243135922042,0.01759366922859935,0.01459513017391471,0.010689577894273768,0.006912166218663649,0.003946106694310862,0.0019889529382219554,0.0008850773446150938,0.00034772744916723784],[0.0002884632716289383,0.0007342310970381059,0.0016499700355825442,0.0032735605140286252,0.005734106082950569,0.00886772274981251,0.012107640653334839,0.01459513017391471,0.015533075604899122,0.01459513017391471,0.012107640653334839,0.00886772274981251,0.005734106082950569,0.0032735605140286252,0.0016499700355825442,0.0007342310970381059,0.0002884632716289383],[0.000211272566600721,0.0005377561152701768,0.0012084498739243883,0.0023975791712272233,0.004199700372476263,0.006494783667525125,0.00886772274981251,0.010689577894273768,0.011376535847071307,0.010689577894273768,0.00886772274981251,0.006494783667525125,0.004199700372476263,0.0023975791712272233,0.0012084498739243883,0.0005377561152701768,0.000211272566600721],[0.00013661447741263532,0.00034772744916723784,0.000781415924754435,0.0015503386492750101,0.002715638290889853,0.004199700372476263,0.005734106082950569,0.006912166218663649,0.0073563715560430705,0.006912166218663649,0.005734106082950569,0.004199700372476263,0.002715638290889853,0.0015503386492750101,0.000781415924754435,0.00034772744916723784,0.00013661447741263532],[7.799223670318583e-05,0.0001985151357109238,0.00044610481203253546,0.000885077344615094,0.0015503386492750101,0.0023975791712272233,0.0032735605140286252,0.003946106694310862,0.004199700372476264,0.003946106694310862,0.0032735605140286252,0.0023975791712272233,0.0015503386492750101,0.000885077344615094,0.00044610481203253546,0.0001985151357109238,7.799223670318583e-05],[3.931036344580996e-05,0.00010005742191994265,0.00022484984451288814,0.00044610481203253546,0.000781415924754435,0.0012084498739243883,0.0016499700355825442,0.0019889529382219554,0.002116771552966652,0.0019889529382219554,0.0016499700355825442,0.0012084498739243883,0.000781415924754435,0.00044610481203253546,0.00022484984451288814,0.00010005742191994265,3.931036344580996e-05],[1.7492979057400437e-05,4.452521505164559e-05,0.00010005742191994265,0.0001985151357109238,0.00034772744916723784,0.0005377561152701768,0.0007342310970381059,0.0008850773446150938,0.0009419561967772516,0.0008850773446150938,0.0007342310970381059,0.0005377561152701768,0.00034772744916723784,0.0001985151357109238,0.00010005742191994265,4.452521505164559e-05,1.7492979057400437e-05],[6.872607261923617e-06,1.7492979057400437e-05,3.931036344580996e-05,7.799223670318583e-05,0.00013661447741263532,0.000211272566600721,0.0002884632716289383,0.00034772744916723784,0.00037007390091435473,0.00034772744916723784,0.0002884632716289383,0.000211272566600721,0.00013661447741263532,7.799223670318583e-05,3.931036344580996e-05,1.7492979057400437e-05,6.872607261923617e-06]],"replace_invalid":0},"process_id":"apply_kernel"},"applykernel2":{"arguments":{"border":0,"data":{"from_node":"reducedimension2"},"factor":1.0,"kernel":[[1.9240785667560563e-08,2.1024605688448892e-08,2.2953342210018216e-08,2.5036696124511825e-08,2.7284821654195476e-08,2.970832969963869e-08,3.231828936675165e-08,3.512622750060166e-08,3.814412605164715e-08,4.138441709872621e-08,4.4859975353025586e-08,4.85841079684406e-08,5.257054148631848e-08,5.683340574665413e-08,6.138721460347203e-08,6.624684328946431e-08,7.142750228404095e-08,7.69447075498509e-08,8.281424701560523e-08,8.905214319772361e-08,9.567461186995482e-08,1.0269801670870804e-07,1.1013881986237013e-07,1.180135284153471e-07,1.2633863674191953e-07,1.351305647711742e-07,1.44405592212186e-07,1.5417978881816751e-07,1.6446894079934937e-07,1.7528847352675266e-07,1.866533707025858e-07,1.9857809020755145e-07,2.1107647687065554e-07,2.2416167244293764e-07,2.378460230926166e-07,2.5214098477519995e-07,2.670570268678228e-07,2.826035344921642e-07,2.987887099843936e-07,3.156194740033942e-07,3.3310136679964454e-07,3.5123845019625447e-07,3.7003321086040276e-07,3.894864654674403e-07,4.0959726838087123e-07,4.303628224889505e-07,4.517783938524205e-07,4.7383723082763523e-07,4.965304883346967e-07,5.198471579409927e-07,5.437740044264335e-07,5.682955094875411e-07,5.933938232231608e-07,6.190487240248422e-07,6.452375874697512e-07,6.719353647833146e-07,6.991145714026495e-07,7.267452861302724e-07,7.54795161320683e-07,7.832294444903971e-07,8.120110116850101e-07,8.411004128752333e-07,8.704559295878346e-07,9.000336449074435e-07,9.297875259116344e-07,9.59669518525095e-07,9.896296546994813e-07,1.0196161717443682e-06,1.049575643552077e-06,1.079453123375744e-06,1.1091922977364429e-06,1.1387356509521463e-06,1.1680246396995243e-06,1.1969998769396995e-06,1.225601324461851e-06,1.2537684932246284e-06,1.2814406506054494e-06,1.3085570336025288e-06,1.3350570669745875e-06,1.3608805852492316e-06,1.3859680574835336e-06,1.4102608136199075e-06,1.4337012712474588e-06,1.4562331615539585e-06,1.4778017532368626e-06,1.498354073133591e-06,1.5178391223318609e-06,1.5362080865303387e-06,1.553414539438296e-06,1.5694146380303457e-06,1.584167308508523e-06,1.5976344218688622e-06,1.6097809580228796e-06,1.6205751574856993e-06,1.6299886597115317e-06,1.6379966272333465e-06,1.6445778548463115e-06,1.649714863163296e-06,1.6533939759647603e-06,1.6556053808639816e-06,1.656343172910983e-06,1.6556053808639816e-06,1.6533939759647603e-06,1.649714863163296e-06,1.6445778548463115e-06,1.6379966272333465e-06,1.6299886597115317e-06,1.6205751574856993e-06,1.6097809580228796e-06,1.5976344218688622e-06,1.584167308508523e-06,1.5694146380303457e-06,1.553414539438296e-06,1.5362080865303387e-06,1.5178391223318609e-06,1.498354073133591e-06,1.4778017532368626e-06,1.4562331615539585e-06,1.4337012712474588e-06,1.4102608136199075e-06,1.3859680574835336e-06,1.3608805852492316e-06,1.3350570669745875e-06,1.3085570336025288e-06,1.2814406506054494e-06,1.2537684932246284e-06,1.225601324461851e-06,1.1969998769396995e-06,1.1680246396995243e-06,1.1387356509521463e-06,1.1091922977364429e-06,1.079453123375744e-06,1.049575643552077e-06,1.0196161717443682e-06,9.896296546994813e-07,9.59669518525095e-07,9.297875259116344e-07,9.000336449074435e-07,8.704559295878346e-07,8.411004128752333e-07,8.120110116850101e-07,7.832294444903971e-07,7.54795161320683e-07,7.267452861302724e-07,6.991145714026495e-07,6.719353647833146e-07,6.452375874697512e-07,6.190487240248422e-07,5.933938232231608e-07,5.682955094875411e-07,5.437740044264335e-07,5.198471579409927e-07,4.965304883346967e-07,4.7383723082763523e-07,4.517783938524205e-07,4.303628224889505e-07,4.0959726838087123e-07,3.894864654674403e-07,3.7003321086040276e-07,3.5123845019625447e-07,3.3310136679964454e-07,3.156194740033942e-07,2.987887099843936e-07,2.826035344921642e-07,2.670570268678228e-07,2.5214098477519995e-07,2.378460230926166e-07,2.2416167244293764e-07,2.1107647687065554e-07,1.9857809020755145e-07,1.866533707025858e-07,1.7528847352675266e-07,1.6446894079934937e-07,1.5417978881816751e-07,1.44405592212186e-07,1.351305647711742e-07,1.2633863674191953e-07,1.180135284153471e-07,1.1013881986237013e-07,1.0269801670870804e-07,9.567461186995482e-08,8.905214319772361e-08,8.281424701560523e-08,7.69447075498509e-08,7.142750228404095e-08,6.624684328946431e-08,6.138721460347203e-08,5.683340574665413e-08,5.257054148631848e-08,4.85841079684406e-08,4.4859975353025586e-08,4.138441709872621e-08,3.814412605164715e-08,3.512622750060166e-08,3.231828936675165e-08,2.970832969963869e-08,2.7284821654195476e-08,2.5036696124511825e-08,2.2953342210018216e-08,2.1024605688448892e-08,1.9240785667560563e-08],[2.1024605688448892e-08,2.297380429220283e-08,2.508135465649348e-08,2.7357857046703193e-08,2.9814407086622995e-08,3.246259941715411e-08,3.531452936491713e-08,3.838279243284831e-08,4.168048142225624e-08,4.522118099438996e-08,4.9018959479448184e-08,5.3088357742254135e-08,5.744437491664143e-08,6.21024508250511e-08,6.707844490602989e-08,7.238861148033571e-08,7.80495711962858e-08,8.407827850689504e-08,9.049198504530999e-08,9.73081987810949e-08,1.0454463885809825e-07,1.1221918603493669e-07,1.203498286715763e-07,1.2895460423003652e-07,1.380515362838511e-07,1.476585670595199e-07,1.5779348556368404e-07,1.684738513820405e-07,1.7971691426993442e-07,1.9153952968997111e-07,2.0395807048867188e-07,2.1698833494195522e-07,2.3064545143780402e-07,2.4494378010362863e-07,2.5989681172525504e-07,2.7551706434386373e-07,2.91815977956234e-07,3.088038077819837e-07,3.264895165987595e-07,3.44880666682169e-07,3.639833119212652e-07,3.8380189071221046e-07,4.0433912026197375e-07,4.2559589296016587e-07,4.475711754999979e-07,4.7026191144850916e-07,4.936629279812649e-07,5.17766847507357e-07,5.425640049164125e-07,5.680423711801517e-07,5.941874840365658e-07,6.209823864747912e-07,6.484075737230459e-07,6.764409494204328e-07,7.050577916259027e-07,7.342307292841626e-07,7.63929729728818e-07,7.9412209775762e-07,8.247724867634531e-07,8.5584292234784e-07,8.872928387814787e-07,9.190791286089606e-07,9.511562056226958e-07,9.83476081354611e-07,1.0159884551538174e-06,1.0486408178347437e-06,1.0813785687936715e-06,1.1141451464029024e-06,1.1468821714014837e-06,1.1795296029102836e-06,1.2120259066078964e-06,1.2443082345131418e-06,1.276312615730549e-06,1.3079741574279356e-06,1.3392272552307937e-06,1.3700058121374291e-06,1.4002434649824145e-06,1.4298738174046518e-06,1.458830678210893e-06,1.4870483039665922e-06,1.5144616445941208e-06,1.5410065907141753e-06,1.566620221430251e-06,1.5912410512287049e-06,1.6148092746486434e-06,1.6372670073669123e-06,1.6585585223440965e-06,1.6786304796877798e-06,1.6974321489094574e-06,1.7149156222814053e-06,1.7310360180393722e-06,1.7457516722259963e-06,1.759024318028047e-06,1.7708192515276114e-06,1.781105482862704e-06,1.7898558718759715e-06,1.7970472474205685e-06,1.8026605095892217e-06,1.8066807142352578e-06,1.8090971392621225e-06,1.809903332269845e-06,1.8090971392621225e-06,1.8066807142352578e-06,1.8026605095892217e-06,1.7970472474205685e-06,1.7898558718759715e-06,1.781105482862704e-06,1.7708192515276114e-06,1.759024318028047e-06,1.7457516722259963e-06,1.7310360180393722e-06,1.7149156222814053e-06,1.6974321489094574e-06,1.6786304796877798e-06,1.6585585223440965e-06,1.6372670073669123e-06,1.6148092746486434e-06,1.5912410512287049e-06,1.566620221430251e-06,1.5410065907141753e-06,1.5144616445941208e-06,1.4870483039665922e-06,1.458830678210893e-06,1.4298738174046518e-06,1.4002434649824145e-06,1.3700058121374291e-06,1.3392272552307937e-06,1.3079741574279356e-06,1.276312615730549e-06,1.2443082345131418e-06,1.2120259066078964e-06,1.1795296029102836e-06,1.1468821714014837e-06,1.1141451464029024e-06,1.0813785687936715e-06,1.0486408178347437e-06,1.0159884551538174e-06,9.83476081354611e-07,9.511562056226958e-07,9.190791286089606e-07,8.872928387814787e-07,8.5584292234784e-07,8.247724867634531e-07,7.9412209775762e-07,7.63929729728818e-07,7.342307292841626e-07,7.050577916259027e-07,6.764409494204328e-07,6.484075737230459e-07,6.209823864747912e-07,5.941874840365658e-07,5.680423711801517e-07,5.425640049164125e-07,5.17766847507357e-07,4.936629279812649e-07,4.7026191144850916e-07,4.475711754999979e-07,4.2559589296016587e-07,4.0433912026197375e-07,3.8380189071221046e-07,3.639833119212652e-07,3.44880666682169e-07,3.264895165987595e-07,3.088038077819837e-07,2.91815977956234e-07,2.7551706434386373e-07,2.5989681172525504e-07,2.4494378010362863e-07,2.3064545143780402e-07,2.1698833494195522e-07,2.0395807048867188e-07,1.9153952968997111e-07,1.7971691426993442e-07,1.684738513820405e-07,1.5779348556368404e-07,1.476585670595199e-07,1.380515362838511e-07,1.2895460423003652e-07,1.203498286715763e-07,1.1221918603493669e-07,1.0454463885809825e-07,9.73081987810949e-08,9.049198504530999e-08,8.407827850689504e-08,7.80495711962858e-08,7.238861148033571e-08,6.707844490602989e-08,6.21024508250511e-08,5.744437491664143e-08,5.3088357742254135e-08,4.9018959479448184e-08,4.522118099438996e-08,4.168048142225624e-08,3.838279243284831e-08,3.531452936491713e-08,3.246259941715411e-08,2.9814407086622995e-08,2.7357857046703193e-08,2.508135465649348e-08,2.297380429220283e-08,2.1024605688448892e-08],[2.2953342210018216e-08,2.508135465649348e-08,2.7382245596055287e-08,2.9867587731775656e-08,3.254949456788302e-08,3.54406244041026e-08,3.85541821573388e-08,4.190391880554038e-08,4.550412824574291e-08,4.936964135673083e-08,5.351581705662892e-08,5.795853014714633e-08,6.271415573927626e-08,6.779955006011772e-08,7.323202744724332e-08,7.9029333345789e-08,8.520961313428075e-08,9.179137661821992e-08,9.879345804568524e-08,1.0623497151673482e-07,1.1413526167822904e-07,1.2251384961786796e-07,1.3139037389573765e-07,1.407845266784579e-07,1.507159849700733e-07,1.612043369650529e-07,1.7226900358206035e-07,1.839291552724012e-07,1.9620362423408874e-07,2.0911081220112073e-07,2.226685940176073e-07,2.3689421724761012e-07,2.5180419811367357e-07,2.674142140997664e-07,2.8373899359739023e-07,3.0079220301662046e-07,3.185863318264559e-07,3.3713257603070354e-07,3.564407206263104e-07,3.7651902163017804e-07,3.973740882976329e-07,4.1901076619046496e-07,4.414320217843526e-07,4.6463882933414835e-07,4.886300607404871e-07,5.134023791820876e-07,5.389501372945615e-07,5.652652806881473e-07,5.923372576031985e-07,6.201529355031693e-07,6.4869652539996e-07,6.779495146955711e-07,7.078906093068661e-07,7.384956858167028e-07,7.697377543646578e-07,8.015869329539837e-07,8.340104338083272e-07,8.669725623621415e-07,9.004347294127983e-07,9.343554769003282e-07,9.686905177127413e-07,1.0033927898413388e-06,1.0384125251316845e-06,1.0736973327924288e-06,1.109192297736443e-06,1.1448400937373306e-06,1.1805811112898961e-06,1.2163535999662952e-06,1.2520938249610117e-06,1.2877362374183039e-06,1.3232136580360795e-06,1.358457473341126e-06,1.3933978439330286e-06,1.427963923898854e-06,1.4620840905085086e-06,1.495686183212519e-06,1.528697750880587e-06,1.5610463061414698e-06,1.5926595856132782e-06,1.6234658147489161e-06,1.653393975964761e-06,1.682374078672459e-06,1.7103374297944317e-06,1.7372169033138334e-06,1.762947207389749e-06,1.7874651475586224e-06,1.8107098845436085e-06,1.8326231852048225e-06,1.8531496651854597e-06,1.8722370218414057e-06,1.8898362560851585e-06,1.9059018818284012e-06,1.9203921217711273e-06,1.9332690883583604e-06,1.9444989488078007e-06,1.9540520732025507e-06,1.9619031647417644e-06,1.968031371347914e-06,1.9724203779415297e-06,1.975058478811928e-06,1.9759386296346257e-06,1.975058478811928e-06,1.9724203779415297e-06,1.968031371347914e-06,1.9619031647417644e-06,1.9540520732025507e-06,1.9444989488078007e-06,1.9332690883583604e-06,1.9203921217711273e-06,1.9059018818284012e-06,1.8898362560851585e-06,1.8722370218414057e-06,1.8531496651854597e-06,1.8326231852048225e-06,1.8107098845436085e-06,1.7874651475586224e-06,1.762947207389749e-06,1.7372169033138334e-06,1.7103374297944317e-06,1.682374078672459e-06,1.653393975964761e-06,1.6234658147489161e-06,1.5926595856132782e-06,1.5610463061414698e-06,1.528697750880587e-06,1.495686183212519e-06,1.4620840905085086e-06,1.427963923898854e-06,1.3933978439330286e-06,1.358457473341126e-06,1.3232136580360795e-06,1.2877362374183039e-06,1.2520938249610117e-06,1.2163535999662952e-06,1.1805811112898961e-06,1.1448400937373306e-06,1.109192297736443e-06,1.0736973327924288e-06,1.0384125251316845e-06,1.0033927898413388e-06,9.686905177127413e-07,9.343554769003282e-07,9.004347294127983e-07,8.669725623621415e-07,8.340104338083272e-07,8.015869329539837e-07,7.697377543646578e-07,7.384956858167028e-07,7.078906093068661e-07,6.779495146955711e-07,6.4869652539996e-07,6.201529355031693e-07,5.923372576031985e-07,5.652652806881473e-07,5.389501372945615e-07,5.134023791820876e-07,4.886300607404871e-07,4.6463882933414835e-07,4.414320217843526e-07,4.1901076619046496e-07,3.973740882976329e-07,3.7651902163017804e-07,3.564407206263104e-07,3.3713257603070354e-07,3.185863318264559e-07,3.0079220301662046e-07,2.8373899359739023e-07,2.674142140997664e-07,2.5180419811367357e-07,2.3689421724761012e-07,2.226685940176073e-07,2.0911081220112073e-07,1.9620362423408874e-07,1.839291552724012e-07,1.7226900358206035e-07,1.612043369650529e-07,1.507159849700733e-07,1.407845266784579e-07,1.3139037389573765e-07,1.2251384961786796e-07,1.1413526167822904e-07,1.0623497151673482e-07,9.879345804568524e-08,9.179137661821992e-08,8.520961313428075e-08,7.9029333345789e-08,7.323202744724332e-08,6.779955006011772e-08,6.271415573927626e-08,5.795853014714633e-08,5.351581705662892e-08,4.936964135673083e-08,4.550412824574291e-08,4.190391880554038e-08,3.85541821573388e-08,3.54406244041026e-08,3.254949456788302e-08,2.9867587731775656e-08,2.7382245596055287e-08,2.508135465649348e-08,2.2953342210018216e-08],[2.5036696124511825e-08,2.7357857046703193e-08,2.9867587731775656e-08,3.257851127607403e-08,3.550384066277069e-08,3.865738311875108e-08,4.205354210164067e-08,4.570731669319273e-08,4.963429817215173e-08,5.385066353801469e-08,5.837316575696719e-08,6.321912050281362e-08,6.840638916907964e-08,7.395335793377026e-08,7.987891266563769e-08,8.620240947035914e-08,9.294364068684817e-08,1.0012279615810982e-07,1.077604196176695e-07,1.1587736005172152e-07,1.2449471791878067e-07,1.336337861328067e-07,1.433159857424948e-07,1.5356279626865636e-07,1.6439568069330074e-07,1.7583600512808433e-07,1.87904953226115e-07,2.0062343543954009e-07,2.1401199326574605e-07,2.2809069866715347e-07,2.4287904889327666e-07,2.583958569786772e-07,2.7465913823638386e-07,2.916859931129691e-07,3.0949248681841643e-07,3.280935261908256e-07,3.4750273430248026e-07,3.67732323359453e-07,3.887929664912997e-07,4.106936690700687e-07,4.3344164023836366e-07,4.570421653640835e-07,4.814984801742712e-07,5.068116473517583e-07,5.329804364055452e-07,5.600012076486669e-07,5.878678011352297e-07,6.16571431420958e-07,6.461005890185867e-07,6.764409494204334e-07,7.075752905551515e-07,7.394834195337781e-07,7.721421095214639e-07,8.055250475456172e-07,8.396027940184126e-07,8.743427547117285e-07,9.097091658755345e-07,9.456630931366698e-07,9.821624447539383e-07,1.01916199973774e-06,1.0566134512683108e-06,1.094465465766426e-06,1.1326637578845363e-06,1.1711511815952464e-06,1.209867837458357e-06,1.2487511960479948e-06,1.2877362374183043e-06,1.3267556063805133e-06,1.3657397832566742e-06,1.404617269666834e-06,1.4433147887976673e-06,1.4817574994925713e-06,1.5198692233967916e-06,1.5575726842872159e-06,1.5947897586159728e-06,1.6314417362007794e-06,1.6674495899040384e-06,1.7027342530578084e-06,1.7372169033138345e-06,1.7708192515276127e-06,1.8034638342236985e-06,1.8350743081368657e-06,1.8655757452808774e-06,1.8948949269640748e-06,1.922960635149213e-06,1.9497039395442967e-06,1.975058478811929e-06,1.998960734296989e-06,2.021350294696467e-06,2.0421701101308627e-06,2.061366734123713e-06,2.078890552054164e-06,2.0946959947168433e-06,2.1087417357030663e-06,2.1209908714071727e-06,2.1314110825608504e-06,2.139974776305948e-06,2.1466592079317456e-06,2.1514465815249852e-06,2.1543241289093108e-06,2.1552841663840277e-06,2.1543241289093108e-06,2.1514465815249852e-06,2.1466592079317456e-06,2.139974776305948e-06,2.1314110825608504e-06,2.1209908714071727e-06,2.1087417357030663e-06,2.0946959947168433e-06,2.078890552054164e-06,2.061366734123713e-06,2.0421701101308627e-06,2.021350294696467e-06,1.998960734296989e-06,1.975058478811929e-06,1.9497039395442967e-06,1.922960635149213e-06,1.8948949269640748e-06,1.8655757452808774e-06,1.8350743081368657e-06,1.8034638342236985e-06,1.7708192515276127e-06,1.7372169033138345e-06,1.7027342530578084e-06,1.6674495899040384e-06,1.6314417362007794e-06,1.5947897586159728e-06,1.5575726842872159e-06,1.5198692233967916e-06,1.4817574994925713e-06,1.4433147887976673e-06,1.404617269666834e-06,1.3657397832566742e-06,1.3267556063805133e-06,1.2877362374183043e-06,1.2487511960479948e-06,1.209867837458357e-06,1.1711511815952464e-06,1.1326637578845363e-06,1.094465465766426e-06,1.0566134512683108e-06,1.01916199973774e-06,9.821624447539383e-07,9.456630931366698e-07,9.097091658755345e-07,8.743427547117285e-07,8.396027940184126e-07,8.055250475456172e-07,7.721421095214639e-07,7.394834195337781e-07,7.075752905551515e-07,6.764409494204334e-07,6.461005890185867e-07,6.16571431420958e-07,5.878678011352297e-07,5.600012076486669e-07,5.329804364055452e-07,5.068116473517583e-07,4.814984801742712e-07,4.570421653640835e-07,4.3344164023836366e-07,4.106936690700687e-07,3.887929664912997e-07,3.67732323359453e-07,3.4750273430248026e-07,3.280935261908256e-07,3.0949248681841643e-07,2.916859931129691e-07,2.7465913823638386e-07,2.583958569786772e-07,2.4287904889327666e-07,2.2809069866715347e-07,2.1401199326574605e-07,2.0062343543954009e-07,1.87904953226115e-07,1.7583600512808433e-07,1.6439568069330074e-07,1.5356279626865636e-07,1.433159857424948e-07,1.336337861328067e-07,1.2449471791878067e-07,1.1587736005172152e-07,1.077604196176695e-07,1.0012279615810982e-07,9.294364068684817e-08,8.620240947035914e-08,7.987891266563769e-08,7.395335793377026e-08,6.840638916907964e-08,6.321912050281362e-08,5.837316575696719e-08,5.385066353801469e-08,4.963429817215173e-08,4.570731669319273e-08,4.205354210164067e-08,3.865738311875108e-08,3.550384066277069e-08,3.257851127607403e-08,2.9867587731775656e-08,2.7357857046703193e-08,2.5036696124511825e-08],[2.7284821654195476e-08,2.9814407086622995e-08,3.254949456788302e-08,3.550384066277069e-08,3.8691844790745527e-08,4.2128553974035836e-08,4.582966500308713e-08,4.981152377548027e-08,5.4091121561061264e-08,5.868608794418026e-08,6.361468019377878e-08,6.889576881374542e-08,7.454881902962029e-08,8.059386797351034e-08,8.705149733711029e-08,9.394280127312687e-08,1.0128934933828958e-07,1.091131442865911e-07,1.1743657453951346e-07,1.2628236118082714e-07,1.356734993471323e-07,1.4563319391166778e-07,1.561847893880382e-07,1.6735169401236406e-07,1.7915729799689127e-07,1.9162488598521221e-07,2.047775437788303e-07,2.186380594466949e-07,2.332288189733589e-07,2.4857169664735347e-07,2.6468794043898193e-07,2.8159805266573206e-07,2.9932166629357444e-07,3.178774172732199e-07,3.3728281336156496e-07,3.5755409992968226e-07,3.7870612330936396e-07,4.00752192279973e-07,4.23703938345721e-07,4.4757117549999805e-07,4.723617602175258e-07,4.980814524563986e-07,5.247337784900054e-07,5.523198964228898e-07,5.808384652743045e-07,6.10285518538077e-07,6.406543431469454e-07,6.719353647833148e-07,7.041160404860137e-07,7.371807595037088e-07,7.711107533398357e-07,8.058840159209369e-07,8.414752347999033e-07,8.778557342776411e-07,9.149934312909783e-07,9.528528048711401e-07,9.913948799258698e-07,1.0305772260393238e-06,1.070353971917385e-06,1.1106758360322457e-06,1.1514901739393123e-06,1.1927410426520557e-06,1.2343692823668446e-06,1.2763126157305495e-06,1.31850576473944e-06,1.3608805852492324e-06,1.4033662189638551e-06,1.4458892626553428e-06,1.4883739542501049e-06,1.5307423752985233e-06,1.5729146692263505e-06,1.6148092746486442e-06,1.6563431729109838e-06,1.697432148909458e-06,1.737991064131379e-06,1.7779341407538546e-06,1.8171752555382416e-06,1.855628242165995e-06,1.8932072005765074e-06,1.929826811791004e-06,1.965402656639251e-06,1.999851536748514e-06,2.033091796107505e-06,2.065043641482574e-06,2.0956294599396854e-06,2.124774131714063e-06,2.152405336670229e-06,2.1784538526085757e-06,2.2028538437007513e-06,2.225543137374951e-06,2.2464634880235646e-06,2.2655608259692387e-06,2.2827854902009785e-06,2.298092443478848e-06,2.3114414685036548e-06,2.322797343955959e-06,2.332129999326065e-06,2.3394146475824693e-06,2.3446318948595837e-06,2.347767826485401e-06,2.3488140688150084e-06,2.347767826485401e-06,2.3446318948595837e-06,2.3394146475824693e-06,2.332129999326065e-06,2.322797343955959e-06,2.3114414685036548e-06,2.298092443478848e-06,2.2827854902009785e-06,2.2655608259692387e-06,2.2464634880235646e-06,2.225543137374951e-06,2.2028538437007513e-06,2.1784538526085757e-06,2.152405336670229e-06,2.124774131714063e-06,2.0956294599396854e-06,2.065043641482574e-06,2.033091796107505e-06,1.999851536748514e-06,1.965402656639251e-06,1.929826811791004e-06,1.8932072005765074e-06,1.855628242165995e-06,1.8171752555382416e-06,1.7779341407538546e-06,1.737991064131379e-06,1.697432148909458e-06,1.6563431729109838e-06,1.6148092746486442e-06,1.5729146692263505e-06,1.5307423752985233e-06,1.4883739542501049e-06,1.4458892626553428e-06,1.4033662189638551e-06,1.3608805852492324e-06,1.31850576473944e-06,1.2763126157305495e-06,1.2343692823668446e-06,1.1927410426520557e-06,1.1514901739393123e-06,1.1106758360322457e-06,1.070353971917385e-06,1.0305772260393238e-06,9.913948799258698e-07,9.528528048711401e-07,9.149934312909783e-07,8.778557342776411e-07,8.414752347999033e-07,8.058840159209369e-07,7.711107533398357e-07,7.371807595037088e-07,7.041160404860137e-07,6.719353647833148e-07,6.406543431469454e-07,6.10285518538077e-07,5.808384652743045e-07,5.523198964228898e-07,5.247337784900054e-07,4.980814524563986e-07,4.723617602175258e-07,4.4757117549999805e-07,4.23703938345721e-07,4.00752192279973e-07,3.7870612330936396e-07,3.5755409992968226e-07,3.3728281336156496e-07,3.178774172732199e-07,2.9932166629357444e-07,2.8159805266573206e-07,2.6468794043898193e-07,2.4857169664735347e-07,2.332288189733589e-07,2.186380594466949e-07,2.047775437788303e-07,1.9162488598521221e-07,1.7915729799689127e-07,1.6735169401236406e-07,1.561847893880382e-07,1.4563319391166778e-07,1.356734993471323e-07,1.2628236118082714e-07,1.1743657453951346e-07,1.091131442865911e-07,1.0128934933828958e-07,9.394280127312687e-08,8.705149733711029e-08,8.059386797351034e-08,7.454881902962029e-08,6.889576881374542e-08,6.361468019377878e-08,5.868608794418026e-08,5.4091121561061264e-08,4.981152377548027e-08,4.582966500308713e-08,4.2128553974035836e-08,3.8691844790745527e-08,3.550384066277069e-08,3.254949456788302e-08,2.9814407086622995e-08,2.7284821654195476e-08],[2.970832969963869e-08,3.246259941715411e-08,3.54406244041026e-08,3.865738311875108e-08,4.2128553974035836e-08,4.5870520507405684e-08,4.990037373861117e-08,5.423591144990363e-08,5.8895634119424336e-08,6.389873723655484e-08,6.926509972782817e-08,7.501526822382984e-08,8.117043690150378e-08,8.775242264257326e-08,9.478363525753261e-08,1.0228704253599354e-07,1.1028612989819868e-07,1.1880485443934917e-07,1.2786759317811393e-07,1.374990853433705e-07,1.4772436855890338e-07,1.585687088144836e-07,1.7005752414346448e-07,1.8221630196171277e-07,1.950705100602939e-07,2.086455012847405e-07,2.2296641197683015e-07,2.3805805430041536e-07,2.5394480262078146e-07,2.7065047415703533e-07,2.881982041788599e-07,3.066103160723211e-07,3.2590818665393026e-07,3.4611210716747836e-07,3.672411404538655e-07,3.8931297483981196e-07,4.123437753464895e-07,4.363480328732788e-07,4.613384120645161e-07,4.873255986177292e-07,5.143181468399345e-07,5.423223283035205e-07,5.713419824945496e-07,6.013783703833898e-07,6.324300318799346e-07,6.6449264816273e-07,6.975589098926114e-07,7.316183923364667e-07,7.666574384350482e-07,8.026590508499329e-07,8.396027940184124e-07,8.774647072309775e-07,9.162172297238542e-07,9.55829138748591e-07,9.96265501541817e-07,1.0374876420709374e-06,1.0794531233757443e-06,1.1221157462617126e-06,1.1654255650283851e-06,1.2093289208358848e-06,1.2537684932246288e-06,1.2986833702081204e-06,1.3440091372567892e-06,1.3896779853828022e-06,1.4356188384222192e-06,1.481757499492571e-06,1.5280168164816569e-06,1.5743168662979842e-06,1.6205751574856999e-06,1.6667068506780568e-06,1.712624996234464e-06,1.7582407882779643e-06,1.803463834223698e-06,1.8482024387655944e-06,1.8923639011692614e-06,1.935854824604928e-06,1.978581436146356e-06,2.0204499159609352e-06,2.0613667341237122e-06,2.101238993404746e-06,2.1399747763059477e-06,2.177483494561101e-06,2.213676239261946e-06,2.248466129734566e-06,2.2817686592644757e-06,2.313502035756157e-06,2.343587515413666e-06,2.3719497275435632e-06,2.3985169886098686e-06,2.423221603713021e-06,2.4460001537207132e-06,2.4667937663477645e-06,2.4855483695644367e-06,2.502214925807291e-06,2.5167496455731685e-06,2.529114179094436e-06,2.539275784921373e-06,2.547207474374578e-06,2.552888130975433e-06,2.556302604114969e-06,2.5574417763795946e-06,2.556302604114969e-06,2.552888130975433e-06,2.547207474374578e-06,2.539275784921373e-06,2.529114179094436e-06,2.5167496455731685e-06,2.502214925807291e-06,2.4855483695644367e-06,2.4667937663477645e-06,2.4460001537207132e-06,2.423221603713021e-06,2.3985169886098686e-06,2.3719497275435632e-06,2.343587515413666e-06,2.313502035756157e-06,2.2817686592644757e-06,2.248466129734566e-06,2.213676239261946e-06,2.177483494561101e-06,2.1399747763059477e-06,2.101238993404746e-06,2.0613667341237122e-06,2.0204499159609352e-06,1.978581436146356e-06,1.935854824604928e-06,1.8923639011692614e-06,1.8482024387655944e-06,1.803463834223698e-06,1.7582407882779643e-06,1.712624996234464e-06,1.6667068506780568e-06,1.6205751574856999e-06,1.5743168662979842e-06,1.5280168164816569e-06,1.481757499492571e-06,1.4356188384222192e-06,1.3896779853828022e-06,1.3440091372567892e-06,1.2986833702081204e-06,1.2537684932246288e-06,1.2093289208358848e-06,1.1654255650283851e-06,1.1221157462617126e-06,1.0794531233757443e-06,1.0374876420709374e-06,9.96265501541817e-07,9.55829138748591e-07,9.162172297238542e-07,8.774647072309775e-07,8.396027940184124e-07,8.026590508499329e-07,7.666574384350482e-07,7.316183923364667e-07,6.975589098926114e-07,6.6449264816273e-07,6.324300318799346e-07,6.013783703833898e-07,5.713419824945496e-07,5.423223283035205e-07,5.143181468399345e-07,4.873255986177292e-07,4.613384120645161e-07,4.363480328732788e-07,4.123437753464895e-07,3.8931297483981196e-07,3.672411404538655e-07,3.4611210716747836e-07,3.2590818665393026e-07,3.066103160723211e-07,2.881982041788599e-07,2.7065047415703533e-07,2.5394480262078146e-07,2.3805805430041536e-07,2.2296641197683015e-07,2.086455012847405e-07,1.950705100602939e-07,1.8221630196171277e-07,1.7005752414346448e-07,1.585687088144836e-07,1.4772436855890338e-07,1.374990853433705e-07,1.2786759317811393e-07,1.1880485443934917e-07,1.1028612989819868e-07,1.0228704253599354e-07,9.478363525753261e-08,8.775242264257326e-08,8.117043690150378e-08,7.501526822382984e-08,6.926509972782817e-08,6.389873723655484e-08,5.8895634119424336e-08,5.423591144990363e-08,4.990037373861117e-08,4.5870520507405684e-08,4.2128553974035836e-08,3.865738311875108e-08,3.54406244041026e-08,3.246259941715411e-08,2.970832969963869e-08],[3.231828936675165e-08,3.531452936491713e-08,3.85541821573388e-08,4.205354210164067e-08,4.582966500308713e-08,4.990037373861117e-08,5.428426082174198e-08,5.900068761956759e-08,6.406977992886071e-08,6.951241961631129e-08,7.535023202762175e-08,8.160556887221119e-08,8.830148629461182e-08,9.546171785048768e-08,1.0311064211472104e-07,1.112732446613341e-07,1.1997507417027535e-07,1.2924219243441318e-07,1.3910111806153218e-07,1.4957876369080326e-07,1.6070236657112944e-07,1.7249941237998954e-07,1.8499755219589745e-07,1.9822451257532828e-07,2.1220799872586203e-07,2.2697559081126005e-07,2.4255463347106973e-07,2.5897211868697787e-07,2.762545621802784e-07,2.944278735792402e-07,3.135172206515482e-07,3.335468879550294e-07,3.5454013031917863e-07,3.7651902163017815e-07,3.995042994526971e-07,4.235152060823186e-07,4.485693266824339e-07,4.746824252183721e-07,5.018682789588157e-07,5.301385123696397e-07,5.595024312776028e-07,5.899668582302296e-07,6.215359700231472e-07,6.542111384064893e-07,6.879907750171587e-07,7.228701816131852e-07,7.58841406709561e-07,7.958931097312795e-07,8.340104338083272e-07,8.731748883386683e-07,9.133642424383838e-07,9.545524303827703e-07,9.96709470118046e-07,1.0398013958901794e-06,1.083790205995054e-06,1.1286338266026853e-06,1.174286092547487e-06,1.2206967459067733e-06,1.2678114531109254e-06,1.3155718412412445e-06,1.3639155540758171e-06,1.4127763283401538e-06,1.4620840905085086e-06,1.5117650743842421e-06,1.5617419595640692e-06,1.6119340307623447e-06,1.6622573578385128e-06,1.7126249962344638e-06,1.762947207389749e-06,1.8131316985625036e-06,1.8630838813435719e-06,1.9127071480118873e-06,1.9619031647417644e-06,2.010572180538612e-06,2.0586133506498352e-06,2.1059250730735367e-06,2.152405336670229e-06,2.1979520792731976e-06,2.2424635540925805e-06,2.2858387026175503e-06,2.3279775321413095e-06,2.368781495965662e-06,2.4081538742866523e-06,2.446000153720713e-06,2.48222840340267e-06,2.5167496455731685e-06,2.5494782185740506e-06,2.5803321301861312e-06,2.6092333992747577e-06,2.6361083837545353e-06,2.6608880929454084e-06,2.6835084824676557e-06,2.7039107299128355e-06,2.7220414896307194e-06,2.737853125088097e-06,2.7513039173832315e-06,2.7623582486386783e-06,2.770986759144235e-06,2.7771664772797116e-06,2.7808809214128626e-06,2.7821201731398687e-06,2.7808809214128626e-06,2.7771664772797116e-06,2.770986759144235e-06,2.7623582486386783e-06,2.7513039173832315e-06,2.737853125088097e-06,2.7220414896307194e-06,2.7039107299128355e-06,2.6835084824676557e-06,2.6608880929454084e-06,2.6361083837545353e-06,2.6092333992747577e-06,2.5803321301861312e-06,2.5494782185740506e-06,2.5167496455731685e-06,2.48222840340267e-06,2.446000153720713e-06,2.4081538742866523e-06,2.368781495965662e-06,2.3279775321413095e-06,2.2858387026175503e-06,2.2424635540925805e-06,2.1979520792731976e-06,2.152405336670229e-06,2.1059250730735367e-06,2.0586133506498352e-06,2.010572180538612e-06,1.9619031647417644e-06,1.9127071480118873e-06,1.8630838813435719e-06,1.8131316985625036e-06,1.762947207389749e-06,1.7126249962344638e-06,1.6622573578385128e-06,1.6119340307623447e-06,1.5617419595640692e-06,1.5117650743842421e-06,1.4620840905085086e-06,1.4127763283401538e-06,1.3639155540758171e-06,1.3155718412412445e-06,1.2678114531109254e-06,1.2206967459067733e-06,1.174286092547487e-06,1.1286338266026853e-06,1.083790205995054e-06,1.0398013958901794e-06,9.96709470118046e-07,9.545524303827703e-07,9.133642424383838e-07,8.731748883386683e-07,8.340104338083272e-07,7.958931097312795e-07,7.58841406709561e-07,7.228701816131852e-07,6.879907750171587e-07,6.542111384064893e-07,6.215359700231472e-07,5.899668582302296e-07,5.595024312776028e-07,5.301385123696397e-07,5.018682789588157e-07,4.746824252183721e-07,4.485693266824339e-07,4.235152060823186e-07,3.995042994526971e-07,3.7651902163017815e-07,3.5454013031917863e-07,3.335468879550294e-07,3.135172206515482e-07,2.944278735792402e-07,2.762545621802784e-07,2.5897211868697787e-07,2.4255463347106973e-07,2.2697559081126005e-07,2.1220799872586203e-07,1.9822451257532828e-07,1.8499755219589745e-07,1.7249941237998954e-07,1.6070236657112944e-07,1.4957876369080326e-07,1.3910111806153218e-07,1.2924219243441318e-07,1.1997507417027535e-07,1.112732446613341e-07,1.0311064211472104e-07,9.546171785048768e-08,8.830148629461182e-08,8.160556887221119e-08,7.535023202762175e-08,6.951241961631129e-08,6.406977992886071e-08,5.900068761956759e-08,5.428426082174198e-08,4.990037373861117e-08,4.582966500308713e-08,4.205354210164067e-08,3.85541821573388e-08,3.531452936491713e-08,3.231828936675165e-08],[3.512622750060166e-08,3.838279243284831e-08,4.190391880554038e-08,4.570731669319273e-08,4.981152377548027e-08,5.423591144990363e-08,5.900068761956759e-08,6.412689584211029e-08,6.963641052146588e-08,7.555192782176811e-08,8.189695198249886e-08,8.869577671614936e-08,9.597346137437443e-08,1.037558015760632e-07,1.120692940010906e-07,1.2094109506690732e-07,1.3039897322171393e-07,1.4047125460786839e-07,1.5118676187249383e-07,1.6257474592907242e-07,1.7466481050416903e-07,1.8748682933736103e-07,2.010708559399434e-07,2.154470258589898e-07,2.3064545143780413e-07,2.466961091115804e-07,2.63628719328043e-07,2.81472619236775e-07,3.002566283476193e-07,3.200089074176849e-07,3.40756810887776e-07,3.625267332521465e-07,3.8534394980993276e-07,4.092324523120305e-07,4.342147800830343e-07,4.603118472636838e-07,4.87542766884465e-07,5.159246725450612e-07,5.45472538536611e-07,5.761989993036006e-07,6.081141691990549e-07,6.412254635398477e-07,6.755374220177852e-07,7.110515355659647e-07,7.477660778181522e-07,7.856759423309211e-07,8.247724867634536e-07,8.650433852276698e-07,9.064724900311556e-07,9.490397040367652e-07,9.927208648552944e-07,1.0374876420709376e-06,1.0833074486729736e-06,1.1301433678311274e-06,1.1779540961060656e-06,1.2266939041305229e-06,1.2763126157305497e-06,1.326755606380513e-06,1.3779638217998559e-06,1.4298738174046527e-06,1.4824178192229528e-06,1.5355238067703732e-06,1.589115618261888e-06,1.6431130784080325e-06,1.6974321489094582e-06,1.7519851016239302e-06,1.8066807142352589e-06,1.86142448810543e-06,1.916118887840348e-06,1.9706636019473276e-06,2.0249558238099296e-06,2.0788905520541637e-06,2.1323609092307683e-06,2.1852584775924526e-06,2.2374736506039913e-06,2.288895998688107e-06,2.3394146475824697e-06,2.388918667564083e-06,2.4372974716879625e-06,2.484441221088509e-06,2.5302412353053318e-06,2.5745904055214717e-06,2.6173836085418537e-06,2.658518119294141e-06,2.6978940196035864e-06,2.7354146009785332e-06,2.7709867591442355e-06,2.804521378079988e-06,2.835933701348175e-06,2.86514368855384e-06,2.8920763548394768e-06,2.9166620914016387e-06,2.938836965113248e-06,2.9585429954474006e-06,2.9757284070244076e-06,2.9903478562427905e-06,3.0023626306059814e-06,3.0117408195184594e-06,3.0184574554967136e-06,3.022494624920463e-06,3.0238415476365552e-06,3.022494624920463e-06,3.0184574554967136e-06,3.0117408195184594e-06,3.0023626306059814e-06,2.9903478562427905e-06,2.9757284070244076e-06,2.9585429954474006e-06,2.938836965113248e-06,2.9166620914016387e-06,2.8920763548394768e-06,2.86514368855384e-06,2.835933701348175e-06,2.804521378079988e-06,2.7709867591442355e-06,2.7354146009785332e-06,2.6978940196035864e-06,2.658518119294141e-06,2.6173836085418537e-06,2.5745904055214717e-06,2.5302412353053318e-06,2.484441221088509e-06,2.4372974716879625e-06,2.388918667564083e-06,2.3394146475824697e-06,2.288895998688107e-06,2.2374736506039913e-06,2.1852584775924526e-06,2.1323609092307683e-06,2.0788905520541637e-06,2.0249558238099296e-06,1.9706636019473276e-06,1.916118887840348e-06,1.86142448810543e-06,1.8066807142352589e-06,1.7519851016239302e-06,1.6974321489094582e-06,1.6431130784080325e-06,1.589115618261888e-06,1.5355238067703732e-06,1.4824178192229528e-06,1.4298738174046527e-06,1.3779638217998559e-06,1.326755606380513e-06,1.2763126157305497e-06,1.2266939041305229e-06,1.1779540961060656e-06,1.1301433678311274e-06,1.0833074486729736e-06,1.0374876420709376e-06,9.927208648552944e-07,9.490397040367652e-07,9.064724900311556e-07,8.650433852276698e-07,8.247724867634536e-07,7.856759423309211e-07,7.477660778181522e-07,7.110515355659647e-07,6.755374220177852e-07,6.412254635398477e-07,6.081141691990549e-07,5.761989993036006e-07,5.45472538536611e-07,5.159246725450612e-07,4.87542766884465e-07,4.603118472636838e-07,4.342147800830343e-07,4.092324523120305e-07,3.8534394980993276e-07,3.625267332521465e-07,3.40756810887776e-07,3.200089074176849e-07,3.002566283476193e-07,2.81472619236775e-07,2.63628719328043e-07,2.466961091115804e-07,2.3064545143780413e-07,2.154470258589898e-07,2.010708559399434e-07,1.8748682933736103e-07,1.7466481050416903e-07,1.6257474592907242e-07,1.5118676187249383e-07,1.4047125460786839e-07,1.3039897322171393e-07,1.2094109506690732e-07,1.120692940010906e-07,1.037558015760632e-07,9.597346137437443e-08,8.869577671614936e-08,8.189695198249886e-08,7.555192782176811e-08,6.963641052146588e-08,6.412689584211029e-08,5.900068761956759e-08,5.423591144990363e-08,4.981152377548027e-08,4.570731669319273e-08,4.190391880554038e-08,3.838279243284831e-08,3.512622750060166e-08],[3.814412605164715e-08,4.168048142225624e-08,4.550412824574291e-08,4.963429817215173e-08,5.4091121561061264e-08,5.8895634119424336e-08,6.406977992886071e-08,6.963641052146588e-08,7.561927965847016e-08,8.204303346350267e-08,8.893319556199488e-08,9.631614688060654e-08,1.0421909976567571e-07,1.12670066087776e-07,1.2169781901069455e-07,1.3133184811768745e-07,1.416023076058828e-07,1.525399572813156e-07,1.6417609611239882e-07,1.765424881287587e-07,1.8967128048532872e-07,2.035949135484435e-07,2.1834602290138942e-07,2.3395733321140238e-07,2.504615439483778e-07,2.678912069974449e-07,2.862785962628903e-07,3.0565556941948647e-07,3.2605342202882406e-07,3.475027343024802e-07,3.7003321086040287e-07,3.936735139013968e-07,4.1845109027258614e-07,4.4439199299575785e-07,4.715206978800045e-07,4.998599159215647e-07,5.294304022625633e-07,5.602507625499069e-07,5.923372576031985e-07,6.25703607365551e-07,6.603607951728979e-07,6.96316873435124e-07,7.335767718753683e-07,7.721421095214636e-07,8.120110116850102e-07,8.531779331983196e-07,8.956334892067979e-07,9.393642948336144e-07,9.843528150441608e-07,1.0305772260393236e-06,1.0780112894984788e-06,1.1266242409749857e-06,1.1763806937184585e-06,1.227240559158969e-06,1.2791589852384296e-06,1.3320863137136019e-06,1.3859680574835338e-06,1.440744898911817e-06,1.4963527100211044e-06,1.5527225953341772e-06,1.60978095802288e-06,1.667449589904038e-06,1.7256457856906033e-06,1.7842824817675748e-06,1.8432684196164141e-06,1.9025083338598302e-06,1.9619031647417644e-06,2.021350294696466e-06,2.0807438084967212e-06,2.1399747763059473e-06,2.19893155879321e-06,2.2575001333056353e-06,2.315564439930537e-06,2.3730067461212363e-06,2.429708028407431e-06,2.4855483695644363e-06,2.540407369477036e-06,2.5941645678043992e-06,2.6466998764337588e-06,2.697894019603585e-06,2.7476289794828896e-06,2.7957884449131413e-06,2.842258260954025e-06,2.8869268768246356e-06,2.929685789798563e-06,2.970429982595029e-06,3.009058351809413e-06,3.045474124945239e-06,3.0795852636462643e-06,3.1113048507815698e-06,3.1405514591083154e-06,3.1672494993258036e-06,3.191329545440078e-06,3.212728635479867e-06,3.2313905457414105e-06,3.247266036890641e-06,3.2603130704152004e-06,3.270496994094667e-06,3.2777906953437743e-06,3.2821747214789097e-06,3.283637366161251e-06,3.2821747214789097e-06,3.2777906953437743e-06,3.270496994094667e-06,3.2603130704152004e-06,3.247266036890641e-06,3.2313905457414105e-06,3.212728635479867e-06,3.191329545440078e-06,3.1672494993258036e-06,3.1405514591083154e-06,3.1113048507815698e-06,3.0795852636462643e-06,3.045474124945239e-06,3.009058351809413e-06,2.970429982595029e-06,2.929685789798563e-06,2.8869268768246356e-06,2.842258260954025e-06,2.7957884449131413e-06,2.7476289794828896e-06,2.697894019603585e-06,2.6466998764337588e-06,2.5941645678043992e-06,2.540407369477036e-06,2.4855483695644363e-06,2.429708028407431e-06,2.3730067461212363e-06,2.315564439930537e-06,2.2575001333056353e-06,2.19893155879321e-06,2.1399747763059473e-06,2.0807438084967212e-06,2.021350294696466e-06,1.9619031647417644e-06,1.9025083338598302e-06,1.8432684196164141e-06,1.7842824817675748e-06,1.7256457856906033e-06,1.667449589904038e-06,1.60978095802288e-06,1.5527225953341772e-06,1.4963527100211044e-06,1.440744898911817e-06,1.3859680574835338e-06,1.3320863137136019e-06,1.2791589852384296e-06,1.227240559158969e-06,1.1763806937184585e-06,1.1266242409749857e-06,1.0780112894984788e-06,1.0305772260393236e-06,9.843528150441608e-07,9.393642948336144e-07,8.956334892067979e-07,8.531779331983196e-07,8.120110116850102e-07,7.721421095214636e-07,7.335767718753683e-07,6.96316873435124e-07,6.603607951728979e-07,6.25703607365551e-07,5.923372576031985e-07,5.602507625499069e-07,5.294304022625633e-07,4.998599159215647e-07,4.715206978800045e-07,4.4439199299575785e-07,4.1845109027258614e-07,3.936735139013968e-07,3.7003321086040287e-07,3.475027343024802e-07,3.2605342202882406e-07,3.0565556941948647e-07,2.862785962628903e-07,2.678912069974449e-07,2.504615439483778e-07,2.3395733321140238e-07,2.1834602290138942e-07,2.035949135484435e-07,1.8967128048532872e-07,1.765424881287587e-07,1.6417609611239882e-07,1.525399572813156e-07,1.416023076058828e-07,1.3133184811768745e-07,1.2169781901069455e-07,1.12670066087776e-07,1.0421909976567571e-07,9.631614688060654e-08,8.893319556199488e-08,8.204303346350267e-08,7.561927965847016e-08,6.963641052146588e-08,6.406977992886071e-08,5.8895634119424336e-08,5.4091121561061264e-08,4.963429817215173e-08,4.550412824574291e-08,4.168048142225624e-08,3.814412605164715e-08],[4.138441709872621e-08,4.522118099438996e-08,4.936964135673083e-08,5.385066353801469e-08,5.868608794418026e-08,6.389873723655484e-08,6.951241961631129e-08,7.555192782176811e-08,8.204303346350267e-08,8.90124763194497e-08,9.648794821191749e-08,1.0449807109100287e-07,1.130723689544392e-07,1.2224123324267956e-07,1.3203588136020203e-07,1.4248830798980223e-07,1.536312288861821e-07,1.6549801685859423e-07,1.7812262967977164e-07,1.9153952968997111e-07,2.0578359490072461e-07,2.2089002144287037e-07,2.368942172476101e-07,2.53831686897654e-07,2.7173790763789226e-07,2.9064819659132603e-07,3.1059756928602366e-07,3.316205896624144e-07,3.5375121179700427e-07,3.770226136482857e-07,4.0146702320281734e-07,4.2711553747377235e-07,4.539979348801894e-07,4.821424816122245e-07,5.115757326652902e-07,5.423223283035204e-07,5.744047867898179e-07,6.078432942952052e-07,6.426554929735465e-07,6.788562682582528e-07,7.164575365045387e-07,7.554680341634345e-07,7.958931097312796e-07,8.377345197700947e-07,8.809902303392788e-07,9.256542252167744e-07,9.717163223174977e-07,1.0191619997377397e-06,1.0679722328658185e-06,1.1181233440009014e-06,1.1695868659131135e-06,1.2223294207583837e-06,1.2763126157305495e-06,1.3314929567908028e-06,1.3878217817604077e-06,1.4452452139966596e-06,1.5037041377943193e-06,1.5631341965653465e-06,1.6234658147489161e-06,1.6846242442917743e-06,1.7465296364164343e-06,1.8090971392621229e-06,1.8722370218414057e-06,1.935854824604928e-06,1.9998515367485138e-06,2.0641238002320923e-06,2.1285641403095687e-06,2.1930612221941153e-06,2.2575001333056353e-06,2.321762690367744e-06,2.3857277704418857e-06,2.449271664807644e-06,2.5122684544223715e-06,2.574590405521471e-06,2.6361083837545353e-06,2.6966922850935694e-06,2.7562114815991606e-06,2.8145352799901964e-06,2.8715333908338935e-06,2.9270764060568237e-06,2.9810362823755698e-06,3.0332868281586513e-06,3.083704191160575e-06,3.1321673445150163e-06,3.1785585683381855e-06,3.2227639242757366e-06,3.264673720327877e-06,3.304182963307649e-06,3.341191796327033e-06,3.375605918764377e-06,3.4073369862445525e-06,3.4363029882597273e-06,3.4624286011732436e-06,3.485645514480963e-06,3.5058927283528185e-06,3.523116820641034e-06,3.5372721817194433e-06,3.548321215709159e-06,3.556234506848084e-06,3.5609909499738884e-06,3.5625778443103657e-06,3.5609909499738884e-06,3.556234506848084e-06,3.548321215709159e-06,3.5372721817194433e-06,3.523116820641034e-06,3.5058927283528185e-06,3.485645514480963e-06,3.4624286011732436e-06,3.4363029882597273e-06,3.4073369862445525e-06,3.375605918764377e-06,3.341191796327033e-06,3.304182963307649e-06,3.264673720327877e-06,3.2227639242757366e-06,3.1785585683381855e-06,3.1321673445150163e-06,3.083704191160575e-06,3.0332868281586513e-06,2.9810362823755698e-06,2.9270764060568237e-06,2.8715333908338935e-06,2.8145352799901964e-06,2.7562114815991606e-06,2.6966922850935694e-06,2.6361083837545353e-06,2.574590405521471e-06,2.5122684544223715e-06,2.449271664807644e-06,2.3857277704418857e-06,2.321762690367744e-06,2.2575001333056353e-06,2.1930612221941153e-06,2.1285641403095687e-06,2.0641238002320923e-06,1.9998515367485138e-06,1.935854824604928e-06,1.8722370218414057e-06,1.8090971392621229e-06,1.7465296364164343e-06,1.6846242442917743e-06,1.6234658147489161e-06,1.5631341965653465e-06,1.5037041377943193e-06,1.4452452139966596e-06,1.3878217817604077e-06,1.3314929567908028e-06,1.2763126157305495e-06,1.2223294207583837e-06,1.1695868659131135e-06,1.1181233440009014e-06,1.0679722328658185e-06,1.0191619997377397e-06,9.717163223174977e-07,9.256542252167744e-07,8.809902303392788e-07,8.377345197700947e-07,7.958931097312796e-07,7.554680341634345e-07,7.164575365045387e-07,6.788562682582528e-07,6.426554929735465e-07,6.078432942952052e-07,5.744047867898179e-07,5.423223283035204e-07,5.115757326652902e-07,4.821424816122245e-07,4.539979348801894e-07,4.2711553747377235e-07,4.0146702320281734e-07,3.770226136482857e-07,3.5375121179700427e-07,3.316205896624144e-07,3.1059756928602366e-07,2.9064819659132603e-07,2.7173790763789226e-07,2.53831686897654e-07,2.368942172476101e-07,2.2089002144287037e-07,2.0578359490072461e-07,1.9153952968997111e-07,1.7812262967977164e-07,1.6549801685859423e-07,1.536312288861821e-07,1.4248830798980223e-07,1.3203588136020203e-07,1.2224123324267956e-07,1.130723689544392e-07,1.0449807109100287e-07,9.648794821191749e-08,8.90124763194497e-08,8.204303346350267e-08,7.555192782176811e-08,6.951241961631129e-08,6.389873723655484e-08,5.868608794418026e-08,5.385066353801469e-08,4.936964135673083e-08,4.522118099438996e-08,4.138441709872621e-08],[4.4859975353025586e-08,4.9018959479448184e-08,5.351581705662892e-08,5.837316575696719e-08,6.361468019377878e-08,6.926509972782817e-08,7.535023202762175e-08,8.189695198249886e-08,8.893319556199488e-08,9.648794821191749e-08,1.045912273773177e-07,1.1327405874529985e-07,1.225684458066339e-07,1.3250733234463857e-07,1.4312455747301042e-07,1.5445480286137918e-07,1.6653353180855337e-07,1.7939691984884e-07,1.9308177660660115e-07,2.0762545864846042e-07,2.2306577312134344e-07,2.394408720078712e-07,2.5678913687850816e-07,2.7514905407224273e-07,2.945590802943506e-07,3.1505749868081474e-07,3.366822654440514e-07,3.5947084728347215e-07,3.834600498167943e-07,4.086858373635511e-07,4.3518314449052057e-07,4.629856798093563e-07,4.921257225990185e-07,5.226339129091347e-07,5.545390358845309e-07,5.878678011352296e-07,6.226446180594933e-07,6.588913681092798e-07,6.96627175066993e-07,7.358681744788784e-07,7.766272834629896e-07,8.189139721775491e-07,8.627340382978845e-07,9.080893859061238e-07,9.549778102466693e-07,1.0033927898413388e-06,1.0533232874901922e-06,1.1047535617067444e-06,1.1576629901487953e-06,1.2120259066078969e-06,1.2678114531109256e-06,1.3249834486659203e-06,1.3835002761508112e-06,1.4433147887976669e-06,1.5043742376663847e-06,1.5666202214302514e-06,1.6299886597115321e-06,1.694409791108335e-06,1.7598081969446805e-06,1.8261028516543832e-06,1.893207200576507e-06,1.9610292657964216e-06,2.0294717805125883e-06,2.0984323522460755e-06,2.1678036550383113e-06,2.237473650603991e-06,2.3073258382213723e-06,2.3772395329529067e-06,2.447090171596493e-06,2.5167496455731685e-06,2.5860866597622273e-06,2.654967116101213e-06,2.7232545205775084e-06,2.790810412052034e-06,2.8574948111754947e-06,2.9231666874852578e-06,2.9876844426079917e-06,3.0509064073411196e-06,3.1126913502465006e-06,3.172898995263931e-06,3.2313905457414113e-06,3.2880292121848567e-06,3.342680740953168e-06,3.3952139410662386e-06,3.4455012062544705e-06,3.4934190293592277e-06,3.53884850619502e-06,3.581675826006269e-06,3.621792745694499e-06,3.6590970450555933e-06,3.6934929603512e-06,3.724891593642967e-06,3.7532112954424903e-06,3.778378018372839e-06,3.800325639698327e-06,3.818996250756694e-06,3.834340411520775e-06,3.8463173687235536e-06,3.854895236199774e-06,3.860051136327173e-06,3.861771301689232e-06,3.860051136327173e-06,3.854895236199774e-06,3.8463173687235536e-06,3.834340411520775e-06,3.818996250756694e-06,3.800325639698327e-06,3.778378018372839e-06,3.7532112954424903e-06,3.724891593642967e-06,3.6934929603512e-06,3.6590970450555933e-06,3.621792745694499e-06,3.581675826006269e-06,3.53884850619502e-06,3.4934190293592277e-06,3.4455012062544705e-06,3.3952139410662386e-06,3.342680740953168e-06,3.2880292121848567e-06,3.2313905457414113e-06,3.172898995263931e-06,3.1126913502465006e-06,3.0509064073411196e-06,2.9876844426079917e-06,2.9231666874852578e-06,2.8574948111754947e-06,2.790810412052034e-06,2.7232545205775084e-06,2.654967116101213e-06,2.5860866597622273e-06,2.5167496455731685e-06,2.447090171596493e-06,2.3772395329529067e-06,2.3073258382213723e-06,2.237473650603991e-06,2.1678036550383113e-06,2.0984323522460755e-06,2.0294717805125883e-06,1.9610292657964216e-06,1.893207200576507e-06,1.8261028516543832e-06,1.7598081969446805e-06,1.694409791108335e-06,1.6299886597115321e-06,1.5666202214302514e-06,1.5043742376663847e-06,1.4433147887976669e-06,1.3835002761508112e-06,1.3249834486659203e-06,1.2678114531109256e-06,1.2120259066078969e-06,1.1576629901487953e-06,1.1047535617067444e-06,1.0533232874901922e-06,1.0033927898413388e-06,9.549778102466693e-07,9.080893859061238e-07,8.627340382978845e-07,8.189139721775491e-07,7.766272834629896e-07,7.358681744788784e-07,6.96627175066993e-07,6.588913681092798e-07,6.226446180594933e-07,5.878678011352296e-07,5.545390358845309e-07,5.226339129091347e-07,4.921257225990185e-07,4.629856798093563e-07,4.3518314449052057e-07,4.086858373635511e-07,3.834600498167943e-07,3.5947084728347215e-07,3.366822654440514e-07,3.1505749868081474e-07,2.945590802943506e-07,2.7514905407224273e-07,2.5678913687850816e-07,2.394408720078712e-07,2.2306577312134344e-07,2.0762545864846042e-07,1.9308177660660115e-07,1.7939691984884e-07,1.6653353180855337e-07,1.5445480286137918e-07,1.4312455747301042e-07,1.3250733234463857e-07,1.225684458066339e-07,1.1327405874529985e-07,1.045912273773177e-07,9.648794821191749e-08,8.893319556199488e-08,8.189695198249886e-08,7.535023202762175e-08,6.926509972782817e-08,6.361468019377878e-08,5.837316575696719e-08,5.351581705662892e-08,4.9018959479448184e-08,4.4859975353025586e-08],[4.85841079684406e-08,5.3088357742254135e-08,5.795853014714633e-08,6.321912050281362e-08,6.889576881374542e-08,7.501526822382984e-08,8.160556887221119e-08,8.869577671614936e-08,9.631614688060654e-08,1.0449807109100287e-07,1.1327405874529985e-07,1.2267771118456397e-07,1.3274368872768084e-07,1.4350767004618446e-07,1.5500630346946983e-07,1.672771498291816e-07,1.8035861647451404e-07,1.9428988211768795e-07,2.0911081220112075e-07,2.2486186451490019e-07,2.415839848351609e-07,2.5931849240089673e-07,2.781069550985983e-07,2.9799105428082996e-07,3.1901243920634686e-07,3.4121257115544016e-07,3.646325573446786e-07,3.8931297483981186e-07,4.1529368474399396e-07,4.4261363702029224e-07,4.713106663922174e-07,5.014212798532566e-07,5.329804364055449e-07,5.660213197382739e-07,6.00575104647531e-07,6.366707180902956e-07,6.743345958555153e-07,7.13590435923763e-07,7.54458949673094e-07,7.969576121715336e-07,8.411004128752333e-07,8.86897608124861e-07,9.343554769003282e-07,9.834760813546111e-07,1.0342570337003079e-06,1.0866912710668388e-06,1.1407668399809946e-06,1.196466692148099e-06,1.2537684932246286e-06,1.3126444462750613e-06,1.3730611315953936e-06,1.4349793645626735e-06,1.4983540731335911e-06,1.5631341965653465e-06,1.629262606868434e-06,1.6966760544235613e-06,1.7653051391036438e-06,1.835074308136865e-06,1.905901881828401e-06,1.9777001081270127e-06,2.0503752468788328e-06,2.1238276844550095e-06,2.1979520792731976e-06,2.272637538556205e-06,2.3477678264853996e-06,2.423221603713021e-06,2.4988726979975777e-06,2.574590405521471e-06,2.65023982224135e-06,2.725682204411079e-06,2.8007753572062087e-06,2.8753740501692233e-06,2.9493304579882733e-06,3.0224946249204617e-06,3.094714950975686e-06,3.165838697790415e-06,3.235712511944281e-06,3.304182963307649e-06,3.3710970958571333e-06,3.4363029882597273e-06,3.499650321406394e-06,3.5609909499738884e-06,3.620179475010402e-06,3.6770738144775093e-06,3.731535768638567e-06,3.7834315771630625e-06,3.832632464817831e-06,3.879015172639991e-06,3.922462471532962e-06,3.962863655296078e-06,4.000115010189708e-06,4.034120258251125e-06,4.06479097171083e-06,4.092046956013939e-06,4.115816599125347e-06,4.136037184989652e-06,4.1526551692257245e-06,4.165626415359812e-06,4.174916390138534e-06,4.180500316712117e-06,4.182363284736869e-06,4.180500316712117e-06,4.174916390138534e-06,4.165626415359812e-06,4.1526551692257245e-06,4.136037184989652e-06,4.115816599125347e-06,4.092046956013939e-06,4.06479097171083e-06,4.034120258251125e-06,4.000115010189708e-06,3.962863655296078e-06,3.922462471532962e-06,3.879015172639991e-06,3.832632464817831e-06,3.7834315771630625e-06,3.731535768638567e-06,3.6770738144775093e-06,3.620179475010402e-06,3.5609909499738884e-06,3.499650321406394e-06,3.4363029882597273e-06,3.3710970958571333e-06,3.304182963307649e-06,3.235712511944281e-06,3.165838697790415e-06,3.094714950975686e-06,3.0224946249204617e-06,2.9493304579882733e-06,2.8753740501692233e-06,2.8007753572062087e-06,2.725682204411079e-06,2.65023982224135e-06,2.574590405521471e-06,2.4988726979975777e-06,2.423221603713021e-06,2.3477678264853996e-06,2.272637538556205e-06,2.1979520792731976e-06,2.1238276844550095e-06,2.0503752468788328e-06,1.9777001081270127e-06,1.905901881828401e-06,1.835074308136865e-06,1.7653051391036438e-06,1.6966760544235613e-06,1.629262606868434e-06,1.5631341965653465e-06,1.4983540731335911e-06,1.4349793645626735e-06,1.3730611315953936e-06,1.3126444462750613e-06,1.2537684932246286e-06,1.196466692148099e-06,1.1407668399809946e-06,1.0866912710668388e-06,1.0342570337003079e-06,9.834760813546111e-07,9.343554769003282e-07,8.86897608124861e-07,8.411004128752333e-07,7.969576121715336e-07,7.54458949673094e-07,7.13590435923763e-07,6.743345958555153e-07,6.366707180902956e-07,6.00575104647531e-07,5.660213197382739e-07,5.329804364055449e-07,5.014212798532566e-07,4.713106663922174e-07,4.4261363702029224e-07,4.1529368474399396e-07,3.8931297483981186e-07,3.646325573446786e-07,3.4121257115544016e-07,3.1901243920634686e-07,2.9799105428082996e-07,2.781069550985983e-07,2.5931849240089673e-07,2.415839848351609e-07,2.2486186451490019e-07,2.0911081220112075e-07,1.9428988211768795e-07,1.8035861647451404e-07,1.672771498291816e-07,1.5500630346946983e-07,1.4350767004618446e-07,1.3274368872768084e-07,1.2267771118456397e-07,1.1327405874529985e-07,1.0449807109100287e-07,9.631614688060654e-08,8.869577671614936e-08,8.160556887221119e-08,7.501526822382984e-08,6.889576881374542e-08,6.321912050281362e-08,5.795853014714633e-08,5.3088357742254135e-08,4.85841079684406e-08],[5.257054148631848e-08,5.744437491664143e-08,6.271415573927626e-08,6.840638916907964e-08,7.454881902962029e-08,8.117043690150378e-08,8.830148629461182e-08,9.597346137437443e-08,1.0421909976567571e-07,1.130723689544392e-07,1.225684458066339e-07,1.3274368872768084e-07,1.4363560199229233e-07,1.552827917859164e-07,1.6772491351443424e-07,1.810026099588046e-07,1.9515743987617303e-07,2.1023179667875413e-07,2.2626881685669068e-07,2.4331227785123225e-07,2.614064851300099e-07,2.8059614826696733e-07,3.009262458856222e-07,3.224418793857083e-07,3.451881154397821e-07,3.692098173178873e-07,3.945514651746336e-07,4.212569655137645e-07,4.493694501301132e-07,4.789310649173668e-07,5.099827490217836e-07,5.425640049164129e-07,5.767126600668378e-07,6.124646209573444e-07,6.498536203449919e-07,6.88910958707561e-07,7.296652409489533e-07,7.721421095214636e-07,8.163639752175261e-07,8.623497469731493e-07,9.101145621103042e-07,9.596695185250953e-07,1.0110214104016242e-06,1.0641724690970792e-06,1.1191201109008213e-06,1.1758566934181183e-06,1.2343692823668444e-06,1.2946394306020381e-06,1.3566429711978902e-06,1.4203498264188376e-06,1.4857238344002445e-06,1.552722595334177e-06,1.6212973389164807e-06,1.6913928147574717e-06,1.762947207389749e-06,1.8358920774228611e-06,1.9101523302957954e-06,1.9856462139646993e-06,2.0622853467351278e-06,2.1399747763059473e-06,2.2186130709363297e-06,2.298092443478848e-06,2.378298908841329e-06,2.45911247524894e-06,2.5404073694770356e-06,2.622052296015993e-06,2.703910729912836e-06,2.785841242812639e-06,2.8676978614969126e-06,2.9493304579882733e-06,3.0305851700624187e-06,3.1113048507815698e-06,3.191329545440078e-06,3.270496994094667e-06,3.3486431576407353e-06,3.425602765194196e-06,3.5012098803473495e-06,3.5752984836890655e-06,3.6477030688159286e-06,3.7182592489135373e-06,3.786804370857482e-06,3.853178133673071e-06,3.917223208102909e-06,3.978785853963056e-06,4.037716531922805e-06,4.0938705063206725e-06,4.1471084356307844e-06,4.19729694721973e-06,4.2443091930842645e-06,4.288025383335094e-06,4.3283332942908605e-06,4.36512874816904e-06,4.398316061506064e-06,4.427808459606442e-06,4.453528454509198e-06,4.475408184167868e-06,4.493389710766422e-06,4.50742527633581e-06,4.517477514092832e-06,4.523519614192391e-06,4.525535442864115e-06,4.523519614192391e-06,4.517477514092832e-06,4.50742527633581e-06,4.493389710766422e-06,4.475408184167868e-06,4.453528454509198e-06,4.427808459606442e-06,4.398316061506064e-06,4.36512874816904e-06,4.3283332942908605e-06,4.288025383335094e-06,4.2443091930842645e-06,4.19729694721973e-06,4.1471084356307844e-06,4.0938705063206725e-06,4.037716531922805e-06,3.978785853963056e-06,3.917223208102909e-06,3.853178133673071e-06,3.786804370857482e-06,3.7182592489135373e-06,3.6477030688159286e-06,3.5752984836890655e-06,3.5012098803473495e-06,3.425602765194196e-06,3.3486431576407353e-06,3.270496994094667e-06,3.191329545440078e-06,3.1113048507815698e-06,3.0305851700624187e-06,2.9493304579882733e-06,2.8676978614969126e-06,2.785841242812639e-06,2.703910729912836e-06,2.622052296015993e-06,2.5404073694770356e-06,2.45911247524894e-06,2.378298908841329e-06,2.298092443478848e-06,2.2186130709363297e-06,2.1399747763059473e-06,2.0622853467351278e-06,1.9856462139646993e-06,1.9101523302957954e-06,1.8358920774228611e-06,1.762947207389749e-06,1.6913928147574717e-06,1.6212973389164807e-06,1.552722595334177e-06,1.4857238344002445e-06,1.4203498264188376e-06,1.3566429711978902e-06,1.2946394306020381e-06,1.2343692823668444e-06,1.1758566934181183e-06,1.1191201109008213e-06,1.0641724690970792e-06,1.0110214104016242e-06,9.596695185250953e-07,9.101145621103042e-07,8.623497469731493e-07,8.163639752175261e-07,7.721421095214636e-07,7.296652409489533e-07,6.88910958707561e-07,6.498536203449919e-07,6.124646209573444e-07,5.767126600668378e-07,5.425640049164129e-07,5.099827490217836e-07,4.789310649173668e-07,4.493694501301132e-07,4.212569655137645e-07,3.945514651746336e-07,3.692098173178873e-07,3.451881154397821e-07,3.224418793857083e-07,3.009262458856222e-07,2.8059614826696733e-07,2.614064851300099e-07,2.4331227785123225e-07,2.2626881685669068e-07,2.1023179667875413e-07,1.9515743987617303e-07,1.810026099588046e-07,1.6772491351443424e-07,1.552827917859164e-07,1.4363560199229233e-07,1.3274368872768084e-07,1.225684458066339e-07,1.130723689544392e-07,1.0421909976567571e-07,9.597346137437443e-08,8.830148629461182e-08,8.117043690150378e-08,7.454881902962029e-08,6.840638916907964e-08,6.271415573927626e-08,5.744437491664143e-08,5.257054148631848e-08],[5.683340574665413e-08,6.21024508250511e-08,6.779955006011772e-08,7.395335793377026e-08,8.059386797351034e-08,8.775242264257326e-08,9.546171785048768e-08,1.037558015760632e-07,1.12670066087776e-07,1.2224123324267956e-07,1.3250733234463857e-07,1.4350767004618446e-07,1.552827917859164e-07,1.678744342654141e-07,1.8132546848635983e-07,1.956798328902379e-07,2.1098245616981818e-07,2.2727916935383384e-07,2.446166068039912e-07,2.630420958068416e-07,2.8260353449216427e-07,3.0334925786440965e-07,3.2532789179441784e-07,3.4858819488497927e-07,3.731788881957336e-07,3.9914847289021155e-07,4.2654503595026906e-07,4.554160441904302e-07,4.858081268963564e-07,5.177668475073571e-07,5.51336464862022e-07,5.865596846281137e-07,6.23477401642152e-07,6.621284339899448e-07,7.025492497658786e-07,7.447736875552809e-07,7.888326717896646e-07,8.347539242282959e-07,8.825616729202597e-07,9.322763600980688e-07,9.839143505458242e-07,1.0374876420709374e-06,1.093003579787436e-06,1.1504645759898278e-06,1.2098678374583564e-06,1.2712051020882677e-06,1.3344623867764156e-06,1.3996197485272585e-06,1.4666510607561861e-06,1.5355238067703726e-06,1.6061988923952607e-06,1.67863047968778e-06,1.7527658436349082e-06,1.8285452536779377e-06,1.9059018818284007e-06,1.984761739051057e-06,2.0650436414825737e-06,2.1466592079317444e-06,2.2295128899686136e-06,2.3135020357561567e-06,2.398516988609868e-06,2.4844412210885084e-06,2.5711515052242954e-06,2.658518119294139e-06,2.7464050913162775e-06,2.8346704792303797e-06,2.9231666874852578e-06,3.0117408195184577e-06,3.100235065367974e-06,3.1884871234099064e-06,3.276330654969103e-06,3.3635957703045765e-06,3.4501095442298984e-06,3.535696559392842e-06,3.6201794750104014e-06,3.7033796186369878e-06,3.7851175983371107e-06,3.86521393244123e-06,3.943489693886528e-06,4.019767165984946e-06,4.0938705063206725e-06,4.165626415359812e-06,4.234864806257743e-06,4.301419472275743e-06,4.3651287481690394e-06,4.425836161884223e-06,4.483391072905651e-06,4.537649293618433e-06,4.588473690110067e-06,4.635734758913591e-06,4.679311176302125e-06,4.719090316877177e-06,4.7549687383504515e-06,4.786852629600019e-06,4.814658219285463e-06,4.838312142531468e-06,4.857751763433714e-06,4.872925451402981e-06,4.883792809641157e-06,4.890324854334086e-06,4.892504143448802e-06,4.890324854334086e-06,4.883792809641157e-06,4.872925451402981e-06,4.857751763433714e-06,4.838312142531468e-06,4.814658219285463e-06,4.786852629600019e-06,4.7549687383504515e-06,4.719090316877177e-06,4.679311176302125e-06,4.635734758913591e-06,4.588473690110067e-06,4.537649293618433e-06,4.483391072905651e-06,4.425836161884223e-06,4.3651287481690394e-06,4.301419472275743e-06,4.234864806257743e-06,4.165626415359812e-06,4.0938705063206725e-06,4.019767165984946e-06,3.943489693886528e-06,3.86521393244123e-06,3.7851175983371107e-06,3.7033796186369878e-06,3.6201794750104014e-06,3.535696559392842e-06,3.4501095442298984e-06,3.3635957703045765e-06,3.276330654969103e-06,3.1884871234099064e-06,3.100235065367974e-06,3.0117408195184577e-06,2.9231666874852578e-06,2.8346704792303797e-06,2.7464050913162775e-06,2.658518119294139e-06,2.5711515052242954e-06,2.4844412210885084e-06,2.398516988609868e-06,2.3135020357561567e-06,2.2295128899686136e-06,2.1466592079317444e-06,2.0650436414825737e-06,1.984761739051057e-06,1.9059018818284007e-06,1.8285452536779377e-06,1.7527658436349082e-06,1.67863047968778e-06,1.6061988923952607e-06,1.5355238067703726e-06,1.4666510607561861e-06,1.3996197485272585e-06,1.3344623867764156e-06,1.2712051020882677e-06,1.2098678374583564e-06,1.1504645759898278e-06,1.093003579787436e-06,1.0374876420709374e-06,9.839143505458242e-07,9.322763600980688e-07,8.825616729202597e-07,8.347539242282959e-07,7.888326717896646e-07,7.447736875552809e-07,7.025492497658786e-07,6.621284339899448e-07,6.23477401642152e-07,5.865596846281137e-07,5.51336464862022e-07,5.177668475073571e-07,4.858081268963564e-07,4.554160441904302e-07,4.2654503595026906e-07,3.9914847289021155e-07,3.731788881957336e-07,3.4858819488497927e-07,3.2532789179441784e-07,3.0334925786440965e-07,2.8260353449216427e-07,2.630420958068416e-07,2.446166068039912e-07,2.2727916935383384e-07,2.1098245616981818e-07,1.956798328902379e-07,1.8132546848635983e-07,1.678744342654141e-07,1.552827917859164e-07,1.4350767004618446e-07,1.3250733234463857e-07,1.2224123324267956e-07,1.12670066087776e-07,1.037558015760632e-07,9.546171785048768e-08,8.775242264257326e-08,8.059386797351034e-08,7.395335793377026e-08,6.779955006011772e-08,6.21024508250511e-08,5.683340574665413e-08],[6.138721460347203e-08,6.707844490602989e-08,7.323202744724332e-08,7.987891266563769e-08,8.705149733711029e-08,9.478363525753261e-08,1.0311064211472104e-07,1.120692940010906e-07,1.2169781901069455e-07,1.3203588136020203e-07,1.4312455747301042e-07,1.5500630346946983e-07,1.6772491351443424e-07,1.8132546848635983e-07,1.9585427445024406e-07,2.1135879044010586e-07,2.2788754508569538e-07,2.454900416529066e-07,2.642166511081166e-07,2.8411849286354375e-07,3.0524730291377127e-07,3.2765528913288446e-07,3.513949735671925e-07,3.765190216301781e-07,4.0308005818400645e-07,4.311304705754337e-07,4.607221987829997e-07,4.919065129266532e-07,5.247337784900053e-07,5.592532097087724e-07,5.955126116860781e-07,6.335581119055265e-07,6.734338819255986e-07,7.151818501532352e-07,7.58841406709561e-07,8.044491015157374e-07,8.520383368408847e-07,9.01639055665947e-07,9.53277427326178e-07,1.0069755319995606e-06,1.0627510457077994e-06,1.1206169275894265e-06,1.1805811112898961e-06,1.2426462023901807e-06,1.306809183862207e-06,1.3730611315953936e-06,1.4413869420825274e-06,1.5117650743842421e-06,1.584167308508523e-06,1.6585585223440967e-06,1.734896489273506e-06,1.8131316985625034e-06,1.893207200576507e-06,1.9750584788119276e-06,2.0586133506498344e-06,2.1437918986415916e-06,2.2305064340207886e-06,2.3186614940031677e-06,2.408153874286652e-06,2.4988726979975777e-06,2.5906995221474233e-06,2.6835084824676557e-06,2.777166477279711e-06,2.871533390833893e-06,2.96646235631631e-06,3.0618000584785754e-06,3.157387075592284e-06,3.2530582601712307e-06,3.348643157640735e-06,3.4439664618672658e-06,3.53884850619502e-06,3.633105788371195e-06,3.726551527480762e-06,3.818996250756694e-06,3.910248407885206e-06,4.0001150101897075e-06,4.088402291854173e-06,4.174916390138534e-06,4.259464041347621e-06,4.341853289142992e-06,4.421894201635574e-06,4.499399593568069e-06,4.5741857497909975e-06,4.646073146156469e-06,4.714887163900317e-06,4.780458793557144e-06,4.842625324454583e-06,4.901231015863358e-06,4.9561277459384795e-06,5.007175634674272e-06,5.054243637211457e-06,5.097210103977636e-06,5.135963304312519e-06,5.170401910424844e-06,5.20043543874805e-06,5.225984646004595e-06,5.246981877552813e-06,5.263371365873252e-06,5.275109477351447e-06,5.2821649058287015e-06,5.284518811719268e-06,5.2821649058287015e-06,5.275109477351447e-06,5.263371365873252e-06,5.246981877552813e-06,5.225984646004595e-06,5.20043543874805e-06,5.170401910424844e-06,5.135963304312519e-06,5.097210103977636e-06,5.054243637211457e-06,5.007175634674272e-06,4.9561277459384795e-06,4.901231015863358e-06,4.842625324454583e-06,4.780458793557144e-06,4.714887163900317e-06,4.646073146156469e-06,4.5741857497909975e-06,4.499399593568069e-06,4.421894201635574e-06,4.341853289142992e-06,4.259464041347621e-06,4.174916390138534e-06,4.088402291854173e-06,4.0001150101897075e-06,3.910248407885206e-06,3.818996250756694e-06,3.726551527480762e-06,3.633105788371195e-06,3.53884850619502e-06,3.4439664618672658e-06,3.348643157640735e-06,3.2530582601712307e-06,3.157387075592284e-06,3.0618000584785754e-06,2.96646235631631e-06,2.871533390833893e-06,2.777166477279711e-06,2.6835084824676557e-06,2.5906995221474233e-06,2.4988726979975777e-06,2.408153874286652e-06,2.3186614940031677e-06,2.2305064340207886e-06,2.1437918986415916e-06,2.0586133506498344e-06,1.9750584788119276e-06,1.893207200576507e-06,1.8131316985625034e-06,1.734896489273506e-06,1.6585585223440967e-06,1.584167308508523e-06,1.5117650743842421e-06,1.4413869420825274e-06,1.3730611315953936e-06,1.306809183862207e-06,1.2426462023901807e-06,1.1805811112898961e-06,1.1206169275894265e-06,1.0627510457077994e-06,1.0069755319995606e-06,9.53277427326178e-07,9.01639055665947e-07,8.520383368408847e-07,8.044491015157374e-07,7.58841406709561e-07,7.151818501532352e-07,6.734338819255986e-07,6.335581119055265e-07,5.955126116860781e-07,5.592532097087724e-07,5.247337784900053e-07,4.919065129266532e-07,4.607221987829997e-07,4.311304705754337e-07,4.0308005818400645e-07,3.765190216301781e-07,3.513949735671925e-07,3.2765528913288446e-07,3.0524730291377127e-07,2.8411849286354375e-07,2.642166511081166e-07,2.454900416529066e-07,2.2788754508569538e-07,2.1135879044010586e-07,1.9585427445024406e-07,1.8132546848635983e-07,1.6772491351443424e-07,1.5500630346946983e-07,1.4312455747301042e-07,1.3203588136020203e-07,1.2169781901069455e-07,1.120692940010906e-07,1.0311064211472104e-07,9.478363525753261e-08,8.705149733711029e-08,7.987891266563769e-08,7.323202744724332e-08,6.707844490602989e-08,6.138721460347203e-08],[6.624684328946431e-08,7.238861148033571e-08,7.9029333345789e-08,8.620240947035914e-08,9.394280127312687e-08,1.0228704253599354e-07,1.112732446613341e-07,1.2094109506690732e-07,1.3133184811768745e-07,1.4248830798980223e-07,1.5445480286137918e-07,1.672771498291816e-07,1.810026099588046e-07,1.956798328902379e-07,2.1135879044010586e-07,2.2809069866715347e-07,2.4592792789883195e-07,2.649239002543755e-07,2.8513297424373574e-07,3.066103160723211e-07,3.2941175733874267e-07,3.5359363887676094e-07,3.792126405633433e-07,4.0632559699208207e-07,4.3498929899506694e-07,4.652602810864197e-07,4.971945949967981e-07,5.308475695698975e-07,5.662735573988683e-07,6.035256686921173e-07,6.426554929735469e-07,6.837128093412539e-07,7.267452861302728e-07,7.717981709483005e-07,8.189139721775493e-07,8.681321331600089e-07,9.194887004063773e-07,9.73015987289709e-07,1.028742234802248e-06,1.086691271066839e-06,1.146882171401484e-06,1.209328920835885e-06,1.2740400810708859e-06,1.3410184639544502e-06,1.4102608136199082e-06,1.4817574994925713e-06,1.55549222241826e-06,1.6314417362007794e-06,1.7095755868538933e-06,1.7898558718759728e-06,1.8722370218414065e-06,1.9566656065713854e-06,2.043080168097147e-06,2.13141108256085e-06,2.2215804531125484e-06,2.3135020357561576e-06,2.407081199972862e-06,2.5022149258072916e-06,2.598791838940369e-06,2.6966922850935707e-06,2.795788444913142e-06,2.895944490270587e-06,2.997016782688442e-06,3.0988541143594696e-06,3.2012979919741567e-06,3.3041829633076506e-06,3.4073369862445533e-06,3.510581839640467e-06,3.6137335751346454e-06,3.716603008740968e-06,3.818996250756695e-06,3.920715272242689e-06,4.021558506047103e-06,4.121321480069583e-06,4.219797480197079e-06,4.316778240087856e-06,4.412054654739642e-06,4.505417514553275e-06,4.596658256397e-06,4.685569727990762e-06,4.77194696176644e-06,4.855587954220756e-06,4.936294446664242e-06,5.013872703183501e-06,5.0881342815763625e-06,5.158896792991319e-06,5.225984646004598e-06,5.28922977090082e-06,5.348472319986682e-06,5.403561339861299e-06,5.454355411691571e-06,5.500723255695362e-06,5.542544296218758e-06,5.579709184004719e-06,5.612120272488031e-06,5.639692045213466e-06,5.6623514917590115e-06,5.680038429851446e-06,5.692705771685298e-06,5.700319732795797e-06,5.70285998218906e-06,5.700319732795797e-06,5.692705771685298e-06,5.680038429851446e-06,5.6623514917590115e-06,5.639692045213466e-06,5.612120272488031e-06,5.579709184004719e-06,5.542544296218758e-06,5.500723255695362e-06,5.454355411691571e-06,5.403561339861299e-06,5.348472319986682e-06,5.28922977090082e-06,5.225984646004598e-06,5.158896792991319e-06,5.0881342815763625e-06,5.013872703183501e-06,4.936294446664242e-06,4.855587954220756e-06,4.77194696176644e-06,4.685569727990762e-06,4.596658256397e-06,4.505417514553275e-06,4.412054654739642e-06,4.316778240087856e-06,4.219797480197079e-06,4.121321480069583e-06,4.021558506047103e-06,3.920715272242689e-06,3.818996250756695e-06,3.716603008740968e-06,3.6137335751346454e-06,3.510581839640467e-06,3.4073369862445533e-06,3.3041829633076506e-06,3.2012979919741567e-06,3.0988541143594696e-06,2.997016782688442e-06,2.895944490270587e-06,2.795788444913142e-06,2.6966922850935707e-06,2.598791838940369e-06,2.5022149258072916e-06,2.407081199972862e-06,2.3135020357561576e-06,2.2215804531125484e-06,2.13141108256085e-06,2.043080168097147e-06,1.9566656065713854e-06,1.8722370218414065e-06,1.7898558718759728e-06,1.7095755868538933e-06,1.6314417362007794e-06,1.55549222241826e-06,1.4817574994925713e-06,1.4102608136199082e-06,1.3410184639544502e-06,1.2740400810708859e-06,1.209328920835885e-06,1.146882171401484e-06,1.086691271066839e-06,1.028742234802248e-06,9.73015987289709e-07,9.194887004063773e-07,8.681321331600089e-07,8.189139721775493e-07,7.717981709483005e-07,7.267452861302728e-07,6.837128093412539e-07,6.426554929735469e-07,6.035256686921173e-07,5.662735573988683e-07,5.308475695698975e-07,4.971945949967981e-07,4.652602810864197e-07,4.3498929899506694e-07,4.0632559699208207e-07,3.792126405633433e-07,3.5359363887676094e-07,3.2941175733874267e-07,3.066103160723211e-07,2.8513297424373574e-07,2.649239002543755e-07,2.4592792789883195e-07,2.2809069866715347e-07,2.1135879044010586e-07,1.956798328902379e-07,1.810026099588046e-07,1.672771498291816e-07,1.5445480286137918e-07,1.4248830798980223e-07,1.3133184811768745e-07,1.2094109506690732e-07,1.112732446613341e-07,1.0228704253599354e-07,9.394280127312687e-08,8.620240947035914e-08,7.9029333345789e-08,7.238861148033571e-08,6.624684328946431e-08],[7.142750228404095e-08,7.80495711962858e-08,8.520961313428075e-08,9.294364068684817e-08,1.0128934933828958e-07,1.1028612989819868e-07,1.1997507417027535e-07,1.3039897322171393e-07,1.416023076058828e-07,1.536312288861821e-07,1.6653353180855337e-07,1.8035861647451404e-07,1.9515743987617303e-07,2.1098245616981818e-07,2.2788754508569538e-07,2.4592792789883195e-07,2.6516007041949007e-07,2.856415725023063e-07,3.0743104362059194e-07,3.305879641068e-07,3.5517253172189976e-07,3.8124549328539665e-07,4.088679611739796e-07,4.3810121458016616e-07,4.690064855127191e-07,5.016447296177651e-07,5.360763820031639e-07,5.723610983583524e-07,6.105574817771325e-07,6.507227958111532e-07,6.929126644064533e-07,7.371807595037087e-07,7.83578477213896e-07,8.321546036140818e-07,8.829549713419702e-07,9.360221083016874e-07,9.913948799258696e-07,1.0491081265693625e-06,1.1091922977364429e-06,1.171673084965218e-06,1.2365710553084346e-06,1.3039012874580162e-06,1.3736730126599558e-06,1.4458892626553424e-06,1.5205465269610733e-06,1.5976344218688627e-06,1.677135373592329e-06,1.7590243180280477e-06,1.8432684196164141e-06,1.9298268117910035e-06,2.018650361489918e-06,2.109681460168668e-06,2.202853843700751e-06,2.2980924434788475e-06,2.3953132709360894e-06,2.4944233375930053e-06,2.5953206126015837e-06,2.697894019603585e-06,2.802023474546167e-06,2.90757996590473e-06,3.014425678551356e-06,3.1224141622783552e-06,3.23139054574141e-06,3.341191796327033e-06,3.451647026176042e-06,3.5625778443103657e-06,3.6737987545164447e-06,3.7851175983371107e-06,3.896336042217063e-06,4.007250107537397e-06,4.117650741964485e-06,4.227324430230274e-06,4.336053842157443e-06,4.443618515446361e-06,4.5497955704540315e-06,4.654360453920836e-06,4.757087708341396e-06,4.857751763433715e-06,4.9561277459384795e-06,5.051992303779998e-06,5.145124440444125e-06,5.2353063552784e-06,5.322324285297427e-06,5.405969343983605e-06,5.486038352511233e-06,5.562334658791537e-06,5.634668939738317e-06,5.7028599821890586e-06,5.766735437984788e-06,5.826132548813547e-06,5.8808988365567915e-06,5.930892755044583e-06,5.975984299323203e-06,6.01605556876647e-06,6.051001280618043e-06,6.0807292308347175e-06,6.105160699407719e-06,6.124230797668476e-06,6.1378887554343535e-06,6.146098146215956e-06,6.148837049087848e-06,6.146098146215956e-06,6.1378887554343535e-06,6.124230797668476e-06,6.105160699407719e-06,6.0807292308347175e-06,6.051001280618043e-06,6.01605556876647e-06,5.975984299323203e-06,5.930892755044583e-06,5.8808988365567915e-06,5.826132548813547e-06,5.766735437984788e-06,5.7028599821890586e-06,5.634668939738317e-06,5.562334658791537e-06,5.486038352511233e-06,5.405969343983605e-06,5.322324285297427e-06,5.2353063552784e-06,5.145124440444125e-06,5.051992303779998e-06,4.9561277459384795e-06,4.857751763433715e-06,4.757087708341396e-06,4.654360453920836e-06,4.5497955704540315e-06,4.443618515446361e-06,4.336053842157443e-06,4.227324430230274e-06,4.117650741964485e-06,4.007250107537397e-06,3.896336042217063e-06,3.7851175983371107e-06,3.6737987545164447e-06,3.5625778443103657e-06,3.451647026176042e-06,3.341191796327033e-06,3.23139054574141e-06,3.1224141622783552e-06,3.014425678551356e-06,2.90757996590473e-06,2.802023474546167e-06,2.697894019603585e-06,2.5953206126015837e-06,2.4944233375930053e-06,2.3953132709360894e-06,2.2980924434788475e-06,2.202853843700751e-06,2.109681460168668e-06,2.018650361489918e-06,1.9298268117910035e-06,1.8432684196164141e-06,1.7590243180280477e-06,1.677135373592329e-06,1.5976344218688627e-06,1.5205465269610733e-06,1.4458892626553424e-06,1.3736730126599558e-06,1.3039012874580162e-06,1.2365710553084346e-06,1.171673084965218e-06,1.1091922977364429e-06,1.0491081265693625e-06,9.913948799258696e-07,9.360221083016874e-07,8.829549713419702e-07,8.321546036140818e-07,7.83578477213896e-07,7.371807595037087e-07,6.929126644064533e-07,6.507227958111532e-07,6.105574817771325e-07,5.723610983583524e-07,5.360763820031639e-07,5.016447296177651e-07,4.690064855127191e-07,4.3810121458016616e-07,4.088679611739796e-07,3.8124549328539665e-07,3.5517253172189976e-07,3.305879641068e-07,3.0743104362059194e-07,2.856415725023063e-07,2.6516007041949007e-07,2.4592792789883195e-07,2.2788754508569538e-07,2.1098245616981818e-07,1.9515743987617303e-07,1.8035861647451404e-07,1.6653353180855337e-07,1.536312288861821e-07,1.416023076058828e-07,1.3039897322171393e-07,1.1997507417027535e-07,1.1028612989819868e-07,1.0128934933828958e-07,9.294364068684817e-08,8.520961313428075e-08,7.80495711962858e-08,7.142750228404095e-08],[7.69447075498509e-08,8.407827850689504e-08,9.179137661821992e-08,1.0012279615810982e-07,1.091131442865911e-07,1.1880485443934917e-07,1.2924219243441318e-07,1.4047125460786839e-07,1.525399572813156e-07,1.6549801685859423e-07,1.7939691984884e-07,1.9428988211768795e-07,2.1023179667875413e-07,2.2727916935383384e-07,2.454900416529066e-07,2.649239002543755e-07,2.856415725023063e-07,3.077051073810287e-07,3.3117764147854264e-07,3.561232495089181e-07,3.826067790303758e-07,4.106936690700688e-07,4.4044975244871205e-07,4.71941041688043e-07,5.052334984814749e-07,5.40392786812974e-07,5.774840099208074e-07,6.165714314209579e-07,6.577181810291502e-07,7.009859454500006e-07,7.464346451360502e-07,7.941220977576205e-07,8.441036693656279e-07,8.964319143727614e-07,9.511562056226964e-07,1.0083223559612005e-06,1.0679722328658187e-06,1.130143367831127e-06,1.1948685623429214e-06,1.2621754924058635e-06,1.3320863137136019e-06,1.4046172696668338e-06,1.47977830455173e-06,1.5575726842872157e-06,1.637996627233347e-06,1.7210389476231325e-06,1.8066807142352584e-06,1.8948949269640746e-06,1.9856462139646993e-06,2.0788905520541637e-06,2.1745750130331336e-06,2.272637538556206e-06,2.3730067461212368e-06,2.475601768669299e-06,2.5803321301861316e-06,2.687097659573353e-06,2.795788444913142e-06,2.9062848300838756e-06,3.0184574554967127e-06,3.132167344515017e-06,3.2472660368906414e-06,3.3635957703045778e-06,3.4809897108355022e-06,3.5992722328999243e-06,3.7182592489135378e-06,3.837758588617011e-06,3.957570427692715e-06,4.07748776497419e-06,4.19729694721973e-06,4.316778240087856e-06,4.435706443618336e-06,4.553851550190404e-06,4.670979442602688e-06,4.78685262960002e-06,4.9012310158633605e-06,5.0138727031835005e-06,5.1245348192596935e-06,5.2329743703034814e-06,5.338949113388535e-06,5.442218444271459e-06,5.542544296218757e-06,5.639692045213464e-06,5.733431416783278e-06,5.823537389591963e-06,5.9097910908688926e-06,5.991980678718775e-06,6.069902206355927e-06,6.143360463345323e-06,6.212169789006345e-06,6.276154853244635e-06,6.33515140022226e-06,6.389006950455795e-06,6.437581457145005e-06,6.480747912780011e-06,6.5183929023506666e-06,6.5504170997863035e-06,6.576735704584879e-06,6.597278815945343e-06,6.611991742093098e-06,6.620835242882765e-06,6.6237857041721305e-06,6.620835242882765e-06,6.611991742093098e-06,6.597278815945343e-06,6.576735704584879e-06,6.5504170997863035e-06,6.5183929023506666e-06,6.480747912780011e-06,6.437581457145005e-06,6.389006950455795e-06,6.33515140022226e-06,6.276154853244635e-06,6.212169789006345e-06,6.143360463345323e-06,6.069902206355927e-06,5.991980678718775e-06,5.9097910908688926e-06,5.823537389591963e-06,5.733431416783278e-06,5.639692045213464e-06,5.542544296218757e-06,5.442218444271459e-06,5.338949113388535e-06,5.2329743703034814e-06,5.1245348192596935e-06,5.0138727031835005e-06,4.9012310158633605e-06,4.78685262960002e-06,4.670979442602688e-06,4.553851550190404e-06,4.435706443618336e-06,4.316778240087856e-06,4.19729694721973e-06,4.07748776497419e-06,3.957570427692715e-06,3.837758588617011e-06,3.7182592489135378e-06,3.5992722328999243e-06,3.4809897108355022e-06,3.3635957703045778e-06,3.2472660368906414e-06,3.132167344515017e-06,3.0184574554967127e-06,2.9062848300838756e-06,2.795788444913142e-06,2.687097659573353e-06,2.5803321301861316e-06,2.475601768669299e-06,2.3730067461212368e-06,2.272637538556206e-06,2.1745750130331336e-06,2.0788905520541637e-06,1.9856462139646993e-06,1.8948949269640746e-06,1.8066807142352584e-06,1.7210389476231325e-06,1.637996627233347e-06,1.5575726842872157e-06,1.47977830455173e-06,1.4046172696668338e-06,1.3320863137136019e-06,1.2621754924058635e-06,1.1948685623429214e-06,1.130143367831127e-06,1.0679722328658187e-06,1.0083223559612005e-06,9.511562056226964e-07,8.964319143727614e-07,8.441036693656279e-07,7.941220977576205e-07,7.464346451360502e-07,7.009859454500006e-07,6.577181810291502e-07,6.165714314209579e-07,5.774840099208074e-07,5.40392786812974e-07,5.052334984814749e-07,4.71941041688043e-07,4.4044975244871205e-07,4.106936690700688e-07,3.826067790303758e-07,3.561232495089181e-07,3.3117764147854264e-07,3.077051073810287e-07,2.856415725023063e-07,2.649239002543755e-07,2.454900416529066e-07,2.2727916935383384e-07,2.1023179667875413e-07,1.9428988211768795e-07,1.7939691984884e-07,1.6549801685859423e-07,1.525399572813156e-07,1.4047125460786839e-07,1.2924219243441318e-07,1.1880485443934917e-07,1.091131442865911e-07,1.0012279615810982e-07,9.179137661821992e-08,8.407827850689504e-08,7.69447075498509e-08],[8.281424701560523e-08,9.049198504530999e-08,9.879345804568524e-08,1.077604196176695e-07,1.1743657453951346e-07,1.2786759317811393e-07,1.3910111806153218e-07,1.5118676187249383e-07,1.6417609611239882e-07,1.7812262967977164e-07,1.9308177660660115e-07,2.0911081220112075e-07,2.2626881685669068e-07,2.446166068039912e-07,2.642166511081166e-07,2.8513297424373574e-07,3.0743104362059194e-07,3.3117764147854264e-07,3.5644072062631067e-07,3.832892435613488e-07,4.1179300457979347e-07,4.4202243456547917e-07,4.740483882353841e-07,5.079419137155635e-07,5.437740044264337e-07,5.816153333689245e-07,6.215359700231473e-07,6.636050801983905e-07,7.078906093068663e-07,7.544589496730943e-07,8.033745926352836e-07,8.546997663438078e-07,9.084940603138251e-07,9.64814037943297e-07,1.0237128383629346e-06,1.0852397691397773e-06,1.1494398915098451e-06,1.2163535999662957e-06,1.2860161981763166e-06,1.3584574733411262e-06,1.4337012712474594e-06,1.5117650743842425e-06,1.5926595856132788e-06,1.6763883199861575e-06,1.7629472073897496e-06,1.8523242087780935e-06,1.9444989488078015e-06,2.039442367735975e-06,2.1371163954627647e-06,2.2374736506039913e-06,2.340457167461648e-06,2.4460001537207136e-06,2.5540257816388634e-06,2.664447015410689e-06,2.777166477279713e-06,2.8920763548394768e-06,3.009058351809414e-06,3.127983684392322e-06,3.2487131251184326e-06,3.3710970958571346e-06,3.494975811432116e-06,3.6201794750104035e-06,3.7465285261516354e-06,3.873833942102765e-06,4.001897592606825e-06,4.130512648164656e-06,4.259464041347623e-06,4.388528980409841e-06,4.517477514092833e-06,4.64607314615647e-06,4.774073497810474e-06,4.9012310158633605e-06,5.027293724053703e-06,5.15200601468481e-06,5.2751094773514484e-06,5.39634376122914e-06,5.515447467095667e-06,5.632159064973708e-06,5.746217833025756e-06,5.857364813100167e-06,5.9653437781229626e-06,6.069902206355929e-06,6.17079225739993e-06,6.267771744714574e-06,6.360605099353424e-06,6.44906431957856e-06,6.532929901020867e-06,6.611991742093098e-06,6.686050019442156e-06,6.754916028344797e-06,6.8184129831068574e-06,6.876376772719181e-06,6.928656667252735e-06,6.975115970739326e-06,7.0156326165812035e-06,7.050099701860502e-06,7.078425957275576e-06,7.100536149813151e-06,7.11637141566991e-06,7.125889521361633e-06,7.129065051398826e-06,7.125889521361633e-06,7.11637141566991e-06,7.100536149813151e-06,7.078425957275576e-06,7.050099701860502e-06,7.0156326165812035e-06,6.975115970739326e-06,6.928656667252735e-06,6.876376772719181e-06,6.8184129831068574e-06,6.754916028344797e-06,6.686050019442156e-06,6.611991742093098e-06,6.532929901020867e-06,6.44906431957856e-06,6.360605099353424e-06,6.267771744714574e-06,6.17079225739993e-06,6.069902206355929e-06,5.9653437781229626e-06,5.857364813100167e-06,5.746217833025756e-06,5.632159064973708e-06,5.515447467095667e-06,5.39634376122914e-06,5.2751094773514484e-06,5.15200601468481e-06,5.027293724053703e-06,4.9012310158633605e-06,4.774073497810474e-06,4.64607314615647e-06,4.517477514092833e-06,4.388528980409841e-06,4.259464041347623e-06,4.130512648164656e-06,4.001897592606825e-06,3.873833942102765e-06,3.7465285261516354e-06,3.6201794750104035e-06,3.494975811432116e-06,3.3710970958571346e-06,3.2487131251184326e-06,3.127983684392322e-06,3.009058351809414e-06,2.8920763548394768e-06,2.777166477279713e-06,2.664447015410689e-06,2.5540257816388634e-06,2.4460001537207136e-06,2.340457167461648e-06,2.2374736506039913e-06,2.1371163954627647e-06,2.039442367735975e-06,1.9444989488078015e-06,1.8523242087780935e-06,1.7629472073897496e-06,1.6763883199861575e-06,1.5926595856132788e-06,1.5117650743842425e-06,1.4337012712474594e-06,1.3584574733411262e-06,1.2860161981763166e-06,1.2163535999662957e-06,1.1494398915098451e-06,1.0852397691397773e-06,1.0237128383629346e-06,9.64814037943297e-07,9.084940603138251e-07,8.546997663438078e-07,8.033745926352836e-07,7.544589496730943e-07,7.078906093068663e-07,6.636050801983905e-07,6.215359700231473e-07,5.816153333689245e-07,5.437740044264337e-07,5.079419137155635e-07,4.740483882353841e-07,4.4202243456547917e-07,4.1179300457979347e-07,3.832892435613488e-07,3.5644072062631067e-07,3.3117764147854264e-07,3.0743104362059194e-07,2.8513297424373574e-07,2.642166511081166e-07,2.446166068039912e-07,2.2626881685669068e-07,2.0911081220112075e-07,1.9308177660660115e-07,1.7812262967977164e-07,1.6417609611239882e-07,1.5118676187249383e-07,1.3910111806153218e-07,1.2786759317811393e-07,1.1743657453951346e-07,1.077604196176695e-07,9.879345804568524e-08,9.049198504530999e-08,8.281424701560523e-08],[8.905214319772361e-08,9.73081987810949e-08,1.0623497151673482e-07,1.1587736005172152e-07,1.2628236118082714e-07,1.374990853433705e-07,1.4957876369080326e-07,1.6257474592907242e-07,1.765424881287587e-07,1.9153952968997111e-07,2.0762545864846042e-07,2.2486186451490019e-07,2.4331227785123225e-07,2.630420958068416e-07,2.8411849286354375e-07,3.066103160723211e-07,3.305879641068e-07,3.561232495089181e-07,3.832892435613488e-07,4.12160103289239e-07,4.4281088017078105e-07,4.753173102221655e-07,5.097555852175129e-07,5.462021049083563e-07,5.847332102199454e-07,6.254248975227816e-07,6.683525142069768e-07,7.135904359237631e-07,7.612117260021698e-07,8.112877776988328e-07,8.638879400942809e-07,9.190791286089608e-07,9.76925421275677e-07,1.0374876420709374e-06,1.1008229327746655e-06,1.166984314994604e-06,1.23602024415705e-06,1.307974157427936e-06,1.3828840176861023e-06,1.460781855822416e-06,1.5416933137824543e-06,1.625637190905261e-06,1.712624996234464e-06,1.802660509589222e-06,1.8957393542794094e-06,1.9918485844305708e-06,2.0909662899479772e-06,2.1930612221941153e-06,2.2980924434788475e-06,2.406009003464993e-06,2.5167496455731685e-06,2.6302425464273732e-06,2.746405091316278e-06,2.8651436885538392e-06,2.986353625506344e-06,3.109918968911045e-06,3.235712511944281e-06,3.363595770304577e-06,3.4934190293592273e-06,3.6250214441620237e-06,3.75823119388606e-06,3.892865691930247e-06,4.028731852652631e-06,4.165626415359812e-06,4.303336325841299e-06,4.4416391753831285e-06,4.580303696828475e-06,4.7190903168771774e-06,4.857751763433715e-06,4.996033726427049e-06,5.133675570139078e-06,5.270411094694158e-06,5.405969343983605e-06,5.540075456929422e-06,5.672451558633991e-06,5.802817687620412e-06,5.930892755044583e-06,6.056395531458306e-06,6.179045656425485e-06,6.298564666043673e-06,6.414677033203637e-06,6.527111215232442e-06,6.635600703413179e-06,6.73988506875865e-06,6.839710998338932e-06,6.9348333164246526e-06,7.0250159847106226e-06,7.110033075928192e-06,7.189669715240051e-06,7.263722983937864e-06,7.3320027801307215e-06,7.394332631320055e-06,7.450550454003229e-06,7.500509255731811e-06,7.544077775369772e-06,7.58114105764923e-06,7.611600958504251e-06,7.635376578073844e-06,7.65240461870053e-06,7.662639665707244e-06,7.666054389209439e-06,7.662639665707244e-06,7.65240461870053e-06,7.635376578073844e-06,7.611600958504251e-06,7.58114105764923e-06,7.544077775369772e-06,7.500509255731811e-06,7.450550454003229e-06,7.394332631320055e-06,7.3320027801307215e-06,7.263722983937864e-06,7.189669715240051e-06,7.110033075928192e-06,7.0250159847106226e-06,6.9348333164246526e-06,6.839710998338932e-06,6.73988506875865e-06,6.635600703413179e-06,6.527111215232442e-06,6.414677033203637e-06,6.298564666043673e-06,6.179045656425485e-06,6.056395531458306e-06,5.930892755044583e-06,5.802817687620412e-06,5.672451558633991e-06,5.540075456929422e-06,5.405969343983605e-06,5.270411094694158e-06,5.133675570139078e-06,4.996033726427049e-06,4.857751763433715e-06,4.7190903168771774e-06,4.580303696828475e-06,4.4416391753831285e-06,4.303336325841299e-06,4.165626415359812e-06,4.028731852652631e-06,3.892865691930247e-06,3.75823119388606e-06,3.6250214441620237e-06,3.4934190293592273e-06,3.363595770304577e-06,3.235712511944281e-06,3.109918968911045e-06,2.986353625506344e-06,2.8651436885538392e-06,2.746405091316278e-06,2.6302425464273732e-06,2.5167496455731685e-06,2.406009003464993e-06,2.2980924434788475e-06,2.1930612221941153e-06,2.0909662899479772e-06,1.9918485844305708e-06,1.8957393542794094e-06,1.802660509589222e-06,1.712624996234464e-06,1.625637190905261e-06,1.5416933137824543e-06,1.460781855822416e-06,1.3828840176861023e-06,1.307974157427936e-06,1.23602024415705e-06,1.166984314994604e-06,1.1008229327746655e-06,1.0374876420709374e-06,9.76925421275677e-07,9.190791286089608e-07,8.638879400942809e-07,8.112877776988328e-07,7.612117260021698e-07,7.135904359237631e-07,6.683525142069768e-07,6.254248975227816e-07,5.847332102199454e-07,5.462021049083563e-07,5.097555852175129e-07,4.753173102221655e-07,4.4281088017078105e-07,4.12160103289239e-07,3.832892435613488e-07,3.561232495089181e-07,3.305879641068e-07,3.066103160723211e-07,2.8411849286354375e-07,2.630420958068416e-07,2.4331227785123225e-07,2.2486186451490019e-07,2.0762545864846042e-07,1.9153952968997111e-07,1.765424881287587e-07,1.6257474592907242e-07,1.4957876369080326e-07,1.374990853433705e-07,1.2628236118082714e-07,1.1587736005172152e-07,1.0623497151673482e-07,9.73081987810949e-08,8.905214319772361e-08],[9.567461186995482e-08,1.0454463885809825e-07,1.1413526167822904e-07,1.2449471791878067e-07,1.356734993471323e-07,1.4772436855890338e-07,1.6070236657112944e-07,1.7466481050416903e-07,1.8967128048532872e-07,2.0578359490072461e-07,2.2306577312134344e-07,2.415839848351609e-07,2.614064851300099e-07,2.8260353449216427e-07,3.0524730291377127e-07,3.2941175733874267e-07,3.5517253172189976e-07,3.826067790303758e-07,4.1179300457979347e-07,4.4281088017078105e-07,4.7574103857407807e-07,5.106648480049053e-07,5.476641663293951e-07,5.868210748575803e-07,6.282175916985233e-07,6.719353647833147e-07,7.180553448004555e-07,7.666574384350483e-07,8.178201424575894e-07,8.716201593692598e-07,9.281319954775427e-07,9.874275424478092e-07,1.0495756435520772e-06,1.114641646014297e-06,1.182686941030901e-06,1.2537684932246288e-06,1.3279383614672561e-06,1.405243213181284e-06,1.4857238344002445e-06,1.5694146380303461e-06,1.6563431729109836e-06,1.7465296364164345e-06,1.8399863934740617e-06,1.9367175049937763e-06,2.03671826880768e-06,2.1399747763059473e-06,2.246463488023564e-06,2.3561508314808784e-06,2.468992824607675e-06,2.584934728084279e-06,2.7039107299128355e-06,2.8258436654864616e-06,2.9506447763524406e-06,3.0782135107675488e-06,3.2084373690183747e-06,3.3411917963270333e-06,3.476340125982944e-06,3.613733575134645e-06,3.75321129544249e-06,3.894600480534312e-06,4.037716531922805e-06,4.18236328473687e-06,4.32833329429086e-06,4.475408184167869e-06,4.6233590561273355e-06,4.771946961766439e-06,4.920923435470842e-06,5.070031087786637e-06,5.2190042579344645e-06,5.367569723772022e-06,5.5154474670956665e-06,5.66235149175901e-06,5.807990691679691e-06,5.952069765408342e-06,6.094290173549695e-06,6.234351134958237e-06,6.371950657283254e-06,6.506786597113747e-06,6.638557744675935e-06,6.7669649277676695e-06,6.891712129378143e-06,7.012507613240197e-06,7.129065051398824e-06,7.241104647755082e-06,7.3483542514613644e-06,7.450550454003229e-06,7.547439663805846e-06,7.638779152250201e-06,7.724338065075833e-06,7.803898393283026e-06,7.877255897827375e-06,7.94422098262282e-06,8.004619510634037e-06,8.058293558144129e-06,8.105102102626378e-06,8.144921640027524e-06,8.17764672768129e-06,8.203190449512195e-06,8.221484800657084e-06,8.23248098912235e-06,8.23614965260404e-06,8.23248098912235e-06,8.221484800657084e-06,8.203190449512195e-06,8.17764672768129e-06,8.144921640027524e-06,8.105102102626378e-06,8.058293558144129e-06,8.004619510634037e-06,7.94422098262282e-06,7.877255897827375e-06,7.803898393283026e-06,7.724338065075833e-06,7.638779152250201e-06,7.547439663805846e-06,7.450550454003229e-06,7.3483542514613644e-06,7.241104647755082e-06,7.129065051398824e-06,7.012507613240197e-06,6.891712129378143e-06,6.7669649277676695e-06,6.638557744675935e-06,6.506786597113747e-06,6.371950657283254e-06,6.234351134958237e-06,6.094290173549695e-06,5.952069765408342e-06,5.807990691679691e-06,5.66235149175901e-06,5.5154474670956665e-06,5.367569723772022e-06,5.2190042579344645e-06,5.070031087786637e-06,4.920923435470842e-06,4.771946961766439e-06,4.6233590561273355e-06,4.475408184167869e-06,4.32833329429086e-06,4.18236328473687e-06,4.037716531922805e-06,3.894600480534312e-06,3.75321129544249e-06,3.613733575134645e-06,3.476340125982944e-06,3.3411917963270333e-06,3.2084373690183747e-06,3.0782135107675488e-06,2.9506447763524406e-06,2.8258436654864616e-06,2.7039107299128355e-06,2.584934728084279e-06,2.468992824607675e-06,2.3561508314808784e-06,2.246463488023564e-06,2.1399747763059473e-06,2.03671826880768e-06,1.9367175049937763e-06,1.8399863934740617e-06,1.7465296364164345e-06,1.6563431729109836e-06,1.5694146380303461e-06,1.4857238344002445e-06,1.405243213181284e-06,1.3279383614672561e-06,1.2537684932246288e-06,1.182686941030901e-06,1.114641646014297e-06,1.0495756435520772e-06,9.874275424478092e-07,9.281319954775427e-07,8.716201593692598e-07,8.178201424575894e-07,7.666574384350483e-07,7.180553448004555e-07,6.719353647833147e-07,6.282175916985233e-07,5.868210748575803e-07,5.476641663293951e-07,5.106648480049053e-07,4.7574103857407807e-07,4.4281088017078105e-07,4.1179300457979347e-07,3.826067790303758e-07,3.5517253172189976e-07,3.2941175733874267e-07,3.0524730291377127e-07,2.8260353449216427e-07,2.614064851300099e-07,2.415839848351609e-07,2.2306577312134344e-07,2.0578359490072461e-07,1.8967128048532872e-07,1.7466481050416903e-07,1.6070236657112944e-07,1.4772436855890338e-07,1.356734993471323e-07,1.2449471791878067e-07,1.1413526167822904e-07,1.0454463885809825e-07,9.567461186995482e-08],[1.0269801670870804e-07,1.1221918603493669e-07,1.2251384961786796e-07,1.336337861328067e-07,1.4563319391166778e-07,1.585687088144836e-07,1.7249941237998954e-07,1.8748682933736103e-07,2.035949135484435e-07,2.2089002144287037e-07,2.394408720078712e-07,2.5931849240089673e-07,2.8059614826696733e-07,3.0334925786440965e-07,3.2765528913288446e-07,3.5359363887676094e-07,3.8124549328539665e-07,4.106936690700688e-07,4.4202243456547917e-07,4.753173102221655e-07,5.106648480049053e-07,5.48152389311411e-07,5.878678011352296e-07,6.298991903166657e-07,6.743345958555154e-07,7.212616593991026e-07,7.707672741680819e-07,8.229372127401669e-07,8.778557342776411e-07,9.356051719574463e-07,9.96265501541817e-07,1.0599138922118684e-06,1.1266242409749857e-06,1.1964666921480992e-06,1.2695071436114687e-06,1.3458067417200533e-06,1.4254213669501771e-06,1.5084011125464545e-06,1.5947897586159724e-06,1.6846242442917745e-06,1.7779341407538548e-06,1.8747411280512937e-06,1.9750584788119284e-06,2.0788905520541633e-06,2.1862323004273173e-06,2.2970687943004634e-06,2.4113747661932947e-06,2.529114179094436e-06,2.6502398222413505e-06,2.7746929379400507e-06,2.902402882980982e-06,3.033286828158652e-06,3.167249499325804e-06,3.3041829633076498e-06,3.443966461867266e-06,3.586466296749597e-06,3.7315357686385687e-06,3.879015172639992e-06,4.028731852652632e-06,4.1805003167121175e-06,4.334122415088203e-06,4.489387582586876e-06,4.646073146156469e-06,4.803944698523473e-06,4.9627565381911786e-06,5.1222521757253905e-06,5.282164905828702e-06,5.442218444271459e-06,5.60212762830647e-06,5.761599178749351e-06,5.920332521460374e-06,6.078020665520567e-06,6.234351134958238e-06,6.389006950455795e-06,6.541667657054456e-06,6.692010393479909e-06,6.839710998338935e-06,6.984445148088801e-06,7.1258895213616325e-06,7.263722983937866e-06,7.397627788409618e-06,7.527290782358981e-06,7.652404618700531e-06,7.772668961703792e-06,7.887791682122047e-06,7.997490034810185e-06,8.10149181221721e-06,8.199536467189769e-06,8.291376198621228e-06,8.376776993627102e-06,8.455519620120796e-06,8.527400563903146e-06,8.592232904663603e-06,8.649847125618142e-06,8.70009185187721e-06,8.742834513043311e-06,8.777961925979448e-06,8.80538079416319e-06,8.825018120543007e-06,8.83682153133994e-06,8.840759508784293e-06,8.83682153133994e-06,8.825018120543007e-06,8.80538079416319e-06,8.777961925979448e-06,8.742834513043311e-06,8.70009185187721e-06,8.649847125618142e-06,8.592232904663603e-06,8.527400563903146e-06,8.455519620120796e-06,8.376776993627102e-06,8.291376198621228e-06,8.199536467189769e-06,8.10149181221721e-06,7.997490034810185e-06,7.887791682122047e-06,7.772668961703792e-06,7.652404618700531e-06,7.527290782358981e-06,7.397627788409618e-06,7.263722983937866e-06,7.1258895213616325e-06,6.984445148088801e-06,6.839710998338935e-06,6.692010393479909e-06,6.541667657054456e-06,6.389006950455795e-06,6.234351134958238e-06,6.078020665520567e-06,5.920332521460374e-06,5.761599178749351e-06,5.60212762830647e-06,5.442218444271459e-06,5.282164905828702e-06,5.1222521757253905e-06,4.9627565381911786e-06,4.803944698523473e-06,4.646073146156469e-06,4.489387582586876e-06,4.334122415088203e-06,4.1805003167121175e-06,4.028731852652632e-06,3.879015172639992e-06,3.7315357686385687e-06,3.586466296749597e-06,3.443966461867266e-06,3.3041829633076498e-06,3.167249499325804e-06,3.033286828158652e-06,2.902402882980982e-06,2.7746929379400507e-06,2.6502398222413505e-06,2.529114179094436e-06,2.4113747661932947e-06,2.2970687943004634e-06,2.1862323004273173e-06,2.0788905520541633e-06,1.9750584788119284e-06,1.8747411280512937e-06,1.7779341407538548e-06,1.6846242442917745e-06,1.5947897586159724e-06,1.5084011125464545e-06,1.4254213669501771e-06,1.3458067417200533e-06,1.2695071436114687e-06,1.1964666921480992e-06,1.1266242409749857e-06,1.0599138922118684e-06,9.96265501541817e-07,9.356051719574463e-07,8.778557342776411e-07,8.229372127401669e-07,7.707672741680819e-07,7.212616593991026e-07,6.743345958555154e-07,6.298991903166657e-07,5.878678011352296e-07,5.48152389311411e-07,5.106648480049053e-07,4.753173102221655e-07,4.4202243456547917e-07,4.106936690700688e-07,3.8124549328539665e-07,3.5359363887676094e-07,3.2765528913288446e-07,3.0334925786440965e-07,2.8059614826696733e-07,2.5931849240089673e-07,2.394408720078712e-07,2.2089002144287037e-07,2.035949135484435e-07,1.8748682933736103e-07,1.7249941237998954e-07,1.585687088144836e-07,1.4563319391166778e-07,1.336337861328067e-07,1.2251384961786796e-07,1.1221918603493669e-07,1.0269801670870804e-07],[1.1013881986237013e-07,1.203498286715763e-07,1.3139037389573765e-07,1.433159857424948e-07,1.561847893880382e-07,1.7005752414346448e-07,1.8499755219589745e-07,2.010708559399434e-07,2.1834602290138942e-07,2.368942172476101e-07,2.5678913687850816e-07,2.781069550985983e-07,3.009262458856222e-07,3.2532789179441784e-07,3.513949735671925e-07,3.792126405633433e-07,4.088679611739796e-07,4.4044975244871205e-07,4.740483882353841e-07,5.097555852175129e-07,5.476641663293951e-07,5.878678011352296e-07,6.304607228761664e-07,6.755374220177851e-07,7.231923162698934e-07,7.735193972003558e-07,8.266118537244375e-07,8.825616729202601e-07,9.414592187986772e-07,1.003392789841339e-06,1.0684481563128758e-06,1.1367080785509273e-06,1.2082518076398444e-06,1.2831545700789723e-06,1.3614870382629277e-06,1.443314788797667e-06,1.528697750880587e-06,1.6176896471737385e-06,1.7103374297944317e-06,1.8066807142352582e-06,1.9067512142037554e-06,2.0105721805386123e-06,2.1181578475124414e-06,2.229512889968614e-06,2.3446318948595837e-06,2.463498850854422e-06,2.5860866597622273e-06,2.712356673573706e-06,2.842258260954025e-06,2.9757284070244076e-06,3.1126913502465006e-06,3.2530582601712316e-06,3.3967269597315198e-06,3.5435816956453053e-06,3.6934929603512e-06,3.846317368723554e-06,4.001897592606825e-06,4.1600623559711895e-06,4.3206264932229866e-06,4.483391072905653e-06,4.6481435887007145e-06,4.814658219285465e-06,4.982696158226131e-06,5.152006014684809e-06,5.322324285297428e-06,5.493375897141504e-06,5.664874821259044e-06,5.836524755735208e-06,6.0080198768603386e-06,6.179045656425486e-06,6.349279742723268e-06,6.5183929023506666e-06,6.686050019442155e-06,6.85191114850434e-06,7.0156326165812035e-06,7.176868170055866e-06,7.335270160994724e-06,7.4904907675664005e-06,7.642183242725185e-06,7.790003185039644e-06,7.93360982527547e-06,8.072667322110202e-06,8.206846060168965e-06,8.335823943427142e-06,8.459287676930161e-06,8.576934029733515e-06,8.688471071969576e-06,8.79361937900183e-06,8.892113195732764e-06,8.983701554288257e-06,9.068149338508645e-06,9.14523828893343e-06,9.214767942271578e-06,9.27655649970031e-06,9.330441618730192e-06,9.376281123810064e-06,9.413953631318929e-06,9.443359085099838e-06,9.464419199229014e-06,9.477077805277972e-06,9.481301101912764e-06,9.477077805277972e-06,9.464419199229014e-06,9.443359085099838e-06,9.413953631318929e-06,9.376281123810064e-06,9.330441618730192e-06,9.27655649970031e-06,9.214767942271578e-06,9.14523828893343e-06,9.068149338508645e-06,8.983701554288257e-06,8.892113195732764e-06,8.79361937900183e-06,8.688471071969576e-06,8.576934029733515e-06,8.459287676930161e-06,8.335823943427142e-06,8.206846060168965e-06,8.072667322110202e-06,7.93360982527547e-06,7.790003185039644e-06,7.642183242725185e-06,7.4904907675664005e-06,7.335270160994724e-06,7.176868170055866e-06,7.0156326165812035e-06,6.85191114850434e-06,6.686050019442155e-06,6.5183929023506666e-06,6.349279742723268e-06,6.179045656425486e-06,6.0080198768603386e-06,5.836524755735208e-06,5.664874821259044e-06,5.493375897141504e-06,5.322324285297428e-06,5.152006014684809e-06,4.982696158226131e-06,4.814658219285465e-06,4.6481435887007145e-06,4.483391072905653e-06,4.3206264932229866e-06,4.1600623559711895e-06,4.001897592606825e-06,3.846317368723554e-06,3.6934929603512e-06,3.5435816956453053e-06,3.3967269597315198e-06,3.2530582601712316e-06,3.1126913502465006e-06,2.9757284070244076e-06,2.842258260954025e-06,2.712356673573706e-06,2.5860866597622273e-06,2.463498850854422e-06,2.3446318948595837e-06,2.229512889968614e-06,2.1181578475124414e-06,2.0105721805386123e-06,1.9067512142037554e-06,1.8066807142352582e-06,1.7103374297944317e-06,1.6176896471737385e-06,1.528697750880587e-06,1.443314788797667e-06,1.3614870382629277e-06,1.2831545700789723e-06,1.2082518076398444e-06,1.1367080785509273e-06,1.0684481563128758e-06,1.003392789841339e-06,9.414592187986772e-07,8.825616729202601e-07,8.266118537244375e-07,7.735193972003558e-07,7.231923162698934e-07,6.755374220177851e-07,6.304607228761664e-07,5.878678011352296e-07,5.476641663293951e-07,5.097555852175129e-07,4.740483882353841e-07,4.4044975244871205e-07,4.088679611739796e-07,3.792126405633433e-07,3.513949735671925e-07,3.2532789179441784e-07,3.009262458856222e-07,2.781069550985983e-07,2.5678913687850816e-07,2.368942172476101e-07,2.1834602290138942e-07,2.010708559399434e-07,1.8499755219589745e-07,1.7005752414346448e-07,1.561847893880382e-07,1.433159857424948e-07,1.3139037389573765e-07,1.203498286715763e-07,1.1013881986237013e-07],[1.180135284153471e-07,1.2895460423003652e-07,1.407845266784579e-07,1.5356279626865636e-07,1.6735169401236406e-07,1.8221630196171277e-07,1.9822451257532828e-07,2.154470258589898e-07,2.3395733321140238e-07,2.53831686897654e-07,2.7514905407224273e-07,2.9799105428082996e-07,3.224418793857083e-07,3.4858819488497927e-07,3.765190216301781e-07,4.0632559699208207e-07,4.3810121458016616e-07,4.71941041688043e-07,5.079419137155635e-07,5.462021049083563e-07,5.868210748575803e-07,6.298991903166657e-07,6.755374220177851e-07,7.238370163085804e-07,7.748991415790274e-07,8.288245096088497e-07,8.857129721370923e-07,9.456630931366697e-07,1.0087716974671174e-06,1.0751333967775008e-06,1.1448400937373306e-06,1.2179804658852797e-06,1.294639430602038e-06,1.3748975929333934e-06,1.4588306782108932e-06,1.5465089516385778e-06,1.6379966272333467e-06,1.7333512687217075e-06,1.8326231852048225e-06,1.9358548246049276e-06,2.0430801680971462e-06,2.15432412890931e-06,2.269601959036469e-06,2.3889186675640818e-06,2.5122684544223715e-06,2.6396341635018044e-06,2.770986759144235e-06,2.9062848300838747e-06,3.045474124945239e-06,3.1884871234099072e-06,3.335242647138852e-06,3.4856455144809634e-06,3.639586242910239e-06,3.7969408030130853e-06,3.957570427692713e-06,4.121321480069582e-06,4.288025383335095e-06,4.457498615560861e-06,4.6295427721782005e-06,4.803944698523473e-06,4.980476694495252e-06,5.158896792991318e-06,5.3389491133885344e-06,5.520364290899538e-06,5.7028599821890586e-06,5.886141447162777e-06,6.069902206355927e-06,6.253824772850725e-06,6.4375814571450035e-06,6.620835242882762e-06,6.803240730844849e-06,6.9844451480888e-06,7.164089418625164e-06,7.3418092915277546e-06,7.5172365219015256e-06,7.690000099678406e-06,7.8597275207827e-06,8.026046094807591e-06,8.188584282976992e-06,8.34697305983588e-06,8.500847291821304e-06,8.64984712561814e-06,8.79361937900183e-06,8.931818926716803e-06,9.064110073836686e-06,9.19016790900207e-06,9.30967962993514e-06,9.422345833688573e-06,9.52788176419915e-06,9.62601850988437e-06,9.71650414424253e-06,9.799104802691869e-06,9.87360568921112e-06,9.939812006719979e-06,9.997549805560967e-06,1.0046666744911223e-05,1.008703276246008e-05,1.0118540648232562e-05,1.014110651901563e-05,1.0154670190448866e-05,1.0159195444469559e-05,1.0154670190448866e-05,1.014110651901563e-05,1.0118540648232562e-05,1.008703276246008e-05,1.0046666744911223e-05,9.997549805560967e-06,9.939812006719979e-06,9.87360568921112e-06,9.799104802691869e-06,9.71650414424253e-06,9.62601850988437e-06,9.52788176419915e-06,9.422345833688573e-06,9.30967962993514e-06,9.19016790900207e-06,9.064110073836686e-06,8.931818926716803e-06,8.79361937900183e-06,8.64984712561814e-06,8.500847291821304e-06,8.34697305983588e-06,8.188584282976992e-06,8.026046094807591e-06,7.8597275207827e-06,7.690000099678406e-06,7.5172365219015256e-06,7.3418092915277546e-06,7.164089418625164e-06,6.9844451480888e-06,6.803240730844849e-06,6.620835242882762e-06,6.4375814571450035e-06,6.253824772850725e-06,6.069902206355927e-06,5.886141447162777e-06,5.7028599821890586e-06,5.520364290899538e-06,5.3389491133885344e-06,5.158896792991318e-06,4.980476694495252e-06,4.803944698523473e-06,4.6295427721782005e-06,4.457498615560861e-06,4.288025383335095e-06,4.121321480069582e-06,3.957570427692713e-06,3.7969408030130853e-06,3.639586242910239e-06,3.4856455144809634e-06,3.335242647138852e-06,3.1884871234099072e-06,3.045474124945239e-06,2.9062848300838747e-06,2.770986759144235e-06,2.6396341635018044e-06,2.5122684544223715e-06,2.3889186675640818e-06,2.269601959036469e-06,2.15432412890931e-06,2.0430801680971462e-06,1.9358548246049276e-06,1.8326231852048225e-06,1.7333512687217075e-06,1.6379966272333467e-06,1.5465089516385778e-06,1.4588306782108932e-06,1.3748975929333934e-06,1.294639430602038e-06,1.2179804658852797e-06,1.1448400937373306e-06,1.0751333967775008e-06,1.0087716974671174e-06,9.456630931366697e-07,8.857129721370923e-07,8.288245096088497e-07,7.748991415790274e-07,7.238370163085804e-07,6.755374220177851e-07,6.298991903166657e-07,5.868210748575803e-07,5.462021049083563e-07,5.079419137155635e-07,4.71941041688043e-07,4.3810121458016616e-07,4.0632559699208207e-07,3.765190216301781e-07,3.4858819488497927e-07,3.224418793857083e-07,2.9799105428082996e-07,2.7514905407224273e-07,2.53831686897654e-07,2.3395733321140238e-07,2.154470258589898e-07,1.9822451257532828e-07,1.8221630196171277e-07,1.6735169401236406e-07,1.5356279626865636e-07,1.407845266784579e-07,1.2895460423003652e-07,1.180135284153471e-07],[1.2633863674191953e-07,1.380515362838511e-07,1.507159849700733e-07,1.6439568069330074e-07,1.7915729799689127e-07,1.950705100602939e-07,2.1220799872586203e-07,2.3064545143780413e-07,2.504615439483778e-07,2.7173790763789226e-07,2.945590802943506e-07,3.1901243920634686e-07,3.451881154397821e-07,3.731788881957336e-07,4.0308005818400645e-07,4.3498929899506694e-07,4.690064855127191e-07,5.052334984814749e-07,5.437740044264337e-07,5.847332102199454e-07,6.282175916985233e-07,6.743345958555154e-07,7.231923162698934e-07,7.748991415790274e-07,8.295633769632011e-07,8.87292838781479e-07,9.48194422681815e-07,1.012373645702273e-06,1.0799341630840847e-06,1.150977260730004e-06,1.2256013244618512e-06,1.3039012874580164e-06,1.3859680574835336e-06,1.4718879257605714e-06,1.5617419595640694e-06,1.655605380863982e-06,1.7535469335701287e-06,1.8556282421659941e-06,1.961903164741764e-06,2.072417143652225e-06,2.1872065572295696e-06,2.3062980761723463e-06,2.429708028407431e-06,2.557441776379594e-06,2.689493110860803e-06,2.825843665486461e-06,2.96646235631631e-06,3.1113048507815698e-06,3.2603130704152e-06,3.413414731767195e-06,3.5705229298799304e-06,3.7315357686385675e-06,3.896336042217063e-06,4.06479097171083e-06,4.236752000881714e-06,4.4120546547396416e-06,4.590518464447943e-06,4.771946961766438e-06,4.9561277459384795e-06,5.142832625586506e-06,5.3318178378065e-06,5.522824346246939e-06,5.715578219524447e-06,5.909791090868892e-06,6.105160699407719e-06,6.301371512996361e-06,6.498095431981428e-06,6.694992572750298e-06,6.8917121293781425e-06,7.0878933111357204e-06,7.283166353072646e-06,7.47715359634566e-06,7.669470634424399e-06,7.8597275207827e-06,8.047530033176274e-06,8.232480989122348e-06,8.414181606737723e-06,8.5922329046636e-06,8.766237134412172e-06,8.935799238115614e-06,9.100528324346546e-06,9.260039154413525e-06,9.413953631318927e-06,9.56190228340235e-06,9.703525734582694e-06,9.838476153058286e-06,9.966418670328206e-06,1.0087032762460078e-05,1.0200013585650705e-05,1.0305073258305545e-05,1.040194208210093e-05,1.0490369694787385e-05,1.0570126147842327e-05,1.0641002902482976e-05,1.0702813738003264e-05,1.0755395566898398e-05,1.0798609151783972e-05,1.0832339719699082e-05,1.085649747000033e-05,1.0871017972701166e-05,1.0875862454783534e-05,1.0871017972701166e-05,1.085649747000033e-05,1.0832339719699082e-05,1.0798609151783972e-05,1.0755395566898398e-05,1.0702813738003264e-05,1.0641002902482976e-05,1.0570126147842327e-05,1.0490369694787385e-05,1.040194208210093e-05,1.0305073258305545e-05,1.0200013585650705e-05,1.0087032762460078e-05,9.966418670328206e-06,9.838476153058286e-06,9.703525734582694e-06,9.56190228340235e-06,9.413953631318927e-06,9.260039154413525e-06,9.100528324346546e-06,8.935799238115614e-06,8.766237134412172e-06,8.5922329046636e-06,8.414181606737723e-06,8.232480989122348e-06,8.047530033176274e-06,7.8597275207827e-06,7.669470634424399e-06,7.47715359634566e-06,7.283166353072646e-06,7.0878933111357204e-06,6.8917121293781425e-06,6.694992572750298e-06,6.498095431981428e-06,6.301371512996361e-06,6.105160699407719e-06,5.909791090868892e-06,5.715578219524447e-06,5.522824346246939e-06,5.3318178378065e-06,5.142832625586506e-06,4.9561277459384795e-06,4.771946961766438e-06,4.590518464447943e-06,4.4120546547396416e-06,4.236752000881714e-06,4.06479097171083e-06,3.896336042217063e-06,3.7315357686385675e-06,3.5705229298799304e-06,3.413414731767195e-06,3.2603130704152e-06,3.1113048507815698e-06,2.96646235631631e-06,2.825843665486461e-06,2.689493110860803e-06,2.557441776379594e-06,2.429708028407431e-06,2.3062980761723463e-06,2.1872065572295696e-06,2.072417143652225e-06,1.961903164741764e-06,1.8556282421659941e-06,1.7535469335701287e-06,1.655605380863982e-06,1.5617419595640694e-06,1.4718879257605714e-06,1.3859680574835336e-06,1.3039012874580164e-06,1.2256013244618512e-06,1.150977260730004e-06,1.0799341630840847e-06,1.012373645702273e-06,9.48194422681815e-07,8.87292838781479e-07,8.295633769632011e-07,7.748991415790274e-07,7.231923162698934e-07,6.743345958555154e-07,6.282175916985233e-07,5.847332102199454e-07,5.437740044264337e-07,5.052334984814749e-07,4.690064855127191e-07,4.3498929899506694e-07,4.0308005818400645e-07,3.731788881957336e-07,3.451881154397821e-07,3.1901243920634686e-07,2.945590802943506e-07,2.7173790763789226e-07,2.504615439483778e-07,2.3064545143780413e-07,2.1220799872586203e-07,1.950705100602939e-07,1.7915729799689127e-07,1.6439568069330074e-07,1.507159849700733e-07,1.380515362838511e-07,1.2633863674191953e-07],[1.351305647711742e-07,1.476585670595199e-07,1.612043369650529e-07,1.7583600512808433e-07,1.9162488598521221e-07,2.086455012847405e-07,2.2697559081126005e-07,2.466961091115804e-07,2.678912069974449e-07,2.9064819659132603e-07,3.1505749868081474e-07,3.4121257115544016e-07,3.692098173178873e-07,3.9914847289021155e-07,4.311304705754337e-07,4.652602810864197e-07,5.016447296177651e-07,5.40392786812974e-07,5.816153333689245e-07,6.254248975227816e-07,6.719353647833147e-07,7.212616593991026e-07,7.735193972003558e-07,8.288245096088497e-07,8.87292838781479e-07,9.490397040367649e-07,1.0141794399096694e-06,1.0828249063875584e-06,1.1550869720981956e-06,1.2310739714481851e-06,1.3108911369460516e-06,1.3946400081868246e-06,1.4824178192229526e-06,1.5743168662979846e-06,1.6704238581728308e-06,1.7708192515276123e-06,1.8755765741729654e-06,1.9847617390510573e-06,2.098432352246075e-06,2.2166370184542954e-06,2.3394146475824693e-06,2.4667937663477645e-06,2.598791838940369e-06,2.7354146009785324e-06,2.876655411132947e-06,3.022494624920462e-06,3.172898995263931e-06,3.3278211044832865e-06,3.487198832420718e-06,3.650954865408175e-06,3.818996250756694e-06,3.99121400138282e-06,4.16748275508639e-06,4.347660492855409e-06,4.531588320396893e-06,4.7190903168771774e-06,4.909973454601399e-06,5.104027593069865e-06,5.3010255505197855e-06,5.500723255695361e-06,5.702859982189059e-06,5.907158667263935e-06,6.113326316603297e-06,6.321054495942581e-06,6.530019910021765e-06,6.739885068758652e-06,6.950299039987063e-06,7.160898287533785e-06,7.371307592827763e-06,7.581141057649232e-06,7.790003185039644e-06,7.997490034810185e-06,8.203190449512195e-06,8.406687346171928e-06,8.607559068549545e-06,8.805380794163188e-06,8.999725989828021e-06,9.190167909002071e-06,9.376281123810064e-06,9.557643084237424e-06,9.733835696653346e-06,9.90444691353786e-06,1.0069072326056546e-05,1.0227316750950944e-05,1.0378795803095033e-05,1.0523137445010679e-05,1.0659983504638877e-05,1.0788991152730228e-05,1.090983433134746e-05,1.1022205125165064e-05,1.1125815067505421e-05,1.122039637336593e-05,1.1305703092065738e-05,1.1381512172571361e-05,1.1447624435044927e-05,1.1503865442693409e-05,1.1550086268578237e-05,1.1586164152667901e-05,1.1612003045076383e-05,1.1627534032122994e-05,1.163271564256851e-05,1.1627534032122994e-05,1.1612003045076383e-05,1.1586164152667901e-05,1.1550086268578237e-05,1.1503865442693409e-05,1.1447624435044927e-05,1.1381512172571361e-05,1.1305703092065738e-05,1.122039637336593e-05,1.1125815067505421e-05,1.1022205125165064e-05,1.090983433134746e-05,1.0788991152730228e-05,1.0659983504638877e-05,1.0523137445010679e-05,1.0378795803095033e-05,1.0227316750950944e-05,1.0069072326056546e-05,9.90444691353786e-06,9.733835696653346e-06,9.557643084237424e-06,9.376281123810064e-06,9.190167909002071e-06,8.999725989828021e-06,8.805380794163188e-06,8.607559068549545e-06,8.406687346171928e-06,8.203190449512195e-06,7.997490034810185e-06,7.790003185039644e-06,7.581141057649232e-06,7.371307592827763e-06,7.160898287533785e-06,6.950299039987063e-06,6.739885068758652e-06,6.530019910021765e-06,6.321054495942581e-06,6.113326316603297e-06,5.907158667263935e-06,5.702859982189059e-06,5.500723255695361e-06,5.3010255505197855e-06,5.104027593069865e-06,4.909973454601399e-06,4.7190903168771774e-06,4.531588320396893e-06,4.347660492855409e-06,4.16748275508639e-06,3.99121400138282e-06,3.818996250756694e-06,3.650954865408175e-06,3.487198832420718e-06,3.3278211044832865e-06,3.172898995263931e-06,3.022494624920462e-06,2.876655411132947e-06,2.7354146009785324e-06,2.598791838940369e-06,2.4667937663477645e-06,2.3394146475824693e-06,2.2166370184542954e-06,2.098432352246075e-06,1.9847617390510573e-06,1.8755765741729654e-06,1.7708192515276123e-06,1.6704238581728308e-06,1.5743168662979846e-06,1.4824178192229526e-06,1.3946400081868246e-06,1.3108911369460516e-06,1.2310739714481851e-06,1.1550869720981956e-06,1.0828249063875584e-06,1.0141794399096694e-06,9.490397040367649e-07,8.87292838781479e-07,8.288245096088497e-07,7.735193972003558e-07,7.212616593991026e-07,6.719353647833147e-07,6.254248975227816e-07,5.816153333689245e-07,5.40392786812974e-07,5.016447296177651e-07,4.652602810864197e-07,4.311304705754337e-07,3.9914847289021155e-07,3.692098173178873e-07,3.4121257115544016e-07,3.1505749868081474e-07,2.9064819659132603e-07,2.678912069974449e-07,2.466961091115804e-07,2.2697559081126005e-07,2.086455012847405e-07,1.9162488598521221e-07,1.7583600512808433e-07,1.612043369650529e-07,1.476585670595199e-07,1.351305647711742e-07],[1.44405592212186e-07,1.5779348556368404e-07,1.7226900358206035e-07,1.87904953226115e-07,2.047775437788303e-07,2.2296641197683015e-07,2.4255463347106973e-07,2.63628719328043e-07,2.862785962628903e-07,3.1059756928602366e-07,3.366822654440514e-07,3.646325573446786e-07,3.945514651746336e-07,4.2654503595026906e-07,4.607221987829997e-07,4.971945949967981e-07,5.360763820031639e-07,5.774840099208074e-07,6.215359700231473e-07,6.683525142069768e-07,7.180553448004555e-07,7.707672741680819e-07,8.266118537244375e-07,8.857129721370923e-07,9.48194422681815e-07,1.0141794399096694e-06,1.0837902059950541e-06,1.1571473273554755e-06,1.2343692823668446e-06,1.3155718412412445e-06,1.4008674593860757e-06,1.4903646458228024e-06,1.584167308508523e-06,1.682374078672459e-06,1.7850776165502156e-06,1.8923639011692614e-06,2.004311507107132e-06,2.120990871407172e-06,2.2424635540925805e-06,2.368781495965662e-06,2.4999862776128418e-06,2.6361083837545358e-06,2.777166477279712e-06,2.9231666874852578e-06,3.074101917197463e-06,3.229951173584484e-06,3.390678927572105e-06,3.556234506848084e-06,3.726551527480762e-06,3.901547369183307e-06,4.081122699224299e-06,4.265161049916675e-06,4.453528454509198e-06,4.646073146156469e-06,4.842625324454583e-06,5.0429969937993605e-06,5.246981877552813e-06,5.454355411691569e-06,5.664874821259042e-06,5.878279282552651e-06,6.094290173549694e-06,6.3126114146128525e-06,6.532929901020864e-06,6.7549160283447945e-06,6.978224311138314e-06,7.20249409483546e-06,7.427350360154927e-06,7.65240461870053e-06,7.877255897827375e-06,8.10149181221721e-06,8.324689718979333e-06,8.546417952470348e-06,8.766237134412172e-06,8.983701554288255e-06,9.198360614418293e-06,9.409760333556953e-06,9.617444902337501e-06,9.820958283391767e-06,1.0019845848528289e-05,1.0213656044945543e-05,1.0401942082100931e-05,1.0584263630552754e-05,1.0760188523845344e-05,1.0929294454319681e-05,1.109117065360627e-05,1.124541954849548e-05,1.139165838288485e-05,1.1529520796574004e-05,1.1658658351816037e-05,1.1778741998739757e-05,1.1889463471028914e-05,1.1990536603581248e-05,1.208169856427004e-05,1.2162710992391045e-05,1.2233361036895407e-05,1.2293462288080448e-05,1.2342855597031222e-05,1.238140977777155e-05,1.2409022187789018e-05,1.2425619183338498e-05,1.2431156446697567e-05,1.2425619183338498e-05,1.2409022187789018e-05,1.238140977777155e-05,1.2342855597031222e-05,1.2293462288080448e-05,1.2233361036895407e-05,1.2162710992391045e-05,1.208169856427004e-05,1.1990536603581248e-05,1.1889463471028914e-05,1.1778741998739757e-05,1.1658658351816037e-05,1.1529520796574004e-05,1.139165838288485e-05,1.124541954849548e-05,1.109117065360627e-05,1.0929294454319681e-05,1.0760188523845344e-05,1.0584263630552754e-05,1.0401942082100931e-05,1.0213656044945543e-05,1.0019845848528289e-05,9.820958283391767e-06,9.617444902337501e-06,9.409760333556953e-06,9.198360614418293e-06,8.983701554288255e-06,8.766237134412172e-06,8.546417952470348e-06,8.324689718979333e-06,8.10149181221721e-06,7.877255897827375e-06,7.65240461870053e-06,7.427350360154927e-06,7.20249409483546e-06,6.978224311138314e-06,6.7549160283447945e-06,6.532929901020864e-06,6.3126114146128525e-06,6.094290173549694e-06,5.878279282552651e-06,5.664874821259042e-06,5.454355411691569e-06,5.246981877552813e-06,5.0429969937993605e-06,4.842625324454583e-06,4.646073146156469e-06,4.453528454509198e-06,4.265161049916675e-06,4.081122699224299e-06,3.901547369183307e-06,3.726551527480762e-06,3.556234506848084e-06,3.390678927572105e-06,3.229951173584484e-06,3.074101917197463e-06,2.9231666874852578e-06,2.777166477279712e-06,2.6361083837545358e-06,2.4999862776128418e-06,2.368781495965662e-06,2.2424635540925805e-06,2.120990871407172e-06,2.004311507107132e-06,1.8923639011692614e-06,1.7850776165502156e-06,1.682374078672459e-06,1.584167308508523e-06,1.4903646458228024e-06,1.4008674593860757e-06,1.3155718412412445e-06,1.2343692823668446e-06,1.1571473273554755e-06,1.0837902059950541e-06,1.0141794399096694e-06,9.48194422681815e-07,8.857129721370923e-07,8.266118537244375e-07,7.707672741680819e-07,7.180553448004555e-07,6.683525142069768e-07,6.215359700231473e-07,5.774840099208074e-07,5.360763820031639e-07,4.971945949967981e-07,4.607221987829997e-07,4.2654503595026906e-07,3.945514651746336e-07,3.646325573446786e-07,3.366822654440514e-07,3.1059756928602366e-07,2.862785962628903e-07,2.63628719328043e-07,2.4255463347106973e-07,2.2296641197683015e-07,2.047775437788303e-07,1.87904953226115e-07,1.7226900358206035e-07,1.5779348556368404e-07,1.44405592212186e-07],[1.5417978881816751e-07,1.684738513820405e-07,1.839291552724012e-07,2.0062343543954009e-07,2.186380594466949e-07,2.3805805430041536e-07,2.5897211868697787e-07,2.81472619236775e-07,3.0565556941948647e-07,3.316205896624144e-07,3.5947084728347215e-07,3.8931297483981186e-07,4.212569655137645e-07,4.554160441904302e-07,4.919065129266532e-07,5.308475695698975e-07,5.723610983583524e-07,6.165714314209579e-07,6.636050801983905e-07,7.135904359237631e-07,7.666574384350483e-07,8.229372127401669e-07,8.825616729202601e-07,9.456630931366697e-07,1.012373645702273e-06,1.0828249063875584e-06,1.1571473273554755e-06,1.235469678355841e-06,1.317918457058846e-06,1.4046172696668338e-06,1.4956861832125196e-06,1.5912410512287061e-06,1.691392814757472e-06,1.7962467809538876e-06,1.9059018818284016e-06,2.0204499159609357e-06,2.1399747763059477e-06,2.2645516674888375e-06,2.3942463162673496e-06,2.529114179094436e-06,2.6691996509684877e-06,2.8145352799901977e-06,2.965140992259627e-06,3.1210233319395407e-06,3.28217472147891e-06,3.4485727471309367e-06,3.6201794750104027e-06,3.796940803013086e-06,3.978785853963057e-06,4.165626415359814e-06,4.357356431064402e-06,4.553851550190404e-06,4.754968738350453e-06,4.960545956250815e-06,5.1704019104248455e-06,5.384335880650372e-06,5.60212762830647e-06,5.823537389591964e-06,6.0483059571523224e-06,6.276154853244636e-06,6.506786597113748e-06,6.739885068758654e-06,6.9751159707393256e-06,7.212127389113456e-06,7.45055045400323e-06,7.690000099678408e-06,7.930075923407288e-06,8.170363141676541e-06,8.410433641718756e-06,8.649847125618142e-06,8.888152343595269e-06,9.124888412406497e-06,9.359586214138256e-06,9.591769870036386e-06,9.82095828339177e-06,1.0046666744911225e-05,1.0268408593442457e-05,1.0485696924399281e-05,1.0698046337753377e-05,1.0904974717026338e-05,1.1106005030335613e-05,1.1300667144223827e-05,1.1488499640737223e-05,1.1669051628018453e-05,1.1841884534544824e-05,1.2006573877077412e-05,1.2162710992391049e-05,1.2309904722931097e-05,1.2447783046690575e-05,1.2575994641820559e-05,1.2694210376776967e-05,1.2802124717166304e-05,1.2899457040879887e-05,1.2985952853597379e-05,1.3061384897293241e-05,1.3125554144989699e-05,1.3178290675662768e-05,1.321945442391891e-05,1.324893579981326e-05,1.3266656174970718e-05,1.327256823199187e-05,1.3266656174970718e-05,1.324893579981326e-05,1.321945442391891e-05,1.3178290675662768e-05,1.3125554144989699e-05,1.3061384897293241e-05,1.2985952853597379e-05,1.2899457040879887e-05,1.2802124717166304e-05,1.2694210376776967e-05,1.2575994641820559e-05,1.2447783046690575e-05,1.2309904722931097e-05,1.2162710992391049e-05,1.2006573877077412e-05,1.1841884534544824e-05,1.1669051628018453e-05,1.1488499640737223e-05,1.1300667144223827e-05,1.1106005030335613e-05,1.0904974717026338e-05,1.0698046337753377e-05,1.0485696924399281e-05,1.0268408593442457e-05,1.0046666744911225e-05,9.82095828339177e-06,9.591769870036386e-06,9.359586214138256e-06,9.124888412406497e-06,8.888152343595269e-06,8.649847125618142e-06,8.410433641718756e-06,8.170363141676541e-06,7.930075923407288e-06,7.690000099678408e-06,7.45055045400323e-06,7.212127389113456e-06,6.9751159707393256e-06,6.739885068758654e-06,6.506786597113748e-06,6.276154853244636e-06,6.0483059571523224e-06,5.823537389591964e-06,5.60212762830647e-06,5.384335880650372e-06,5.1704019104248455e-06,4.960545956250815e-06,4.754968738350453e-06,4.553851550190404e-06,4.357356431064402e-06,4.165626415359814e-06,3.978785853963057e-06,3.796940803013086e-06,3.6201794750104027e-06,3.4485727471309367e-06,3.28217472147891e-06,3.1210233319395407e-06,2.965140992259627e-06,2.8145352799901977e-06,2.6691996509684877e-06,2.529114179094436e-06,2.3942463162673496e-06,2.2645516674888375e-06,2.1399747763059477e-06,2.0204499159609357e-06,1.9059018818284016e-06,1.7962467809538876e-06,1.691392814757472e-06,1.5912410512287061e-06,1.4956861832125196e-06,1.4046172696668338e-06,1.317918457058846e-06,1.235469678355841e-06,1.1571473273554755e-06,1.0828249063875584e-06,1.012373645702273e-06,9.456630931366697e-07,8.825616729202601e-07,8.229372127401669e-07,7.666574384350483e-07,7.135904359237631e-07,6.636050801983905e-07,6.165714314209579e-07,5.723610983583524e-07,5.308475695698975e-07,4.919065129266532e-07,4.554160441904302e-07,4.212569655137645e-07,3.8931297483981186e-07,3.5947084728347215e-07,3.316205896624144e-07,3.0565556941948647e-07,2.81472619236775e-07,2.5897211868697787e-07,2.3805805430041536e-07,2.186380594466949e-07,2.0062343543954009e-07,1.839291552724012e-07,1.684738513820405e-07,1.5417978881816751e-07],[1.6446894079934937e-07,1.7971691426993442e-07,1.9620362423408874e-07,2.1401199326574605e-07,2.332288189733589e-07,2.5394480262078146e-07,2.762545621802784e-07,3.002566283476193e-07,3.2605342202882406e-07,3.5375121179700427e-07,3.834600498167943e-07,4.1529368474399396e-07,4.493694501301132e-07,4.858081268963564e-07,5.247337784900053e-07,5.662735573988683e-07,6.105574817771325e-07,6.577181810291502e-07,7.078906093068663e-07,7.612117260021698e-07,8.178201424575894e-07,8.778557342776411e-07,9.414592187986772e-07,1.0087716974671174e-06,1.0799341630840847e-06,1.1550869720981956e-06,1.2343692823668446e-06,1.317918457058846e-06,1.40586943563669e-06,1.4983540731335914e-06,1.5955004492274828e-06,1.6974321489094582e-06,1.8042675168459726e-06,1.916118887840348e-06,2.033091796107505e-06,2.1552841663840273e-06,2.282785490200978e-06,2.415675990946763e-06,2.5540257816388626e-06,2.697894019603585e-06,2.84732806252911e-06,3.0023626306059814e-06,3.163018979697866e-06,3.3293040906906942e-06,3.50120988034735e-06,3.678712439144907e-06,3.861771301689232e-06,4.050328755384889e-06,4.2443091930842645e-06,4.443618515446363e-06,4.648143588700714e-06,4.857751763433715e-06,5.072290459891762e-06,5.291586825126928e-06,5.5154474670956665e-06,5.743658270558941e-06,5.975984299323204e-06,6.2121697890063434e-06,6.4519382341119265e-06,6.694992572750301e-06,6.941015471858009e-06,7.189669715240052e-06,7.44059869619529e-06,7.69342701588716e-06,7.947761187993222e-06,8.203190449512195e-06,8.459287676930161e-06,8.715610406253484e-06,8.971701954709805e-06,9.22709264120538e-06,9.481301101912764e-06,9.733835696653346e-06,9.984196001039815e-06,1.0231874378661165e-05,1.0476357626932433e-05,1.0717128689599637e-05,1.0953668428292832e-05,1.118545744496268e-05,1.141197794652401e-05,1.163271564256851e-05,1.184716166660303e-05,1.2054814510924375e-05,1.2255181964960058e-05,1.2447783046690573e-05,1.2632149916625704e-05,1.2807829763737313e-05,1.2974386652755921e-05,1.3131403322319385e-05,1.3278482923619494e-05,1.3415250689426284e-05,1.3541355523679411e-05,1.3656471502219417e-05,1.3760299275687127e-05,1.3852567366143535e-05,1.3933033349552166e-05,1.4001484916916643e-05,1.4057740807573369e-05,1.410165160889768e-05,1.4133100417485487e-05,1.4152003357715555e-05,1.4158309954472937e-05,1.4152003357715555e-05,1.4133100417485487e-05,1.410165160889768e-05,1.4057740807573369e-05,1.4001484916916643e-05,1.3933033349552166e-05,1.3852567366143535e-05,1.3760299275687127e-05,1.3656471502219417e-05,1.3541355523679411e-05,1.3415250689426284e-05,1.3278482923619494e-05,1.3131403322319385e-05,1.2974386652755921e-05,1.2807829763737313e-05,1.2632149916625704e-05,1.2447783046690573e-05,1.2255181964960058e-05,1.2054814510924375e-05,1.184716166660303e-05,1.163271564256851e-05,1.141197794652401e-05,1.118545744496268e-05,1.0953668428292832e-05,1.0717128689599637e-05,1.0476357626932433e-05,1.0231874378661165e-05,9.984196001039815e-06,9.733835696653346e-06,9.481301101912764e-06,9.22709264120538e-06,8.971701954709805e-06,8.715610406253484e-06,8.459287676930161e-06,8.203190449512195e-06,7.947761187993222e-06,7.69342701588716e-06,7.44059869619529e-06,7.189669715240052e-06,6.941015471858009e-06,6.694992572750301e-06,6.4519382341119265e-06,6.2121697890063434e-06,5.975984299323204e-06,5.743658270558941e-06,5.5154474670956665e-06,5.291586825126928e-06,5.072290459891762e-06,4.857751763433715e-06,4.648143588700714e-06,4.443618515446363e-06,4.2443091930842645e-06,4.050328755384889e-06,3.861771301689232e-06,3.678712439144907e-06,3.50120988034735e-06,3.3293040906906942e-06,3.163018979697866e-06,3.0023626306059814e-06,2.84732806252911e-06,2.697894019603585e-06,2.5540257816388626e-06,2.415675990946763e-06,2.282785490200978e-06,2.1552841663840273e-06,2.033091796107505e-06,1.916118887840348e-06,1.8042675168459726e-06,1.6974321489094582e-06,1.5955004492274828e-06,1.4983540731335914e-06,1.40586943563669e-06,1.317918457058846e-06,1.2343692823668446e-06,1.1550869720981956e-06,1.0799341630840847e-06,1.0087716974671174e-06,9.414592187986772e-07,8.778557342776411e-07,8.178201424575894e-07,7.612117260021698e-07,7.078906093068663e-07,6.577181810291502e-07,6.105574817771325e-07,5.662735573988683e-07,5.247337784900053e-07,4.858081268963564e-07,4.493694501301132e-07,4.1529368474399396e-07,3.834600498167943e-07,3.5375121179700427e-07,3.2605342202882406e-07,3.002566283476193e-07,2.762545621802784e-07,2.5394480262078146e-07,2.332288189733589e-07,2.1401199326574605e-07,1.9620362423408874e-07,1.7971691426993442e-07,1.6446894079934937e-07],[1.7528847352675266e-07,1.9153952968997111e-07,2.0911081220112073e-07,2.2809069866715347e-07,2.4857169664735347e-07,2.7065047415703533e-07,2.944278735792402e-07,3.200089074176849e-07,3.475027343024802e-07,3.770226136482857e-07,4.086858373635511e-07,4.4261363702029224e-07,4.789310649173668e-07,5.177668475073571e-07,5.592532097087724e-07,6.035256686921173e-07,6.507227958111532e-07,7.009859454500006e-07,7.544589496730943e-07,8.112877776988328e-07,8.716201593692598e-07,9.356051719574463e-07,1.003392789841339e-06,1.0751333967775008e-06,1.150977260730004e-06,1.2310739714481851e-06,1.3155718412412445e-06,1.4046172696668338e-06,1.4983540731335914e-06,1.5969227807127619e-06,1.7004598977598571e-06,1.8090971392621233e-06,1.922960635149212e-06,2.0421701101308623e-06,2.1668380409540412e-06,2.2970687943004634e-06,2.432957748870796e-06,2.5745904055214713e-06,2.7220414896307194e-06,2.8753740501692238e-06,3.0346385602343967e-06,3.1998720240725837e-06,3.371097095857134e-06,3.5483212157091592e-06,3.7315357686385683e-06,3.920715272242689e-06,4.1158165991253476e-06,4.316778240087856e-06,4.523519614192391e-06,4.735940431805158e-06,4.953920116689494e-06,5.177317293135723e-06,5.405969343983607e-06,5.639692045213464e-06,5.878279282552651e-06,6.121502855264742e-06,6.369112371959466e-06,6.620835242882763e-06,6.876376772719179e-06,7.135420357464777e-06,7.397627788409617e-06,7.662639665707246e-06,7.930075923407286e-06,8.199536467189769e-06,8.470601925369811e-06,8.742834513043311e-06,9.015779008522829e-06,9.288963840473018e-06,9.561902283402351e-06,9.834093758407799e-06,1.0105025235308022e-05,1.0374172731544279e-05,1.0641002902482977e-05,1.0904974717026338e-05,1.1165541211733782e-05,1.142215131598342e-05,1.1674251740066113e-05,1.1921288917510408e-05,1.2162710992391049e-05,1.2397969841882015e-05,1.262652312388285e-05,1.2847836339178519e-05,1.3061384897293241e-05,1.3266656174970714e-05,1.3463151556060702e-05,1.3650388441517246e-05,1.3827902218219042e-05,1.3995248175408686e-05,1.4152003357715555e-05,1.4297768343976302e-05,1.4432168941396954e-05,1.4554857785009279e-05,1.4665515832859421e-05,1.4763853747925485e-05,1.4849613158389105e-05,1.492256778857956e-05,1.4982524453662823e-05,1.5029323911956078e-05,1.5062841569604993e-05,1.5082988033259414e-05,1.5089709507316325e-05,1.5082988033259414e-05,1.5062841569604993e-05,1.5029323911956078e-05,1.4982524453662823e-05,1.492256778857956e-05,1.4849613158389105e-05,1.4763853747925485e-05,1.4665515832859421e-05,1.4554857785009279e-05,1.4432168941396954e-05,1.4297768343976302e-05,1.4152003357715555e-05,1.3995248175408686e-05,1.3827902218219042e-05,1.3650388441517246e-05,1.3463151556060702e-05,1.3266656174970714e-05,1.3061384897293241e-05,1.2847836339178519e-05,1.262652312388285e-05,1.2397969841882015e-05,1.2162710992391049e-05,1.1921288917510408e-05,1.1674251740066113e-05,1.142215131598342e-05,1.1165541211733782e-05,1.0904974717026338e-05,1.0641002902482977e-05,1.0374172731544279e-05,1.0105025235308022e-05,9.834093758407799e-06,9.561902283402351e-06,9.288963840473018e-06,9.015779008522829e-06,8.742834513043311e-06,8.470601925369811e-06,8.199536467189769e-06,7.930075923407286e-06,7.662639665707246e-06,7.397627788409617e-06,7.135420357464777e-06,6.876376772719179e-06,6.620835242882763e-06,6.369112371959466e-06,6.121502855264742e-06,5.878279282552651e-06,5.639692045213464e-06,5.405969343983607e-06,5.177317293135723e-06,4.953920116689494e-06,4.735940431805158e-06,4.523519614192391e-06,4.316778240087856e-06,4.1158165991253476e-06,3.920715272242689e-06,3.7315357686385683e-06,3.5483212157091592e-06,3.371097095857134e-06,3.1998720240725837e-06,3.0346385602343967e-06,2.8753740501692238e-06,2.7220414896307194e-06,2.5745904055214713e-06,2.432957748870796e-06,2.2970687943004634e-06,2.1668380409540412e-06,2.0421701101308623e-06,1.922960635149212e-06,1.8090971392621233e-06,1.7004598977598571e-06,1.5969227807127619e-06,1.4983540731335914e-06,1.4046172696668338e-06,1.3155718412412445e-06,1.2310739714481851e-06,1.150977260730004e-06,1.0751333967775008e-06,1.003392789841339e-06,9.356051719574463e-07,8.716201593692598e-07,8.112877776988328e-07,7.544589496730943e-07,7.009859454500006e-07,6.507227958111532e-07,6.035256686921173e-07,5.592532097087724e-07,5.177668475073571e-07,4.789310649173668e-07,4.4261363702029224e-07,4.086858373635511e-07,3.770226136482857e-07,3.475027343024802e-07,3.200089074176849e-07,2.944278735792402e-07,2.7065047415703533e-07,2.4857169664735347e-07,2.2809069866715347e-07,2.0911081220112073e-07,1.9153952968997111e-07,1.7528847352675266e-07],[1.866533707025858e-07,2.0395807048867188e-07,2.226685940176073e-07,2.4287904889327666e-07,2.6468794043898193e-07,2.881982041788599e-07,3.135172206515482e-07,3.40756810887776e-07,3.7003321086040287e-07,4.0146702320281734e-07,4.3518314449052057e-07,4.713106663922174e-07,5.099827490217836e-07,5.51336464862022e-07,5.955126116860781e-07,6.426554929735469e-07,6.929126644064533e-07,7.464346451360502e-07,8.033745926352836e-07,8.638879400942809e-07,9.281319954775427e-07,9.96265501541817e-07,1.0684481563128758e-06,1.1448400937373306e-06,1.2256013244618512e-06,1.3108911369460516e-06,1.4008674593860757e-06,1.4956861832125196e-06,1.5955004492274828e-06,1.7004598977598571e-06,1.810709884543609e-06,1.926390664359026e-06,2.0476365448193948e-06,2.174575013033134e-06,2.3073258382213727e-06,2.4460001537207132e-06,2.5906995221474233e-06,2.741514987839614e-06,2.8985261210248274e-06,3.0618000584785762e-06,3.2313905457414113e-06,3.407336986244553e-06,3.5896635029535987e-06,3.778378018372839e-06,3.973471358955911e-06,4.174916390138534e-06,4.3826671883428285e-06,4.596658256396999e-06,4.816803788866403e-06,5.042996993799361e-06,5.275109477351447e-06,5.512990697663203e-06,5.7564674942268e-06,6.005343698785728e-06,6.259399833567348e-06,6.5183929023506666e-06,6.78205627952107e-06,7.050099701860501e-06,7.322209367366731e-06,7.598048144890613e-06,7.877255897827375e-06,8.159449924500059e-06,8.444225517232798e-06,8.731156641432906e-06,9.019796735287243e-06,9.30967962993514e-06,9.600320589211866e-06,9.891217467268942e-06,1.0181851981576012e-05,1.0471691097999837e-05,1.0760188523845346e-05,1.1046786303938348e-05,1.1330916514036014e-05,1.1612003045076383e-05,1.1889463471028914e-05,1.2162710992391047e-05,1.2431156446697568e-05,1.2694210376776965e-05,1.295128514690785e-05,1.3201797096505035e-05,1.3445168720504506e-05,1.3680830865224245e-05,1.3908224928158489e-05,1.4126805049920341e-05,1.4336040286385208e-05,1.4535416749008028e-05,1.4724439701292906e-05,1.490263559948544e-05,1.5069554065737071e-05,1.5224769782256115e-05,1.5367884295311517e-05,1.5498527718390606e-05,1.5616360324328864e-05,1.5721074016824707e-05,1.5812393672421214e-05,1.5890078344775503e-05,1.595392232383879e-05,1.600375604343107e-05,1.6039446831606428e-05,1.606089949916167e-05,1.6068056762634675e-05,1.606089949916167e-05,1.6039446831606428e-05,1.600375604343107e-05,1.595392232383879e-05,1.5890078344775503e-05,1.5812393672421214e-05,1.5721074016824707e-05,1.5616360324328864e-05,1.5498527718390606e-05,1.5367884295311517e-05,1.5224769782256115e-05,1.5069554065737071e-05,1.490263559948544e-05,1.4724439701292906e-05,1.4535416749008028e-05,1.4336040286385208e-05,1.4126805049920341e-05,1.3908224928158489e-05,1.3680830865224245e-05,1.3445168720504506e-05,1.3201797096505035e-05,1.295128514690785e-05,1.2694210376776965e-05,1.2431156446697568e-05,1.2162710992391047e-05,1.1889463471028914e-05,1.1612003045076383e-05,1.1330916514036014e-05,1.1046786303938348e-05,1.0760188523845346e-05,1.0471691097999837e-05,1.0181851981576012e-05,9.891217467268942e-06,9.600320589211866e-06,9.30967962993514e-06,9.019796735287243e-06,8.731156641432906e-06,8.444225517232798e-06,8.159449924500059e-06,7.877255897827375e-06,7.598048144890613e-06,7.322209367366731e-06,7.050099701860501e-06,6.78205627952107e-06,6.5183929023506666e-06,6.259399833567348e-06,6.005343698785728e-06,5.7564674942268e-06,5.512990697663203e-06,5.275109477351447e-06,5.042996993799361e-06,4.816803788866403e-06,4.596658256396999e-06,4.3826671883428285e-06,4.174916390138534e-06,3.973471358955911e-06,3.778378018372839e-06,3.5896635029535987e-06,3.407336986244553e-06,3.2313905457414113e-06,3.0618000584785762e-06,2.8985261210248274e-06,2.741514987839614e-06,2.5906995221474233e-06,2.4460001537207132e-06,2.3073258382213727e-06,2.174575013033134e-06,2.0476365448193948e-06,1.926390664359026e-06,1.810709884543609e-06,1.7004598977598571e-06,1.5955004492274828e-06,1.4956861832125196e-06,1.4008674593860757e-06,1.3108911369460516e-06,1.2256013244618512e-06,1.1448400937373306e-06,1.0684481563128758e-06,9.96265501541817e-07,9.281319954775427e-07,8.638879400942809e-07,8.033745926352836e-07,7.464346451360502e-07,6.929126644064533e-07,6.426554929735469e-07,5.955126116860781e-07,5.51336464862022e-07,5.099827490217836e-07,4.713106663922174e-07,4.3518314449052057e-07,4.0146702320281734e-07,3.7003321086040287e-07,3.40756810887776e-07,3.135172206515482e-07,2.881982041788599e-07,2.6468794043898193e-07,2.4287904889327666e-07,2.226685940176073e-07,2.0395807048867188e-07,1.866533707025858e-07],[1.9857809020755145e-07,2.1698833494195522e-07,2.3689421724761012e-07,2.583958569786772e-07,2.8159805266573206e-07,3.066103160723211e-07,3.335468879550294e-07,3.625267332521465e-07,3.936735139013968e-07,4.2711553747377235e-07,4.629856798093563e-07,5.014212798532566e-07,5.425640049164129e-07,5.865596846281137e-07,6.335581119055265e-07,6.837128093412539e-07,7.371807595037087e-07,7.941220977576205e-07,8.546997663438078e-07,9.190791286089608e-07,9.874275424478092e-07,1.0599138922118684e-06,1.1367080785509273e-06,1.2179804658852797e-06,1.3039012874580164e-06,1.3946400081868246e-06,1.4903646458228024e-06,1.5912410512287061e-06,1.6974321489094582e-06,1.8090971392621233e-06,1.926390664359026e-06,2.049461939434304e-06,2.1784538526085757e-06,2.3135020357561576e-06,2.4547339097915926e-06,2.6022677080243457e-06,2.7562114815991606e-06,2.9166620914016382e-06,3.083704191160575e-06,3.2574092068170824e-06,3.4378343175517977e-06,3.625021444162024e-06,3.818996250756695e-06,4.019767165984947e-06,4.2273244302302744e-06,4.44163917538313e-06,4.66266254394709e-06,4.890324854334088e-06,5.124534819259692e-06,5.365178824157322e-06,5.612120272488031e-06,5.865199004728122e-06,6.124230797668477e-06,6.389006950455795e-06,6.659293963546137e-06,6.934833316424655e-06,7.215341349572362e-06,7.5005092557318126e-06,7.790003185039644e-06,8.08346446805691e-06,8.380509960140038e-06,8.680732509959034e-06,8.983701554288257e-06,9.288963840473018e-06,9.596044277216124e-06,9.904446913537861e-06,1.0213656044945545e-05,1.052313744501068e-05,1.0832339719699084e-05,1.114069578093838e-05,1.144762443504493e-05,1.1752532080775454e-05,1.2054814510924375e-05,1.2353858810563634e-05,1.264904534422458e-05,1.293974982355862e-05,1.3225345446291992e-05,1.350520509661672e-05,1.3778703596541902e-05,1.404521999717227e-05,1.4304139898391373e-05,1.455485778500928e-05,1.4796779367095085e-05,1.5029323911956078e-05,1.5251926555052855e-05,1.546404057705497e-05,1.5665139634247643e-05,1.5854719929597766e-05,1.6032302311977767e-05,1.61974342913282e-05,1.6349691957913872e-05,1.648868179429116e-05,1.6614042369154193e-05,1.6725445902860198e-05,1.682259969514644e-05,1.690524740633669e-05,1.6973170184189117e-05,1.702618762945316e-05,1.7064158594173416e-05,1.7086981807796303e-05,1.709459632719251e-05,1.7086981807796303e-05,1.7064158594173416e-05,1.702618762945316e-05,1.6973170184189117e-05,1.690524740633669e-05,1.682259969514644e-05,1.6725445902860198e-05,1.6614042369154193e-05,1.648868179429116e-05,1.6349691957913872e-05,1.61974342913282e-05,1.6032302311977767e-05,1.5854719929597766e-05,1.5665139634247643e-05,1.546404057705497e-05,1.5251926555052855e-05,1.5029323911956078e-05,1.4796779367095085e-05,1.455485778500928e-05,1.4304139898391373e-05,1.404521999717227e-05,1.3778703596541902e-05,1.350520509661672e-05,1.3225345446291992e-05,1.293974982355862e-05,1.264904534422458e-05,1.2353858810563634e-05,1.2054814510924375e-05,1.1752532080775454e-05,1.144762443504493e-05,1.114069578093838e-05,1.0832339719699084e-05,1.052313744501068e-05,1.0213656044945545e-05,9.904446913537861e-06,9.596044277216124e-06,9.288963840473018e-06,8.983701554288257e-06,8.680732509959034e-06,8.380509960140038e-06,8.08346446805691e-06,7.790003185039644e-06,7.5005092557318126e-06,7.215341349572362e-06,6.934833316424655e-06,6.659293963546137e-06,6.389006950455795e-06,6.124230797668477e-06,5.865199004728122e-06,5.612120272488031e-06,5.365178824157322e-06,5.124534819259692e-06,4.890324854334088e-06,4.66266254394709e-06,4.44163917538313e-06,4.2273244302302744e-06,4.019767165984947e-06,3.818996250756695e-06,3.625021444162024e-06,3.4378343175517977e-06,3.2574092068170824e-06,3.083704191160575e-06,2.9166620914016382e-06,2.7562114815991606e-06,2.6022677080243457e-06,2.4547339097915926e-06,2.3135020357561576e-06,2.1784538526085757e-06,2.049461939434304e-06,1.926390664359026e-06,1.8090971392621233e-06,1.6974321489094582e-06,1.5912410512287061e-06,1.4903646458228024e-06,1.3946400081868246e-06,1.3039012874580164e-06,1.2179804658852797e-06,1.1367080785509273e-06,1.0599138922118684e-06,9.874275424478092e-07,9.190791286089608e-07,8.546997663438078e-07,7.941220977576205e-07,7.371807595037087e-07,6.837128093412539e-07,6.335581119055265e-07,5.865596846281137e-07,5.425640049164129e-07,5.014212798532566e-07,4.629856798093563e-07,4.2711553747377235e-07,3.936735139013968e-07,3.625267332521465e-07,3.335468879550294e-07,3.066103160723211e-07,2.8159805266573206e-07,2.583958569786772e-07,2.3689421724761012e-07,2.1698833494195522e-07,1.9857809020755145e-07],[2.1107647687065554e-07,2.3064545143780402e-07,2.5180419811367357e-07,2.7465913823638386e-07,2.9932166629357444e-07,3.2590818665393026e-07,3.5454013031917863e-07,3.8534394980993276e-07,4.1845109027258614e-07,4.539979348801894e-07,4.921257225990185e-07,5.329804364055449e-07,5.767126600668378e-07,6.23477401642152e-07,6.734338819255986e-07,7.267452861302728e-07,7.83578477213896e-07,8.441036693656279e-07,9.084940603138251e-07,9.76925421275677e-07,1.0495756435520772e-06,1.1266242409749857e-06,1.2082518076398444e-06,1.294639430602038e-06,1.3859680574835336e-06,1.4824178192229526e-06,1.584167308508523e-06,1.691392814757472e-06,1.8042675168459726e-06,1.922960635149212e-06,2.0476365448193948e-06,2.1784538526085757e-06,2.3155644399305366e-06,2.45911247524894e-06,2.6092333992747577e-06,2.766052886851497e-06,2.9296857897985624e-06,3.100235065367974e-06,3.2777906953437734e-06,3.4624286011732428e-06,3.6542095608605732e-06,3.853178133673072e-06,4.059361599003392e-06,4.272768915994826e-06,4.49338971076642e-06,4.721193298267016e-06,4.9561277459384795e-06,5.198118986475114e-06,5.447069987025206e-06,5.7028599821890586e-06,5.965343778122959e-06,6.234351134958236e-06,6.509686234586766e-06,6.791127240647909e-06,7.078425957275574e-06,7.371307592827762e-06,7.669470634424399e-06,7.972586838663278e-06,8.280301343369578e-06,8.5922329046636e-06,8.907974263006228e-06,9.22709264120538e-06,9.549130376642567e-06,9.87360568921112e-06,1.0200013585650705e-05,1.0527826900122488e-05,1.0856497470000331e-05,1.1185457444962678e-05,1.1514120726563412e-05,1.184188453454482e-05,1.2168131095239154e-05,1.2492229446494612e-05,1.2813537352664151e-05,1.3131403322319383e-05,1.3445168720504504e-05,1.3754169966534286e-05,1.4057740807573367e-05,1.4355214657518527e-05,1.4645926990048661e-05,1.4929217774115066e-05,1.520443393962408e-05,1.5470931860620565e-05,1.5728079842919496e-05,1.597526060285855e-05,1.621187372366082e-05,1.6437338075807e-05,1.665109418782255e-05,1.6852606553989324e-05,1.7041365865693303e-05,1.7216891153420347e-05,1.737873182680914e-05,1.752646960066266e-05,1.765972029540402e-05,1.777813550113506e-05,1.788140409521294e-05,1.7969253604094952e-05,1.8041451401109585e-05,1.8097805732784952e-05,1.8138166567397443e-05,1.816242626048519e-05,1.8170520033194628e-05,1.816242626048519e-05,1.8138166567397443e-05,1.8097805732784952e-05,1.8041451401109585e-05,1.7969253604094952e-05,1.788140409521294e-05,1.777813550113506e-05,1.765972029540402e-05,1.752646960066266e-05,1.737873182680914e-05,1.7216891153420347e-05,1.7041365865693303e-05,1.6852606553989324e-05,1.665109418782255e-05,1.6437338075807e-05,1.621187372366082e-05,1.597526060285855e-05,1.5728079842919496e-05,1.5470931860620565e-05,1.520443393962408e-05,1.4929217774115066e-05,1.4645926990048661e-05,1.4355214657518527e-05,1.4057740807573367e-05,1.3754169966534286e-05,1.3445168720504504e-05,1.3131403322319383e-05,1.2813537352664151e-05,1.2492229446494612e-05,1.2168131095239154e-05,1.184188453454482e-05,1.1514120726563412e-05,1.1185457444962678e-05,1.0856497470000331e-05,1.0527826900122488e-05,1.0200013585650705e-05,9.87360568921112e-06,9.549130376642567e-06,9.22709264120538e-06,8.907974263006228e-06,8.5922329046636e-06,8.280301343369578e-06,7.972586838663278e-06,7.669470634424399e-06,7.371307592827762e-06,7.078425957275574e-06,6.791127240647909e-06,6.509686234586766e-06,6.234351134958236e-06,5.965343778122959e-06,5.7028599821890586e-06,5.447069987025206e-06,5.198118986475114e-06,4.9561277459384795e-06,4.721193298267016e-06,4.49338971076642e-06,4.272768915994826e-06,4.059361599003392e-06,3.853178133673072e-06,3.6542095608605732e-06,3.4624286011732428e-06,3.2777906953437734e-06,3.100235065367974e-06,2.9296857897985624e-06,2.766052886851497e-06,2.6092333992747577e-06,2.45911247524894e-06,2.3155644399305366e-06,2.1784538526085757e-06,2.0476365448193948e-06,1.922960635149212e-06,1.8042675168459726e-06,1.691392814757472e-06,1.584167308508523e-06,1.4824178192229526e-06,1.3859680574835336e-06,1.294639430602038e-06,1.2082518076398444e-06,1.1266242409749857e-06,1.0495756435520772e-06,9.76925421275677e-07,9.084940603138251e-07,8.441036693656279e-07,7.83578477213896e-07,7.267452861302728e-07,6.734338819255986e-07,6.23477401642152e-07,5.767126600668378e-07,5.329804364055449e-07,4.921257225990185e-07,4.539979348801894e-07,4.1845109027258614e-07,3.8534394980993276e-07,3.5454013031917863e-07,3.2590818665393026e-07,2.9932166629357444e-07,2.7465913823638386e-07,2.5180419811367357e-07,2.3064545143780402e-07,2.1107647687065554e-07],[2.2416167244293764e-07,2.4494378010362863e-07,2.674142140997664e-07,2.916859931129691e-07,3.178774172732199e-07,3.4611210716747836e-07,3.7651902163017815e-07,4.092324523120305e-07,4.4439199299575785e-07,4.821424816122245e-07,5.226339129091347e-07,5.660213197382739e-07,6.124646209573444e-07,6.621284339899448e-07,7.151818501532352e-07,7.717981709483005e-07,8.321546036140818e-07,8.964319143727614e-07,9.64814037943297e-07,1.0374876420709374e-06,1.114641646014297e-06,1.1964666921480992e-06,1.2831545700789723e-06,1.3748975929333934e-06,1.4718879257605714e-06,1.5743168662979846e-06,1.682374078672459e-06,1.7962467809538876e-06,1.916118887840348e-06,2.0421701101308623e-06,2.174575013033134e-06,2.3135020357561576e-06,2.45911247524894e-06,2.6115594373639525e-06,2.7709867591442355e-06,2.9375279063531094e-06,3.1113048507815698e-06,3.292426932277169e-06,3.4809897108355022e-06,3.6770738144775097e-06,3.880743788998485e-06,4.09204695601394e-06,4.311012286039072e-06,4.537649293618435e-06,4.771946961766439e-06,5.0138727031835005e-06,5.2633713658732525e-06,5.520364290899539e-06,5.784748430084543e-06,6.056395531458308e-06,6.3351514002222596e-06,6.620835242882763e-06,6.913239102043228e-06,7.212127389113454e-06,7.5172365219015256e-06,7.828274673696303e-06,8.144921640027524e-06,8.46682882880621e-06,8.79361937900183e-06,9.124888412406497e-06,9.460203422372574e-06,9.79910480269187e-06,1.014110651901563e-05,1.0485696924399281e-05,1.0832339719699084e-05,1.118047505865534e-05,1.1529520796574009e-05,1.1878873880572718e-05,1.2227911878394481e-05,1.2575994641820559e-05,1.2922466099740583e-05,1.3266656174970714e-05,1.3607882817957741e-05,1.394545414957645e-05,1.4278670704327839e-05,1.4606827764384478e-05,1.492921777411507e-05,1.5245132823960286e-05,1.555386719183433e-05,1.5854719929597766e-05,1.6146997481594417e-05,1.6430016321774058e-05,1.670310559553893e-05,1.6965609752160836e-05,1.721689115342035e-05,1.7456332644024356e-05,1.7683340069364636e-05,1.789734472629075e-05,1.8097805732784955e-05,1.8284212302746007e-05,1.845608591251046e-05,1.8612982346262742e-05,1.875449360810605e-05,1.8880249689280416e-05,1.8989920179817892e-05,1.908321571481183e-05,1.9159889246440905e-05,1.9219737133922437e-05,1.9262600044664848e-05,1.9288363661038046e-05,1.9296959188374008e-05,1.9288363661038046e-05,1.9262600044664848e-05,1.9219737133922437e-05,1.9159889246440905e-05,1.908321571481183e-05,1.8989920179817892e-05,1.8880249689280416e-05,1.875449360810605e-05,1.8612982346262742e-05,1.845608591251046e-05,1.8284212302746007e-05,1.8097805732784955e-05,1.789734472629075e-05,1.7683340069364636e-05,1.7456332644024356e-05,1.721689115342035e-05,1.6965609752160836e-05,1.670310559553893e-05,1.6430016321774058e-05,1.6146997481594417e-05,1.5854719929597766e-05,1.555386719183433e-05,1.5245132823960286e-05,1.492921777411507e-05,1.4606827764384478e-05,1.4278670704327839e-05,1.394545414957645e-05,1.3607882817957741e-05,1.3266656174970714e-05,1.2922466099740583e-05,1.2575994641820559e-05,1.2227911878394481e-05,1.1878873880572718e-05,1.1529520796574009e-05,1.118047505865534e-05,1.0832339719699084e-05,1.0485696924399281e-05,1.014110651901563e-05,9.79910480269187e-06,9.460203422372574e-06,9.124888412406497e-06,8.79361937900183e-06,8.46682882880621e-06,8.144921640027524e-06,7.828274673696303e-06,7.5172365219015256e-06,7.212127389113454e-06,6.913239102043228e-06,6.620835242882763e-06,6.3351514002222596e-06,6.056395531458308e-06,5.784748430084543e-06,5.520364290899539e-06,5.2633713658732525e-06,5.0138727031835005e-06,4.771946961766439e-06,4.537649293618435e-06,4.311012286039072e-06,4.09204695601394e-06,3.880743788998485e-06,3.6770738144775097e-06,3.4809897108355022e-06,3.292426932277169e-06,3.1113048507815698e-06,2.9375279063531094e-06,2.7709867591442355e-06,2.6115594373639525e-06,2.45911247524894e-06,2.3135020357561576e-06,2.174575013033134e-06,2.0421701101308623e-06,1.916118887840348e-06,1.7962467809538876e-06,1.682374078672459e-06,1.5743168662979846e-06,1.4718879257605714e-06,1.3748975929333934e-06,1.2831545700789723e-06,1.1964666921480992e-06,1.114641646014297e-06,1.0374876420709374e-06,9.64814037943297e-07,8.964319143727614e-07,8.321546036140818e-07,7.717981709483005e-07,7.151818501532352e-07,6.621284339899448e-07,6.124646209573444e-07,5.660213197382739e-07,5.226339129091347e-07,4.821424816122245e-07,4.4439199299575785e-07,4.092324523120305e-07,3.7651902163017815e-07,3.4611210716747836e-07,3.178774172732199e-07,2.916859931129691e-07,2.674142140997664e-07,2.4494378010362863e-07,2.2416167244293764e-07],[2.378460230926166e-07,2.5989681172525504e-07,2.8373899359739023e-07,3.0949248681841643e-07,3.3728281336156496e-07,3.672411404538655e-07,3.995042994526971e-07,4.342147800830343e-07,4.715206978800045e-07,5.115757326652902e-07,5.545390358845309e-07,6.00575104647531e-07,6.498536203449919e-07,7.025492497658786e-07,7.58841406709561e-07,8.189139721775493e-07,8.829549713419702e-07,9.511562056226964e-07,1.0237128383629346e-06,1.1008229327746655e-06,1.182686941030901e-06,1.2695071436114687e-06,1.3614870382629277e-06,1.4588306782108932e-06,1.5617419595640694e-06,1.6704238581728308e-06,1.7850776165502156e-06,1.9059018818284016e-06,2.033091796107505e-06,2.1668380409540412e-06,2.3073258382213727e-06,2.4547339097915926e-06,2.6092333992747577e-06,2.7709867591442355e-06,2.9401466072328957e-06,3.1168545569605456e-06,3.301240026104552e-06,3.4934190293592277e-06,3.6934929603511995e-06,3.901547369183307e-06,4.117650741964486e-06,4.341853289142994e-06,4.574185749790998e-06,4.8146582192854645e-06,5.063259008089189e-06,5.319953539552538e-06,5.584683294826781e-06,5.857364813100165e-06,6.137888755434354e-06,6.426119040488253e-06,6.721892060365731e-06,7.025015984710623e-06,7.335270160994723e-06,7.652404618700531e-06,7.976139684789283e-06,8.306165717465754e-06,8.642142964804477e-06,8.983701554288257e-06,9.330441618730192e-06,9.681933563407275e-06,1.003771847852917e-05,1.0397308700403795e-05,1.0760188523845344e-05,1.1125815067505421e-05,1.1493619292898831e-05,1.1863007176948561e-05,1.223336103689541e-05,1.2604041005414054e-05,1.2974386652755921e-05,1.3343718751708098e-05,1.3711341180124605e-05,1.4076542954760163e-05,1.443860038912539e-05,1.4796779367095083e-05,1.5150337723046483e-05,1.5498527718390602e-05,1.5840598603495776e-05,1.6175799253196128e-05,1.6503380863337563e-05,1.682259969514644e-05,1.7132719853619765e-05,1.7433016085635733e-05,1.772277658307653e-05,1.8001305775945995e-05,1.8267927100257936e-05,1.8521985725369362e-05,1.8762851225440186e-05,1.8989920179817892e-05,1.9202618687373533e-05,1.940040478015377e-05,1.9582770722161334e-05,1.9749245179630837e-05,1.9899395249825454e-05,2.003282833613796e-05,2.0149193858132343e-05,2.024818478610311e-05,2.032953899075236e-05,2.039304039968123e-05,2.0438519953554787e-05,2.0465856356018545e-05,2.047497661271079e-05,2.0465856356018545e-05,2.0438519953554787e-05,2.039304039968123e-05,2.032953899075236e-05,2.024818478610311e-05,2.0149193858132343e-05,2.003282833613796e-05,1.9899395249825454e-05,1.9749245179630837e-05,1.9582770722161334e-05,1.940040478015377e-05,1.9202618687373533e-05,1.8989920179817892e-05,1.8762851225440186e-05,1.8521985725369362e-05,1.8267927100257936e-05,1.8001305775945995e-05,1.772277658307653e-05,1.7433016085635733e-05,1.7132719853619765e-05,1.682259969514644e-05,1.6503380863337563e-05,1.6175799253196128e-05,1.5840598603495776e-05,1.5498527718390602e-05,1.5150337723046483e-05,1.4796779367095083e-05,1.443860038912539e-05,1.4076542954760163e-05,1.3711341180124605e-05,1.3343718751708098e-05,1.2974386652755921e-05,1.2604041005414054e-05,1.223336103689541e-05,1.1863007176948561e-05,1.1493619292898831e-05,1.1125815067505421e-05,1.0760188523845344e-05,1.0397308700403795e-05,1.003771847852917e-05,9.681933563407275e-06,9.330441618730192e-06,8.983701554288257e-06,8.642142964804477e-06,8.306165717465754e-06,7.976139684789283e-06,7.652404618700531e-06,7.335270160994723e-06,7.025015984710623e-06,6.721892060365731e-06,6.426119040488253e-06,6.137888755434354e-06,5.857364813100165e-06,5.584683294826781e-06,5.319953539552538e-06,5.063259008089189e-06,4.8146582192854645e-06,4.574185749790998e-06,4.341853289142994e-06,4.117650741964486e-06,3.901547369183307e-06,3.6934929603511995e-06,3.4934190293592277e-06,3.301240026104552e-06,3.1168545569605456e-06,2.9401466072328957e-06,2.7709867591442355e-06,2.6092333992747577e-06,2.4547339097915926e-06,2.3073258382213727e-06,2.1668380409540412e-06,2.033091796107505e-06,1.9059018818284016e-06,1.7850776165502156e-06,1.6704238581728308e-06,1.5617419595640694e-06,1.4588306782108932e-06,1.3614870382629277e-06,1.2695071436114687e-06,1.182686941030901e-06,1.1008229327746655e-06,1.0237128383629346e-06,9.511562056226964e-07,8.829549713419702e-07,8.189139721775493e-07,7.58841406709561e-07,7.025492497658786e-07,6.498536203449919e-07,6.00575104647531e-07,5.545390358845309e-07,5.115757326652902e-07,4.715206978800045e-07,4.342147800830343e-07,3.995042994526971e-07,3.672411404538655e-07,3.3728281336156496e-07,3.0949248681841643e-07,2.8373899359739023e-07,2.5989681172525504e-07,2.378460230926166e-07],[2.5214098477519995e-07,2.7551706434386373e-07,3.0079220301662046e-07,3.280935261908256e-07,3.5755409992968226e-07,3.8931297483981196e-07,4.235152060823186e-07,4.603118472636838e-07,4.998599159215647e-07,5.423223283035204e-07,5.878678011352296e-07,6.366707180902956e-07,6.88910958707561e-07,7.447736875552809e-07,8.044491015157374e-07,8.681321331600089e-07,9.360221083016874e-07,1.0083223559612005e-06,1.0852397691397773e-06,1.166984314994604e-06,1.2537684932246288e-06,1.3458067417200533e-06,1.443314788797667e-06,1.5465089516385778e-06,1.655605380863982e-06,1.7708192515276123e-06,1.8923639011692614e-06,2.0204499159609357e-06,2.1552841663840273e-06,2.2970687943004634e-06,2.4460001537207132e-06,2.6022677080243457e-06,2.766052886851497e-06,2.9375279063531094e-06,3.1168545569605456e-06,3.3041829633076498e-06,3.4996503214063944e-06,3.7033796186369886e-06,3.915478342560228e-06,4.136037184989652e-06,4.36512874816904e-06,4.602806260282347e-06,4.849102307873701e-06,5.104027593069865e-06,5.367569723772023e-06,5.6396920452134636e-06,5.920332521460374e-06,6.2094026755603435e-06,6.506786597113747e-06,6.812340026053055e-06,7.125889521361631e-06,7.447231723343637e-06,7.776132717868276e-06,8.112327510753057e-06,8.455519620120792e-06,8.80538079416319e-06,9.161550861270259e-06,9.523637718940074e-06,9.891217467268942e-06,1.0263834692140172e-05,1.0641002902482977e-05,1.1022205125165066e-05,1.1406894660217641e-05,1.1794495998174452e-05,1.2184405900342806e-05,1.2575994641820559e-05,1.2968607416035127e-05,1.3361565898516613e-05,1.3754169966534288e-05,1.4145699570132628e-05,1.453541674900803e-05,1.492256778857956e-05,1.5306385507535e-05,1.5686091668086972e-05,1.606089949916167e-05,1.6430016321774055e-05,1.6792646264927472e-05,1.7147993059520812e-05,1.7495262896961583e-05,1.7833667338475987e-05,1.816242626048519e-05,1.8480770820887214e-05,1.8787946430652295e-05,1.908321571481183e-05,1.936586144670159e-05,1.9635189439212453e-05,1.9890531376809536e-05,2.013124757220447e-05,2.0356729631807422e-05,2.0566403014443835e-05,2.0759729468295616e-05,2.09362093316143e-05,2.1095383683451974e-05,2.1236836331459166e-05,2.1360195624702925e-05,2.146513608045585e-05,2.15513798149911e-05,2.1618697769581002e-05,2.1666910724129125e-05,2.1695890092158072e-05,2.1705558492217425e-05,2.1695890092158072e-05,2.1666910724129125e-05,2.1618697769581002e-05,2.15513798149911e-05,2.146513608045585e-05,2.1360195624702925e-05,2.1236836331459166e-05,2.1095383683451974e-05,2.09362093316143e-05,2.0759729468295616e-05,2.0566403014443835e-05,2.0356729631807422e-05,2.013124757220447e-05,1.9890531376809536e-05,1.9635189439212453e-05,1.936586144670159e-05,1.908321571481183e-05,1.8787946430652295e-05,1.8480770820887214e-05,1.816242626048519e-05,1.7833667338475987e-05,1.7495262896961583e-05,1.7147993059520812e-05,1.6792646264927472e-05,1.6430016321774055e-05,1.606089949916167e-05,1.5686091668086972e-05,1.5306385507535e-05,1.492256778857956e-05,1.453541674900803e-05,1.4145699570132628e-05,1.3754169966534288e-05,1.3361565898516613e-05,1.2968607416035127e-05,1.2575994641820559e-05,1.2184405900342806e-05,1.1794495998174452e-05,1.1406894660217641e-05,1.1022205125165066e-05,1.0641002902482977e-05,1.0263834692140172e-05,9.891217467268942e-06,9.523637718940074e-06,9.161550861270259e-06,8.80538079416319e-06,8.455519620120792e-06,8.112327510753057e-06,7.776132717868276e-06,7.447231723343637e-06,7.125889521361631e-06,6.812340026053055e-06,6.506786597113747e-06,6.2094026755603435e-06,5.920332521460374e-06,5.6396920452134636e-06,5.367569723772023e-06,5.104027593069865e-06,4.849102307873701e-06,4.602806260282347e-06,4.36512874816904e-06,4.136037184989652e-06,3.915478342560228e-06,3.7033796186369886e-06,3.4996503214063944e-06,3.3041829633076498e-06,3.1168545569605456e-06,2.9375279063531094e-06,2.766052886851497e-06,2.6022677080243457e-06,2.4460001537207132e-06,2.2970687943004634e-06,2.1552841663840273e-06,2.0204499159609357e-06,1.8923639011692614e-06,1.7708192515276123e-06,1.655605380863982e-06,1.5465089516385778e-06,1.443314788797667e-06,1.3458067417200533e-06,1.2537684932246288e-06,1.166984314994604e-06,1.0852397691397773e-06,1.0083223559612005e-06,9.360221083016874e-07,8.681321331600089e-07,8.044491015157374e-07,7.447736875552809e-07,6.88910958707561e-07,6.366707180902956e-07,5.878678011352296e-07,5.423223283035204e-07,4.998599159215647e-07,4.603118472636838e-07,4.235152060823186e-07,3.8931297483981196e-07,3.5755409992968226e-07,3.280935261908256e-07,3.0079220301662046e-07,2.7551706434386373e-07,2.5214098477519995e-07],[2.670570268678228e-07,2.91815977956234e-07,3.185863318264559e-07,3.4750273430248026e-07,3.7870612330936396e-07,4.123437753464895e-07,4.485693266824339e-07,4.87542766884465e-07,5.294304022625633e-07,5.744047867898179e-07,6.226446180594933e-07,6.743345958555153e-07,7.296652409489533e-07,7.888326717896646e-07,8.520383368408847e-07,9.194887004063773e-07,9.913948799258696e-07,1.0679722328658187e-06,1.1494398915098451e-06,1.23602024415705e-06,1.3279383614672561e-06,1.4254213669501771e-06,1.528697750880587e-06,1.6379966272333467e-06,1.7535469335701287e-06,1.8755765741729654e-06,2.004311507107132e-06,2.1399747763059477e-06,2.282785490200978e-06,2.432957748870796e-06,2.5906995221474233e-06,2.7562114815991606e-06,2.9296857897985624e-06,3.1113048507815698e-06,3.301240026104552e-06,3.4996503214063944e-06,3.706681048878564e-06,3.922462471532962e-06,4.1471084356307844e-06,4.380714998090773e-06,4.623359056127335e-06,4.875096986773204e-06,5.135963304312519e-06,5.405969343983605e-06,5.6851019806014815e-06,5.973322390993363e-06,6.27056486933178e-06,6.576735704584877e-06,6.8917121293781425e-06,7.2153413495723615e-06,7.5474396638058455e-06,7.887791682122047e-06,8.23614965260404e-06,8.5922329046636e-06,8.955727417283031e-06,9.326285520082343e-06,9.703525734582694e-06,1.008703276246008e-05,1.047635762693243e-05,1.0871017972701167e-05,1.1270498529077236e-05,1.1674251740066112e-05,1.2081698564270039e-05,1.2492229446494612e-05,1.2905205461925986e-05,1.3319959632681677e-05,1.3735798415438676e-05,1.4152003357715552e-05,1.4567832919238412e-05,1.4982524453662822e-05,1.5395296344764033e-05,1.580535029005555e-05,1.6211873723660822e-05,1.661404236915419e-05,1.701102291201527e-05,1.7401975780314915e-05,1.778605802128078e-05,1.816242626048519e-05,1.8530239729566738e-05,1.8888663347648013e-05,1.92368708409531e-05,1.9574047884567435e-05,1.989939524982545e-05,2.0212131940464375e-05,2.0511498300450064e-05,2.0796759076267048e-05,2.106720641647293e-05,2.1322162791448697e-05,2.1560983816532283e-05,2.178306096210274e-05,2.198782413468488e-05,2.217474411376701e-05,2.2343334829763778e-05,2.2493155469407354e-05,2.2623812395807344e-05,2.2734960871476687e-05,2.2826306573768983e-05,2.289760689340417e-05,2.2948672008064583e-05,2.2979365724412283e-05,2.2989606083300074e-05,2.2979365724412283e-05,2.2948672008064583e-05,2.289760689340417e-05,2.2826306573768983e-05,2.2734960871476687e-05,2.2623812395807344e-05,2.2493155469407354e-05,2.2343334829763778e-05,2.217474411376701e-05,2.198782413468488e-05,2.178306096210274e-05,2.1560983816532283e-05,2.1322162791448697e-05,2.106720641647293e-05,2.0796759076267048e-05,2.0511498300450064e-05,2.0212131940464375e-05,1.989939524982545e-05,1.9574047884567435e-05,1.92368708409531e-05,1.8888663347648013e-05,1.8530239729566738e-05,1.816242626048519e-05,1.778605802128078e-05,1.7401975780314915e-05,1.701102291201527e-05,1.661404236915419e-05,1.6211873723660822e-05,1.580535029005555e-05,1.5395296344764033e-05,1.4982524453662822e-05,1.4567832919238412e-05,1.4152003357715552e-05,1.3735798415438676e-05,1.3319959632681677e-05,1.2905205461925986e-05,1.2492229446494612e-05,1.2081698564270039e-05,1.1674251740066112e-05,1.1270498529077236e-05,1.0871017972701167e-05,1.047635762693243e-05,1.008703276246008e-05,9.703525734582694e-06,9.326285520082343e-06,8.955727417283031e-06,8.5922329046636e-06,8.23614965260404e-06,7.887791682122047e-06,7.5474396638058455e-06,7.2153413495723615e-06,6.8917121293781425e-06,6.576735704584877e-06,6.27056486933178e-06,5.973322390993363e-06,5.6851019806014815e-06,5.405969343983605e-06,5.135963304312519e-06,4.875096986773204e-06,4.623359056127335e-06,4.380714998090773e-06,4.1471084356307844e-06,3.922462471532962e-06,3.706681048878564e-06,3.4996503214063944e-06,3.301240026104552e-06,3.1113048507815698e-06,2.9296857897985624e-06,2.7562114815991606e-06,2.5906995221474233e-06,2.432957748870796e-06,2.282785490200978e-06,2.1399747763059477e-06,2.004311507107132e-06,1.8755765741729654e-06,1.7535469335701287e-06,1.6379966272333467e-06,1.528697750880587e-06,1.4254213669501771e-06,1.3279383614672561e-06,1.23602024415705e-06,1.1494398915098451e-06,1.0679722328658187e-06,9.913948799258696e-07,9.194887004063773e-07,8.520383368408847e-07,7.888326717896646e-07,7.296652409489533e-07,6.743345958555153e-07,6.226446180594933e-07,5.744047867898179e-07,5.294304022625633e-07,4.87542766884465e-07,4.485693266824339e-07,4.123437753464895e-07,3.7870612330936396e-07,3.4750273430248026e-07,3.185863318264559e-07,2.91815977956234e-07,2.670570268678228e-07],[2.826035344921642e-07,3.088038077819837e-07,3.3713257603070354e-07,3.67732323359453e-07,4.00752192279973e-07,4.363480328732788e-07,4.746824252183721e-07,5.159246725450612e-07,5.602507625499069e-07,6.078432942952052e-07,6.588913681092798e-07,7.13590435923763e-07,7.721421095214636e-07,8.347539242282959e-07,9.01639055665947e-07,9.73015987289709e-07,1.0491081265693625e-06,1.130143367831127e-06,1.2163535999662957e-06,1.307974157427936e-06,1.405243213181284e-06,1.5084011125464545e-06,1.6176896471737385e-06,1.7333512687217075e-06,1.8556282421659941e-06,1.9847617390510573e-06,2.120990871407172e-06,2.2645516674888375e-06,2.415675990946763e-06,2.5745904055214713e-06,2.741514987839614e-06,2.9166620914016382e-06,3.100235065367974e-06,3.292426932277169e-06,3.4934190293592277e-06,3.7033796186369886e-06,3.922462471532962e-06,4.150805434214344e-06,4.38852898040984e-06,4.635734758913591e-06,4.892504143448803e-06,5.158896792991318e-06,5.434949231046256e-06,5.720673452723624e-06,6.01605556876647e-06,6.321054495942581e-06,6.635600703413179e-06,6.9595950248349026e-06,7.292907546030379e-06,7.635376578073844e-06,7.986807725578243e-06,8.34697305983588e-06,8.715610406253482e-06,9.092422755232795e-06,9.477077805277968e-06,9.8692076466606e-06,1.0268408593442454e-05,1.0674241171045348e-05,1.1086230265868996e-05,1.1503865442693407e-05,1.1926601434765427e-05,1.2353858810563633e-05,1.2785024820266228e-05,1.3219454423918906e-05,1.3656471502219414e-05,1.4095370249710292e-05,1.4535416749008028e-05,1.49758507235043e-05,1.5415887464761253e-05,1.5854719929597763e-05,1.6291521000636243e-05,1.672544590286019e-05,1.7155634767531416e-05,1.75812153336425e-05,1.8001305775945995e-05,1.8415017647515704e-05,1.882145892376921e-05,1.9219737133922437e-05,1.9608962564967605e-05,1.9988251522473194e-05,2.035672963180742e-05,2.071353516279309e-05,2.1057822360317896e-05,2.1388764763056785e-05,2.170555849221742e-05,2.20074254920989e-05,2.2293616704262793e-05,2.2563415157254342e-05,2.281613895408245e-05,2.3051144140069204e-05,2.326782743421141e-05,2.3465628807855682e-05,2.3644033895271084e-05,2.3802576221603903e-05,2.3940839234712318e-05,2.4058458128496824e-05,2.4155121446557538e-05,2.4230572456312456e-05,2.4284610285092088e-05,2.431709081117408e-05,2.4327927304226146e-05,2.431709081117408e-05,2.4284610285092088e-05,2.4230572456312456e-05,2.4155121446557538e-05,2.4058458128496824e-05,2.3940839234712318e-05,2.3802576221603903e-05,2.3644033895271084e-05,2.3465628807855682e-05,2.326782743421141e-05,2.3051144140069204e-05,2.281613895408245e-05,2.2563415157254342e-05,2.2293616704262793e-05,2.20074254920989e-05,2.170555849221742e-05,2.1388764763056785e-05,2.1057822360317896e-05,2.071353516279309e-05,2.035672963180742e-05,1.9988251522473194e-05,1.9608962564967605e-05,1.9219737133922437e-05,1.882145892376921e-05,1.8415017647515704e-05,1.8001305775945995e-05,1.75812153336425e-05,1.7155634767531416e-05,1.672544590286019e-05,1.6291521000636243e-05,1.5854719929597763e-05,1.5415887464761253e-05,1.49758507235043e-05,1.4535416749008028e-05,1.4095370249710292e-05,1.3656471502219414e-05,1.3219454423918906e-05,1.2785024820266228e-05,1.2353858810563633e-05,1.1926601434765427e-05,1.1503865442693407e-05,1.1086230265868996e-05,1.0674241171045348e-05,1.0268408593442454e-05,9.8692076466606e-06,9.477077805277968e-06,9.092422755232795e-06,8.715610406253482e-06,8.34697305983588e-06,7.986807725578243e-06,7.635376578073844e-06,7.292907546030379e-06,6.9595950248349026e-06,6.635600703413179e-06,6.321054495942581e-06,6.01605556876647e-06,5.720673452723624e-06,5.434949231046256e-06,5.158896792991318e-06,4.892504143448803e-06,4.635734758913591e-06,4.38852898040984e-06,4.150805434214344e-06,3.922462471532962e-06,3.7033796186369886e-06,3.4934190293592277e-06,3.292426932277169e-06,3.100235065367974e-06,2.9166620914016382e-06,2.741514987839614e-06,2.5745904055214713e-06,2.415675990946763e-06,2.2645516674888375e-06,2.120990871407172e-06,1.9847617390510573e-06,1.8556282421659941e-06,1.7333512687217075e-06,1.6176896471737385e-06,1.5084011125464545e-06,1.405243213181284e-06,1.307974157427936e-06,1.2163535999662957e-06,1.130143367831127e-06,1.0491081265693625e-06,9.73015987289709e-07,9.01639055665947e-07,8.347539242282959e-07,7.721421095214636e-07,7.13590435923763e-07,6.588913681092798e-07,6.078432942952052e-07,5.602507625499069e-07,5.159246725450612e-07,4.746824252183721e-07,4.363480328732788e-07,4.00752192279973e-07,3.67732323359453e-07,3.3713257603070354e-07,3.088038077819837e-07,2.826035344921642e-07],[2.987887099843936e-07,3.264895165987595e-07,3.564407206263104e-07,3.887929664912997e-07,4.23703938345721e-07,4.613384120645161e-07,5.018682789588157e-07,5.45472538536611e-07,5.923372576031985e-07,6.426554929735465e-07,6.96627175066993e-07,7.54458949673094e-07,8.163639752175261e-07,8.825616729202597e-07,9.53277427326178e-07,1.028742234802248e-06,1.1091922977364429e-06,1.1948685623429214e-06,1.2860161981763166e-06,1.3828840176861023e-06,1.4857238344002445e-06,1.5947897586159724e-06,1.7103374297944317e-06,1.8326231852048225e-06,1.961903164741764e-06,2.098432352246075e-06,2.2424635540925805e-06,2.3942463162673496e-06,2.5540257816388626e-06,2.7220414896307194e-06,2.8985261210248274e-06,3.083704191160575e-06,3.2777906953437734e-06,3.4809897108355022e-06,3.6934929603511995e-06,3.915478342560228e-06,4.1471084356307844e-06,4.38852898040984e-06,4.639867350357358e-06,4.901231015863358e-06,5.172706011059816e-06,5.454355411691569e-06,5.746217833025753e-06,6.04830595715232e-06,6.3606050993534225e-06,6.683071823491656e-06,7.015632616581202e-06,7.3581826328569185e-06,7.71058451773994e-06,8.0726673221102e-06,8.444225517232797e-06,8.825018120543006e-06,9.214767942271577e-06,9.613160962585482e-06,1.0019845848528287e-05,1.0434433619568177e-05,1.0856497470000331e-05,1.1285572755804911e-05,1.1721157152833778e-05,1.2162710992391047e-05,1.2609657779387703e-05,1.306138489729324e-05,1.3517244503082168e-05,1.3976554614286791e-05,1.4438600389125387e-05,1.4902635599485438e-05,1.5367884295311517e-05,1.5833542657686628e-05,1.629878103661266e-05,1.6762746168200242e-05,1.7224563564680847e-05,1.7683340069364633e-05,1.813816656739744e-05,1.8588120841930005e-05,1.903227056411302e-05,1.9469676404183894e-05,1.989939524982545e-05,2.032048351696414e-05,2.0732000537245186e-05,2.113301200558392e-05,2.152259347045592e-05,2.189983384896032e-05,2.226383894817974e-05,2.2613734973971415e-05,2.294867200806458e-05,2.3267827434211405e-05,2.357040929414809e-05,2.3855659554269535e-05,2.4122857264207318e-05,2.43713215889257e-05,2.4600414696512835e-05,2.4809544484540848e-05,2.499816712869599e-05,2.5165789438332115e-05,2.5311971004671876e-05,2.5436326128562373e-05,2.5538525515976514e-05,2.56182977308294e-05,2.5675430396138895e-05,2.5709771136091398e-05,2.5721228253163908e-05,2.5709771136091398e-05,2.5675430396138895e-05,2.56182977308294e-05,2.5538525515976514e-05,2.5436326128562373e-05,2.5311971004671876e-05,2.5165789438332115e-05,2.499816712869599e-05,2.4809544484540848e-05,2.4600414696512835e-05,2.43713215889257e-05,2.4122857264207318e-05,2.3855659554269535e-05,2.357040929414809e-05,2.3267827434211405e-05,2.294867200806458e-05,2.2613734973971415e-05,2.226383894817974e-05,2.189983384896032e-05,2.152259347045592e-05,2.113301200558392e-05,2.0732000537245186e-05,2.032048351696414e-05,1.989939524982545e-05,1.9469676404183894e-05,1.903227056411302e-05,1.8588120841930005e-05,1.813816656739744e-05,1.7683340069364633e-05,1.7224563564680847e-05,1.6762746168200242e-05,1.629878103661266e-05,1.5833542657686628e-05,1.5367884295311517e-05,1.4902635599485438e-05,1.4438600389125387e-05,1.3976554614286791e-05,1.3517244503082168e-05,1.306138489729324e-05,1.2609657779387703e-05,1.2162710992391047e-05,1.1721157152833778e-05,1.1285572755804911e-05,1.0856497470000331e-05,1.0434433619568177e-05,1.0019845848528287e-05,9.613160962585482e-06,9.214767942271577e-06,8.825018120543006e-06,8.444225517232797e-06,8.0726673221102e-06,7.71058451773994e-06,7.3581826328569185e-06,7.015632616581202e-06,6.683071823491656e-06,6.3606050993534225e-06,6.04830595715232e-06,5.746217833025753e-06,5.454355411691569e-06,5.172706011059816e-06,4.901231015863358e-06,4.639867350357358e-06,4.38852898040984e-06,4.1471084356307844e-06,3.915478342560228e-06,3.6934929603511995e-06,3.4809897108355022e-06,3.2777906953437734e-06,3.083704191160575e-06,2.8985261210248274e-06,2.7220414896307194e-06,2.5540257816388626e-06,2.3942463162673496e-06,2.2424635540925805e-06,2.098432352246075e-06,1.961903164741764e-06,1.8326231852048225e-06,1.7103374297944317e-06,1.5947897586159724e-06,1.4857238344002445e-06,1.3828840176861023e-06,1.2860161981763166e-06,1.1948685623429214e-06,1.1091922977364429e-06,1.028742234802248e-06,9.53277427326178e-07,8.825616729202597e-07,8.163639752175261e-07,7.54458949673094e-07,6.96627175066993e-07,6.426554929735465e-07,5.923372576031985e-07,5.45472538536611e-07,5.018682789588157e-07,4.613384120645161e-07,4.23703938345721e-07,3.887929664912997e-07,3.564407206263104e-07,3.264895165987595e-07,2.987887099843936e-07],[3.156194740033942e-07,3.44880666682169e-07,3.7651902163017804e-07,4.106936690700687e-07,4.4757117549999805e-07,4.873255986177292e-07,5.301385123696397e-07,5.761989993036006e-07,6.25703607365551e-07,6.788562682582528e-07,7.358681744788784e-07,7.969576121715336e-07,8.623497469731493e-07,9.322763600980688e-07,1.0069755319995606e-06,1.086691271066839e-06,1.171673084965218e-06,1.2621754924058635e-06,1.3584574733411262e-06,1.460781855822416e-06,1.5694146380303461e-06,1.6846242442917745e-06,1.8066807142352582e-06,1.9358548246049276e-06,2.072417143652225e-06,2.2166370184542954e-06,2.368781495965662e-06,2.529114179094436e-06,2.697894019603585e-06,2.8753740501692238e-06,3.0618000584785762e-06,3.2574092068170824e-06,3.4624286011732428e-06,3.6770738144775097e-06,3.901547369183307e-06,4.136037184989652e-06,4.380714998090773e-06,4.635734758913591e-06,4.901231015863358e-06,5.17731729313572e-06,5.4640844711641525e-06,5.76159917874935e-06,6.069902206355927e-06,6.389006950455794e-06,6.718897899141142e-06,7.059529169517532e-06,7.410823107613642e-06,7.77266896170379e-06,8.144921640027522e-06,8.527400563903142e-06,8.91988862716487e-06,9.322131272703345e-06,9.733835696653346e-06,1.0154670190448864e-05,1.0584263630552753e-05,1.1022205125165062e-05,1.1468043826621358e-05,1.1921288917510406e-05,1.2381409777771549e-05,1.2847836339178515e-05,1.3319959632681674e-05,1.3797132533069582e-05,1.4278670704327832e-05,1.4763853747925484e-05,1.525192655505285e-05,1.5742100862577868e-05,1.623355701118891e-05,1.672544590286019e-05,1.7216891153420347e-05,1.7706991434636587e-05,1.819482299885613e-05,1.867944237788479e-05,1.91598892464409e-05,1.9635189439212453e-05,2.01043581092786e-05,2.056640301444383e-05,2.1020327916886823e-05,2.146513608045585e-05,2.189983384896032e-05,2.232343428792273e-05,2.2734960871476687e-05,2.313345119543377e-05,2.3517960697001574e-05,2.3887566361225015e-05,2.4241370393948555e-05,2.4578503840962167e-05,2.4898130133003702e-05,2.5199448536445267e-05,2.5481697489793866e-05,2.5744157806585358e-05,2.5986155725844863e-05,2.62070657920227e-05,2.6406313547188838e-05,2.6583378019274645e-05,2.673779399128228e-05,2.6869154037630737e-05,2.6977110315164802e-05,2.7061376097808557e-05,2.712172704538733e-05,2.7158002198759963e-05,2.7170104695083233e-05,2.7158002198759963e-05,2.712172704538733e-05,2.7061376097808557e-05,2.6977110315164802e-05,2.6869154037630737e-05,2.673779399128228e-05,2.6583378019274645e-05,2.6406313547188838e-05,2.62070657920227e-05,2.5986155725844863e-05,2.5744157806585358e-05,2.5481697489793866e-05,2.5199448536445267e-05,2.4898130133003702e-05,2.4578503840962167e-05,2.4241370393948555e-05,2.3887566361225015e-05,2.3517960697001574e-05,2.313345119543377e-05,2.2734960871476687e-05,2.232343428792273e-05,2.189983384896032e-05,2.146513608045585e-05,2.1020327916886823e-05,2.056640301444383e-05,2.01043581092786e-05,1.9635189439212453e-05,1.91598892464409e-05,1.867944237788479e-05,1.819482299885613e-05,1.7706991434636587e-05,1.7216891153420347e-05,1.672544590286019e-05,1.623355701118891e-05,1.5742100862577868e-05,1.525192655505285e-05,1.4763853747925484e-05,1.4278670704327832e-05,1.3797132533069582e-05,1.3319959632681674e-05,1.2847836339178515e-05,1.2381409777771549e-05,1.1921288917510406e-05,1.1468043826621358e-05,1.1022205125165062e-05,1.0584263630552753e-05,1.0154670190448864e-05,9.733835696653346e-06,9.322131272703345e-06,8.91988862716487e-06,8.527400563903142e-06,8.144921640027522e-06,7.77266896170379e-06,7.410823107613642e-06,7.059529169517532e-06,6.718897899141142e-06,6.389006950455794e-06,6.069902206355927e-06,5.76159917874935e-06,5.4640844711641525e-06,5.17731729313572e-06,4.901231015863358e-06,4.635734758913591e-06,4.380714998090773e-06,4.136037184989652e-06,3.901547369183307e-06,3.6770738144775097e-06,3.4624286011732428e-06,3.2574092068170824e-06,3.0618000584785762e-06,2.8753740501692238e-06,2.697894019603585e-06,2.529114179094436e-06,2.368781495965662e-06,2.2166370184542954e-06,2.072417143652225e-06,1.9358548246049276e-06,1.8066807142352582e-06,1.6846242442917745e-06,1.5694146380303461e-06,1.460781855822416e-06,1.3584574733411262e-06,1.2621754924058635e-06,1.171673084965218e-06,1.086691271066839e-06,1.0069755319995606e-06,9.322763600980688e-07,8.623497469731493e-07,7.969576121715336e-07,7.358681744788784e-07,6.788562682582528e-07,6.25703607365551e-07,5.761989993036006e-07,5.301385123696397e-07,4.873255986177292e-07,4.4757117549999805e-07,4.106936690700687e-07,3.7651902163017804e-07,3.44880666682169e-07,3.156194740033942e-07],[3.3310136679964454e-07,3.639833119212652e-07,3.973740882976329e-07,4.3344164023836366e-07,4.723617602175258e-07,5.143181468399345e-07,5.595024312776028e-07,6.081141691990549e-07,6.603607951728979e-07,7.164575365045387e-07,7.766272834629896e-07,8.411004128752333e-07,9.101145621103042e-07,9.839143505458242e-07,1.0627510457077994e-06,1.146882171401484e-06,1.2365710553084346e-06,1.3320863137136019e-06,1.4337012712474594e-06,1.5416933137824543e-06,1.6563431729109836e-06,1.7779341407538548e-06,1.9067512142037554e-06,2.0430801680971462e-06,2.1872065572295696e-06,2.3394146475824693e-06,2.4999862776128418e-06,2.6691996509684877e-06,2.84732806252911e-06,3.0346385602343967e-06,3.2313905457414113e-06,3.4378343175517977e-06,3.6542095608605732e-06,3.880743788998485e-06,4.117650741964486e-06,4.36512874816904e-06,4.623359056127335e-06,4.892504143448803e-06,5.172706011059816e-06,5.4640844711641525e-06,5.766735437984788e-06,6.080729230834718e-06,6.406108899527517e-06,6.742888582554215e-06,7.091051908815696e-06,7.450550454003229e-06,7.82130226295842e-06,8.203190449512195e-06,8.596061885395555e-06,8.999725989828021e-06,9.413953631318927e-06,9.838476153058288e-06,1.0272984533025141e-05,1.0717128689599637e-05,1.1170516943029232e-05,1.163271564256851e-05,1.2103248968486395e-05,1.258159891741492e-05,1.3067205478701967e-05,1.3559467008529648e-05,1.4057740807573367e-05,1.4561343906909544e-05,1.5069554065737066e-05,1.558161098326634e-05,1.6096717725856367e-05,1.661404236915419e-05,1.7132719853619765e-05,1.7651854050413663e-05,1.8170520033194628e-05,1.868776654992973e-05,1.9202618687373533e-05,1.9714080719435305e-05,2.0221139129237125e-05,2.0722765793283328e-05,2.1217921314824196e-05,2.170555849221742e-05,2.2184625906880595e-05,2.2654071614298784e-05,2.3112846920514647e-05,2.355991022559382e-05,2.3994230914737155e-05,2.4414793277011137e-05,2.4820600431097917e-05,2.5210678237033285e-05,2.5584079172611075e-05,2.5939886152990563e-05,2.627721627205347e-05,2.659522444422092e-05,2.689310692576e-05,2.7170104695083233e-05,2.7425506672171452e-05,2.765865275802687e-05,2.7868936675985894e-05,2.805580859778248e-05,2.821877753844704e-05,2.8357413505444007e-05,2.847134938888323e-05,2.8560282581176602e-05,2.8623976316138998e-05,2.8662260719240055e-05,2.8675033562486495e-05,2.8662260719240055e-05,2.8623976316138998e-05,2.8560282581176602e-05,2.847134938888323e-05,2.8357413505444007e-05,2.821877753844704e-05,2.805580859778248e-05,2.7868936675985894e-05,2.765865275802687e-05,2.7425506672171452e-05,2.7170104695083233e-05,2.689310692576e-05,2.659522444422092e-05,2.627721627205347e-05,2.5939886152990563e-05,2.5584079172611075e-05,2.5210678237033285e-05,2.4820600431097917e-05,2.4414793277011137e-05,2.3994230914737155e-05,2.355991022559382e-05,2.3112846920514647e-05,2.2654071614298784e-05,2.2184625906880595e-05,2.170555849221742e-05,2.1217921314824196e-05,2.0722765793283328e-05,2.0221139129237125e-05,1.9714080719435305e-05,1.9202618687373533e-05,1.868776654992973e-05,1.8170520033194628e-05,1.7651854050413663e-05,1.7132719853619765e-05,1.661404236915419e-05,1.6096717725856367e-05,1.558161098326634e-05,1.5069554065737066e-05,1.4561343906909544e-05,1.4057740807573367e-05,1.3559467008529648e-05,1.3067205478701967e-05,1.258159891741492e-05,1.2103248968486395e-05,1.163271564256851e-05,1.1170516943029232e-05,1.0717128689599637e-05,1.0272984533025141e-05,9.838476153058288e-06,9.413953631318927e-06,8.999725989828021e-06,8.596061885395555e-06,8.203190449512195e-06,7.82130226295842e-06,7.450550454003229e-06,7.091051908815696e-06,6.742888582554215e-06,6.406108899527517e-06,6.080729230834718e-06,5.766735437984788e-06,5.4640844711641525e-06,5.172706011059816e-06,4.892504143448803e-06,4.623359056127335e-06,4.36512874816904e-06,4.117650741964486e-06,3.880743788998485e-06,3.6542095608605732e-06,3.4378343175517977e-06,3.2313905457414113e-06,3.0346385602343967e-06,2.84732806252911e-06,2.6691996509684877e-06,2.4999862776128418e-06,2.3394146475824693e-06,2.1872065572295696e-06,2.0430801680971462e-06,1.9067512142037554e-06,1.7779341407538548e-06,1.6563431729109836e-06,1.5416933137824543e-06,1.4337012712474594e-06,1.3320863137136019e-06,1.2365710553084346e-06,1.146882171401484e-06,1.0627510457077994e-06,9.839143505458242e-07,9.101145621103042e-07,8.411004128752333e-07,7.766272834629896e-07,7.164575365045387e-07,6.603607951728979e-07,6.081141691990549e-07,5.595024312776028e-07,5.143181468399345e-07,4.723617602175258e-07,4.3344164023836366e-07,3.973740882976329e-07,3.639833119212652e-07,3.3310136679964454e-07],[3.5123845019625447e-07,3.8380189071221046e-07,4.1901076619046496e-07,4.570421653640835e-07,4.980814524563986e-07,5.423223283035205e-07,5.899668582302296e-07,6.412254635398477e-07,6.96316873435124e-07,7.554680341634345e-07,8.189139721775491e-07,8.86897608124861e-07,9.596695185250953e-07,1.0374876420709374e-06,1.1206169275894265e-06,1.209328920835885e-06,1.3039012874580162e-06,1.4046172696668338e-06,1.5117650743842425e-06,1.625637190905261e-06,1.7465296364164345e-06,1.8747411280512937e-06,2.0105721805386123e-06,2.15432412890931e-06,2.3062980761723463e-06,2.4667937663477645e-06,2.6361083837545358e-06,2.8145352799901977e-06,3.0023626306059814e-06,3.1998720240725837e-06,3.407336986244553e-06,3.625021444162024e-06,3.853178133673072e-06,4.09204695601394e-06,4.341853289142994e-06,4.602806260282347e-06,4.875096986773204e-06,5.158896792991318e-06,5.454355411691569e-06,5.76159917874935e-06,6.080729230834718e-06,6.411819716086882e-06,6.754916028344797e-06,7.110033075928192e-06,7.4771535963456606e-06,7.856226528626443e-06,8.24716545522414e-06,8.649847125618142e-06,9.064110073836688e-06,9.489753342139454e-06,9.926535323022848e-06,1.0374172731544279e-05,1.0832339719699084e-05,1.1300667144223825e-05,1.1778741998739757e-05,1.2266107020590738e-05,1.276226048206991e-05,1.3266656174970714e-05,1.3778703596541898e-05,1.4297768343976303e-05,1.4823172723522976e-05,1.5354196579186894e-05,1.5890078344775503e-05,1.6430016321774058e-05,1.6973170184189113e-05,1.7518662710101054e-05,1.806558173822068e-05,1.8612982346262736e-05,1.91598892464409e-05,1.9705299391865857e-05,2.024818478610311e-05,2.0787495486631267e-05,2.13221627914487e-05,2.185110259661822e-05,2.2373218911129598e-05,2.288740751411031e-05,2.3392559738138942e-05,2.3887566361225022e-05,2.4371321588925707e-05,2.4842727107084608e-05,2.5300696184811722e-05,2.5744157806585368e-05,2.617206081175594e-05,2.6583378019274648e-05,2.697711031516481e-05,2.73522906801036e-05,2.770798813449273e-05,2.804331157856921e-05,2.8357413505444014e-05,2.8649493565455995e-05,2.8918801960889515e-05,2.9164642650923173e-05,2.938637634764964e-05,2.9583423285125908e-05,2.975526574467239e-05,2.990145032102918e-05,3.0021589915487837e-05,3.0115365443736923e-05,3.0182527247875835e-05,3.022289620385191e-05,3.0236364517445406e-05,3.022289620385191e-05,3.0182527247875835e-05,3.0115365443736923e-05,3.0021589915487837e-05,2.990145032102918e-05,2.975526574467239e-05,2.9583423285125908e-05,2.938637634764964e-05,2.9164642650923173e-05,2.8918801960889515e-05,2.8649493565455995e-05,2.8357413505444014e-05,2.804331157856921e-05,2.770798813449273e-05,2.73522906801036e-05,2.697711031516481e-05,2.6583378019274648e-05,2.617206081175594e-05,2.5744157806585368e-05,2.5300696184811722e-05,2.4842727107084608e-05,2.4371321588925707e-05,2.3887566361225022e-05,2.3392559738138942e-05,2.288740751411031e-05,2.2373218911129598e-05,2.185110259661822e-05,2.13221627914487e-05,2.0787495486631267e-05,2.024818478610311e-05,1.9705299391865857e-05,1.91598892464409e-05,1.8612982346262736e-05,1.806558173822068e-05,1.7518662710101054e-05,1.6973170184189113e-05,1.6430016321774058e-05,1.5890078344775503e-05,1.5354196579186894e-05,1.4823172723522976e-05,1.4297768343976303e-05,1.3778703596541898e-05,1.3266656174970714e-05,1.276226048206991e-05,1.2266107020590738e-05,1.1778741998739757e-05,1.1300667144223825e-05,1.0832339719699084e-05,1.0374172731544279e-05,9.926535323022848e-06,9.489753342139454e-06,9.064110073836688e-06,8.649847125618142e-06,8.24716545522414e-06,7.856226528626443e-06,7.4771535963456606e-06,7.110033075928192e-06,6.754916028344797e-06,6.411819716086882e-06,6.080729230834718e-06,5.76159917874935e-06,5.454355411691569e-06,5.158896792991318e-06,4.875096986773204e-06,4.602806260282347e-06,4.341853289142994e-06,4.09204695601394e-06,3.853178133673072e-06,3.625021444162024e-06,3.407336986244553e-06,3.1998720240725837e-06,3.0023626306059814e-06,2.8145352799901977e-06,2.6361083837545358e-06,2.4667937663477645e-06,2.3062980761723463e-06,2.15432412890931e-06,2.0105721805386123e-06,1.8747411280512937e-06,1.7465296364164345e-06,1.625637190905261e-06,1.5117650743842425e-06,1.4046172696668338e-06,1.3039012874580162e-06,1.209328920835885e-06,1.1206169275894265e-06,1.0374876420709374e-06,9.596695185250953e-07,8.86897608124861e-07,8.189139721775491e-07,7.554680341634345e-07,6.96316873435124e-07,6.412254635398477e-07,5.899668582302296e-07,5.423223283035205e-07,4.980814524563986e-07,4.570421653640835e-07,4.1901076619046496e-07,3.8380189071221046e-07,3.5123845019625447e-07],[3.7003321086040276e-07,4.0433912026197375e-07,4.414320217843526e-07,4.814984801742712e-07,5.247337784900054e-07,5.713419824945496e-07,6.215359700231472e-07,6.755374220177852e-07,7.335767718753683e-07,7.958931097312796e-07,8.627340382978845e-07,9.343554769003282e-07,1.0110214104016242e-06,1.093003579787436e-06,1.1805811112898961e-06,1.2740400810708859e-06,1.3736730126599558e-06,1.47977830455173e-06,1.5926595856132788e-06,1.712624996234464e-06,1.8399863934740617e-06,1.9750584788119284e-06,2.1181578475124414e-06,2.269601959036469e-06,2.429708028407431e-06,2.598791838940369e-06,2.777166477279712e-06,2.965140992259627e-06,3.163018979697866e-06,3.371097095857134e-06,3.5896635029535987e-06,3.818996250756695e-06,4.059361599003392e-06,4.311012286039072e-06,4.574185749790998e-06,4.849102307873701e-06,5.135963304312519e-06,5.434949231046256e-06,5.746217833025753e-06,6.069902206355927e-06,6.406108899527517e-06,6.754916028344797e-06,7.116371415669909e-06,7.4904907675664e-06,7.877255897827377e-06,8.276613013210814e-06,8.688471071969576e-06,9.112700228450781e-06,9.549130376642568e-06,9.997549805560968e-06,1.0457703979290931e-05,1.0929294454319683e-05,1.141197794652401e-05,1.1905365559793694e-05,1.240902218778902e-05,1.2922466099740583e-05,1.3445168720504508e-05,1.3976554614286796e-05,1.4516001680548778e-05,1.5062841569604993e-05,1.5616360324328864e-05,1.617579925319613e-05,1.6740356038626362e-05,1.7309186083237394e-05,1.788140409521294e-05,1.8456085912510458e-05,1.9032270564113025e-05,1.9608962564967612e-05,2.0185134439662874e-05,2.0759729468295616e-05,2.1331664646367897e-05,2.1899833848960324e-05,2.2463111187853966e-05,2.3020354548737127e-05,2.3570409294148093e-05,2.4112112116383145e-05,2.4644295023254948e-05,2.516578943833212e-05,2.5675430396138905e-05,2.617206081175594e-05,2.6654535803350546e-05,2.7121727045387334e-05,2.7572527129636686e-05,2.800585391061764e-05,2.842065481178967e-05,2.8815911068650238e-05,2.9190641884906088e-05,2.9543908478068247e-05,2.987481799117531e-05,3.0182527247875835e-05,3.0466246328797206e-05,3.072524194799113e-05,3.0958840609270374e-05,3.116643152343085e-05,3.134746926867943e-05,3.1501476178052096e-05,3.1628044439198235e-05,3.172683789361289e-05,3.179759352420748e-05,3.184012262200574e-05,3.185431162472197e-05,3.184012262200574e-05,3.179759352420748e-05,3.172683789361289e-05,3.1628044439198235e-05,3.1501476178052096e-05,3.134746926867943e-05,3.116643152343085e-05,3.0958840609270374e-05,3.072524194799113e-05,3.0466246328797206e-05,3.0182527247875835e-05,2.987481799117531e-05,2.9543908478068247e-05,2.9190641884906088e-05,2.8815911068650238e-05,2.842065481178967e-05,2.800585391061764e-05,2.7572527129636686e-05,2.7121727045387334e-05,2.6654535803350546e-05,2.617206081175594e-05,2.5675430396138905e-05,2.516578943833212e-05,2.4644295023254948e-05,2.4112112116383145e-05,2.3570409294148093e-05,2.3020354548737127e-05,2.2463111187853966e-05,2.1899833848960324e-05,2.1331664646367897e-05,2.0759729468295616e-05,2.0185134439662874e-05,1.9608962564967612e-05,1.9032270564113025e-05,1.8456085912510458e-05,1.788140409521294e-05,1.7309186083237394e-05,1.6740356038626362e-05,1.617579925319613e-05,1.5616360324328864e-05,1.5062841569604993e-05,1.4516001680548778e-05,1.3976554614286796e-05,1.3445168720504508e-05,1.2922466099740583e-05,1.240902218778902e-05,1.1905365559793694e-05,1.141197794652401e-05,1.0929294454319683e-05,1.0457703979290931e-05,9.997549805560968e-06,9.549130376642568e-06,9.112700228450781e-06,8.688471071969576e-06,8.276613013210814e-06,7.877255897827377e-06,7.4904907675664e-06,7.116371415669909e-06,6.754916028344797e-06,6.406108899527517e-06,6.069902206355927e-06,5.746217833025753e-06,5.434949231046256e-06,5.135963304312519e-06,4.849102307873701e-06,4.574185749790998e-06,4.311012286039072e-06,4.059361599003392e-06,3.818996250756695e-06,3.5896635029535987e-06,3.371097095857134e-06,3.163018979697866e-06,2.965140992259627e-06,2.777166477279712e-06,2.598791838940369e-06,2.429708028407431e-06,2.269601959036469e-06,2.1181578475124414e-06,1.9750584788119284e-06,1.8399863934740617e-06,1.712624996234464e-06,1.5926595856132788e-06,1.47977830455173e-06,1.3736730126599558e-06,1.2740400810708859e-06,1.1805811112898961e-06,1.093003579787436e-06,1.0110214104016242e-06,9.343554769003282e-07,8.627340382978845e-07,7.958931097312796e-07,7.335767718753683e-07,6.755374220177852e-07,6.215359700231472e-07,5.713419824945496e-07,5.247337784900054e-07,4.814984801742712e-07,4.414320217843526e-07,4.0433912026197375e-07,3.7003321086040276e-07],[3.894864654674403e-07,4.2559589296016587e-07,4.6463882933414835e-07,5.068116473517583e-07,5.523198964228898e-07,6.013783703833898e-07,6.542111384064893e-07,7.110515355659647e-07,7.721421095214636e-07,8.377345197700947e-07,9.080893859061238e-07,9.834760813546111e-07,1.0641724690970792e-06,1.1504645759898278e-06,1.2426462023901807e-06,1.3410184639544502e-06,1.4458892626553424e-06,1.5575726842872157e-06,1.6763883199861575e-06,1.802660509589222e-06,1.9367175049937763e-06,2.0788905520541633e-06,2.229512889968614e-06,2.3889186675640818e-06,2.557441776379594e-06,2.7354146009785324e-06,2.9231666874852578e-06,3.1210233319395407e-06,3.3293040906906942e-06,3.5483212157091592e-06,3.778378018372839e-06,4.019767165984947e-06,4.272768915994826e-06,4.537649293618435e-06,4.8146582192854645e-06,5.104027593069865e-06,5.405969343983605e-06,5.720673452723624e-06,6.04830595715232e-06,6.389006950455794e-06,6.742888582554215e-06,7.110033075928192e-06,7.4904907675664e-06,7.884278189225978e-06,8.291376198621226e-06,8.711728174510893e-06,9.145238288933429e-06,9.591769870036384e-06,1.0051143869055022e-05,1.052313744501068e-05,1.1007482680616537e-05,1.1503865442693407e-05,1.2011924400107009e-05,1.2531250211838872e-05,1.306138489729324e-05,1.36018214003217e-05,1.4152003357715552e-05,1.4711325082074505e-05,1.5279131768011203e-05,1.5854719929597766e-05,1.6437338075807002e-05,1.702618762945316e-05,1.762042409380077e-05,1.821915846959392e-05,1.882145892376921e-05,1.9426352709565256e-05,2.003282833613796e-05,2.063983798414746e-05,2.1246300162109824e-05,2.1851102596618218e-05,2.2453105347846677e-05,2.3051144140069208e-05,2.3644033895271084e-05,2.423057245631246e-05,2.4809544484540848e-05,2.537972551525288e-05,2.5939886152990566e-05,2.6488796387337188e-05,2.7025230008665546e-05,2.7547969102198635e-05,2.805580859778248e-05,2.854756085195217e-05,2.902206023820575e-05,2.9478167720894185e-05,2.9914775387796686e-05,3.033081091628494e-05,3.0725241947991123e-05,3.10970803470865e-05,3.144538631765044e-05,3.176927235616365e-05,3.206790701589268e-05,3.2340518460840644e-05,3.258639778801785e-05,3.2804902098027e-05,3.299545729535404e-05,3.3157560601296905e-05,3.329078276413884e-05,3.339476995296931e-05,3.346924532345869e-05,3.351401024588944e-05,3.352894518781965e-05,3.351401024588944e-05,3.346924532345869e-05,3.339476995296931e-05,3.329078276413884e-05,3.3157560601296905e-05,3.299545729535404e-05,3.2804902098027e-05,3.258639778801785e-05,3.2340518460840644e-05,3.206790701589268e-05,3.176927235616365e-05,3.144538631765044e-05,3.10970803470865e-05,3.0725241947991123e-05,3.033081091628494e-05,2.9914775387796686e-05,2.9478167720894185e-05,2.902206023820575e-05,2.854756085195217e-05,2.805580859778248e-05,2.7547969102198635e-05,2.7025230008665546e-05,2.6488796387337188e-05,2.5939886152990566e-05,2.537972551525288e-05,2.4809544484540848e-05,2.423057245631246e-05,2.3644033895271084e-05,2.3051144140069208e-05,2.2453105347846677e-05,2.1851102596618218e-05,2.1246300162109824e-05,2.063983798414746e-05,2.003282833613796e-05,1.9426352709565256e-05,1.882145892376921e-05,1.821915846959392e-05,1.762042409380077e-05,1.702618762945316e-05,1.6437338075807002e-05,1.5854719929597766e-05,1.5279131768011203e-05,1.4711325082074505e-05,1.4152003357715552e-05,1.36018214003217e-05,1.306138489729324e-05,1.2531250211838872e-05,1.2011924400107009e-05,1.1503865442693407e-05,1.1007482680616537e-05,1.052313744501068e-05,1.0051143869055022e-05,9.591769870036384e-06,9.145238288933429e-06,8.711728174510893e-06,8.291376198621226e-06,7.884278189225978e-06,7.4904907675664e-06,7.110033075928192e-06,6.742888582554215e-06,6.389006950455794e-06,6.04830595715232e-06,5.720673452723624e-06,5.405969343983605e-06,5.104027593069865e-06,4.8146582192854645e-06,4.537649293618435e-06,4.272768915994826e-06,4.019767165984947e-06,3.778378018372839e-06,3.5483212157091592e-06,3.3293040906906942e-06,3.1210233319395407e-06,2.9231666874852578e-06,2.7354146009785324e-06,2.557441776379594e-06,2.3889186675640818e-06,2.229512889968614e-06,2.0788905520541633e-06,1.9367175049937763e-06,1.802660509589222e-06,1.6763883199861575e-06,1.5575726842872157e-06,1.4458892626553424e-06,1.3410184639544502e-06,1.2426462023901807e-06,1.1504645759898278e-06,1.0641724690970792e-06,9.834760813546111e-07,9.080893859061238e-07,8.377345197700947e-07,7.721421095214636e-07,7.110515355659647e-07,6.542111384064893e-07,6.013783703833898e-07,5.523198964228898e-07,5.068116473517583e-07,4.6463882933414835e-07,4.2559589296016587e-07,3.894864654674403e-07],[4.0959726838087123e-07,4.475711754999979e-07,4.886300607404871e-07,5.329804364055452e-07,5.808384652743045e-07,6.324300318799346e-07,6.879907750171587e-07,7.477660778181522e-07,8.120110116850102e-07,8.809902303392788e-07,9.549778102466693e-07,1.0342570337003079e-06,1.1191201109008213e-06,1.2098678374583564e-06,1.306809183862207e-06,1.4102608136199082e-06,1.5205465269610733e-06,1.637996627233347e-06,1.7629472073897496e-06,1.8957393542794094e-06,2.03671826880768e-06,2.1862323004273173e-06,2.3446318948595837e-06,2.5122684544223715e-06,2.689493110860803e-06,2.876655411132947e-06,3.074101917197463e-06,3.28217472147891e-06,3.50120988034735e-06,3.7315357686385683e-06,3.973471358955911e-06,4.2273244302302744e-06,4.49338971076642e-06,4.771946961766439e-06,5.063259008089189e-06,5.367569723772023e-06,5.6851019806014815e-06,6.01605556876647e-06,6.3606050993534225e-06,6.718897899141142e-06,7.091051908815696e-06,7.4771535963456606e-06,7.877255897827377e-06,8.291376198621226e-06,8.71949436804584e-06,9.161550861270257e-06,9.617444902337501e-06,1.008703276246008e-05,1.0570126147842327e-05,1.106649071130087e-05,1.1575844701867284e-05,1.2097857766362423e-05,1.2632149916625704e-05,1.3178290675662764e-05,1.3735798415438676e-05,1.4304139898391371e-05,1.4882730033970298e-05,1.5470931860620565e-05,1.6068056762634675e-05,1.6673364930186216e-05,1.728606606964694e-05,1.790532036997621e-05,1.8530239729566738e-05,1.91598892464409e-05,1.9793288973126347e-05,2.0429415935908664e-05,2.1067206416472934e-05,2.170555849221742e-05,2.2343334829763778e-05,2.2979365724412283e-05,2.361245237651203e-05,2.424137039394856e-05,2.486487350821016e-05,2.548169748979387e-05,2.6090564247067895e-05,2.6690186091133646e-05,2.72792701477426e-05,2.7856522895934633e-05,2.842065481178967e-05,2.8970385094535387e-05,2.9504446451243685e-05,3.0021589915487833e-05,3.052058967463123e-05,3.1000247879886316e-05,3.1459399412925556e-05,3.189691658265228e-05,3.2311713725750975e-05,3.270275168483845e-05,3.3069042138429734e-05,3.3409651757514954e-05,3.372370616431459e-05,3.4010393669735456e-05,3.426896876718394e-05,3.4498755361698294e-05,3.469914971483008e-05,3.4869623087325883e-05,3.500972406342106e-05,3.511908054244645e-05,3.519740138545057e-05,3.524447770663907e-05,3.526018380161389e-05,3.524447770663907e-05,3.519740138545057e-05,3.511908054244645e-05,3.500972406342106e-05,3.4869623087325883e-05,3.469914971483008e-05,3.4498755361698294e-05,3.426896876718394e-05,3.4010393669735456e-05,3.372370616431459e-05,3.3409651757514954e-05,3.3069042138429734e-05,3.270275168483845e-05,3.2311713725750975e-05,3.189691658265228e-05,3.1459399412925556e-05,3.1000247879886316e-05,3.052058967463123e-05,3.0021589915487833e-05,2.9504446451243685e-05,2.8970385094535387e-05,2.842065481178967e-05,2.7856522895934633e-05,2.72792701477426e-05,2.6690186091133646e-05,2.6090564247067895e-05,2.548169748979387e-05,2.486487350821016e-05,2.424137039394856e-05,2.361245237651203e-05,2.2979365724412283e-05,2.2343334829763778e-05,2.170555849221742e-05,2.1067206416472934e-05,2.0429415935908664e-05,1.9793288973126347e-05,1.91598892464409e-05,1.8530239729566738e-05,1.790532036997621e-05,1.728606606964694e-05,1.6673364930186216e-05,1.6068056762634675e-05,1.5470931860620565e-05,1.4882730033970298e-05,1.4304139898391371e-05,1.3735798415438676e-05,1.3178290675662764e-05,1.2632149916625704e-05,1.2097857766362423e-05,1.1575844701867284e-05,1.106649071130087e-05,1.0570126147842327e-05,1.008703276246008e-05,9.617444902337501e-06,9.161550861270257e-06,8.71949436804584e-06,8.291376198621226e-06,7.877255897827377e-06,7.4771535963456606e-06,7.091051908815696e-06,6.718897899141142e-06,6.3606050993534225e-06,6.01605556876647e-06,5.6851019806014815e-06,5.367569723772023e-06,5.063259008089189e-06,4.771946961766439e-06,4.49338971076642e-06,4.2273244302302744e-06,3.973471358955911e-06,3.7315357686385683e-06,3.50120988034735e-06,3.28217472147891e-06,3.074101917197463e-06,2.876655411132947e-06,2.689493110860803e-06,2.5122684544223715e-06,2.3446318948595837e-06,2.1862323004273173e-06,2.03671826880768e-06,1.8957393542794094e-06,1.7629472073897496e-06,1.637996627233347e-06,1.5205465269610733e-06,1.4102608136199082e-06,1.306809183862207e-06,1.2098678374583564e-06,1.1191201109008213e-06,1.0342570337003079e-06,9.549778102466693e-07,8.809902303392788e-07,8.120110116850102e-07,7.477660778181522e-07,6.879907750171587e-07,6.324300318799346e-07,5.808384652743045e-07,5.329804364055452e-07,4.886300607404871e-07,4.475711754999979e-07,4.0959726838087123e-07],[4.303628224889505e-07,4.7026191144850916e-07,5.134023791820876e-07,5.600012076486669e-07,6.10285518538077e-07,6.6449264816273e-07,7.228701816131852e-07,7.856759423309211e-07,8.531779331983196e-07,9.256542252167744e-07,1.0033927898413388e-06,1.0866912710668388e-06,1.1758566934181183e-06,1.2712051020882677e-06,1.3730611315953936e-06,1.4817574994925713e-06,1.5976344218688627e-06,1.7210389476231325e-06,1.8523242087780935e-06,1.9918485844305708e-06,2.1399747763059473e-06,2.2970687943004634e-06,2.463498850854422e-06,2.6396341635018044e-06,2.825843665486461e-06,3.022494624920462e-06,3.229951173584484e-06,3.4485727471309367e-06,3.678712439144907e-06,3.920715272242689e-06,4.174916390138534e-06,4.44163917538313e-06,4.721193298267016e-06,5.0138727031835005e-06,5.319953539552538e-06,5.6396920452134636e-06,5.973322390993363e-06,6.321054495942581e-06,6.683071823491656e-06,7.059529169517532e-06,7.450550454003229e-06,7.856226528626443e-06,8.276613013210814e-06,8.711728174510893e-06,9.161550861270257e-06,9.626018509884371e-06,1.0105025235308022e-05,1.0598420022064701e-05,1.1106005030335611e-05,1.1627534032122994e-05,1.2162710992391045e-05,1.2711188809883066e-05,1.3272568231991868e-05,1.3846396957619237e-05,1.4432168941396952e-05,1.5029323911956078e-05,1.563724711612274e-05,1.6255269299988914e-05,1.6882666936757996e-05,1.7518662710101054e-05,1.816242626048519e-05,1.8813075200556517e-05,1.9469676404183894e-05,2.0131247572204468e-05,2.0796759076267048e-05,2.146513608045585e-05,2.213526093860552e-05,2.2805975863402387e-05,2.347608586151861e-05,2.4144361927160176e-05,2.480954448454085e-05,2.5470347067937132e-05,2.61254602261498e-05,2.6773555636411172e-05,2.7413290411049582e-05,2.8043311578569205e-05,2.866226071924006e-05,2.92687787338339e-05,2.9861510722802436e-05,3.0439110951986833e-05,3.1000247879886316e-05,3.154360922060911e-05,3.206790701589268e-05,3.2571882689020485e-05,3.30543120530883e-05,3.351401024588944e-05,3.394983656370148e-05,3.436069916646845e-05,3.47455596272851e-05,3.510343729970184e-05,3.5433413477178946e-05,3.573463532002218e-05,3.60063195263236e-05,3.624775572480274e-05,3.645830956898622e-05,3.66374255138667e-05,3.678462925803257e-05,3.689952983624409e-05,3.6981821349535196e-05,3.7031284322125724e-05,3.704778667671995e-05,3.7031284322125724e-05,3.6981821349535196e-05,3.689952983624409e-05,3.678462925803257e-05,3.66374255138667e-05,3.645830956898622e-05,3.624775572480274e-05,3.60063195263236e-05,3.573463532002218e-05,3.5433413477178946e-05,3.510343729970184e-05,3.47455596272851e-05,3.436069916646845e-05,3.394983656370148e-05,3.351401024588944e-05,3.30543120530883e-05,3.2571882689020485e-05,3.206790701589268e-05,3.154360922060911e-05,3.1000247879886316e-05,3.0439110951986833e-05,2.9861510722802436e-05,2.92687787338339e-05,2.866226071924006e-05,2.8043311578569205e-05,2.7413290411049582e-05,2.6773555636411172e-05,2.61254602261498e-05,2.5470347067937132e-05,2.480954448454085e-05,2.4144361927160176e-05,2.347608586151861e-05,2.2805975863402387e-05,2.213526093860552e-05,2.146513608045585e-05,2.0796759076267048e-05,2.0131247572204468e-05,1.9469676404183894e-05,1.8813075200556517e-05,1.816242626048519e-05,1.7518662710101054e-05,1.6882666936757996e-05,1.6255269299988914e-05,1.563724711612274e-05,1.5029323911956078e-05,1.4432168941396952e-05,1.3846396957619237e-05,1.3272568231991868e-05,1.2711188809883066e-05,1.2162710992391045e-05,1.1627534032122994e-05,1.1106005030335611e-05,1.0598420022064701e-05,1.0105025235308022e-05,9.626018509884371e-06,9.161550861270257e-06,8.711728174510893e-06,8.276613013210814e-06,7.856226528626443e-06,7.450550454003229e-06,7.059529169517532e-06,6.683071823491656e-06,6.321054495942581e-06,5.973322390993363e-06,5.6396920452134636e-06,5.319953539552538e-06,5.0138727031835005e-06,4.721193298267016e-06,4.44163917538313e-06,4.174916390138534e-06,3.920715272242689e-06,3.678712439144907e-06,3.4485727471309367e-06,3.229951173584484e-06,3.022494624920462e-06,2.825843665486461e-06,2.6396341635018044e-06,2.463498850854422e-06,2.2970687943004634e-06,2.1399747763059473e-06,1.9918485844305708e-06,1.8523242087780935e-06,1.7210389476231325e-06,1.5976344218688627e-06,1.4817574994925713e-06,1.3730611315953936e-06,1.2712051020882677e-06,1.1758566934181183e-06,1.0866912710668388e-06,1.0033927898413388e-06,9.256542252167744e-07,8.531779331983196e-07,7.856759423309211e-07,7.228701816131852e-07,6.6449264816273e-07,6.10285518538077e-07,5.600012076486669e-07,5.134023791820876e-07,4.7026191144850916e-07,4.303628224889505e-07],[4.517783938524205e-07,4.936629279812649e-07,5.389501372945615e-07,5.878678011352297e-07,6.406543431469454e-07,6.975589098926114e-07,7.58841406709561e-07,8.247724867634536e-07,8.956334892067979e-07,9.717163223174977e-07,1.0533232874901922e-06,1.1407668399809946e-06,1.2343692823668444e-06,1.3344623867764156e-06,1.4413869420825274e-06,1.55549222241826e-06,1.677135373592329e-06,1.8066807142352584e-06,1.9444989488078015e-06,2.0909662899479772e-06,2.246463488023564e-06,2.4113747661932947e-06,2.5860866597622273e-06,2.770986759144235e-06,2.96646235631631e-06,3.172898995263931e-06,3.390678927572105e-06,3.6201794750104027e-06,3.861771301689232e-06,4.1158165991253476e-06,4.3826671883428285e-06,4.66266254394709e-06,4.9561277459384795e-06,5.2633713658732525e-06,5.584683294826781e-06,5.920332521460374e-06,6.27056486933178e-06,6.635600703413179e-06,7.015632616581202e-06,7.410823107613642e-06,7.82130226295842e-06,8.24716545522414e-06,8.688471071969576e-06,9.145238288933429e-06,9.617444902337501e-06,1.0105025235308022e-05,1.0607868133783436e-05,1.1125815067505421e-05,1.1658658351816037e-05,1.2206139506001953e-05,1.2767947763830565e-05,1.3343718751708098e-05,1.3933033349552168e-05,1.453541674900803e-05,1.5150337723046481e-05,1.577720812026142e-05,1.6415382596336392e-05,1.7064158594173413e-05,1.7722776583076525e-05,1.8390420566160665e-05,1.906621886381855e-05,1.9749245179630837e-05,2.0438519953554787e-05,2.1133012005583924e-05,2.1831640471344164e-05,2.2533277029293036e-05,2.323674841732914e-05,2.3940839234712318e-05,2.4644295023254944e-05,2.534582561978623e-05,2.6044108769929397e-05,2.6737793991282286e-05,2.7425506672171452e-05,2.810585239027429e-05,2.8777421433590295e-05,2.9438793504506922e-05,3.008854258606425e-05,3.0725241947991123e-05,3.134746926867943e-05,3.195381184799555e-05,3.254287188471427e-05,3.3113271791410544e-05,3.3663659518871955e-05,3.4192713861506813e-05,3.469914971483008e-05,3.518172325591678e-05,3.5639237017725964e-05,3.607054482842063e-05,3.647455658724191e-05,3.685024284913835e-05,3.7196639191201556e-05,3.75128503350126e-05,3.779805400025504e-05,3.805150446638943e-05,3.827253582080459e-05,3.8460564873647655e-05,3.8615093721478205e-05,3.873571194397452e-05,3.882209842012813e-05,3.887402275267822e-05,3.88913462919427e-05,3.887402275267822e-05,3.882209842012813e-05,3.873571194397452e-05,3.8615093721478205e-05,3.8460564873647655e-05,3.827253582080459e-05,3.805150446638943e-05,3.779805400025504e-05,3.75128503350126e-05,3.7196639191201556e-05,3.685024284913835e-05,3.647455658724191e-05,3.607054482842063e-05,3.5639237017725964e-05,3.518172325591678e-05,3.469914971483008e-05,3.4192713861506813e-05,3.3663659518871955e-05,3.3113271791410544e-05,3.254287188471427e-05,3.195381184799555e-05,3.134746926867943e-05,3.0725241947991123e-05,3.008854258606425e-05,2.9438793504506922e-05,2.8777421433590295e-05,2.810585239027429e-05,2.7425506672171452e-05,2.6737793991282286e-05,2.6044108769929397e-05,2.534582561978623e-05,2.4644295023254944e-05,2.3940839234712318e-05,2.323674841732914e-05,2.2533277029293036e-05,2.1831640471344164e-05,2.1133012005583924e-05,2.0438519953554787e-05,1.9749245179630837e-05,1.906621886381855e-05,1.8390420566160665e-05,1.7722776583076525e-05,1.7064158594173413e-05,1.6415382596336392e-05,1.577720812026142e-05,1.5150337723046481e-05,1.453541674900803e-05,1.3933033349552168e-05,1.3343718751708098e-05,1.2767947763830565e-05,1.2206139506001953e-05,1.1658658351816037e-05,1.1125815067505421e-05,1.0607868133783436e-05,1.0105025235308022e-05,9.617444902337501e-06,9.145238288933429e-06,8.688471071969576e-06,8.24716545522414e-06,7.82130226295842e-06,7.410823107613642e-06,7.015632616581202e-06,6.635600703413179e-06,6.27056486933178e-06,5.920332521460374e-06,5.584683294826781e-06,5.2633713658732525e-06,4.9561277459384795e-06,4.66266254394709e-06,4.3826671883428285e-06,4.1158165991253476e-06,3.861771301689232e-06,3.6201794750104027e-06,3.390678927572105e-06,3.172898995263931e-06,2.96646235631631e-06,2.770986759144235e-06,2.5860866597622273e-06,2.4113747661932947e-06,2.246463488023564e-06,2.0909662899479772e-06,1.9444989488078015e-06,1.8066807142352584e-06,1.677135373592329e-06,1.55549222241826e-06,1.4413869420825274e-06,1.3344623867764156e-06,1.2343692823668444e-06,1.1407668399809946e-06,1.0533232874901922e-06,9.717163223174977e-07,8.956334892067979e-07,8.247724867634536e-07,7.58841406709561e-07,6.975589098926114e-07,6.406543431469454e-07,5.878678011352297e-07,5.389501372945615e-07,4.936629279812649e-07,4.517783938524205e-07],[4.7383723082763523e-07,5.17766847507357e-07,5.652652806881473e-07,6.16571431420958e-07,6.719353647833148e-07,7.316183923364667e-07,7.958931097312795e-07,8.650433852276698e-07,9.393642948336144e-07,1.0191619997377397e-06,1.1047535617067444e-06,1.196466692148099e-06,1.2946394306020381e-06,1.3996197485272585e-06,1.5117650743842421e-06,1.6314417362007794e-06,1.7590243180280477e-06,1.8948949269640746e-06,2.039442367735975e-06,2.1930612221941153e-06,2.3561508314808784e-06,2.529114179094436e-06,2.712356673573706e-06,2.9062848300838747e-06,3.1113048507815698e-06,3.3278211044832865e-06,3.556234506848084e-06,3.796940803013086e-06,4.050328755384889e-06,4.316778240087856e-06,4.596658256396999e-06,4.890324854334088e-06,5.198118986475114e-06,5.520364290899539e-06,5.857364813100165e-06,6.2094026755603435e-06,6.576735704584877e-06,6.9595950248349026e-06,7.3581826328569185e-06,7.77266896170379e-06,8.203190449512195e-06,8.649847125618142e-06,9.112700228450781e-06,9.591769870036384e-06,1.008703276246008e-05,1.0598420022064701e-05,1.1125815067505421e-05,1.1669051628018453e-05,1.2227911878394481e-05,1.2802124717166304e-05,1.3391364204419354e-05,1.3995248175408686e-05,1.4613337045811712e-05,1.5245132823960286e-05,1.5890078344775503e-05,1.654755673937349e-05,1.721689115342035e-05,1.789734472629075e-05,1.8588120841930005e-05,1.9288363661038046e-05,1.9997158942790382e-05,2.0713535162793095e-05,2.1436464932343248e-05,2.216486672234294e-05,2.289760689340417e-05,2.363350203179481e-05,2.4371321588925707e-05,2.510979082007932e-05,2.5847594016045335e-05,2.6583378019274648e-05,2.731575601410527e-05,2.804331157856921e-05,2.876460298327507e-05,2.9478167720894188e-05,3.0182527247875835e-05,3.087619191819702e-05,3.155766608723064e-05,3.222545336220977e-05,3.2878061974290845e-05,3.351401024588944e-05,3.413183212579368e-05,3.473008276356454e-05,3.5307344093921616e-05,3.5862230401196694e-05,3.6393393833525235e-05,3.689952983624409e-05,3.737938247397784e-05,3.7831749611129263e-05,3.825548792094364e-05,3.864951769399018e-05,3.901282741779618e-05,3.9344478100474054e-05,3.9643607312493236e-05,3.990943292225962e-05,4.0141256502863106e-05,4.033846638922922e-05,4.050054036694788e-05,4.062704797623757e-05,4.0717652416818584e-05,4.0772112041897836e-05,4.0790281431990214e-05,4.0772112041897836e-05,4.0717652416818584e-05,4.062704797623757e-05,4.050054036694788e-05,4.033846638922922e-05,4.0141256502863106e-05,3.990943292225962e-05,3.9643607312493236e-05,3.9344478100474054e-05,3.901282741779618e-05,3.864951769399018e-05,3.825548792094364e-05,3.7831749611129263e-05,3.737938247397784e-05,3.689952983624409e-05,3.6393393833525235e-05,3.5862230401196694e-05,3.5307344093921616e-05,3.473008276356454e-05,3.413183212579368e-05,3.351401024588944e-05,3.2878061974290845e-05,3.222545336220977e-05,3.155766608723064e-05,3.087619191819702e-05,3.0182527247875835e-05,2.9478167720894188e-05,2.876460298327507e-05,2.804331157856921e-05,2.731575601410527e-05,2.6583378019274648e-05,2.5847594016045335e-05,2.510979082007932e-05,2.4371321588925707e-05,2.363350203179481e-05,2.289760689340417e-05,2.216486672234294e-05,2.1436464932343248e-05,2.0713535162793095e-05,1.9997158942790382e-05,1.9288363661038046e-05,1.8588120841930005e-05,1.789734472629075e-05,1.721689115342035e-05,1.654755673937349e-05,1.5890078344775503e-05,1.5245132823960286e-05,1.4613337045811712e-05,1.3995248175408686e-05,1.3391364204419354e-05,1.2802124717166304e-05,1.2227911878394481e-05,1.1669051628018453e-05,1.1125815067505421e-05,1.0598420022064701e-05,1.008703276246008e-05,9.591769870036384e-06,9.112700228450781e-06,8.649847125618142e-06,8.203190449512195e-06,7.77266896170379e-06,7.3581826328569185e-06,6.9595950248349026e-06,6.576735704584877e-06,6.2094026755603435e-06,5.857364813100165e-06,5.520364290899539e-06,5.198118986475114e-06,4.890324854334088e-06,4.596658256396999e-06,4.316778240087856e-06,4.050328755384889e-06,3.796940803013086e-06,3.556234506848084e-06,3.3278211044832865e-06,3.1113048507815698e-06,2.9062848300838747e-06,2.712356673573706e-06,2.529114179094436e-06,2.3561508314808784e-06,2.1930612221941153e-06,2.039442367735975e-06,1.8948949269640746e-06,1.7590243180280477e-06,1.6314417362007794e-06,1.5117650743842421e-06,1.3996197485272585e-06,1.2946394306020381e-06,1.196466692148099e-06,1.1047535617067444e-06,1.0191619997377397e-06,9.393642948336144e-07,8.650433852276698e-07,7.958931097312795e-07,7.316183923364667e-07,6.719353647833148e-07,6.16571431420958e-07,5.652652806881473e-07,5.17766847507357e-07,4.7383723082763523e-07],[4.965304883346967e-07,5.425640049164125e-07,5.923372576031985e-07,6.461005890185867e-07,7.041160404860137e-07,7.666574384350482e-07,8.340104338083272e-07,9.064724900311556e-07,9.843528150441608e-07,1.0679722328658185e-06,1.1576629901487953e-06,1.2537684932246286e-06,1.3566429711978902e-06,1.4666510607561861e-06,1.584167308508523e-06,1.7095755868538933e-06,1.8432684196164141e-06,1.9856462139646993e-06,2.1371163954627647e-06,2.2980924434788475e-06,2.468992824607675e-06,2.6502398222413505e-06,2.842258260954025e-06,3.045474124945239e-06,3.2603130704152e-06,3.487198832420718e-06,3.726551527480762e-06,3.978785853963057e-06,4.2443091930842645e-06,4.523519614192391e-06,4.816803788866403e-06,5.124534819259692e-06,5.447069987025206e-06,5.784748430084543e-06,6.137888755434354e-06,6.506786597113747e-06,6.8917121293781425e-06,7.292907546030379e-06,7.71058451773994e-06,8.144921640027522e-06,8.596061885395555e-06,9.064110073836688e-06,9.549130376642568e-06,1.0051143869055022e-05,1.0570126147842327e-05,1.1106005030335611e-05,1.1658658351816037e-05,1.2227911878394481e-05,1.2813537352664153e-05,1.3415250689426284e-05,1.4032710338683504e-05,1.466551583285942e-05,1.5313206534831915e-05,1.597526060285855e-05,1.665109418782255e-05,1.73400608774367e-05,1.8041451401109585e-05,1.8754493608106046e-05,1.9478352730423668e-05,2.021213194046438e-05,2.09548732121097e-05,2.1705558492217425e-05,2.246311118785396e-05,2.3226397972770994e-05,2.399423091473715e-05,2.4765369923358344e-05,2.5538525515976514e-05,2.6312361897141406e-05,2.7085500345017336e-05,2.785652289593463e-05,2.8623976316138998e-05,2.9386376347649638e-05,3.0142212213026164e-05,3.0889951361783184e-05,3.162804443919823e-05,3.235493045635123e-05,3.3069042138429734e-05,3.37688114266512e-05,3.4452675107607745e-05,3.511908054244645e-05,3.576649146707323e-05,3.6393393833525235e-05,3.699830166180688e-05,3.757976287083914e-05,3.813636505673947e-05,3.866674118643871e-05,3.9169575174655426e-05,3.964360731249323e-05,4.008763951640163e-05,4.050054036694788e-05,4.088124990778125e-05,4.122878417632942e-05,4.154223943914115e-05,4.182079610637186e-05,4.206372230168895e-05,4.2270377065838155e-05,4.2440213174247006e-05,4.257277955133171e-05,4.26677232665995e-05,4.272479110018425e-05,4.274383066809569e-05,4.272479110018425e-05,4.26677232665995e-05,4.257277955133171e-05,4.2440213174247006e-05,4.2270377065838155e-05,4.206372230168895e-05,4.182079610637186e-05,4.154223943914115e-05,4.122878417632942e-05,4.088124990778125e-05,4.050054036694788e-05,4.008763951640163e-05,3.964360731249323e-05,3.9169575174655426e-05,3.866674118643871e-05,3.813636505673947e-05,3.757976287083914e-05,3.699830166180688e-05,3.6393393833525235e-05,3.576649146707323e-05,3.511908054244645e-05,3.4452675107607745e-05,3.37688114266512e-05,3.3069042138429734e-05,3.235493045635123e-05,3.162804443919823e-05,3.0889951361783184e-05,3.0142212213026164e-05,2.9386376347649638e-05,2.8623976316138998e-05,2.785652289593463e-05,2.7085500345017336e-05,2.6312361897141406e-05,2.5538525515976514e-05,2.4765369923358344e-05,2.399423091473715e-05,2.3226397972770994e-05,2.246311118785396e-05,2.1705558492217425e-05,2.09548732121097e-05,2.021213194046438e-05,1.9478352730423668e-05,1.8754493608106046e-05,1.8041451401109585e-05,1.73400608774367e-05,1.665109418782255e-05,1.597526060285855e-05,1.5313206534831915e-05,1.466551583285942e-05,1.4032710338683504e-05,1.3415250689426284e-05,1.2813537352664153e-05,1.2227911878394481e-05,1.1658658351816037e-05,1.1106005030335611e-05,1.0570126147842327e-05,1.0051143869055022e-05,9.549130376642568e-06,9.064110073836688e-06,8.596061885395555e-06,8.144921640027522e-06,7.71058451773994e-06,7.292907546030379e-06,6.8917121293781425e-06,6.506786597113747e-06,6.137888755434354e-06,5.784748430084543e-06,5.447069987025206e-06,5.124534819259692e-06,4.816803788866403e-06,4.523519614192391e-06,4.2443091930842645e-06,3.978785853963057e-06,3.726551527480762e-06,3.487198832420718e-06,3.2603130704152e-06,3.045474124945239e-06,2.842258260954025e-06,2.6502398222413505e-06,2.468992824607675e-06,2.2980924434788475e-06,2.1371163954627647e-06,1.9856462139646993e-06,1.8432684196164141e-06,1.7095755868538933e-06,1.584167308508523e-06,1.4666510607561861e-06,1.3566429711978902e-06,1.2537684932246286e-06,1.1576629901487953e-06,1.0679722328658185e-06,9.843528150441608e-07,9.064724900311556e-07,8.340104338083272e-07,7.666574384350482e-07,7.041160404860137e-07,6.461005890185867e-07,5.923372576031985e-07,5.425640049164125e-07,4.965304883346967e-07],[5.198471579409927e-07,5.680423711801517e-07,6.201529355031693e-07,6.764409494204334e-07,7.371807595037088e-07,8.026590508499329e-07,8.731748883386683e-07,9.490397040367652e-07,1.0305772260393236e-06,1.1181233440009014e-06,1.2120259066078969e-06,1.3126444462750613e-06,1.4203498264188376e-06,1.5355238067703726e-06,1.6585585223440967e-06,1.7898558718759728e-06,1.9298268117910035e-06,2.0788905520541637e-06,2.2374736506039913e-06,2.406009003464993e-06,2.584934728084279e-06,2.7746929379400507e-06,2.9757284070244076e-06,3.1884871234099072e-06,3.413414731767195e-06,3.650954865408175e-06,3.901547369183307e-06,4.165626415359814e-06,4.443618515446363e-06,4.735940431805158e-06,5.042996993799361e-06,5.365178824157322e-06,5.7028599821890586e-06,6.056395531458308e-06,6.426119040488253e-06,6.812340026053055e-06,7.2153413495723615e-06,7.635376578073844e-06,8.0726673221102e-06,8.527400563903142e-06,8.999725989828021e-06,9.489753342139454e-06,9.997549805560968e-06,1.052313744501068e-05,1.106649071130087e-05,1.1627534032122994e-05,1.2206139506001953e-05,1.2802124717166304e-05,1.3415250689426284e-05,1.404521999717227e-05,1.4691675051495626e-05,1.5354196579186894e-05,1.6032302311977763e-05,1.6725445902860195e-05,1.7433016085635733e-05,1.815433609301966e-05,1.8888663347648017e-05,1.9635189439212453e-05,2.0393040399681223e-05,2.1161277287158562e-05,2.1938897087395344e-05,2.27248339402983e-05,2.3517960697001574e-05,2.4317090811174083e-05,2.5120980566248943e-05,2.5928331638191457e-05,2.6737793991282286e-05,2.7547969102198638e-05,2.8357413505444007e-05,2.9164642650923173e-05,2.9968135062201666e-05,3.0766336781745974e-05,3.155766608723064e-05,3.2340518460840644e-05,3.3113271791410544e-05,3.3874291787244765e-05,3.4621937575574964e-05,3.535456746284809e-05,3.607054482842063e-05,3.6768244122776584e-05,3.744605694010417e-05,3.8102398133974386e-05,3.873571194397452e-05,3.9344478100474054e-05,3.992721787424801e-05,4.04825000374614e-05,4.1008946702533855e-05,4.150523900565939e-05,4.197012260225429e-05,4.2402412942345545e-05,4.280100029489064e-05,4.3164854491231735e-05,4.349302935932661e-05,4.378466682205535e-05,4.403900063476554e-05,4.425535973927537e-05,4.443317121378969e-05,4.4571962800580545e-05,4.46713649958251e-05,4.473111268865738e-05,4.475104633925834e-05,4.473111268865738e-05,4.46713649958251e-05,4.4571962800580545e-05,4.443317121378969e-05,4.425535973927537e-05,4.403900063476554e-05,4.378466682205535e-05,4.349302935932661e-05,4.3164854491231735e-05,4.280100029489064e-05,4.2402412942345545e-05,4.197012260225429e-05,4.150523900565939e-05,4.1008946702533855e-05,4.04825000374614e-05,3.992721787424801e-05,3.9344478100474054e-05,3.873571194397452e-05,3.8102398133974386e-05,3.744605694010417e-05,3.6768244122776584e-05,3.607054482842063e-05,3.535456746284809e-05,3.4621937575574964e-05,3.3874291787244765e-05,3.3113271791410544e-05,3.2340518460840644e-05,3.155766608723064e-05,3.0766336781745974e-05,2.9968135062201666e-05,2.9164642650923173e-05,2.8357413505444007e-05,2.7547969102198638e-05,2.6737793991282286e-05,2.5928331638191457e-05,2.5120980566248943e-05,2.4317090811174083e-05,2.3517960697001574e-05,2.27248339402983e-05,2.1938897087395344e-05,2.1161277287158562e-05,2.0393040399681223e-05,1.9635189439212453e-05,1.8888663347648017e-05,1.815433609301966e-05,1.7433016085635733e-05,1.6725445902860195e-05,1.6032302311977763e-05,1.5354196579186894e-05,1.4691675051495626e-05,1.404521999717227e-05,1.3415250689426284e-05,1.2802124717166304e-05,1.2206139506001953e-05,1.1627534032122994e-05,1.106649071130087e-05,1.052313744501068e-05,9.997549805560968e-06,9.489753342139454e-06,8.999725989828021e-06,8.527400563903142e-06,8.0726673221102e-06,7.635376578073844e-06,7.2153413495723615e-06,6.812340026053055e-06,6.426119040488253e-06,6.056395531458308e-06,5.7028599821890586e-06,5.365178824157322e-06,5.042996993799361e-06,4.735940431805158e-06,4.443618515446363e-06,4.165626415359814e-06,3.901547369183307e-06,3.650954865408175e-06,3.413414731767195e-06,3.1884871234099072e-06,2.9757284070244076e-06,2.7746929379400507e-06,2.584934728084279e-06,2.406009003464993e-06,2.2374736506039913e-06,2.0788905520541637e-06,1.9298268117910035e-06,1.7898558718759728e-06,1.6585585223440967e-06,1.5355238067703726e-06,1.4203498264188376e-06,1.3126444462750613e-06,1.2120259066078969e-06,1.1181233440009014e-06,1.0305772260393236e-06,9.490397040367652e-07,8.731748883386683e-07,8.026590508499329e-07,7.371807595037088e-07,6.764409494204334e-07,6.201529355031693e-07,5.680423711801517e-07,5.198471579409927e-07],[5.437740044264335e-07,5.941874840365658e-07,6.4869652539996e-07,7.075752905551515e-07,7.711107533398357e-07,8.396027940184124e-07,9.133642424383838e-07,9.927208648552944e-07,1.0780112894984788e-06,1.1695868659131135e-06,1.2678114531109256e-06,1.3730611315953936e-06,1.4857238344002445e-06,1.6061988923952607e-06,1.734896489273506e-06,1.8722370218414065e-06,2.018650361489918e-06,2.1745750130331336e-06,2.340457167461648e-06,2.5167496455731685e-06,2.7039107299128355e-06,2.902402882980982e-06,3.1126913502465006e-06,3.335242647138852e-06,3.5705229298799304e-06,3.818996250756694e-06,4.081122699224299e-06,4.357356431064402e-06,4.648143588700714e-06,4.953920116689494e-06,5.275109477351447e-06,5.612120272488031e-06,5.965343778122959e-06,6.3351514002222596e-06,6.721892060365731e-06,7.125889521361631e-06,7.5474396638058455e-06,7.986807725578243e-06,8.444225517232797e-06,8.91988862716487e-06,9.413953631318927e-06,9.926535323022848e-06,1.0457703979290931e-05,1.1007482680616537e-05,1.1575844701867284e-05,1.2162710992391045e-05,1.2767947763830565e-05,1.3391364204419354e-05,1.4032710338683504e-05,1.4691675051495626e-05,1.5367884295311513e-05,1.6060899499161667e-05,1.677021619756337e-05,1.749526289696158e-05,1.823540019659508e-05,1.8989920179817892e-05,1.9758046090884344e-05,2.053893231103155e-05,2.1331664646367887e-05,2.2135260938605515e-05,2.2948672008064583e-05,2.377078293663459e-05,2.4600414696512835e-05,2.5436326128562373e-05,2.627721627205347e-05,2.712172704538733e-05,2.7968446275162567e-05,2.881591106865023e-05,2.9662611522407956e-05,3.050699475740634e-05,3.1347469268679426e-05,3.218240957516455e-05,3.3010161153085516e-05,3.382904563397552e-05,3.463736624625355e-05,3.543341347717894e-05,3.6215470930033215e-05,3.6981821349535196e-05,3.7730752786802505e-05,3.846056487364765e-05,3.916957517465543e-05,3.9856125584345934e-05,4.051858873579675e-05,4.115537438639102e-05,4.176493574588504e-05,4.234577571175708e-05,4.28964529768156e-05,4.3415587974312735e-05,4.3901868626329426e-05,4.435405586197258e-05,4.477098887294765e-05,4.515159007533841e-05,4.5494869747930796e-05,4.579993031915118e-05,4.606597027663838e-05,4.629228767562046e-05,4.647828322460563e-05,4.662346292940366e-05,4.6727440279152e-05,4.678993796080775e-05,4.6810789091461336e-05,4.678993796080775e-05,4.6727440279152e-05,4.662346292940366e-05,4.647828322460563e-05,4.629228767562046e-05,4.606597027663838e-05,4.579993031915118e-05,4.5494869747930796e-05,4.515159007533841e-05,4.477098887294765e-05,4.435405586197258e-05,4.3901868626329426e-05,4.3415587974312735e-05,4.28964529768156e-05,4.234577571175708e-05,4.176493574588504e-05,4.115537438639102e-05,4.051858873579675e-05,3.9856125584345934e-05,3.916957517465543e-05,3.846056487364765e-05,3.7730752786802505e-05,3.6981821349535196e-05,3.6215470930033215e-05,3.543341347717894e-05,3.463736624625355e-05,3.382904563397552e-05,3.3010161153085516e-05,3.218240957516455e-05,3.1347469268679426e-05,3.050699475740634e-05,2.9662611522407956e-05,2.881591106865023e-05,2.7968446275162567e-05,2.712172704538733e-05,2.627721627205347e-05,2.5436326128562373e-05,2.4600414696512835e-05,2.377078293663459e-05,2.2948672008064583e-05,2.2135260938605515e-05,2.1331664646367887e-05,2.053893231103155e-05,1.9758046090884344e-05,1.8989920179817892e-05,1.823540019659508e-05,1.749526289696158e-05,1.677021619756337e-05,1.6060899499161667e-05,1.5367884295311513e-05,1.4691675051495626e-05,1.4032710338683504e-05,1.3391364204419354e-05,1.2767947763830565e-05,1.2162710992391045e-05,1.1575844701867284e-05,1.1007482680616537e-05,1.0457703979290931e-05,9.926535323022848e-06,9.413953631318927e-06,8.91988862716487e-06,8.444225517232797e-06,7.986807725578243e-06,7.5474396638058455e-06,7.125889521361631e-06,6.721892060365731e-06,6.3351514002222596e-06,5.965343778122959e-06,5.612120272488031e-06,5.275109477351447e-06,4.953920116689494e-06,4.648143588700714e-06,4.357356431064402e-06,4.081122699224299e-06,3.818996250756694e-06,3.5705229298799304e-06,3.335242647138852e-06,3.1126913502465006e-06,2.902402882980982e-06,2.7039107299128355e-06,2.5167496455731685e-06,2.340457167461648e-06,2.1745750130331336e-06,2.018650361489918e-06,1.8722370218414065e-06,1.734896489273506e-06,1.6061988923952607e-06,1.4857238344002445e-06,1.3730611315953936e-06,1.2678114531109256e-06,1.1695868659131135e-06,1.0780112894984788e-06,9.927208648552944e-07,9.133642424383838e-07,8.396027940184124e-07,7.711107533398357e-07,7.075752905551515e-07,6.4869652539996e-07,5.941874840365658e-07,5.437740044264335e-07],[5.682955094875411e-07,6.209823864747912e-07,6.779495146955711e-07,7.394834195337781e-07,8.058840159209369e-07,8.774647072309775e-07,9.545524303827703e-07,1.0374876420709376e-06,1.1266242409749857e-06,1.2223294207583837e-06,1.3249834486659203e-06,1.4349793645626735e-06,1.552722595334177e-06,1.67863047968778e-06,1.8131316985625034e-06,1.9566656065713854e-06,2.109681460168668e-06,2.272637538556206e-06,2.4460001537207136e-06,2.6302425464273732e-06,2.8258436654864616e-06,3.033286828158652e-06,3.2530582601712316e-06,3.4856455144809634e-06,3.7315357686385675e-06,3.99121400138282e-06,4.265161049916675e-06,4.553851550190404e-06,4.857751763433715e-06,5.177317293135723e-06,5.512990697663203e-06,5.865199004728122e-06,6.234351134958236e-06,6.620835242882763e-06,7.025015984710623e-06,7.447231723343637e-06,7.887791682122047e-06,8.34697305983588e-06,8.825018120543006e-06,9.322131272703345e-06,9.838476153058288e-06,1.0374172731544279e-05,1.0929294454319683e-05,1.1503865442693407e-05,1.2097857766362423e-05,1.2711188809883066e-05,1.3343718751708098e-05,1.3995248175408686e-05,1.466551583285942e-05,1.5354196579186894e-05,1.6060899499161667e-05,1.678516624444319e-05,1.752646960066266e-05,1.8284212302746007e-05,1.9057726116135474e-05,1.9846271200662682e-05,2.064903577275827e-05,2.146513608045585e-05,2.2293616704262796e-05,2.3133451195433778e-05,2.3983543061499775e-05,2.4842727107084608e-05,2.5709771136091398e-05,2.6583378019274648e-05,2.7462188129041444e-05,2.8344782141062506e-05,2.92296841999345e-05,3.011536544373692e-05,3.1000247879886316e-05,3.188270860222683e-05,3.2761084336828266e-05,3.363367630151061e-05,3.4498755361698294e-05,3.535456746284809e-05,3.619933931741358e-05,3.7031284322125724e-05,3.7848608679304476e-05,3.864951769399018e-05,3.9432222216914166e-05,4.019494520173449e-05,4.093592834356036e-05,4.165343876459544e-05,4.2345775711757085e-05,4.301127723038988e-05,4.364832677769762e-05,4.425535973927537e-05,4.4830869812140536e-05,4.5373415217941295e-05,4.588162471056546e-05,4.635420334318075e-05,4.678993796080775e-05,4.718770238585115e-05,4.754646226558902e-05,4.7865279552430666e-05,4.814331658979088e-05,4.837983977867719e-05,4.857422280252996e-05,4.8725949390476125e-05,4.883461560193418e-05,4.8899931618421236e-05,4.892172303143788e-05,4.8899931618421236e-05,4.883461560193418e-05,4.8725949390476125e-05,4.857422280252996e-05,4.837983977867719e-05,4.814331658979088e-05,4.7865279552430666e-05,4.754646226558902e-05,4.718770238585115e-05,4.678993796080775e-05,4.635420334318075e-05,4.588162471056546e-05,4.5373415217941295e-05,4.4830869812140536e-05,4.425535973927537e-05,4.364832677769762e-05,4.301127723038988e-05,4.2345775711757085e-05,4.165343876459544e-05,4.093592834356036e-05,4.019494520173449e-05,3.9432222216914166e-05,3.864951769399018e-05,3.7848608679304476e-05,3.7031284322125724e-05,3.619933931741358e-05,3.535456746284809e-05,3.4498755361698294e-05,3.363367630151061e-05,3.2761084336828266e-05,3.188270860222683e-05,3.1000247879886316e-05,3.011536544373692e-05,2.92296841999345e-05,2.8344782141062506e-05,2.7462188129041444e-05,2.6583378019274648e-05,2.5709771136091398e-05,2.4842727107084608e-05,2.3983543061499775e-05,2.3133451195433778e-05,2.2293616704262796e-05,2.146513608045585e-05,2.064903577275827e-05,1.9846271200662682e-05,1.9057726116135474e-05,1.8284212302746007e-05,1.752646960066266e-05,1.678516624444319e-05,1.6060899499161667e-05,1.5354196579186894e-05,1.466551583285942e-05,1.3995248175408686e-05,1.3343718751708098e-05,1.2711188809883066e-05,1.2097857766362423e-05,1.1503865442693407e-05,1.0929294454319683e-05,1.0374172731544279e-05,9.838476153058288e-06,9.322131272703345e-06,8.825018120543006e-06,8.34697305983588e-06,7.887791682122047e-06,7.447231723343637e-06,7.025015984710623e-06,6.620835242882763e-06,6.234351134958236e-06,5.865199004728122e-06,5.512990697663203e-06,5.177317293135723e-06,4.857751763433715e-06,4.553851550190404e-06,4.265161049916675e-06,3.99121400138282e-06,3.7315357686385675e-06,3.4856455144809634e-06,3.2530582601712316e-06,3.033286828158652e-06,2.8258436654864616e-06,2.6302425464273732e-06,2.4460001537207136e-06,2.272637538556206e-06,2.109681460168668e-06,1.9566656065713854e-06,1.8131316985625034e-06,1.67863047968778e-06,1.552722595334177e-06,1.4349793645626735e-06,1.3249834486659203e-06,1.2223294207583837e-06,1.1266242409749857e-06,1.0374876420709376e-06,9.545524303827703e-07,8.774647072309775e-07,8.058840159209369e-07,7.394834195337781e-07,6.779495146955711e-07,6.209823864747912e-07,5.682955094875411e-07],[5.933938232231608e-07,6.484075737230459e-07,7.078906093068661e-07,7.721421095214639e-07,8.414752347999033e-07,9.162172297238542e-07,9.96709470118046e-07,1.0833074486729736e-06,1.1763806937184585e-06,1.2763126157305495e-06,1.3835002761508112e-06,1.4983540731335911e-06,1.6212973389164807e-06,1.7527658436349082e-06,1.893207200576507e-06,2.043080168097147e-06,2.202853843700751e-06,2.3730067461212368e-06,2.5540257816388634e-06,2.746405091316278e-06,2.9506447763524406e-06,3.167249499325804e-06,3.3967269597315198e-06,3.639586242910239e-06,3.896336042217063e-06,4.16748275508639e-06,4.453528454509198e-06,4.754968738350453e-06,5.072290459891762e-06,5.405969343983607e-06,5.7564674942268e-06,6.124230797668477e-06,6.509686234586766e-06,6.913239102043228e-06,7.335270160994723e-06,7.776132717868276e-06,8.23614965260404e-06,8.715610406253482e-06,9.214767942271577e-06,9.733835696653346e-06,1.0272984533025141e-05,1.0832339719699084e-05,1.141197794652401e-05,1.2011924400107009e-05,1.2632149916625704e-05,1.3272568231991868e-05,1.3933033349552168e-05,1.4613337045811712e-05,1.5313206534831915e-05,1.6032302311977763e-05,1.677021619756337e-05,1.752646960066266e-05,1.830051202290861e-05,1.9091719821495908e-05,1.989939524982545e-05,2.0722765793283328e-05,2.1560983816532286e-05,2.2413126537411697e-05,2.3278196341096098e-05,2.415512144655754e-05,2.504275693561972e-05,2.593988615299057e-05,2.684522248362443e-05,2.775741151160679e-05,2.8675033562486495e-05,2.9596606628617733e-05,3.052058967463124e-05,3.144538631765044e-05,3.2369348874319605e-05,3.329078276413884e-05,3.420795125602365e-05,3.511908054244645e-05,3.6022365122994985e-05,3.6915973476719016e-05,3.779805400025504e-05,3.866674118643871e-05,3.952016201595935e-05,4.035644253259901e-05,4.1173714570751745e-05,4.197012260225429e-05,4.2743830668095697e-05,4.349302935932661e-05,4.421594281047346e-05,4.491083566799127e-05,4.557601999577243e-05,4.620986207947624e-05,4.6810789091461336e-05,4.737729557839556e-05,4.79079497341859e-05,4.8401399421715605e-05,4.885637790799209e-05,4.927170927869306e-05,4.96463134997412e-05,4.997921109542904e-05,5.0269527414742545e-05,5.051649645988024e-05,5.071946425351579e-05,5.087789172408857e-05,5.099135709130645e-05,5.105955773708651e-05,5.1082311550318364e-05,5.105955773708651e-05,5.099135709130645e-05,5.087789172408857e-05,5.071946425351579e-05,5.051649645988024e-05,5.0269527414742545e-05,4.997921109542904e-05,4.96463134997412e-05,4.927170927869306e-05,4.885637790799209e-05,4.8401399421715605e-05,4.79079497341859e-05,4.737729557839556e-05,4.6810789091461336e-05,4.620986207947624e-05,4.557601999577243e-05,4.491083566799127e-05,4.421594281047346e-05,4.349302935932661e-05,4.2743830668095697e-05,4.197012260225429e-05,4.1173714570751745e-05,4.035644253259901e-05,3.952016201595935e-05,3.866674118643871e-05,3.779805400025504e-05,3.6915973476719016e-05,3.6022365122994985e-05,3.511908054244645e-05,3.420795125602365e-05,3.329078276413884e-05,3.2369348874319605e-05,3.144538631765044e-05,3.052058967463124e-05,2.9596606628617733e-05,2.8675033562486495e-05,2.775741151160679e-05,2.684522248362443e-05,2.593988615299057e-05,2.504275693561972e-05,2.415512144655754e-05,2.3278196341096098e-05,2.2413126537411697e-05,2.1560983816532286e-05,2.0722765793283328e-05,1.989939524982545e-05,1.9091719821495908e-05,1.830051202290861e-05,1.752646960066266e-05,1.677021619756337e-05,1.6032302311977763e-05,1.5313206534831915e-05,1.4613337045811712e-05,1.3933033349552168e-05,1.3272568231991868e-05,1.2632149916625704e-05,1.2011924400107009e-05,1.141197794652401e-05,1.0832339719699084e-05,1.0272984533025141e-05,9.733835696653346e-06,9.214767942271577e-06,8.715610406253482e-06,8.23614965260404e-06,7.776132717868276e-06,7.335270160994723e-06,6.913239102043228e-06,6.509686234586766e-06,6.124230797668477e-06,5.7564674942268e-06,5.405969343983607e-06,5.072290459891762e-06,4.754968738350453e-06,4.453528454509198e-06,4.16748275508639e-06,3.896336042217063e-06,3.639586242910239e-06,3.3967269597315198e-06,3.167249499325804e-06,2.9506447763524406e-06,2.746405091316278e-06,2.5540257816388634e-06,2.3730067461212368e-06,2.202853843700751e-06,2.043080168097147e-06,1.893207200576507e-06,1.7527658436349082e-06,1.6212973389164807e-06,1.4983540731335911e-06,1.3835002761508112e-06,1.2763126157305495e-06,1.1763806937184585e-06,1.0833074486729736e-06,9.96709470118046e-07,9.162172297238542e-07,8.414752347999033e-07,7.721421095214639e-07,7.078906093068661e-07,6.484075737230459e-07,5.933938232231608e-07],[6.190487240248422e-07,6.764409494204328e-07,7.384956858167028e-07,8.055250475456172e-07,8.778557342776411e-07,9.55829138748591e-07,1.0398013958901794e-06,1.1301433678311274e-06,1.227240559158969e-06,1.3314929567908028e-06,1.4433147887976669e-06,1.5631341965653465e-06,1.6913928147574717e-06,1.8285452536779377e-06,1.9750584788119276e-06,2.13141108256085e-06,2.2980924434788475e-06,2.475601768669299e-06,2.664447015410689e-06,2.8651436885538392e-06,3.0782135107675488e-06,3.3041829633076498e-06,3.5435816956453053e-06,3.7969408030130853e-06,4.06479097171083e-06,4.347660492855409e-06,4.646073146156469e-06,4.960545956250815e-06,5.291586825126928e-06,5.639692045213464e-06,6.005343698785728e-06,6.389006950455795e-06,6.791127240647909e-06,7.212127389113454e-06,7.652404618700531e-06,8.112327510753057e-06,8.5922329046636e-06,9.092422755232795e-06,9.613160962585482e-06,1.0154670190448864e-05,1.0717128689599637e-05,1.1300667144223825e-05,1.1905365559793694e-05,1.2531250211838872e-05,1.3178290675662764e-05,1.3846396957619237e-05,1.453541674900803e-05,1.5245132823960286e-05,1.597526060285855e-05,1.6725445902860195e-05,1.749526289696158e-05,1.8284212302746007e-05,1.9091719821495908e-05,1.991713484771496e-05,2.0759729468295612e-05,2.1618697769581002e-05,2.2493155469407357e-05,2.3382139889875566e-05,2.4284610285092088e-05,2.519944853644527e-05,2.6125460226149794e-05,2.706137609780856e-05,2.8005853910617637e-05,2.895748069158865e-05,2.9914775387796686e-05,3.087619191819702e-05,3.184012262200574e-05,3.2804902098027e-05,3.376881142665119e-05,3.473008276356454e-05,3.568690429152229e-05,3.66374255138667e-05,3.757976287083914e-05,3.8512005657166155e-05,3.9432222216914166e-05,4.033846638922921e-05,4.122878417632942e-05,4.2101220603019226e-05,4.29538267350675e-05,4.378466682205535e-05,4.459182552877267e-05,4.5373415217941295e-05,4.612758324598388e-05,4.6852519232751966e-05,4.7546462265589016e-05,4.820770799783946e-05,4.883461560193418e-05,4.9425614537486866e-05,4.997921109542904e-05,5.049399468009207e-05,5.096864379230956e-05,5.140193167805695e-05,5.179273160885933e-05,5.2140021762171206e-05,5.2442889672151166e-05,5.270053622370388e-05,5.291227916532356e-05,5.307755611912778e-05,5.319592706949546e-05,5.3267076314896246e-05,5.329081387079356e-05,5.3267076314896246e-05,5.319592706949546e-05,5.307755611912778e-05,5.291227916532356e-05,5.270053622370388e-05,5.2442889672151166e-05,5.2140021762171206e-05,5.179273160885933e-05,5.140193167805695e-05,5.096864379230956e-05,5.049399468009207e-05,4.997921109542904e-05,4.9425614537486866e-05,4.883461560193418e-05,4.820770799783946e-05,4.7546462265589016e-05,4.6852519232751966e-05,4.612758324598388e-05,4.5373415217941295e-05,4.459182552877267e-05,4.378466682205535e-05,4.29538267350675e-05,4.2101220603019226e-05,4.122878417632942e-05,4.033846638922921e-05,3.9432222216914166e-05,3.8512005657166155e-05,3.757976287083914e-05,3.66374255138667e-05,3.568690429152229e-05,3.473008276356454e-05,3.376881142665119e-05,3.2804902098027e-05,3.184012262200574e-05,3.087619191819702e-05,2.9914775387796686e-05,2.895748069158865e-05,2.8005853910617637e-05,2.706137609780856e-05,2.6125460226149794e-05,2.519944853644527e-05,2.4284610285092088e-05,2.3382139889875566e-05,2.2493155469407357e-05,2.1618697769581002e-05,2.0759729468295612e-05,1.991713484771496e-05,1.9091719821495908e-05,1.8284212302746007e-05,1.749526289696158e-05,1.6725445902860195e-05,1.597526060285855e-05,1.5245132823960286e-05,1.453541674900803e-05,1.3846396957619237e-05,1.3178290675662764e-05,1.2531250211838872e-05,1.1905365559793694e-05,1.1300667144223825e-05,1.0717128689599637e-05,1.0154670190448864e-05,9.613160962585482e-06,9.092422755232795e-06,8.5922329046636e-06,8.112327510753057e-06,7.652404618700531e-06,7.212127389113454e-06,6.791127240647909e-06,6.389006950455795e-06,6.005343698785728e-06,5.639692045213464e-06,5.291586825126928e-06,4.960545956250815e-06,4.646073146156469e-06,4.347660492855409e-06,4.06479097171083e-06,3.7969408030130853e-06,3.5435816956453053e-06,3.3041829633076498e-06,3.0782135107675488e-06,2.8651436885538392e-06,2.664447015410689e-06,2.475601768669299e-06,2.2980924434788475e-06,2.13141108256085e-06,1.9750584788119276e-06,1.8285452536779377e-06,1.6913928147574717e-06,1.5631341965653465e-06,1.4433147887976669e-06,1.3314929567908028e-06,1.227240559158969e-06,1.1301433678311274e-06,1.0398013958901794e-06,9.55829138748591e-07,8.778557342776411e-07,8.055250475456172e-07,7.384956858167028e-07,6.764409494204328e-07,6.190487240248422e-07],[6.452375874697512e-07,7.050577916259027e-07,7.697377543646578e-07,8.396027940184126e-07,9.149934312909783e-07,9.96265501541817e-07,1.083790205995054e-06,1.1779540961060656e-06,1.2791589852384296e-06,1.3878217817604077e-06,1.5043742376663847e-06,1.629262606868434e-06,1.762947207389749e-06,1.9059018818284007e-06,2.0586133506498344e-06,2.2215804531125484e-06,2.3953132709360894e-06,2.5803321301861316e-06,2.777166477279713e-06,2.986353625506344e-06,3.2084373690183747e-06,3.443966461867266e-06,3.6934929603512e-06,3.957570427692713e-06,4.236752000881714e-06,4.531588320396893e-06,4.842625324454583e-06,5.1704019104248455e-06,5.5154474670956665e-06,5.878279282552651e-06,6.259399833567348e-06,6.659293963546137e-06,7.078425957275574e-06,7.5172365219015256e-06,7.976139684789283e-06,8.455519620120792e-06,8.955727417283031e-06,9.477077805277968e-06,1.0019845848528287e-05,1.0584263630552753e-05,1.1170516943029232e-05,1.1778741998739757e-05,1.240902218778902e-05,1.306138489729324e-05,1.3735798415438676e-05,1.4432168941396952e-05,1.5150337723046481e-05,1.5890078344775503e-05,1.665109418782255e-05,1.7433016085635733e-05,1.823540019659508e-05,1.9057726116135474e-05,1.989939524982545e-05,2.0759729468295612e-05,2.1637970064065957e-05,2.2533277029293032e-05,2.344472867224588e-05,2.4371321588925704e-05,2.5311971004671876e-05,2.6265511498851924e-05,2.7230698123822266e-05,2.820620792727922e-05,2.9190641884906077e-05,3.018252724787583e-05,3.11803203073024e-05,3.218240957516455e-05,3.318711937857027e-05,3.419271386150681e-05,3.519740138545057e-05,3.619933931741357e-05,3.719663919120155e-05,3.8187372224874186e-05,3.9169575174655426e-05,4.0141256502863106e-05,4.1100402834836956e-05,4.204498567736555e-05,4.29729683687682e-05,4.388231322860102e-05,4.477098887294765e-05,4.5636977659445325e-05,4.647828322460563e-05,4.7292938074633496e-05,4.8079011189843545e-05,4.8834615601934175e-05,4.955791590281849e-05,5.024713564343591e-05,5.090056458098798e-05,5.1516565733359145e-05,5.209358220010149e-05,5.263014371028025e-05,5.3124872858691495e-05,5.357649099346741e-05,5.398382371987192e-05,5.43458059871449e-05,5.4661486727566926e-05,5.493003301946932e-05,5.5150733748688415e-05,5.5323002745938946e-05,5.5446381380733896e-05,5.552054059578601e-05,5.554528236926069e-05,5.552054059578601e-05,5.5446381380733896e-05,5.5323002745938946e-05,5.5150733748688415e-05,5.493003301946932e-05,5.4661486727566926e-05,5.43458059871449e-05,5.398382371987192e-05,5.357649099346741e-05,5.3124872858691495e-05,5.263014371028025e-05,5.209358220010149e-05,5.1516565733359145e-05,5.090056458098798e-05,5.024713564343591e-05,4.955791590281849e-05,4.8834615601934175e-05,4.8079011189843545e-05,4.7292938074633496e-05,4.647828322460563e-05,4.5636977659445325e-05,4.477098887294765e-05,4.388231322860102e-05,4.29729683687682e-05,4.204498567736555e-05,4.1100402834836956e-05,4.0141256502863106e-05,3.9169575174655426e-05,3.8187372224874186e-05,3.719663919120155e-05,3.619933931741357e-05,3.519740138545057e-05,3.419271386150681e-05,3.318711937857027e-05,3.218240957516455e-05,3.11803203073024e-05,3.018252724787583e-05,2.9190641884906077e-05,2.820620792727922e-05,2.7230698123822266e-05,2.6265511498851924e-05,2.5311971004671876e-05,2.4371321588925704e-05,2.344472867224588e-05,2.2533277029293032e-05,2.1637970064065957e-05,2.0759729468295612e-05,1.989939524982545e-05,1.9057726116135474e-05,1.823540019659508e-05,1.7433016085635733e-05,1.665109418782255e-05,1.5890078344775503e-05,1.5150337723046481e-05,1.4432168941396952e-05,1.3735798415438676e-05,1.306138489729324e-05,1.240902218778902e-05,1.1778741998739757e-05,1.1170516943029232e-05,1.0584263630552753e-05,1.0019845848528287e-05,9.477077805277968e-06,8.955727417283031e-06,8.455519620120792e-06,7.976139684789283e-06,7.5172365219015256e-06,7.078425957275574e-06,6.659293963546137e-06,6.259399833567348e-06,5.878279282552651e-06,5.5154474670956665e-06,5.1704019104248455e-06,4.842625324454583e-06,4.531588320396893e-06,4.236752000881714e-06,3.957570427692713e-06,3.6934929603512e-06,3.443966461867266e-06,3.2084373690183747e-06,2.986353625506344e-06,2.777166477279713e-06,2.5803321301861316e-06,2.3953132709360894e-06,2.2215804531125484e-06,2.0586133506498344e-06,1.9059018818284007e-06,1.762947207389749e-06,1.629262606868434e-06,1.5043742376663847e-06,1.3878217817604077e-06,1.2791589852384296e-06,1.1779540961060656e-06,1.083790205995054e-06,9.96265501541817e-07,9.149934312909783e-07,8.396027940184126e-07,7.697377543646578e-07,7.050577916259027e-07,6.452375874697512e-07],[6.719353647833146e-07,7.342307292841626e-07,8.015869329539837e-07,8.743427547117285e-07,9.528528048711401e-07,1.0374876420709374e-06,1.1286338266026853e-06,1.2266939041305229e-06,1.3320863137136019e-06,1.4452452139966596e-06,1.5666202214302514e-06,1.6966760544235613e-06,1.8358920774228611e-06,1.984761739051057e-06,2.1437918986415916e-06,2.3135020357561576e-06,2.4944233375930053e-06,2.687097659573353e-06,2.8920763548394768e-06,3.109918968911045e-06,3.3411917963270333e-06,3.586466296749597e-06,3.846317368723554e-06,4.121321480069582e-06,4.4120546547396416e-06,4.7190903168771774e-06,5.0429969937993605e-06,5.384335880650372e-06,5.743658270558941e-06,6.121502855264742e-06,6.5183929023506666e-06,6.934833316424655e-06,7.371307592827762e-06,7.828274673696303e-06,8.306165717465754e-06,8.80538079416319e-06,9.326285520082343e-06,9.8692076466606e-06,1.0434433619568177e-05,1.1022205125165062e-05,1.163271564256851e-05,1.2266107020590738e-05,1.2922466099740583e-05,1.36018214003217e-05,1.4304139898391371e-05,1.5029323911956078e-05,1.577720812026142e-05,1.654755673937349e-05,1.73400608774367e-05,1.815433609301966e-05,1.8989920179817892e-05,1.9846271200662682e-05,2.0722765793283328e-05,2.1618697769581002e-05,2.2533277029293032e-05,2.3465628807855686e-05,2.4414793277011137e-05,2.5379725515252885e-05,2.6359295863566244e-05,2.73522906801036e-05,2.8357413505444007e-05,2.937328664793398e-05,3.0398453196301094e-05,3.1431379464288474e-05,3.247045786948985e-05,3.351401024588944e-05,3.4560291586845016e-05,3.5607494212416996e-05,3.6653752352060856e-05,3.7697147130787014e-05,3.873571194397452e-05,3.97674382031254e-05,4.0790281431990214e-05,4.180216768970605e-05,4.280100029489064e-05,4.378466682205535e-05,4.475104633925834e-05,4.569801685364153e-05,4.6623462929403663e-05,4.752528344087665e-05,4.840139942171561e-05,4.924976196980048e-05,5.0068360166297796e-05,5.0855228966457095e-05,5.160845701913213e-05,5.2326194371730706e-05,5.300666001731681e-05,5.364814924091983e-05,5.424904072274888e-05,5.480780335696624e-05,5.532300274593895e-05,5.579330733145357e-05,5.6217494126240434e-05,5.65944540112945e-05,5.6923196566889166e-05,5.7202854407837706e-05,5.743268699644636e-05,5.76120839097017e-05,5.774056754051823e-05,5.7817795216316684e-05,5.7843560721780004e-05,5.7817795216316684e-05,5.774056754051823e-05,5.76120839097017e-05,5.743268699644636e-05,5.7202854407837706e-05,5.6923196566889166e-05,5.65944540112945e-05,5.6217494126240434e-05,5.579330733145357e-05,5.532300274593895e-05,5.480780335696624e-05,5.424904072274888e-05,5.364814924091983e-05,5.300666001731681e-05,5.2326194371730706e-05,5.160845701913213e-05,5.0855228966457095e-05,5.0068360166297796e-05,4.924976196980048e-05,4.840139942171561e-05,4.752528344087665e-05,4.6623462929403663e-05,4.569801685364153e-05,4.475104633925834e-05,4.378466682205535e-05,4.280100029489064e-05,4.180216768970605e-05,4.0790281431990214e-05,3.97674382031254e-05,3.873571194397452e-05,3.7697147130787014e-05,3.6653752352060856e-05,3.5607494212416996e-05,3.4560291586845016e-05,3.351401024588944e-05,3.247045786948985e-05,3.1431379464288474e-05,3.0398453196301094e-05,2.937328664793398e-05,2.8357413505444007e-05,2.73522906801036e-05,2.6359295863566244e-05,2.5379725515252885e-05,2.4414793277011137e-05,2.3465628807855686e-05,2.2533277029293032e-05,2.1618697769581002e-05,2.0722765793283328e-05,1.9846271200662682e-05,1.8989920179817892e-05,1.815433609301966e-05,1.73400608774367e-05,1.654755673937349e-05,1.577720812026142e-05,1.5029323911956078e-05,1.4304139898391371e-05,1.36018214003217e-05,1.2922466099740583e-05,1.2266107020590738e-05,1.163271564256851e-05,1.1022205125165062e-05,1.0434433619568177e-05,9.8692076466606e-06,9.326285520082343e-06,8.80538079416319e-06,8.306165717465754e-06,7.828274673696303e-06,7.371307592827762e-06,6.934833316424655e-06,6.5183929023506666e-06,6.121502855264742e-06,5.743658270558941e-06,5.384335880650372e-06,5.0429969937993605e-06,4.7190903168771774e-06,4.4120546547396416e-06,4.121321480069582e-06,3.846317368723554e-06,3.586466296749597e-06,3.3411917963270333e-06,3.109918968911045e-06,2.8920763548394768e-06,2.687097659573353e-06,2.4944233375930053e-06,2.3135020357561576e-06,2.1437918986415916e-06,1.984761739051057e-06,1.8358920774228611e-06,1.6966760544235613e-06,1.5666202214302514e-06,1.4452452139966596e-06,1.3320863137136019e-06,1.2266939041305229e-06,1.1286338266026853e-06,1.0374876420709374e-06,9.528528048711401e-07,8.743427547117285e-07,8.015869329539837e-07,7.342307292841626e-07,6.719353647833146e-07],[6.991145714026495e-07,7.63929729728818e-07,8.340104338083272e-07,9.097091658755345e-07,9.913948799258698e-07,1.0794531233757443e-06,1.174286092547487e-06,1.2763126157305497e-06,1.3859680574835338e-06,1.5037041377943193e-06,1.6299886597115321e-06,1.7653051391036438e-06,1.9101523302957954e-06,2.0650436414825737e-06,2.2305064340207886e-06,2.407081199972862e-06,2.5953206126015837e-06,2.795788444913142e-06,3.009058351809414e-06,3.235712511944281e-06,3.476340125982944e-06,3.7315357686385687e-06,4.001897592606825e-06,4.288025383335095e-06,4.590518464447943e-06,4.909973454601399e-06,5.246981877552813e-06,5.60212762830647e-06,5.975984299323204e-06,6.369112371959466e-06,6.78205627952107e-06,7.215341349572362e-06,7.669470634424399e-06,8.144921640027524e-06,8.642142964804477e-06,9.161550861270259e-06,9.703525734582694e-06,1.0268408593442454e-05,1.0856497470000331e-05,1.1468043826621358e-05,1.2103248968486395e-05,1.276226048206991e-05,1.3445168720504508e-05,1.4152003357715552e-05,1.4882730033970298e-05,1.563724711612274e-05,1.6415382596336392e-05,1.721689115342035e-05,1.8041451401109585e-05,1.8888663347648017e-05,1.9758046090884344e-05,2.064903577275827e-05,2.1560983816532286e-05,2.2493155469407357e-05,2.344472867224588e-05,2.4414793277011137e-05,2.5402350631219197e-05,2.6406313547188838e-05,2.742550667217145e-05,2.8458667273552264e-05,2.9504446451243685e-05,3.056141078715175e-05,3.162804443919823e-05,3.270275168483845e-05,3.378385991634279e-05,3.4869623087325883e-05,3.59582256071302e-05,3.704778667671995e-05,3.813636505673947e-05,3.922196425535902e-05,4.030253812049499e-05,4.13759968179751e-05,4.244021317424701e-05,4.349302935932661e-05,4.453226388287606e-05,4.555571887361562e-05,4.6561187609733626e-05,4.754646226558902e-05,4.8509341837824885e-05,4.9447640212050016e-05,5.035919432952195e-05,5.124187241179506e-05,5.2093582200101494e-05,5.291227916532356e-05,5.369597464380783e-05,5.444274385397351e-05,5.5150733748688415e-05,5.581817065873001e-05,5.6443367683318655e-05,5.70247317847046e-05,5.756077054510638e-05,5.805009854592798e-05,5.8491443331118316e-05,5.888365091876411e-05,5.92256908275141e-05,5.951666058719802e-05,5.975578970601039e-05,5.9942443069852776e-05,6.0076123752844546e-05,6.0156475221595804e-05,6.018328291955761e-05,6.0156475221595804e-05,6.0076123752844546e-05,5.9942443069852776e-05,5.975578970601039e-05,5.951666058719802e-05,5.92256908275141e-05,5.888365091876411e-05,5.8491443331118316e-05,5.805009854592798e-05,5.756077054510638e-05,5.70247317847046e-05,5.6443367683318655e-05,5.581817065873001e-05,5.5150733748688415e-05,5.444274385397351e-05,5.369597464380783e-05,5.291227916532356e-05,5.2093582200101494e-05,5.124187241179506e-05,5.035919432952195e-05,4.9447640212050016e-05,4.8509341837824885e-05,4.754646226558902e-05,4.6561187609733626e-05,4.555571887361562e-05,4.453226388287606e-05,4.349302935932661e-05,4.244021317424701e-05,4.13759968179751e-05,4.030253812049499e-05,3.922196425535902e-05,3.813636505673947e-05,3.704778667671995e-05,3.59582256071302e-05,3.4869623087325883e-05,3.378385991634279e-05,3.270275168483845e-05,3.162804443919823e-05,3.056141078715175e-05,2.9504446451243685e-05,2.8458667273552264e-05,2.742550667217145e-05,2.6406313547188838e-05,2.5402350631219197e-05,2.4414793277011137e-05,2.344472867224588e-05,2.2493155469407357e-05,2.1560983816532286e-05,2.064903577275827e-05,1.9758046090884344e-05,1.8888663347648017e-05,1.8041451401109585e-05,1.721689115342035e-05,1.6415382596336392e-05,1.563724711612274e-05,1.4882730033970298e-05,1.4152003357715552e-05,1.3445168720504508e-05,1.276226048206991e-05,1.2103248968486395e-05,1.1468043826621358e-05,1.0856497470000331e-05,1.0268408593442454e-05,9.703525734582694e-06,9.161550861270259e-06,8.642142964804477e-06,8.144921640027524e-06,7.669470634424399e-06,7.215341349572362e-06,6.78205627952107e-06,6.369112371959466e-06,5.975984299323204e-06,5.60212762830647e-06,5.246981877552813e-06,4.909973454601399e-06,4.590518464447943e-06,4.288025383335095e-06,4.001897592606825e-06,3.7315357686385687e-06,3.476340125982944e-06,3.235712511944281e-06,3.009058351809414e-06,2.795788444913142e-06,2.5953206126015837e-06,2.407081199972862e-06,2.2305064340207886e-06,2.0650436414825737e-06,1.9101523302957954e-06,1.7653051391036438e-06,1.6299886597115321e-06,1.5037041377943193e-06,1.3859680574835338e-06,1.2763126157305497e-06,1.174286092547487e-06,1.0794531233757443e-06,9.913948799258698e-07,9.097091658755345e-07,8.340104338083272e-07,7.63929729728818e-07,6.991145714026495e-07],[7.267452861302724e-07,7.9412209775762e-07,8.669725623621415e-07,9.456630931366698e-07,1.0305772260393238e-06,1.1221157462617126e-06,1.2206967459067733e-06,1.326755606380513e-06,1.440744898911817e-06,1.5631341965653465e-06,1.694409791108335e-06,1.835074308136865e-06,1.9856462139646993e-06,2.1466592079317444e-06,2.3186614940031677e-06,2.5022149258072916e-06,2.697894019603585e-06,2.9062848300838756e-06,3.127983684392322e-06,3.363595770304577e-06,3.613733575134645e-06,3.879015172639992e-06,4.1600623559711895e-06,4.457498615560861e-06,4.771946961766438e-06,5.104027593069865e-06,5.454355411691569e-06,5.823537389591964e-06,6.2121697890063434e-06,6.620835242882763e-06,7.050099701860501e-06,7.5005092557318126e-06,7.972586838663278e-06,8.46682882880621e-06,8.983701554288257e-06,9.523637718940074e-06,1.008703276246008e-05,1.0674241171045348e-05,1.1285572755804911e-05,1.1921288917510406e-05,1.258159891741492e-05,1.3266656174970714e-05,1.3976554614286796e-05,1.4711325082074505e-05,1.5470931860620565e-05,1.6255269299988914e-05,1.7064158594173413e-05,1.789734472629075e-05,1.8754493608106046e-05,1.9635189439212453e-05,2.053893231103155e-05,2.146513608045585e-05,2.2413126537411697e-05,2.3382139889875566e-05,2.4371321588925704e-05,2.5379725515252885e-05,2.6406313547188838e-05,2.744995552874084e-05,2.850942965435007e-05,2.9583423285125908e-05,3.067053420915599e-05,3.176927235616365e-05,3.287806197429084e-05,3.399524427414201e-05,3.511908054244645e-05,3.624775572480274e-05,3.737938247397784e-05,3.851200565716615e-05,3.964360731249323e-05,4.077211204189783e-05,4.189539282437039e-05,4.301127723038988e-05,4.411755401531173e-05,4.52119800664426e-05,4.629228767562047e-05,4.735619210632657e-05,4.840139942171561e-05,4.9425614537486866e-05,5.042654946125706e-05,5.140193167805695e-05,5.23495126397815e-05,5.3267076314896246e-05,5.415244775345866e-05,5.500350162156868e-05,5.5818170658730006e-05,5.6594454011294496e-05,5.733042539518313e-05,5.802424104143537e-05,5.867414737883422e-05,5.927848840888874e-05,5.983571272982303e-05,6.034438016791572e-05,6.0803167976545895e-05,6.12108765656177e-05,6.156643472664094e-05,6.186890432162091e-05,6.211748440703482e-05,6.231151476752444e-05,6.245047883748514e-05,6.2534005992457e-05,6.256187319609238e-05,6.2534005992457e-05,6.245047883748514e-05,6.231151476752444e-05,6.211748440703482e-05,6.186890432162091e-05,6.156643472664094e-05,6.12108765656177e-05,6.0803167976545895e-05,6.034438016791572e-05,5.983571272982303e-05,5.927848840888874e-05,5.867414737883422e-05,5.802424104143537e-05,5.733042539518313e-05,5.6594454011294496e-05,5.5818170658730006e-05,5.500350162156868e-05,5.415244775345866e-05,5.3267076314896246e-05,5.23495126397815e-05,5.140193167805695e-05,5.042654946125706e-05,4.9425614537486866e-05,4.840139942171561e-05,4.735619210632657e-05,4.629228767562047e-05,4.52119800664426e-05,4.411755401531173e-05,4.301127723038988e-05,4.189539282437039e-05,4.077211204189783e-05,3.964360731249323e-05,3.851200565716615e-05,3.737938247397784e-05,3.624775572480274e-05,3.511908054244645e-05,3.399524427414201e-05,3.287806197429084e-05,3.176927235616365e-05,3.067053420915599e-05,2.9583423285125908e-05,2.850942965435007e-05,2.744995552874084e-05,2.6406313547188838e-05,2.5379725515252885e-05,2.4371321588925704e-05,2.3382139889875566e-05,2.2413126537411697e-05,2.146513608045585e-05,2.053893231103155e-05,1.9635189439212453e-05,1.8754493608106046e-05,1.789734472629075e-05,1.7064158594173413e-05,1.6255269299988914e-05,1.5470931860620565e-05,1.4711325082074505e-05,1.3976554614286796e-05,1.3266656174970714e-05,1.258159891741492e-05,1.1921288917510406e-05,1.1285572755804911e-05,1.0674241171045348e-05,1.008703276246008e-05,9.523637718940074e-06,8.983701554288257e-06,8.46682882880621e-06,7.972586838663278e-06,7.5005092557318126e-06,7.050099701860501e-06,6.620835242882763e-06,6.2121697890063434e-06,5.823537389591964e-06,5.454355411691569e-06,5.104027593069865e-06,4.771946961766438e-06,4.457498615560861e-06,4.1600623559711895e-06,3.879015172639992e-06,3.613733575134645e-06,3.363595770304577e-06,3.127983684392322e-06,2.9062848300838756e-06,2.697894019603585e-06,2.5022149258072916e-06,2.3186614940031677e-06,2.1466592079317444e-06,1.9856462139646993e-06,1.835074308136865e-06,1.694409791108335e-06,1.5631341965653465e-06,1.440744898911817e-06,1.326755606380513e-06,1.2206967459067733e-06,1.1221157462617126e-06,1.0305772260393238e-06,9.456630931366698e-07,8.669725623621415e-07,7.9412209775762e-07,7.267452861302724e-07],[7.54795161320683e-07,8.247724867634531e-07,9.004347294127983e-07,9.821624447539383e-07,1.070353971917385e-06,1.1654255650283851e-06,1.2678114531109254e-06,1.3779638217998559e-06,1.4963527100211044e-06,1.6234658147489161e-06,1.7598081969446805e-06,1.905901881828401e-06,2.0622853467351278e-06,2.2295128899686136e-06,2.408153874286652e-06,2.598791838940369e-06,2.802023474546167e-06,3.0184574554967127e-06,3.2487131251184326e-06,3.4934190293592273e-06,3.75321129544249e-06,4.028731852652632e-06,4.3206264932229866e-06,4.6295427721782005e-06,4.9561277459384795e-06,5.3010255505197855e-06,5.664874821259042e-06,6.0483059571523224e-06,6.4519382341119265e-06,6.876376772719179e-06,7.322209367366731e-06,7.790003185039644e-06,8.280301343369578e-06,8.79361937900183e-06,9.330441618730192e-06,9.891217467268942e-06,1.047635762693243e-05,1.1086230265868996e-05,1.1721157152833778e-05,1.2381409777771549e-05,1.3067205478701967e-05,1.3778703596541898e-05,1.4516001680548778e-05,1.5279131768011203e-05,1.6068056762634675e-05,1.6882666936757996e-05,1.7722776583076525e-05,1.8588120841930005e-05,1.9478352730423668e-05,2.0393040399681223e-05,2.1331664646367887e-05,2.2293616704262796e-05,2.3278196341096098e-05,2.4284610285092088e-05,2.5311971004671876e-05,2.6359295863566244e-05,2.742550667217145e-05,2.850942965435007e-05,2.9609795847039712e-05,3.0725241947991123e-05,3.185431162472196e-05,3.299545729535404e-05,3.414704238941269e-05,3.530734409392161e-05,3.64745565872419e-05,3.7646794760098185e-05,3.882209842012813e-05,3.999843697310627e-05,4.117371457075174e-05,4.234577571175708e-05,4.351241127939778e-05,4.46713649958251e-05,4.5820340269936114e-05,4.6957007412581756e-05,4.8079011189843545e-05,4.918397868221013e-05,5.0269527414742545e-05,5.133327372075859e-05,5.237284129921716e-05,5.33858699238663e-05,5.437002426035701e-05,5.5323002745938946e-05,5.624254648506223e-05,5.7126448113228465e-05,5.797256058077727e-05,5.877880580797293e-05,5.954318316277844e-05,6.02637777130758e-05,6.093876820581409e-05,6.156643472664094e-05,6.214516599499349e-05,6.267346625138472e-05,6.314996169571143e-05,6.357340643781481e-05,6.394268792423139e-05,6.42568318080578e-05,6.451500623209867e-05,6.471652549894759e-05,6.486085310533948e-05,6.494760412198154e-05,6.497654690408822e-05,6.494760412198154e-05,6.486085310533948e-05,6.471652549894759e-05,6.451500623209867e-05,6.42568318080578e-05,6.394268792423139e-05,6.357340643781481e-05,6.314996169571143e-05,6.267346625138472e-05,6.214516599499349e-05,6.156643472664094e-05,6.093876820581409e-05,6.02637777130758e-05,5.954318316277844e-05,5.877880580797293e-05,5.797256058077727e-05,5.7126448113228465e-05,5.624254648506223e-05,5.5323002745938946e-05,5.437002426035701e-05,5.33858699238663e-05,5.237284129921716e-05,5.133327372075859e-05,5.0269527414742545e-05,4.918397868221013e-05,4.8079011189843545e-05,4.6957007412581756e-05,4.5820340269936114e-05,4.46713649958251e-05,4.351241127939778e-05,4.234577571175708e-05,4.117371457075174e-05,3.999843697310627e-05,3.882209842012813e-05,3.7646794760098185e-05,3.64745565872419e-05,3.530734409392161e-05,3.414704238941269e-05,3.299545729535404e-05,3.185431162472196e-05,3.0725241947991123e-05,2.9609795847039712e-05,2.850942965435007e-05,2.742550667217145e-05,2.6359295863566244e-05,2.5311971004671876e-05,2.4284610285092088e-05,2.3278196341096098e-05,2.2293616704262796e-05,2.1331664646367887e-05,2.0393040399681223e-05,1.9478352730423668e-05,1.8588120841930005e-05,1.7722776583076525e-05,1.6882666936757996e-05,1.6068056762634675e-05,1.5279131768011203e-05,1.4516001680548778e-05,1.3778703596541898e-05,1.3067205478701967e-05,1.2381409777771549e-05,1.1721157152833778e-05,1.1086230265868996e-05,1.047635762693243e-05,9.891217467268942e-06,9.330441618730192e-06,8.79361937900183e-06,8.280301343369578e-06,7.790003185039644e-06,7.322209367366731e-06,6.876376772719179e-06,6.4519382341119265e-06,6.0483059571523224e-06,5.664874821259042e-06,5.3010255505197855e-06,4.9561277459384795e-06,4.6295427721782005e-06,4.3206264932229866e-06,4.028731852652632e-06,3.75321129544249e-06,3.4934190293592273e-06,3.2487131251184326e-06,3.0184574554967127e-06,2.802023474546167e-06,2.598791838940369e-06,2.408153874286652e-06,2.2295128899686136e-06,2.0622853467351278e-06,1.905901881828401e-06,1.7598081969446805e-06,1.6234658147489161e-06,1.4963527100211044e-06,1.3779638217998559e-06,1.2678114531109254e-06,1.1654255650283851e-06,1.070353971917385e-06,9.821624447539383e-07,9.004347294127983e-07,8.247724867634531e-07,7.54795161320683e-07],[7.832294444903971e-07,8.5584292234784e-07,9.343554769003282e-07,1.01916199973774e-06,1.1106758360322457e-06,1.2093289208358848e-06,1.3155718412412445e-06,1.4298738174046527e-06,1.5527225953341772e-06,1.6846242442917743e-06,1.8261028516543832e-06,1.9777001081270127e-06,2.1399747763059473e-06,2.3135020357561567e-06,2.4988726979975777e-06,2.6966922850935707e-06,2.90757996590473e-06,3.132167344515017e-06,3.3710970958571346e-06,3.6250214441620237e-06,3.894600480534312e-06,4.1805003167121175e-06,4.483391072905653e-06,4.803944698523473e-06,5.142832625586506e-06,5.500723255695361e-06,5.878279282552651e-06,6.276154853244636e-06,6.694992572750301e-06,7.135420357464777e-06,7.598048144890613e-06,8.08346446805691e-06,8.5922329046636e-06,9.124888412406497e-06,9.681933563407275e-06,1.0263834692140172e-05,1.0871017972701167e-05,1.1503865442693407e-05,1.2162710992391047e-05,1.2847836339178515e-05,1.3559467008529648e-05,1.4297768343976303e-05,1.5062841569604993e-05,1.5854719929597766e-05,1.6673364930186216e-05,1.7518662710101054e-05,1.8390420566160665e-05,1.9288363661038046e-05,2.021213194046438e-05,2.1161277287158562e-05,2.2135260938605515e-05,2.3133451195433778e-05,2.415512144655754e-05,2.519944853644527e-05,2.6265511498851924e-05,2.73522906801036e-05,2.8458667273552264e-05,2.9583423285125908e-05,3.0725241947991123e-05,3.188270860222684e-05,3.30543120530883e-05,3.423844641893125e-05,3.543341347717894e-05,3.6637425513866704e-05,3.7848608679304476e-05,3.906500684927975e-05,4.028458598799879e-05,4.150523900565939e-05,4.272479110018425e-05,4.394100556924915e-05,4.515159007533842e-05,4.635420334318076e-05,4.754646226558902e-05,4.8725949390476125e-05,4.989022075867521e-05,5.1036814059183314e-05,5.216325706560236e-05,5.326707631489625e-05,5.4345805987144913e-05,5.539699694277919e-05,5.641822587184878e-05,5.74071045082296e-05,5.8361288860336433e-05,5.927848840888874e-05,6.0156475221595804e-05,6.099309293429361e-05,6.17862655480897e-05,6.2534005992457e-05,6.323442440496865e-05,6.388573607947946e-05,6.448626903603402e-05,6.503447116760763e-05,6.552891692095507e-05,6.596831347133797e-05,6.635150635370961e-05,6.667748451603501e-05,6.694538476379143e-05,6.715449556830695e-05,6.730426021542147e-05,6.739427927496958e-05,6.742431237575384e-05,6.739427927496958e-05,6.730426021542147e-05,6.715449556830695e-05,6.694538476379143e-05,6.667748451603501e-05,6.635150635370961e-05,6.596831347133797e-05,6.552891692095507e-05,6.503447116760763e-05,6.448626903603402e-05,6.388573607947946e-05,6.323442440496865e-05,6.2534005992457e-05,6.17862655480897e-05,6.099309293429361e-05,6.0156475221595804e-05,5.927848840888874e-05,5.8361288860336433e-05,5.74071045082296e-05,5.641822587184878e-05,5.539699694277919e-05,5.4345805987144913e-05,5.326707631489625e-05,5.216325706560236e-05,5.1036814059183314e-05,4.989022075867521e-05,4.8725949390476125e-05,4.754646226558902e-05,4.635420334318076e-05,4.515159007533842e-05,4.394100556924915e-05,4.272479110018425e-05,4.150523900565939e-05,4.028458598799879e-05,3.906500684927975e-05,3.7848608679304476e-05,3.6637425513866704e-05,3.543341347717894e-05,3.423844641893125e-05,3.30543120530883e-05,3.188270860222684e-05,3.0725241947991123e-05,2.9583423285125908e-05,2.8458667273552264e-05,2.73522906801036e-05,2.6265511498851924e-05,2.519944853644527e-05,2.415512144655754e-05,2.3133451195433778e-05,2.2135260938605515e-05,2.1161277287158562e-05,2.021213194046438e-05,1.9288363661038046e-05,1.8390420566160665e-05,1.7518662710101054e-05,1.6673364930186216e-05,1.5854719929597766e-05,1.5062841569604993e-05,1.4297768343976303e-05,1.3559467008529648e-05,1.2847836339178515e-05,1.2162710992391047e-05,1.1503865442693407e-05,1.0871017972701167e-05,1.0263834692140172e-05,9.681933563407275e-06,9.124888412406497e-06,8.5922329046636e-06,8.08346446805691e-06,7.598048144890613e-06,7.135420357464777e-06,6.694992572750301e-06,6.276154853244636e-06,5.878279282552651e-06,5.500723255695361e-06,5.142832625586506e-06,4.803944698523473e-06,4.483391072905653e-06,4.1805003167121175e-06,3.894600480534312e-06,3.6250214441620237e-06,3.3710970958571346e-06,3.132167344515017e-06,2.90757996590473e-06,2.6966922850935707e-06,2.4988726979975777e-06,2.3135020357561567e-06,2.1399747763059473e-06,1.9777001081270127e-06,1.8261028516543832e-06,1.6846242442917743e-06,1.5527225953341772e-06,1.4298738174046527e-06,1.3155718412412445e-06,1.2093289208358848e-06,1.1106758360322457e-06,1.01916199973774e-06,9.343554769003282e-07,8.5584292234784e-07,7.832294444903971e-07],[8.120110116850101e-07,8.872928387814787e-07,9.686905177127413e-07,1.0566134512683108e-06,1.1514901739393123e-06,1.2537684932246288e-06,1.3639155540758171e-06,1.4824178192229528e-06,1.60978095802288e-06,1.7465296364164343e-06,1.893207200576507e-06,2.0503752468788328e-06,2.2186130709363297e-06,2.398516988609868e-06,2.5906995221474233e-06,2.795788444913142e-06,3.014425678551356e-06,3.2472660368906414e-06,3.494975811432116e-06,3.75823119388606e-06,4.037716531922805e-06,4.334122415088203e-06,4.6481435887007145e-06,4.980476694495252e-06,5.3318178378065e-06,5.702859982189059e-06,6.094290173549694e-06,6.506786597113748e-06,6.941015471858009e-06,7.397627788409617e-06,7.877255897827375e-06,8.380509960140038e-06,8.907974263006228e-06,9.460203422372574e-06,1.003771847852917e-05,1.0641002902482977e-05,1.1270498529077236e-05,1.1926601434765427e-05,1.2609657779387703e-05,1.3319959632681674e-05,1.4057740807573367e-05,1.4823172723522976e-05,1.5616360324328864e-05,1.6437338075807002e-05,1.728606606964694e-05,1.816242626048519e-05,1.906621886381855e-05,1.9997158942790382e-05,2.09548732121097e-05,2.1938897087395344e-05,2.2948672008064583e-05,2.3983543061499775e-05,2.504275693561972e-05,2.6125460226149794e-05,2.7230698123822266e-05,2.8357413505444007e-05,2.9504446451243685e-05,3.067053420915599e-05,3.185431162472196e-05,3.30543120530883e-05,3.426896876718394e-05,3.549661687355044e-05,3.673549574451693e-05,3.798375197245773e-05,3.923944284876651e-05,4.050054036694788e-05,4.176493574588505e-05,4.303044446591517e-05,4.429481180685704e-05,4.5555718873615624e-05,4.6810789091461336e-05,4.805759514957864e-05,4.929366636802615e-05,5.051649645988024e-05,5.172355165707389e-05,5.291227916532355e-05,5.408011591058659e-05,5.522449753673919e-05,5.6342867611637486e-05,5.743268699644635e-05,5.849144333111831e-05,5.951666058719802e-05,6.050590863773881e-05,6.14568127930615e-05,6.236706325037956e-05,6.323442440496863e-05,6.405674397058258e-05,6.483196185721801e-05,6.555811875510692e-05,6.623336437497236e-05,6.685596529611028e-05,6.742431237575384e-05,6.793692767542538e-05,6.839247086256827e-05,6.878974504866268e-05,6.912770202824136e-05,6.94054468867137e-05,6.962224194865036e-05,6.977751004214912e-05,6.98708370590645e-05,6.990197379520667e-05,6.98708370590645e-05,6.977751004214912e-05,6.962224194865036e-05,6.94054468867137e-05,6.912770202824136e-05,6.878974504866268e-05,6.839247086256827e-05,6.793692767542538e-05,6.742431237575384e-05,6.685596529611028e-05,6.623336437497236e-05,6.555811875510692e-05,6.483196185721801e-05,6.405674397058258e-05,6.323442440496863e-05,6.236706325037956e-05,6.14568127930615e-05,6.050590863773881e-05,5.951666058719802e-05,5.849144333111831e-05,5.743268699644635e-05,5.6342867611637486e-05,5.522449753673919e-05,5.408011591058659e-05,5.291227916532355e-05,5.172355165707389e-05,5.051649645988024e-05,4.929366636802615e-05,4.805759514957864e-05,4.6810789091461336e-05,4.5555718873615624e-05,4.429481180685704e-05,4.303044446591517e-05,4.176493574588505e-05,4.050054036694788e-05,3.923944284876651e-05,3.798375197245773e-05,3.673549574451693e-05,3.549661687355044e-05,3.426896876718394e-05,3.30543120530883e-05,3.185431162472196e-05,3.067053420915599e-05,2.9504446451243685e-05,2.8357413505444007e-05,2.7230698123822266e-05,2.6125460226149794e-05,2.504275693561972e-05,2.3983543061499775e-05,2.2948672008064583e-05,2.1938897087395344e-05,2.09548732121097e-05,1.9997158942790382e-05,1.906621886381855e-05,1.816242626048519e-05,1.728606606964694e-05,1.6437338075807002e-05,1.5616360324328864e-05,1.4823172723522976e-05,1.4057740807573367e-05,1.3319959632681674e-05,1.2609657779387703e-05,1.1926601434765427e-05,1.1270498529077236e-05,1.0641002902482977e-05,1.003771847852917e-05,9.460203422372574e-06,8.907974263006228e-06,8.380509960140038e-06,7.877255897827375e-06,7.397627788409617e-06,6.941015471858009e-06,6.506786597113748e-06,6.094290173549694e-06,5.702859982189059e-06,5.3318178378065e-06,4.980476694495252e-06,4.6481435887007145e-06,4.334122415088203e-06,4.037716531922805e-06,3.75823119388606e-06,3.494975811432116e-06,3.2472660368906414e-06,3.014425678551356e-06,2.795788444913142e-06,2.5906995221474233e-06,2.398516988609868e-06,2.2186130709363297e-06,2.0503752468788328e-06,1.893207200576507e-06,1.7465296364164343e-06,1.60978095802288e-06,1.4824178192229528e-06,1.3639155540758171e-06,1.2537684932246288e-06,1.1514901739393123e-06,1.0566134512683108e-06,9.686905177127413e-07,8.872928387814787e-07,8.120110116850101e-07],[8.411004128752333e-07,9.190791286089606e-07,1.0033927898413388e-06,1.094465465766426e-06,1.1927410426520557e-06,1.2986833702081204e-06,1.4127763283401538e-06,1.5355238067703732e-06,1.667449589904038e-06,1.8090971392621229e-06,1.9610292657964216e-06,2.1238276844550095e-06,2.298092443478848e-06,2.4844412210885084e-06,2.6835084824676557e-06,2.895944490270587e-06,3.1224141622783552e-06,3.3635957703045778e-06,3.6201794750104035e-06,3.892865691930247e-06,4.18236328473687e-06,4.489387582586876e-06,4.814658219285465e-06,5.158896792991318e-06,5.522824346246939e-06,5.907158667263935e-06,6.3126114146128525e-06,6.739885068758654e-06,7.189669715240052e-06,7.662639665707246e-06,8.159449924500059e-06,8.680732509959034e-06,9.22709264120538e-06,9.79910480269187e-06,1.0397308700403795e-05,1.1022205125165066e-05,1.1674251740066112e-05,1.2353858810563633e-05,1.306138489729324e-05,1.3797132533069582e-05,1.4561343906909544e-05,1.5354196579186894e-05,1.617579925319613e-05,1.702618762945316e-05,1.790532036997621e-05,1.8813075200556517e-05,1.9749245179630837e-05,2.0713535162793095e-05,2.1705558492217425e-05,2.27248339402983e-05,2.377078293663459e-05,2.4842727107084608e-05,2.593988615299057e-05,2.706137609780856e-05,2.820620792727922e-05,2.937328664793398e-05,3.056141078715175e-05,3.176927235616365e-05,3.299545729535404e-05,3.423844641893125e-05,3.549661687355044e-05,3.67682441227766e-05,3.805150446638943e-05,3.9344478100474054e-05,4.064515272102548e-05,4.1951427670446656e-05,4.32611186228572e-05,4.4571962800580545e-05,4.588162471056546e-05,4.7187702385851156e-05,4.848773411353287e-05,4.9779205627055394e-05,5.105955773708651e-05,5.232619437173071e-05,5.357649099346742e-05,5.480780335696624e-05,5.601747656887662e-05,5.720285440783771e-05,5.8361288860336433e-05,5.949014982568225e-05,6.058683494129285e-05,6.164877947771739e-05,6.267346625138475e-05,6.36584355019704e-05,6.460129468054406e-05,6.549972809430152e-05,6.635150635370961e-05,6.715449556830695e-05,6.79066662382085e-05,6.860610178955954e-05,6.925100670376622e-05,6.983971419229234e-05,7.037069337114015e-05,7.084255589181372e-05,7.12540619885787e-05,7.160412590516012e-05,7.189182066763666e-05,7.211638217416827e-05,7.227721257630426e-05,7.237388293093044e-05,7.240613510639098e-05,7.237388293093044e-05,7.227721257630426e-05,7.211638217416827e-05,7.189182066763666e-05,7.160412590516012e-05,7.12540619885787e-05,7.084255589181372e-05,7.037069337114015e-05,6.983971419229234e-05,6.925100670376622e-05,6.860610178955954e-05,6.79066662382085e-05,6.715449556830695e-05,6.635150635370961e-05,6.549972809430152e-05,6.460129468054406e-05,6.36584355019704e-05,6.267346625138475e-05,6.164877947771739e-05,6.058683494129285e-05,5.949014982568225e-05,5.8361288860336433e-05,5.720285440783771e-05,5.601747656887662e-05,5.480780335696624e-05,5.357649099346742e-05,5.232619437173071e-05,5.105955773708651e-05,4.9779205627055394e-05,4.848773411353287e-05,4.7187702385851156e-05,4.588162471056546e-05,4.4571962800580545e-05,4.32611186228572e-05,4.1951427670446656e-05,4.064515272102548e-05,3.9344478100474054e-05,3.805150446638943e-05,3.67682441227766e-05,3.549661687355044e-05,3.423844641893125e-05,3.299545729535404e-05,3.176927235616365e-05,3.056141078715175e-05,2.937328664793398e-05,2.820620792727922e-05,2.706137609780856e-05,2.593988615299057e-05,2.4842727107084608e-05,2.377078293663459e-05,2.27248339402983e-05,2.1705558492217425e-05,2.0713535162793095e-05,1.9749245179630837e-05,1.8813075200556517e-05,1.790532036997621e-05,1.702618762945316e-05,1.617579925319613e-05,1.5354196579186894e-05,1.4561343906909544e-05,1.3797132533069582e-05,1.306138489729324e-05,1.2353858810563633e-05,1.1674251740066112e-05,1.1022205125165066e-05,1.0397308700403795e-05,9.79910480269187e-06,9.22709264120538e-06,8.680732509959034e-06,8.159449924500059e-06,7.662639665707246e-06,7.189669715240052e-06,6.739885068758654e-06,6.3126114146128525e-06,5.907158667263935e-06,5.522824346246939e-06,5.158896792991318e-06,4.814658219285465e-06,4.489387582586876e-06,4.18236328473687e-06,3.892865691930247e-06,3.6201794750104035e-06,3.3635957703045778e-06,3.1224141622783552e-06,2.895944490270587e-06,2.6835084824676557e-06,2.4844412210885084e-06,2.298092443478848e-06,2.1238276844550095e-06,1.9610292657964216e-06,1.8090971392621229e-06,1.667449589904038e-06,1.5355238067703732e-06,1.4127763283401538e-06,1.2986833702081204e-06,1.1927410426520557e-06,1.094465465766426e-06,1.0033927898413388e-06,9.190791286089606e-07,8.411004128752333e-07],[8.704559295878346e-07,9.511562056226958e-07,1.0384125251316845e-06,1.1326637578845363e-06,1.2343692823668446e-06,1.3440091372567892e-06,1.4620840905085086e-06,1.589115618261888e-06,1.7256457856906033e-06,1.8722370218414057e-06,2.0294717805125883e-06,2.1979520792731976e-06,2.378298908841329e-06,2.5711515052242954e-06,2.777166477279711e-06,2.997016782688442e-06,3.23139054574141e-06,3.4809897108355022e-06,3.7465285261516354e-06,4.028731852652631e-06,4.32833329429086e-06,4.646073146156469e-06,4.982696158226131e-06,5.3389491133885344e-06,5.715578219524447e-06,6.113326316603297e-06,6.532929901020864e-06,6.9751159707393256e-06,7.44059869619529e-06,7.930075923407286e-06,8.444225517232798e-06,8.983701554288257e-06,9.549130376642567e-06,1.014110651901563e-05,1.0760188523845344e-05,1.1406894660217641e-05,1.2081698564270039e-05,1.2785024820266228e-05,1.3517244503082168e-05,1.4278670704327832e-05,1.5069554065737066e-05,1.5890078344775503e-05,1.6740356038626362e-05,1.762042409380077e-05,1.8530239729566738e-05,1.9469676404183894e-05,2.0438519953554787e-05,2.1436464932343248e-05,2.246311118785396e-05,2.3517960697001574e-05,2.4600414696512835e-05,2.5709771136091398e-05,2.684522248362443e-05,2.8005853910617637e-05,2.9190641884906077e-05,3.0398453196301094e-05,3.162804443919823e-05,3.287806197429084e-05,3.414704238941269e-05,3.543341347717894e-05,3.673549574451693e-05,3.805150446638943e-05,3.9379552293026766e-05,4.071765241681858e-05,4.206372230168895e-05,4.341558797431273e-05,4.477098887294765e-05,4.6127583245983866e-05,4.74829540885741e-05,4.8834615601934175e-05,5.018002015612351e-05,5.1516565733359145e-05,5.284160382521679e-05,5.415244775345865e-05,5.5446381380733896e-05,5.672066817405325e-05,5.797256058077727e-05,5.9199309673906954e-05,6.039817502075578e-05,6.156643472664094e-05,6.270139560308456e-05,6.380040340818626e-05,6.486085310533948e-05,6.588019908533146e-05,6.685596529611027e-05,6.778575522413046e-05,6.866726167121596e-05,6.949827627130628e-05,7.027669869228658e-05,7.100054546934e-05,7.166795841789934e-05,7.227721257630426e-05,7.282672363068097e-05,7.331505477733504e-05,7.374092298106847e-05,7.410320459127645e-05,7.440094028142194e-05,7.46333392815002e-05,7.4799782877359e-05,7.489982715520219e-05,7.493320497423781e-05,7.489982715520219e-05,7.4799782877359e-05,7.46333392815002e-05,7.440094028142194e-05,7.410320459127645e-05,7.374092298106847e-05,7.331505477733504e-05,7.282672363068097e-05,7.227721257630426e-05,7.166795841789934e-05,7.100054546934e-05,7.027669869228658e-05,6.949827627130628e-05,6.866726167121596e-05,6.778575522413046e-05,6.685596529611027e-05,6.588019908533146e-05,6.486085310533948e-05,6.380040340818626e-05,6.270139560308456e-05,6.156643472664094e-05,6.039817502075578e-05,5.9199309673906954e-05,5.797256058077727e-05,5.672066817405325e-05,5.5446381380733896e-05,5.415244775345865e-05,5.284160382521679e-05,5.1516565733359145e-05,5.018002015612351e-05,4.8834615601934175e-05,4.74829540885741e-05,4.6127583245983866e-05,4.477098887294765e-05,4.341558797431273e-05,4.206372230168895e-05,4.071765241681858e-05,3.9379552293026766e-05,3.805150446638943e-05,3.673549574451693e-05,3.543341347717894e-05,3.414704238941269e-05,3.287806197429084e-05,3.162804443919823e-05,3.0398453196301094e-05,2.9190641884906077e-05,2.8005853910617637e-05,2.684522248362443e-05,2.5709771136091398e-05,2.4600414696512835e-05,2.3517960697001574e-05,2.246311118785396e-05,2.1436464932343248e-05,2.0438519953554787e-05,1.9469676404183894e-05,1.8530239729566738e-05,1.762042409380077e-05,1.6740356038626362e-05,1.5890078344775503e-05,1.5069554065737066e-05,1.4278670704327832e-05,1.3517244503082168e-05,1.2785024820266228e-05,1.2081698564270039e-05,1.1406894660217641e-05,1.0760188523845344e-05,1.014110651901563e-05,9.549130376642567e-06,8.983701554288257e-06,8.444225517232798e-06,7.930075923407286e-06,7.44059869619529e-06,6.9751159707393256e-06,6.532929901020864e-06,6.113326316603297e-06,5.715578219524447e-06,5.3389491133885344e-06,4.982696158226131e-06,4.646073146156469e-06,4.32833329429086e-06,4.028731852652631e-06,3.7465285261516354e-06,3.4809897108355022e-06,3.23139054574141e-06,2.997016782688442e-06,2.777166477279711e-06,2.5711515052242954e-06,2.378298908841329e-06,2.1979520792731976e-06,2.0294717805125883e-06,1.8722370218414057e-06,1.7256457856906033e-06,1.589115618261888e-06,1.4620840905085086e-06,1.3440091372567892e-06,1.2343692823668446e-06,1.1326637578845363e-06,1.0384125251316845e-06,9.511562056226958e-07,8.704559295878346e-07],[9.000336449074435e-07,9.83476081354611e-07,1.0736973327924288e-06,1.1711511815952464e-06,1.2763126157305495e-06,1.3896779853828022e-06,1.5117650743842421e-06,1.6431130784080325e-06,1.7842824817675748e-06,1.935854824604928e-06,2.0984323522460755e-06,2.272637538556205e-06,2.45911247524894e-06,2.658518119294139e-06,2.871533390833893e-06,3.0988541143594696e-06,3.341191796327033e-06,3.5992722328999243e-06,3.873833942102765e-06,4.165626415359812e-06,4.475408184167869e-06,4.803944698523473e-06,5.152006014684809e-06,5.520364290899538e-06,5.909791090868892e-06,6.321054495942581e-06,6.7549160283447945e-06,7.212127389113456e-06,7.69342701588716e-06,8.199536467189769e-06,8.731156641432906e-06,9.288963840473018e-06,9.87360568921112e-06,1.0485696924399281e-05,1.1125815067505421e-05,1.1794495998174452e-05,1.2492229446494612e-05,1.3219454423918906e-05,1.3976554614286791e-05,1.4763853747925484e-05,1.558161098326634e-05,1.6430016321774058e-05,1.7309186083237394e-05,1.821915846959392e-05,1.91598892464409e-05,2.0131247572204468e-05,2.1133012005583924e-05,2.216486672234294e-05,2.3226397972770994e-05,2.4317090811174083e-05,2.5436326128562373e-05,2.6583378019274648e-05,2.775741151160679e-05,2.895748069158865e-05,3.018252724787583e-05,3.1431379464288474e-05,3.270275168483845e-05,3.399524427414201e-05,3.530734409392161e-05,3.6637425513866704e-05,3.798375197245773e-05,3.9344478100474054e-05,4.071765241681858e-05,4.2101220603019226e-05,4.34930293593266e-05,4.489083084174394e-05,4.629228767562047e-05,4.7694978537641305e-05,4.9096404294181757e-05,5.0493994680092076e-05,5.1885115498070155e-05,5.3267076314896246e-05,5.463713862697737e-05,5.599252446391338e-05,5.733042539518314e-05,5.864801190159214e-05,5.9942443069852776e-05,6.12108765656177e-05,6.245047883748515e-05,6.365843550197039e-05,6.483196185721802e-05,6.596831347133796e-05,6.706479678970852e-05,6.811877970441892e-05,6.912770202824136e-05,7.008908581513852e-05,7.100054546934002e-05,7.185979758546353e-05,7.266467046301897e-05,7.341311323991451e-05,7.410320459127646e-05,7.473316094199468e-05,7.530134414389645e-05,7.580626857132039e-05,7.624660759208835e-05,7.66211993744349e-05,7.692905199432292e-05,7.716934781172555e-05,7.734144708885177e-05,7.744489082790698e-05,7.747940281077086e-05,7.744489082790698e-05,7.734144708885177e-05,7.716934781172555e-05,7.692905199432292e-05,7.66211993744349e-05,7.624660759208835e-05,7.580626857132039e-05,7.530134414389645e-05,7.473316094199468e-05,7.410320459127646e-05,7.341311323991451e-05,7.266467046301897e-05,7.185979758546353e-05,7.100054546934002e-05,7.008908581513852e-05,6.912770202824136e-05,6.811877970441892e-05,6.706479678970852e-05,6.596831347133796e-05,6.483196185721802e-05,6.365843550197039e-05,6.245047883748515e-05,6.12108765656177e-05,5.9942443069852776e-05,5.864801190159214e-05,5.733042539518314e-05,5.599252446391338e-05,5.463713862697737e-05,5.3267076314896246e-05,5.1885115498070155e-05,5.0493994680092076e-05,4.9096404294181757e-05,4.7694978537641305e-05,4.629228767562047e-05,4.489083084174394e-05,4.34930293593266e-05,4.2101220603019226e-05,4.071765241681858e-05,3.9344478100474054e-05,3.798375197245773e-05,3.6637425513866704e-05,3.530734409392161e-05,3.399524427414201e-05,3.270275168483845e-05,3.1431379464288474e-05,3.018252724787583e-05,2.895748069158865e-05,2.775741151160679e-05,2.6583378019274648e-05,2.5436326128562373e-05,2.4317090811174083e-05,2.3226397972770994e-05,2.216486672234294e-05,2.1133012005583924e-05,2.0131247572204468e-05,1.91598892464409e-05,1.821915846959392e-05,1.7309186083237394e-05,1.6430016321774058e-05,1.558161098326634e-05,1.4763853747925484e-05,1.3976554614286791e-05,1.3219454423918906e-05,1.2492229446494612e-05,1.1794495998174452e-05,1.1125815067505421e-05,1.0485696924399281e-05,9.87360568921112e-06,9.288963840473018e-06,8.731156641432906e-06,8.199536467189769e-06,7.69342701588716e-06,7.212127389113456e-06,6.7549160283447945e-06,6.321054495942581e-06,5.909791090868892e-06,5.520364290899538e-06,5.152006014684809e-06,4.803944698523473e-06,4.475408184167869e-06,4.165626415359812e-06,3.873833942102765e-06,3.5992722328999243e-06,3.341191796327033e-06,3.0988541143594696e-06,2.871533390833893e-06,2.658518119294139e-06,2.45911247524894e-06,2.272637538556205e-06,2.0984323522460755e-06,1.935854824604928e-06,1.7842824817675748e-06,1.6431130784080325e-06,1.5117650743842421e-06,1.3896779853828022e-06,1.2763126157305495e-06,1.1711511815952464e-06,1.0736973327924288e-06,9.83476081354611e-07,9.000336449074435e-07],[9.297875259116344e-07,1.0159884551538174e-06,1.109192297736443e-06,1.209867837458357e-06,1.31850576473944e-06,1.4356188384222192e-06,1.5617419595640692e-06,1.6974321489094582e-06,1.8432684196164141e-06,1.9998515367485138e-06,2.1678036550383113e-06,2.3477678264853996e-06,2.5404073694770356e-06,2.7464050913162775e-06,2.96646235631631e-06,3.2012979919741567e-06,3.451647026176042e-06,3.7182592489135378e-06,4.001897592606825e-06,4.303336325841299e-06,4.6233590561273355e-06,4.9627565381911786e-06,5.322324285297428e-06,5.7028599821890586e-06,6.105160699407719e-06,6.530019910021765e-06,6.978224311138314e-06,7.45055045400323e-06,7.947761187993222e-06,8.470601925369811e-06,9.019796735287243e-06,9.596044277216124e-06,1.0200013585650705e-05,1.0832339719699084e-05,1.1493619292898831e-05,1.2184405900342806e-05,1.2905205461925986e-05,1.3656471502219414e-05,1.4438600389125387e-05,1.525192655505285e-05,1.6096717725856367e-05,1.6973170184189113e-05,1.788140409521294e-05,1.882145892376921e-05,1.9793288973126347e-05,2.0796759076267048e-05,2.1831640471344164e-05,2.289760689340417e-05,2.399423091473715e-05,2.5120980566248943e-05,2.627721627205347e-05,2.7462188129041444e-05,2.8675033562486495e-05,2.9914775387796686e-05,3.11803203073024e-05,3.247045786948985e-05,3.378385991634279e-05,3.511908054244645e-05,3.64745565872419e-05,3.7848608679304476e-05,3.923944284876651e-05,4.064515272102548e-05,4.206372230168895e-05,4.34930293593266e-05,4.4930849409045154e-05,4.637486029620047e-05,4.782264737573349e-05,4.927170927869305e-05,5.0719464253515785e-05,5.2163257065602354e-05,5.360036643469158e-05,5.502801298552212e-05,5.644336768331865e-05,5.7843560721780004e-05,5.92256908275141e-05,6.058683494129283e-05,6.19240582331218e-05,6.323442440496863e-05,6.451500623209867e-05,6.576289629135941e-05,6.697521782246172e-05,6.81491356663518e-05,6.928186722317708e-05,7.037069337114013e-05,7.141296928672587e-05,7.240613510639097e-05,7.33477263698325e-05,7.423538418541002e-05,7.506686505918626e-05,7.584005033037433e-05,7.655295515772868e-05,7.720373700358605e-05,7.779070356483625e-05,7.83123201030659e-05,7.876721612945201e-05,7.91541914036604e-05,7.947222121000229e-05,7.972046087839011e-05,7.989824952217667e-05,8.000511296972821e-05,8.004076587153125e-05,8.000511296972821e-05,7.989824952217667e-05,7.972046087839011e-05,7.947222121000229e-05,7.91541914036604e-05,7.876721612945201e-05,7.83123201030659e-05,7.779070356483625e-05,7.720373700358605e-05,7.655295515772868e-05,7.584005033037433e-05,7.506686505918626e-05,7.423538418541002e-05,7.33477263698325e-05,7.240613510639097e-05,7.141296928672587e-05,7.037069337114013e-05,6.928186722317708e-05,6.81491356663518e-05,6.697521782246172e-05,6.576289629135941e-05,6.451500623209867e-05,6.323442440496863e-05,6.19240582331218e-05,6.058683494129283e-05,5.92256908275141e-05,5.7843560721780004e-05,5.644336768331865e-05,5.502801298552212e-05,5.360036643469158e-05,5.2163257065602354e-05,5.0719464253515785e-05,4.927170927869305e-05,4.782264737573349e-05,4.637486029620047e-05,4.4930849409045154e-05,4.34930293593266e-05,4.206372230168895e-05,4.064515272102548e-05,3.923944284876651e-05,3.7848608679304476e-05,3.64745565872419e-05,3.511908054244645e-05,3.378385991634279e-05,3.247045786948985e-05,3.11803203073024e-05,2.9914775387796686e-05,2.8675033562486495e-05,2.7462188129041444e-05,2.627721627205347e-05,2.5120980566248943e-05,2.399423091473715e-05,2.289760689340417e-05,2.1831640471344164e-05,2.0796759076267048e-05,1.9793288973126347e-05,1.882145892376921e-05,1.788140409521294e-05,1.6973170184189113e-05,1.6096717725856367e-05,1.525192655505285e-05,1.4438600389125387e-05,1.3656471502219414e-05,1.2905205461925986e-05,1.2184405900342806e-05,1.1493619292898831e-05,1.0832339719699084e-05,1.0200013585650705e-05,9.596044277216124e-06,9.019796735287243e-06,8.470601925369811e-06,7.947761187993222e-06,7.45055045400323e-06,6.978224311138314e-06,6.530019910021765e-06,6.105160699407719e-06,5.7028599821890586e-06,5.322324285297428e-06,4.9627565381911786e-06,4.6233590561273355e-06,4.303336325841299e-06,4.001897592606825e-06,3.7182592489135378e-06,3.451647026176042e-06,3.2012979919741567e-06,2.96646235631631e-06,2.7464050913162775e-06,2.5404073694770356e-06,2.3477678264853996e-06,2.1678036550383113e-06,1.9998515367485138e-06,1.8432684196164141e-06,1.6974321489094582e-06,1.5617419595640692e-06,1.4356188384222192e-06,1.31850576473944e-06,1.209867837458357e-06,1.109192297736443e-06,1.0159884551538174e-06,9.297875259116344e-07],[9.59669518525095e-07,1.0486408178347437e-06,1.1448400937373306e-06,1.2487511960479948e-06,1.3608805852492324e-06,1.481757499492571e-06,1.6119340307623447e-06,1.7519851016239302e-06,1.9025083338598302e-06,2.0641238002320923e-06,2.237473650603991e-06,2.423221603713021e-06,2.622052296015993e-06,2.8346704792303797e-06,3.0618000584785754e-06,3.3041829633076506e-06,3.5625778443103657e-06,3.837758588617011e-06,4.130512648164656e-06,4.4416391753831285e-06,4.771946961766439e-06,5.1222521757253905e-06,5.493375897141504e-06,5.886141447162777e-06,6.301371512996361e-06,6.739885068758652e-06,7.20249409483546e-06,7.690000099678408e-06,8.203190449512195e-06,8.742834513043311e-06,9.30967962993514e-06,9.904446913537861e-06,1.0527826900122488e-05,1.118047505865534e-05,1.1863007176948561e-05,1.2575994641820559e-05,1.3319959632681677e-05,1.4095370249710292e-05,1.4902635599485438e-05,1.5742100862577868e-05,1.661404236915419e-05,1.7518662710101054e-05,1.8456085912510458e-05,1.9426352709565256e-05,2.0429415935908664e-05,2.146513608045585e-05,2.2533277029293036e-05,2.363350203179481e-05,2.4765369923358344e-05,2.5928331638191457e-05,2.712172704538733e-05,2.8344782141062506e-05,2.9596606628617733e-05,3.087619191819702e-05,3.218240957516455e-05,3.351401024588944e-05,3.4869623087325883e-05,3.624775572480274e-05,3.7646794760098185e-05,3.906500684927975e-05,4.050054036694788e-05,4.1951427670446656e-05,4.341558797431273e-05,4.489083084174394e-05,4.637486029620047e-05,4.7865279552430666e-05,4.935959636226315e-05,5.085522896645709e-05,5.23495126397815e-05,5.3839706812333547e-05,5.532300274593895e-05,5.679653174033607e-05,5.825737383976613e-05,5.97025670066081e-05,6.112911672484442e-05,6.253400599245699e-05,6.391420565836649e-05,6.526668505627501e-05,6.658842288478472e-05,6.787641828047346e-05,6.912770202824136e-05,7.033934785122595e-05,7.150848372094078e-05,7.263230312704512e-05,7.370807624531725e-05,7.473316094199468e-05,7.570501355267407e-05,7.66211993744349e-05,7.747940281077086e-05,7.82774371102784e-05,7.9013253641857e-05,7.968495065141464e-05,8.029078144772802e-05,8.082916196816658e-05,8.129867767842835e-05,8.169808976423426e-05,8.20263405770525e-05,8.228255830035115e-05,8.246606080756602e-05,8.257635868788997e-05,8.261315742109926e-05,8.257635868788997e-05,8.246606080756602e-05,8.228255830035115e-05,8.20263405770525e-05,8.169808976423426e-05,8.129867767842835e-05,8.082916196816658e-05,8.029078144772802e-05,7.968495065141464e-05,7.9013253641857e-05,7.82774371102784e-05,7.747940281077086e-05,7.66211993744349e-05,7.570501355267407e-05,7.473316094199468e-05,7.370807624531725e-05,7.263230312704512e-05,7.150848372094078e-05,7.033934785122595e-05,6.912770202824136e-05,6.787641828047346e-05,6.658842288478472e-05,6.526668505627501e-05,6.391420565836649e-05,6.253400599245699e-05,6.112911672484442e-05,5.97025670066081e-05,5.825737383976613e-05,5.679653174033607e-05,5.532300274593895e-05,5.3839706812333547e-05,5.23495126397815e-05,5.085522896645709e-05,4.935959636226315e-05,4.7865279552430666e-05,4.637486029620047e-05,4.489083084174394e-05,4.341558797431273e-05,4.1951427670446656e-05,4.050054036694788e-05,3.906500684927975e-05,3.7646794760098185e-05,3.624775572480274e-05,3.4869623087325883e-05,3.351401024588944e-05,3.218240957516455e-05,3.087619191819702e-05,2.9596606628617733e-05,2.8344782141062506e-05,2.712172704538733e-05,2.5928331638191457e-05,2.4765369923358344e-05,2.363350203179481e-05,2.2533277029293036e-05,2.146513608045585e-05,2.0429415935908664e-05,1.9426352709565256e-05,1.8456085912510458e-05,1.7518662710101054e-05,1.661404236915419e-05,1.5742100862577868e-05,1.4902635599485438e-05,1.4095370249710292e-05,1.3319959632681677e-05,1.2575994641820559e-05,1.1863007176948561e-05,1.118047505865534e-05,1.0527826900122488e-05,9.904446913537861e-06,9.30967962993514e-06,8.742834513043311e-06,8.203190449512195e-06,7.690000099678408e-06,7.20249409483546e-06,6.739885068758652e-06,6.301371512996361e-06,5.886141447162777e-06,5.493375897141504e-06,5.1222521757253905e-06,4.771946961766439e-06,4.4416391753831285e-06,4.130512648164656e-06,3.837758588617011e-06,3.5625778443103657e-06,3.3041829633076506e-06,3.0618000584785754e-06,2.8346704792303797e-06,2.622052296015993e-06,2.423221603713021e-06,2.237473650603991e-06,2.0641238002320923e-06,1.9025083338598302e-06,1.7519851016239302e-06,1.6119340307623447e-06,1.481757499492571e-06,1.3608805852492324e-06,1.2487511960479948e-06,1.1448400937373306e-06,1.0486408178347437e-06,9.59669518525095e-07],[9.896296546994813e-07,1.0813785687936715e-06,1.1805811112898961e-06,1.2877362374183043e-06,1.4033662189638551e-06,1.5280168164816569e-06,1.6622573578385128e-06,1.8066807142352589e-06,1.9619031647417644e-06,2.1285641403095687e-06,2.3073258382213723e-06,2.4988726979975777e-06,2.703910729912836e-06,2.9231666874852578e-06,3.157387075592284e-06,3.4073369862445533e-06,3.6737987545164447e-06,3.957570427692715e-06,4.259464041347623e-06,4.580303696828475e-06,4.920923435470842e-06,5.282164905828702e-06,5.664874821259044e-06,6.069902206355927e-06,6.498095431981428e-06,6.950299039987063e-06,7.427350360154927e-06,7.930075923407288e-06,8.459287676930161e-06,9.015779008522829e-06,9.600320589211866e-06,1.0213656044945545e-05,1.0856497470000331e-05,1.1529520796574009e-05,1.223336103689541e-05,1.2968607416035127e-05,1.3735798415438676e-05,1.4535416749008028e-05,1.5367884295311517e-05,1.623355701118891e-05,1.7132719853619765e-05,1.806558173822068e-05,1.9032270564113025e-05,2.003282833613796e-05,2.1067206416472934e-05,2.213526093860552e-05,2.323674841732914e-05,2.4371321588925707e-05,2.5538525515976514e-05,2.6737793991282286e-05,2.7968446275162567e-05,2.92296841999345e-05,3.052058967463124e-05,3.184012262200574e-05,3.318711937857027e-05,3.4560291586845016e-05,3.59582256071302e-05,3.737938247397784e-05,3.882209842012813e-05,4.028458598799879e-05,4.176493574588505e-05,4.32611186228572e-05,4.477098887294765e-05,4.629228767562047e-05,4.782264737573349e-05,4.935959636226315e-05,5.090056458098799e-05,5.244288967215117e-05,5.398382371987193e-05,5.552054059578602e-05,5.705014387509729e-05,5.856967529895253e-05,6.0076123752844546e-05,6.156643472664096e-05,6.303752021786252e-05,6.448626903603402e-05,6.590955746233474e-05,6.730426021542148e-05,6.866726167121597e-05,6.999546728167335e-05,7.128581513510708e-05,7.253528759856632e-05,7.374092298106848e-05,7.48998271552022e-05,7.600918507375608e-05,7.706627211760605e-05,7.806846521112391e-05,7.9013253641857e-05,7.989824952217668e-05,8.072119783200084e-05,8.147998598355894e-05,8.217265285147488e-05,8.279739721418358e-05,8.335258555585082e-05,8.38367591815136e-05,8.424864060207426e-05,8.458713915003627e-05,8.485135579143344e-05,8.504058710424059e-05,8.515432839862582e-05,8.519227595967294e-05,8.515432839862582e-05,8.504058710424059e-05,8.485135579143344e-05,8.458713915003627e-05,8.424864060207426e-05,8.38367591815136e-05,8.335258555585082e-05,8.279739721418358e-05,8.217265285147488e-05,8.147998598355894e-05,8.072119783200084e-05,7.989824952217668e-05,7.9013253641857e-05,7.806846521112391e-05,7.706627211760605e-05,7.600918507375608e-05,7.48998271552022e-05,7.374092298106848e-05,7.253528759856632e-05,7.128581513510708e-05,6.999546728167335e-05,6.866726167121597e-05,6.730426021542148e-05,6.590955746233474e-05,6.448626903603402e-05,6.303752021786252e-05,6.156643472664096e-05,6.0076123752844546e-05,5.856967529895253e-05,5.705014387509729e-05,5.552054059578602e-05,5.398382371987193e-05,5.244288967215117e-05,5.090056458098799e-05,4.935959636226315e-05,4.782264737573349e-05,4.629228767562047e-05,4.477098887294765e-05,4.32611186228572e-05,4.176493574588505e-05,4.028458598799879e-05,3.882209842012813e-05,3.737938247397784e-05,3.59582256071302e-05,3.4560291586845016e-05,3.318711937857027e-05,3.184012262200574e-05,3.052058967463124e-05,2.92296841999345e-05,2.7968446275162567e-05,2.6737793991282286e-05,2.5538525515976514e-05,2.4371321588925707e-05,2.323674841732914e-05,2.213526093860552e-05,2.1067206416472934e-05,2.003282833613796e-05,1.9032270564113025e-05,1.806558173822068e-05,1.7132719853619765e-05,1.623355701118891e-05,1.5367884295311517e-05,1.4535416749008028e-05,1.3735798415438676e-05,1.2968607416035127e-05,1.223336103689541e-05,1.1529520796574009e-05,1.0856497470000331e-05,1.0213656044945545e-05,9.600320589211866e-06,9.015779008522829e-06,8.459287676930161e-06,7.930075923407288e-06,7.427350360154927e-06,6.950299039987063e-06,6.498095431981428e-06,6.069902206355927e-06,5.664874821259044e-06,5.282164905828702e-06,4.920923435470842e-06,4.580303696828475e-06,4.259464041347623e-06,3.957570427692715e-06,3.6737987545164447e-06,3.4073369862445533e-06,3.157387075592284e-06,2.9231666874852578e-06,2.703910729912836e-06,2.4988726979975777e-06,2.3073258382213723e-06,2.1285641403095687e-06,1.9619031647417644e-06,1.8066807142352589e-06,1.6622573578385128e-06,1.5280168164816569e-06,1.4033662189638551e-06,1.2877362374183043e-06,1.1805811112898961e-06,1.0813785687936715e-06,9.896296546994813e-07],[1.0196161717443682e-06,1.1141451464029024e-06,1.2163535999662952e-06,1.3267556063805133e-06,1.4458892626553428e-06,1.5743168662979842e-06,1.7126249962344638e-06,1.86142448810543e-06,2.021350294696466e-06,2.1930612221941153e-06,2.3772395329529067e-06,2.574590405521471e-06,2.785841242812639e-06,3.0117408195184577e-06,3.2530582601712307e-06,3.510581839640467e-06,3.7851175983371107e-06,4.07748776497419e-06,4.388528980409841e-06,4.7190903168771774e-06,5.070031087786637e-06,5.442218444271459e-06,5.836524755735208e-06,6.253824772850725e-06,6.694992572750298e-06,7.160898287533785e-06,7.65240461870053e-06,8.170363141676541e-06,8.715610406253484e-06,9.288963840473018e-06,9.891217467268942e-06,1.052313744501068e-05,1.1185457444962678e-05,1.1878873880572718e-05,1.2604041005414054e-05,1.3361565898516613e-05,1.4152003357715552e-05,1.49758507235043e-05,1.5833542657686628e-05,1.672544590286019e-05,1.7651854050413663e-05,1.8612982346262736e-05,1.9608962564967612e-05,2.063983798414746e-05,2.170555849221742e-05,2.2805975863402387e-05,2.3940839234712318e-05,2.510979082007932e-05,2.6312361897141406e-05,2.7547969102198638e-05,2.881591106865023e-05,3.011536544373692e-05,3.144538631765044e-05,3.2804902098027e-05,3.419271386150681e-05,3.5607494212416996e-05,3.704778667671995e-05,3.851200565716615e-05,3.999843697310627e-05,4.150523900565939e-05,4.303044446591517e-05,4.4571962800580545e-05,4.6127583245983866e-05,4.7694978537641305e-05,4.927170927869305e-05,5.085522896645709e-05,5.244288967215117e-05,5.403194836453103e-05,5.561957386381409e-05,5.720285440783769e-05,5.877880580797293e-05,6.034438016791571e-05,6.189647513414228e-05,6.343194364258381e-05,6.494760412198154e-05,6.64402511104671e-05,6.790666623820849e-05,6.934362952550557e-05,7.074793094254546e-05,7.211638217416826e-05,7.344582853047835e-05,7.473316094199468e-05,7.597532797628761e-05,7.716934781172555e-05,7.83123201030659e-05,7.940143767319185e-05,8.043399796532619e-05,8.14074141905554e-05,8.231922610647368e-05,8.316711036420767e-05,8.394889036300083e-05,8.466254555391474e-05,8.530622013702672e-05,8.587823109975372e-05,8.637707554758688e-05,8.680143728255551e-05,8.715019258912408e-05,8.742241519192628e-05,8.761738035472467e-05,8.773456809520878e-05,8.777366549567384e-05,8.773456809520878e-05,8.761738035472467e-05,8.742241519192628e-05,8.715019258912408e-05,8.680143728255551e-05,8.637707554758688e-05,8.587823109975372e-05,8.530622013702672e-05,8.466254555391474e-05,8.394889036300083e-05,8.316711036420767e-05,8.231922610647368e-05,8.14074141905554e-05,8.043399796532619e-05,7.940143767319185e-05,7.83123201030659e-05,7.716934781172555e-05,7.597532797628761e-05,7.473316094199468e-05,7.344582853047835e-05,7.211638217416826e-05,7.074793094254546e-05,6.934362952550557e-05,6.790666623820849e-05,6.64402511104671e-05,6.494760412198154e-05,6.343194364258381e-05,6.189647513414228e-05,6.034438016791571e-05,5.877880580797293e-05,5.720285440783769e-05,5.561957386381409e-05,5.403194836453103e-05,5.244288967215117e-05,5.085522896645709e-05,4.927170927869305e-05,4.7694978537641305e-05,4.6127583245983866e-05,4.4571962800580545e-05,4.303044446591517e-05,4.150523900565939e-05,3.999843697310627e-05,3.851200565716615e-05,3.704778667671995e-05,3.5607494212416996e-05,3.419271386150681e-05,3.2804902098027e-05,3.144538631765044e-05,3.011536544373692e-05,2.881591106865023e-05,2.7547969102198638e-05,2.6312361897141406e-05,2.510979082007932e-05,2.3940839234712318e-05,2.2805975863402387e-05,2.170555849221742e-05,2.063983798414746e-05,1.9608962564967612e-05,1.8612982346262736e-05,1.7651854050413663e-05,1.672544590286019e-05,1.5833542657686628e-05,1.49758507235043e-05,1.4152003357715552e-05,1.3361565898516613e-05,1.2604041005414054e-05,1.1878873880572718e-05,1.1185457444962678e-05,1.052313744501068e-05,9.891217467268942e-06,9.288963840473018e-06,8.715610406253484e-06,8.170363141676541e-06,7.65240461870053e-06,7.160898287533785e-06,6.694992572750298e-06,6.253824772850725e-06,5.836524755735208e-06,5.442218444271459e-06,5.070031087786637e-06,4.7190903168771774e-06,4.388528980409841e-06,4.07748776497419e-06,3.7851175983371107e-06,3.510581839640467e-06,3.2530582601712307e-06,3.0117408195184577e-06,2.785841242812639e-06,2.574590405521471e-06,2.3772395329529067e-06,2.1930612221941153e-06,2.021350294696466e-06,1.86142448810543e-06,1.7126249962344638e-06,1.5743168662979842e-06,1.4458892626553428e-06,1.3267556063805133e-06,1.2163535999662952e-06,1.1141451464029024e-06,1.0196161717443682e-06],[1.049575643552077e-06,1.1468821714014837e-06,1.2520938249610117e-06,1.3657397832566742e-06,1.4883739542501049e-06,1.6205751574856999e-06,1.762947207389749e-06,1.916118887840348e-06,2.0807438084967212e-06,2.2575001333056353e-06,2.447090171596493e-06,2.65023982224135e-06,2.8676978614969126e-06,3.100235065367974e-06,3.348643157640735e-06,3.6137335751346454e-06,3.896336042217063e-06,4.19729694721973e-06,4.517477514092833e-06,4.857751763433715e-06,5.2190042579344645e-06,5.60212762830647e-06,6.0080198768603386e-06,6.4375814571450035e-06,6.8917121293781425e-06,7.371307592827763e-06,7.877255897827375e-06,8.410433641718756e-06,8.971701954709805e-06,9.561902283402351e-06,1.0181851981576012e-05,1.0832339719699084e-05,1.1514120726563412e-05,1.2227911878394481e-05,1.2974386652755921e-05,1.3754169966534288e-05,1.4567832919238412e-05,1.5415887464761253e-05,1.629878103661266e-05,1.7216891153420347e-05,1.8170520033194628e-05,1.91598892464409e-05,2.0185134439662874e-05,2.1246300162109824e-05,2.2343334829763778e-05,2.347608586151861e-05,2.4644295023254944e-05,2.5847594016045335e-05,2.7085500345017336e-05,2.8357413505444007e-05,2.9662611522407956e-05,3.1000247879886316e-05,3.2369348874319605e-05,3.376881142665119e-05,3.519740138545057e-05,3.6653752352060856e-05,3.813636505673947e-05,3.964360731249323e-05,4.117371457075174e-05,4.272479110018425e-05,4.429481180685704e-05,4.588162471056546e-05,4.74829540885741e-05,4.9096404294181757e-05,5.0719464253515785e-05,5.23495126397815e-05,5.398382371987193e-05,5.561957386381409e-05,5.725384870302042e-05,5.888365091876411e-05,6.050590863773881e-05,6.21174844070348e-05,6.371518471640144e-05,6.529577003130905e-05,6.685596529611028e-05,6.839247086256826e-05,6.990197379520667e-05,7.138115950137814e-05,7.282672363068098e-05,7.423538418541002e-05,7.560389378113854e-05,7.692905199432292e-05,7.82077177320257e-05,7.94368215574875e-05,8.061337790436593e-05,8.173449711201166e-05,8.279739721418358e-05,8.37994154141216e-05,8.473801917990055e-05,8.561081689548243e-05,8.64155680048589e-05,8.715019258912408e-05,8.78127803192226e-05,8.840159873046448e-05,8.891510076865903e-05,8.935193156187468e-05,8.971093437634325e-05,8.999115571986777e-05,9.019184956122209e-05,9.031248063940969e-05,9.035272684223728e-05,9.031248063940969e-05,9.019184956122209e-05,8.999115571986777e-05,8.971093437634325e-05,8.935193156187468e-05,8.891510076865903e-05,8.840159873046448e-05,8.78127803192226e-05,8.715019258912408e-05,8.64155680048589e-05,8.561081689548243e-05,8.473801917990055e-05,8.37994154141216e-05,8.279739721418358e-05,8.173449711201166e-05,8.061337790436593e-05,7.94368215574875e-05,7.82077177320257e-05,7.692905199432292e-05,7.560389378113854e-05,7.423538418541002e-05,7.282672363068098e-05,7.138115950137814e-05,6.990197379520667e-05,6.839247086256826e-05,6.685596529611028e-05,6.529577003130905e-05,6.371518471640144e-05,6.21174844070348e-05,6.050590863773881e-05,5.888365091876411e-05,5.725384870302042e-05,5.561957386381409e-05,5.398382371987193e-05,5.23495126397815e-05,5.0719464253515785e-05,4.9096404294181757e-05,4.74829540885741e-05,4.588162471056546e-05,4.429481180685704e-05,4.272479110018425e-05,4.117371457075174e-05,3.964360731249323e-05,3.813636505673947e-05,3.6653752352060856e-05,3.519740138545057e-05,3.376881142665119e-05,3.2369348874319605e-05,3.1000247879886316e-05,2.9662611522407956e-05,2.8357413505444007e-05,2.7085500345017336e-05,2.5847594016045335e-05,2.4644295023254944e-05,2.347608586151861e-05,2.2343334829763778e-05,2.1246300162109824e-05,2.0185134439662874e-05,1.91598892464409e-05,1.8170520033194628e-05,1.7216891153420347e-05,1.629878103661266e-05,1.5415887464761253e-05,1.4567832919238412e-05,1.3754169966534288e-05,1.2974386652755921e-05,1.2227911878394481e-05,1.1514120726563412e-05,1.0832339719699084e-05,1.0181851981576012e-05,9.561902283402351e-06,8.971701954709805e-06,8.410433641718756e-06,7.877255897827375e-06,7.371307592827763e-06,6.8917121293781425e-06,6.4375814571450035e-06,6.0080198768603386e-06,5.60212762830647e-06,5.2190042579344645e-06,4.857751763433715e-06,4.517477514092833e-06,4.19729694721973e-06,3.896336042217063e-06,3.6137335751346454e-06,3.348643157640735e-06,3.100235065367974e-06,2.8676978614969126e-06,2.65023982224135e-06,2.447090171596493e-06,2.2575001333056353e-06,2.0807438084967212e-06,1.916118887840348e-06,1.762947207389749e-06,1.6205751574856999e-06,1.4883739542501049e-06,1.3657397832566742e-06,1.2520938249610117e-06,1.1468821714014837e-06,1.049575643552077e-06],[1.079453123375744e-06,1.1795296029102836e-06,1.2877362374183039e-06,1.404617269666834e-06,1.5307423752985233e-06,1.6667068506780568e-06,1.8131316985625036e-06,1.9706636019473276e-06,2.1399747763059473e-06,2.321762690367744e-06,2.5167496455731685e-06,2.725682204411079e-06,2.9493304579882733e-06,3.1884871234099064e-06,3.4439664618672658e-06,3.716603008740968e-06,4.007250107537397e-06,4.316778240087856e-06,4.64607314615647e-06,4.996033726427049e-06,5.367569723772022e-06,5.761599178749351e-06,6.179045656425486e-06,6.620835242882762e-06,7.0878933111357204e-06,7.581141057649232e-06,8.10149181221721e-06,8.649847125618142e-06,9.22709264120538e-06,9.834093758407799e-06,1.0471691097999837e-05,1.114069578093838e-05,1.184188453454482e-05,1.2575994641820559e-05,1.3343718751708098e-05,1.4145699570132628e-05,1.4982524453662822e-05,1.5854719929597763e-05,1.6762746168200242e-05,1.7706991434636587e-05,1.868776654992973e-05,1.9705299391865857e-05,2.0759729468295616e-05,2.1851102596618218e-05,2.2979365724412283e-05,2.4144361927160176e-05,2.534582561978623e-05,2.6583378019274648e-05,2.785652289593463e-05,2.9164642650923173e-05,3.050699475740634e-05,3.188270860222683e-05,3.329078276413884e-05,3.473008276356454e-05,3.619933931741357e-05,3.7697147130787014e-05,3.922196425535902e-05,4.077211204189783e-05,4.234577571175708e-05,4.394100556924915e-05,4.5555718873615624e-05,4.7187702385851156e-05,4.8834615601934175e-05,5.0493994680092076e-05,5.2163257065602354e-05,5.3839706812333547e-05,5.552054059578602e-05,5.720285440783769e-05,5.888365091876411e-05,6.055984748742232e-05,6.222828479580081e-05,6.388573607947946e-05,6.552891692095507e-05,6.715449556830695e-05,6.875910373734374e-05,7.033934785122595e-05,7.189182066763666e-05,7.341311323991451e-05,7.48998271552022e-05,7.63485869896362e-05,7.775605291794167e-05,7.911893341252693e-05,8.04339979653262e-05,8.169808976423424e-05,8.290813825503887e-05,8.406117151929609e-05,8.515432839862582e-05,8.618487029643689e-05,8.715019258912408e-05,8.804783558031579e-05,8.887549493378234e-05,8.963103152313184e-05,9.031248063940969e-05,9.091806050115754e-05,9.144618001535758e-05,9.189544574195877e-05,9.226466801932342e-05,9.255286621290993e-05,9.275927305478272e-05,9.28833380470734e-05,9.292472990826337e-05,9.28833380470734e-05,9.275927305478272e-05,9.255286621290993e-05,9.226466801932342e-05,9.189544574195877e-05,9.144618001535758e-05,9.091806050115754e-05,9.031248063940969e-05,8.963103152313184e-05,8.887549493378234e-05,8.804783558031579e-05,8.715019258912408e-05,8.618487029643689e-05,8.515432839862582e-05,8.406117151929609e-05,8.290813825503887e-05,8.169808976423424e-05,8.04339979653262e-05,7.911893341252693e-05,7.775605291794167e-05,7.63485869896362e-05,7.48998271552022e-05,7.341311323991451e-05,7.189182066763666e-05,7.033934785122595e-05,6.875910373734374e-05,6.715449556830695e-05,6.552891692095507e-05,6.388573607947946e-05,6.222828479580081e-05,6.055984748742232e-05,5.888365091876411e-05,5.720285440783769e-05,5.552054059578602e-05,5.3839706812333547e-05,5.2163257065602354e-05,5.0493994680092076e-05,4.8834615601934175e-05,4.7187702385851156e-05,4.5555718873615624e-05,4.394100556924915e-05,4.234577571175708e-05,4.077211204189783e-05,3.922196425535902e-05,3.7697147130787014e-05,3.619933931741357e-05,3.473008276356454e-05,3.329078276413884e-05,3.188270860222683e-05,3.050699475740634e-05,2.9164642650923173e-05,2.785652289593463e-05,2.6583378019274648e-05,2.534582561978623e-05,2.4144361927160176e-05,2.2979365724412283e-05,2.1851102596618218e-05,2.0759729468295616e-05,1.9705299391865857e-05,1.868776654992973e-05,1.7706991434636587e-05,1.6762746168200242e-05,1.5854719929597763e-05,1.4982524453662822e-05,1.4145699570132628e-05,1.3343718751708098e-05,1.2575994641820559e-05,1.184188453454482e-05,1.114069578093838e-05,1.0471691097999837e-05,9.834093758407799e-06,9.22709264120538e-06,8.649847125618142e-06,8.10149181221721e-06,7.581141057649232e-06,7.0878933111357204e-06,6.620835242882762e-06,6.179045656425486e-06,5.761599178749351e-06,5.367569723772022e-06,4.996033726427049e-06,4.64607314615647e-06,4.316778240087856e-06,4.007250107537397e-06,3.716603008740968e-06,3.4439664618672658e-06,3.1884871234099064e-06,2.9493304579882733e-06,2.725682204411079e-06,2.5167496455731685e-06,2.321762690367744e-06,2.1399747763059473e-06,1.9706636019473276e-06,1.8131316985625036e-06,1.6667068506780568e-06,1.5307423752985233e-06,1.404617269666834e-06,1.2877362374183039e-06,1.1795296029102836e-06,1.079453123375744e-06],[1.1091922977364429e-06,1.2120259066078964e-06,1.3232136580360795e-06,1.4433147887976673e-06,1.5729146692263505e-06,1.712624996234464e-06,1.8630838813435719e-06,2.0249558238099296e-06,2.19893155879321e-06,2.3857277704418857e-06,2.5860866597622273e-06,2.8007753572062087e-06,3.0305851700624187e-06,3.276330654969103e-06,3.53884850619502e-06,3.818996250756695e-06,4.117650741964485e-06,4.435706443618336e-06,4.774073497810474e-06,5.133675570139078e-06,5.5154474670956665e-06,5.920332521460374e-06,6.349279742723268e-06,6.803240730844849e-06,7.283166353072646e-06,7.790003185039644e-06,8.324689718979333e-06,8.888152343595269e-06,9.481301101912764e-06,1.0105025235308022e-05,1.0760188523845346e-05,1.144762443504493e-05,1.2168131095239154e-05,1.2922466099740583e-05,1.3711341180124605e-05,1.453541674900803e-05,1.5395296344764033e-05,1.6291521000636243e-05,1.7224563564680847e-05,1.819482299885613e-05,1.9202618687373533e-05,2.024818478610311e-05,2.1331664646367897e-05,2.2453105347846677e-05,2.361245237651203e-05,2.480954448454085e-05,2.6044108769929397e-05,2.731575601410527e-05,2.8623976316138998e-05,2.9968135062201666e-05,3.1347469268679426e-05,3.2761084336828266e-05,3.420795125602365e-05,3.568690429152229e-05,3.719663919120155e-05,3.873571194397452e-05,4.030253812049499e-05,4.189539282437039e-05,4.351241127939778e-05,4.515159007533842e-05,4.6810789091461336e-05,4.848773411353287e-05,5.018002015612351e-05,5.1885115498070155e-05,5.360036643469158e-05,5.532300274593895e-05,5.705014387509729e-05,5.877880580797293e-05,6.050590863773881e-05,6.222828479580081e-05,6.39426879242314e-05,6.564580236053083e-05,6.733425320076098e-05,6.900461690249246e-05,7.065343238455306e-05,7.227721257630426e-05,7.387245636514321e-05,7.543566088716755e-05,7.69633341024876e-05,7.84520075935594e-05,7.989824952217668e-05,8.129867767842837e-05,8.264997255303075e-05,8.394889036300083e-05,8.519227595967294e-05,8.637707554758688e-05,8.750034914281096e-05,8.855928269980697e-05,8.955119983700832e-05,9.047357309285963e-05,9.132403464615402e-05,9.210038643709031e-05,9.280060962854387e-05,9.342287335057974e-05,9.396554267521246e-05,9.442718577280675e-05,9.48065802062814e-05,9.510271832439442e-05,9.531481172080742e-05,9.544229473131299e-05,9.548482694751271e-05,9.544229473131299e-05,9.531481172080742e-05,9.510271832439442e-05,9.48065802062814e-05,9.442718577280675e-05,9.396554267521246e-05,9.342287335057974e-05,9.280060962854387e-05,9.210038643709031e-05,9.132403464615402e-05,9.047357309285963e-05,8.955119983700832e-05,8.855928269980697e-05,8.750034914281096e-05,8.637707554758688e-05,8.519227595967294e-05,8.394889036300083e-05,8.264997255303075e-05,8.129867767842837e-05,7.989824952217668e-05,7.84520075935594e-05,7.69633341024876e-05,7.543566088716755e-05,7.387245636514321e-05,7.227721257630426e-05,7.065343238455306e-05,6.900461690249246e-05,6.733425320076098e-05,6.564580236053083e-05,6.39426879242314e-05,6.222828479580081e-05,6.050590863773881e-05,5.877880580797293e-05,5.705014387509729e-05,5.532300274593895e-05,5.360036643469158e-05,5.1885115498070155e-05,5.018002015612351e-05,4.848773411353287e-05,4.6810789091461336e-05,4.515159007533842e-05,4.351241127939778e-05,4.189539282437039e-05,4.030253812049499e-05,3.873571194397452e-05,3.719663919120155e-05,3.568690429152229e-05,3.420795125602365e-05,3.2761084336828266e-05,3.1347469268679426e-05,2.9968135062201666e-05,2.8623976316138998e-05,2.731575601410527e-05,2.6044108769929397e-05,2.480954448454085e-05,2.361245237651203e-05,2.2453105347846677e-05,2.1331664646367897e-05,2.024818478610311e-05,1.9202618687373533e-05,1.819482299885613e-05,1.7224563564680847e-05,1.6291521000636243e-05,1.5395296344764033e-05,1.453541674900803e-05,1.3711341180124605e-05,1.2922466099740583e-05,1.2168131095239154e-05,1.144762443504493e-05,1.0760188523845346e-05,1.0105025235308022e-05,9.481301101912764e-06,8.888152343595269e-06,8.324689718979333e-06,7.790003185039644e-06,7.283166353072646e-06,6.803240730844849e-06,6.349279742723268e-06,5.920332521460374e-06,5.5154474670956665e-06,5.133675570139078e-06,4.774073497810474e-06,4.435706443618336e-06,4.117650741964485e-06,3.818996250756695e-06,3.53884850619502e-06,3.276330654969103e-06,3.0305851700624187e-06,2.8007753572062087e-06,2.5860866597622273e-06,2.3857277704418857e-06,2.19893155879321e-06,2.0249558238099296e-06,1.8630838813435719e-06,1.712624996234464e-06,1.5729146692263505e-06,1.4433147887976673e-06,1.3232136580360795e-06,1.2120259066078964e-06,1.1091922977364429e-06],[1.1387356509521463e-06,1.2443082345131418e-06,1.358457473341126e-06,1.4817574994925713e-06,1.6148092746486442e-06,1.7582407882779643e-06,1.9127071480118873e-06,2.0788905520541637e-06,2.2575001333056353e-06,2.449271664807644e-06,2.654967116101213e-06,2.8753740501692233e-06,3.1113048507815698e-06,3.3635957703045765e-06,3.633105788371195e-06,3.920715272242689e-06,4.227324430230274e-06,4.553851550190404e-06,4.9012310158633605e-06,5.270411094694158e-06,5.66235149175901e-06,6.078020665520567e-06,6.5183929023506666e-06,6.9844451480888e-06,7.47715359634566e-06,7.997490034810185e-06,8.546417952470348e-06,9.124888412406497e-06,9.733835696653346e-06,1.0374172731544279e-05,1.1046786303938348e-05,1.1752532080775454e-05,1.2492229446494612e-05,1.3266656174970714e-05,1.4076542954760163e-05,1.492256778857956e-05,1.580535029005555e-05,1.672544590286019e-05,1.7683340069364633e-05,1.867944237788479e-05,1.9714080719435305e-05,2.0787495486631267e-05,2.1899833848960324e-05,2.3051144140069208e-05,2.424137039394856e-05,2.5470347067937132e-05,2.6737793991282286e-05,2.804331157856921e-05,2.9386376347649638e-05,3.0766336781745974e-05,3.218240957516455e-05,3.363367630151061e-05,3.511908054244645e-05,3.66374255138667e-05,3.8187372224874186e-05,3.97674382031254e-05,4.13759968179751e-05,4.301127723038988e-05,4.46713649958251e-05,4.635420334318076e-05,4.805759514957864e-05,4.9779205627055394e-05,5.1516565733359145e-05,5.3267076314896246e-05,5.502801298552212e-05,5.679653174033607e-05,5.856967529895253e-05,6.034438016791571e-05,6.21174844070348e-05,6.388573607947946e-05,6.564580236053083e-05,6.739427927496956e-05,6.912770202824136e-05,7.084255589181372e-05,7.253528759856632e-05,7.420231719968276e-05,7.584005033037433e-05,7.744489082790698e-05,7.9013253641857e-05,8.054157797332802e-05,8.20263405770525e-05,8.346406915790846e-05,8.485135579143344e-05,8.618487029643689e-05,8.746137348682177e-05,8.867773022924084e-05,8.983092223324698e-05,9.091806050115754e-05,9.193639736594341e-05,9.28833380470734e-05,9.375645165638787e-05,9.455348158873035e-05,9.527235523521968e-05,9.591119296067311e-05,9.646831629077418e-05,9.69422552590842e-05,9.733175486889219e-05,9.763578063015047e-05,9.785352313730627e-05,9.79844016596776e-05,9.802806672208332e-05,9.79844016596776e-05,9.785352313730627e-05,9.763578063015047e-05,9.733175486889219e-05,9.69422552590842e-05,9.646831629077418e-05,9.591119296067311e-05,9.527235523521968e-05,9.455348158873035e-05,9.375645165638787e-05,9.28833380470734e-05,9.193639736594341e-05,9.091806050115754e-05,8.983092223324698e-05,8.867773022924084e-05,8.746137348682177e-05,8.618487029643689e-05,8.485135579143344e-05,8.346406915790846e-05,8.20263405770525e-05,8.054157797332802e-05,7.9013253641857e-05,7.744489082790698e-05,7.584005033037433e-05,7.420231719968276e-05,7.253528759856632e-05,7.084255589181372e-05,6.912770202824136e-05,6.739427927496956e-05,6.564580236053083e-05,6.388573607947946e-05,6.21174844070348e-05,6.034438016791571e-05,5.856967529895253e-05,5.679653174033607e-05,5.502801298552212e-05,5.3267076314896246e-05,5.1516565733359145e-05,4.9779205627055394e-05,4.805759514957864e-05,4.635420334318076e-05,4.46713649958251e-05,4.301127723038988e-05,4.13759968179751e-05,3.97674382031254e-05,3.8187372224874186e-05,3.66374255138667e-05,3.511908054244645e-05,3.363367630151061e-05,3.218240957516455e-05,3.0766336781745974e-05,2.9386376347649638e-05,2.804331157856921e-05,2.6737793991282286e-05,2.5470347067937132e-05,2.424137039394856e-05,2.3051144140069208e-05,2.1899833848960324e-05,2.0787495486631267e-05,1.9714080719435305e-05,1.867944237788479e-05,1.7683340069364633e-05,1.672544590286019e-05,1.580535029005555e-05,1.492256778857956e-05,1.4076542954760163e-05,1.3266656174970714e-05,1.2492229446494612e-05,1.1752532080775454e-05,1.1046786303938348e-05,1.0374172731544279e-05,9.733835696653346e-06,9.124888412406497e-06,8.546417952470348e-06,7.997490034810185e-06,7.47715359634566e-06,6.9844451480888e-06,6.5183929023506666e-06,6.078020665520567e-06,5.66235149175901e-06,5.270411094694158e-06,4.9012310158633605e-06,4.553851550190404e-06,4.227324430230274e-06,3.920715272242689e-06,3.633105788371195e-06,3.3635957703045765e-06,3.1113048507815698e-06,2.8753740501692233e-06,2.654967116101213e-06,2.449271664807644e-06,2.2575001333056353e-06,2.0788905520541637e-06,1.9127071480118873e-06,1.7582407882779643e-06,1.6148092746486442e-06,1.4817574994925713e-06,1.358457473341126e-06,1.2443082345131418e-06,1.1387356509521463e-06],[1.1680246396995243e-06,1.276312615730549e-06,1.3933978439330286e-06,1.5198692233967916e-06,1.6563431729109838e-06,1.803463834223698e-06,1.9619031647417644e-06,2.1323609092307683e-06,2.315564439930537e-06,2.5122684544223715e-06,2.7232545205775084e-06,2.9493304579882733e-06,3.191329545440078e-06,3.4501095442298984e-06,3.726551527480762e-06,4.021558506047103e-06,4.336053842157443e-06,4.670979442602688e-06,5.027293724053703e-06,5.405969343983605e-06,5.807990691679691e-06,6.234351134958238e-06,6.686050019442155e-06,7.164089418625164e-06,7.669470634424399e-06,8.203190449512195e-06,8.766237134412172e-06,9.359586214138256e-06,9.984196001039815e-06,1.0641002902482977e-05,1.1330916514036014e-05,1.2054814510924375e-05,1.2813537352664151e-05,1.3607882817957741e-05,1.443860038912539e-05,1.5306385507535e-05,1.6211873723660822e-05,1.7155634767531416e-05,1.813816656739744e-05,1.91598892464409e-05,2.0221139129237125e-05,2.13221627914487e-05,2.2463111187853966e-05,2.3644033895271084e-05,2.486487350821016e-05,2.61254602261498e-05,2.7425506672171452e-05,2.876460298327507e-05,3.0142212213026164e-05,3.155766608723064e-05,3.3010161153085516e-05,3.4498755361698294e-05,3.6022365122994985e-05,3.757976287083914e-05,3.9169575174655426e-05,4.0790281431990214e-05,4.244021317424701e-05,4.411755401531173e-05,4.5820340269936114e-05,4.754646226558902e-05,4.929366636802615e-05,5.105955773708651e-05,5.284160382521679e-05,5.463713862697737e-05,5.644336768331865e-05,5.825737383976613e-05,6.0076123752844546e-05,6.189647513414228e-05,6.371518471640144e-05,6.552891692095507e-05,6.733425320076098e-05,6.912770202824136e-05,7.090570949217236e-05,7.266467046301897e-05,7.440094028142196e-05,7.61108469200561e-05,7.779070356483625e-05,7.943682155748752e-05,8.104552363786093e-05,8.261315742109926e-05,8.413610904187667e-05,8.561081689548243e-05,8.703378540351861e-05,8.840159873046448e-05,8.971093437634323e-05,9.095857657022923e-05,9.214142938936893e-05,9.325652952926362e-05,9.430105865118028e-05,9.527235523521968e-05,9.616792586926768e-05,9.698545590688059e-05,9.772281943038853e-05,9.837808845922352e-05,9.894954134766643e-05,9.9435670320828e-05,9.983518810270187e-05,0.00010014703359551328,0.00010037037657529553,0.0001005046213746125,0.00010054940952956425,0.0001005046213746125,0.00010037037657529553,0.00010014703359551328,9.983518810270187e-05,9.9435670320828e-05,9.894954134766643e-05,9.837808845922352e-05,9.772281943038853e-05,9.698545590688059e-05,9.616792586926768e-05,9.527235523521968e-05,9.430105865118028e-05,9.325652952926362e-05,9.214142938936893e-05,9.095857657022923e-05,8.971093437634323e-05,8.840159873046448e-05,8.703378540351861e-05,8.561081689548243e-05,8.413610904187667e-05,8.261315742109926e-05,8.104552363786093e-05,7.943682155748752e-05,7.779070356483625e-05,7.61108469200561e-05,7.440094028142196e-05,7.266467046301897e-05,7.090570949217236e-05,6.912770202824136e-05,6.733425320076098e-05,6.552891692095507e-05,6.371518471640144e-05,6.189647513414228e-05,6.0076123752844546e-05,5.825737383976613e-05,5.644336768331865e-05,5.463713862697737e-05,5.284160382521679e-05,5.105955773708651e-05,4.929366636802615e-05,4.754646226558902e-05,4.5820340269936114e-05,4.411755401531173e-05,4.244021317424701e-05,4.0790281431990214e-05,3.9169575174655426e-05,3.757976287083914e-05,3.6022365122994985e-05,3.4498755361698294e-05,3.3010161153085516e-05,3.155766608723064e-05,3.0142212213026164e-05,2.876460298327507e-05,2.7425506672171452e-05,2.61254602261498e-05,2.486487350821016e-05,2.3644033895271084e-05,2.2463111187853966e-05,2.13221627914487e-05,2.0221139129237125e-05,1.91598892464409e-05,1.813816656739744e-05,1.7155634767531416e-05,1.6211873723660822e-05,1.5306385507535e-05,1.443860038912539e-05,1.3607882817957741e-05,1.2813537352664151e-05,1.2054814510924375e-05,1.1330916514036014e-05,1.0641002902482977e-05,9.984196001039815e-06,9.359586214138256e-06,8.766237134412172e-06,8.203190449512195e-06,7.669470634424399e-06,7.164089418625164e-06,6.686050019442155e-06,6.234351134958238e-06,5.807990691679691e-06,5.405969343983605e-06,5.027293724053703e-06,4.670979442602688e-06,4.336053842157443e-06,4.021558506047103e-06,3.726551527480762e-06,3.4501095442298984e-06,3.191329545440078e-06,2.9493304579882733e-06,2.7232545205775084e-06,2.5122684544223715e-06,2.315564439930537e-06,2.1323609092307683e-06,1.9619031647417644e-06,1.803463834223698e-06,1.6563431729109838e-06,1.5198692233967916e-06,1.3933978439330286e-06,1.276312615730549e-06,1.1680246396995243e-06],[1.1969998769396995e-06,1.3079741574279356e-06,1.427963923898854e-06,1.5575726842872159e-06,1.697432148909458e-06,1.8482024387655944e-06,2.010572180538612e-06,2.1852584775924526e-06,2.3730067461212363e-06,2.574590405521471e-06,2.790810412052034e-06,3.0224946249204617e-06,3.270496994094667e-06,3.535696559392842e-06,3.818996250756694e-06,4.121321480069583e-06,4.443618515446361e-06,4.78685262960002e-06,5.15200601468481e-06,5.540075456929422e-06,5.952069765408342e-06,6.389006950455795e-06,6.85191114850434e-06,7.3418092915277546e-06,7.8597275207827e-06,8.406687346171928e-06,8.983701554288255e-06,9.591769870036386e-06,1.0231874378661165e-05,1.0904974717026338e-05,1.1612003045076383e-05,1.2353858810563634e-05,1.3131403322319383e-05,1.394545414957645e-05,1.4796779367095083e-05,1.5686091668086972e-05,1.661404236915419e-05,1.75812153336425e-05,1.8588120841930005e-05,1.9635189439212453e-05,2.0722765793283328e-05,2.185110259661822e-05,2.3020354548737127e-05,2.423057245631246e-05,2.548169748979387e-05,2.6773555636411172e-05,2.810585239027429e-05,2.9478167720894188e-05,3.0889951361783184e-05,3.2340518460840644e-05,3.382904563397552e-05,3.535456746284809e-05,3.6915973476719016e-05,3.8512005657166155e-05,4.0141256502863106e-05,4.180216768970605e-05,4.349302935932661e-05,4.52119800664426e-05,4.6957007412581756e-05,4.8725949390476125e-05,5.051649645988024e-05,5.232619437173071e-05,5.415244775345865e-05,5.599252446391338e-05,5.7843560721780004e-05,5.97025670066081e-05,6.156643472664096e-05,6.343194364258381e-05,6.529577003130905e-05,6.715449556830695e-05,6.900461690249246e-05,7.084255589181372e-05,7.266467046301897e-05,7.446726605397054e-05,7.624660759208836e-05,7.799893195790823e-05,7.972046087839013e-05,8.140741419055542e-05,8.305602341230522e-05,8.466254555391474e-05,8.622327710074638e-05,8.773456809520878e-05,8.919283624394111e-05,9.059458097464465e-05,9.193639736594341e-05,9.32149898731447e-05,9.442718577280675e-05,9.556994824960924e-05,9.66403890501696e-05,9.763578063015047e-05,9.85535677232567e-05,9.939137826351116e-05,0.00010014703359551328,0.00010081855791119865,0.00010140418685590908,0.00010190237525131906,0.00010231180388791122,0.00010263138534521292,0.00010286026880385592,0.0001029978438196566,0.00010304374303628561,0.0001029978438196566,0.00010286026880385592,0.00010263138534521292,0.00010231180388791122,0.00010190237525131906,0.00010140418685590908,0.00010081855791119865,0.00010014703359551328,9.939137826351116e-05,9.85535677232567e-05,9.763578063015047e-05,9.66403890501696e-05,9.556994824960924e-05,9.442718577280675e-05,9.32149898731447e-05,9.193639736594341e-05,9.059458097464465e-05,8.919283624394111e-05,8.773456809520878e-05,8.622327710074638e-05,8.466254555391474e-05,8.305602341230522e-05,8.140741419055542e-05,7.972046087839013e-05,7.799893195790823e-05,7.624660759208836e-05,7.446726605397054e-05,7.266467046301897e-05,7.084255589181372e-05,6.900461690249246e-05,6.715449556830695e-05,6.529577003130905e-05,6.343194364258381e-05,6.156643472664096e-05,5.97025670066081e-05,5.7843560721780004e-05,5.599252446391338e-05,5.415244775345865e-05,5.232619437173071e-05,5.051649645988024e-05,4.8725949390476125e-05,4.6957007412581756e-05,4.52119800664426e-05,4.349302935932661e-05,4.180216768970605e-05,4.0141256502863106e-05,3.8512005657166155e-05,3.6915973476719016e-05,3.535456746284809e-05,3.382904563397552e-05,3.2340518460840644e-05,3.0889951361783184e-05,2.9478167720894188e-05,2.810585239027429e-05,2.6773555636411172e-05,2.548169748979387e-05,2.423057245631246e-05,2.3020354548737127e-05,2.185110259661822e-05,2.0722765793283328e-05,1.9635189439212453e-05,1.8588120841930005e-05,1.75812153336425e-05,1.661404236915419e-05,1.5686091668086972e-05,1.4796779367095083e-05,1.394545414957645e-05,1.3131403322319383e-05,1.2353858810563634e-05,1.1612003045076383e-05,1.0904974717026338e-05,1.0231874378661165e-05,9.591769870036386e-06,8.983701554288255e-06,8.406687346171928e-06,7.8597275207827e-06,7.3418092915277546e-06,6.85191114850434e-06,6.389006950455795e-06,5.952069765408342e-06,5.540075456929422e-06,5.15200601468481e-06,4.78685262960002e-06,4.443618515446361e-06,4.121321480069583e-06,3.818996250756694e-06,3.535696559392842e-06,3.270496994094667e-06,3.0224946249204617e-06,2.790810412052034e-06,2.574590405521471e-06,2.3730067461212363e-06,2.1852584775924526e-06,2.010572180538612e-06,1.8482024387655944e-06,1.697432148909458e-06,1.5575726842872159e-06,1.427963923898854e-06,1.3079741574279356e-06,1.1969998769396995e-06],[1.225601324461851e-06,1.3392272552307937e-06,1.4620840905085086e-06,1.5947897586159728e-06,1.737991064131379e-06,1.8923639011692614e-06,2.0586133506498352e-06,2.2374736506039913e-06,2.429708028407431e-06,2.6361083837545353e-06,2.8574948111754947e-06,3.094714950975686e-06,3.3486431576407353e-06,3.6201794750104014e-06,3.910248407885206e-06,4.219797480197079e-06,4.5497955704540315e-06,4.9012310158633605e-06,5.2751094773514484e-06,5.672451558633991e-06,6.094290173549695e-06,6.541667657054456e-06,7.0156326165812035e-06,7.5172365219015256e-06,8.047530033176274e-06,8.607559068549545e-06,9.198360614418293e-06,9.82095828339177e-06,1.0476357626932433e-05,1.1165541211733782e-05,1.1889463471028914e-05,1.264904534422458e-05,1.3445168720504504e-05,1.4278670704327839e-05,1.5150337723046483e-05,1.606089949916167e-05,1.701102291201527e-05,1.8001305775945995e-05,1.903227056411302e-05,2.01043581092786e-05,2.1217921314824196e-05,2.2373218911129598e-05,2.3570409294148093e-05,2.4809544484540848e-05,2.6090564247067895e-05,2.7413290411049582e-05,2.8777421433590295e-05,3.0182527247875835e-05,3.162804443919823e-05,3.3113271791410544e-05,3.463736624625355e-05,3.619933931741358e-05,3.779805400025504e-05,3.9432222216914166e-05,4.1100402834836956e-05,4.280100029489064e-05,4.453226388287606e-05,4.629228767562047e-05,4.8079011189843545e-05,4.989022075867521e-05,5.172355165707389e-05,5.357649099346742e-05,5.5446381380733896e-05,5.733042539518314e-05,5.92256908275141e-05,6.112911672484442e-05,6.303752021786252e-05,6.494760412198154e-05,6.685596529611028e-05,6.875910373734374e-05,7.065343238455306e-05,7.253528759856632e-05,7.440094028142196e-05,7.624660759208836e-05,7.806846521112391e-05,7.986266010204268e-05,8.162532371269923e-05,8.335258555585082e-05,8.504058710424062e-05,8.668549593210769e-05,8.828352003200708e-05,8.983092223324699e-05,9.132403464615404e-05,9.275927305478272e-05,9.413315117962e-05,9.544229473131298e-05,9.668345517648477e-05,9.785352313730627e-05,9.894954134766645e-05,9.996871709052593e-05,0.000100908434043347,0.00010176626346134925,0.0001025399746317349,0.0001032275445359328,0.00010382716666130453,0.00010433725890860453,0.00010475647054675682,0.00010508368817216193,0.00010531804063573734,0.00010545890290717652,0.000105505898852436,0.00010545890290717652,0.00010531804063573734,0.00010508368817216193,0.00010475647054675682,0.00010433725890860453,0.00010382716666130453,0.0001032275445359328,0.0001025399746317349,0.00010176626346134925,0.000100908434043347,9.996871709052593e-05,9.894954134766645e-05,9.785352313730627e-05,9.668345517648477e-05,9.544229473131298e-05,9.413315117962e-05,9.275927305478272e-05,9.132403464615404e-05,8.983092223324699e-05,8.828352003200708e-05,8.668549593210769e-05,8.504058710424062e-05,8.335258555585082e-05,8.162532371269923e-05,7.986266010204268e-05,7.806846521112391e-05,7.624660759208836e-05,7.440094028142196e-05,7.253528759856632e-05,7.065343238455306e-05,6.875910373734374e-05,6.685596529611028e-05,6.494760412198154e-05,6.303752021786252e-05,6.112911672484442e-05,5.92256908275141e-05,5.733042539518314e-05,5.5446381380733896e-05,5.357649099346742e-05,5.172355165707389e-05,4.989022075867521e-05,4.8079011189843545e-05,4.629228767562047e-05,4.453226388287606e-05,4.280100029489064e-05,4.1100402834836956e-05,3.9432222216914166e-05,3.779805400025504e-05,3.619933931741358e-05,3.463736624625355e-05,3.3113271791410544e-05,3.162804443919823e-05,3.0182527247875835e-05,2.8777421433590295e-05,2.7413290411049582e-05,2.6090564247067895e-05,2.4809544484540848e-05,2.3570409294148093e-05,2.2373218911129598e-05,2.1217921314824196e-05,2.01043581092786e-05,1.903227056411302e-05,1.8001305775945995e-05,1.701102291201527e-05,1.606089949916167e-05,1.5150337723046483e-05,1.4278670704327839e-05,1.3445168720504504e-05,1.264904534422458e-05,1.1889463471028914e-05,1.1165541211733782e-05,1.0476357626932433e-05,9.82095828339177e-06,9.198360614418293e-06,8.607559068549545e-06,8.047530033176274e-06,7.5172365219015256e-06,7.0156326165812035e-06,6.541667657054456e-06,6.094290173549695e-06,5.672451558633991e-06,5.2751094773514484e-06,4.9012310158633605e-06,4.5497955704540315e-06,4.219797480197079e-06,3.910248407885206e-06,3.6201794750104014e-06,3.3486431576407353e-06,3.094714950975686e-06,2.8574948111754947e-06,2.6361083837545353e-06,2.429708028407431e-06,2.2374736506039913e-06,2.0586133506498352e-06,1.8923639011692614e-06,1.737991064131379e-06,1.5947897586159728e-06,1.4620840905085086e-06,1.3392272552307937e-06,1.225601324461851e-06],[1.2537684932246284e-06,1.3700058121374291e-06,1.495686183212519e-06,1.6314417362007794e-06,1.7779341407538546e-06,1.935854824604928e-06,2.1059250730735367e-06,2.288895998688107e-06,2.4855483695644363e-06,2.6966922850935694e-06,2.9231666874852578e-06,3.165838697790415e-06,3.425602765194196e-06,3.7033796186369878e-06,4.0001150101897075e-06,4.316778240087856e-06,4.654360453920836e-06,5.0138727031835005e-06,5.39634376122914e-06,5.802817687620412e-06,6.234351134958237e-06,6.692010393479909e-06,7.176868170055866e-06,7.690000099678406e-06,8.232480989122348e-06,8.805380794163188e-06,9.409760333556953e-06,1.0046666744911225e-05,1.0717128689599637e-05,1.142215131598342e-05,1.2162710992391047e-05,1.293974982355862e-05,1.3754169966534286e-05,1.4606827764384478e-05,1.5498527718390602e-05,1.6430016321774055e-05,1.7401975780314915e-05,1.8415017647515704e-05,1.9469676404183894e-05,2.056640301444383e-05,2.170555849221742e-05,2.288740751411031e-05,2.4112112116383145e-05,2.537972551525288e-05,2.6690186091133646e-05,2.8043311578569205e-05,2.9438793504506922e-05,3.087619191819702e-05,3.235493045635123e-05,3.3874291787244765e-05,3.543341347717894e-05,3.7031284322125724e-05,3.866674118643871e-05,4.033846638922921e-05,4.204498567736555e-05,4.378466682205535e-05,4.555571887361562e-05,4.735619210632657e-05,4.918397868221013e-05,5.1036814059183314e-05,5.291227916532355e-05,5.480780335696624e-05,5.672066817405325e-05,5.864801190159214e-05,6.058683494129283e-05,6.253400599245699e-05,6.448626903603402e-05,6.64402511104671e-05,6.839247086256826e-05,7.033934785122595e-05,7.227721257630426e-05,7.420231719968276e-05,7.61108469200561e-05,7.799893195790823e-05,7.986266010204268e-05,8.169808976423424e-05,8.350126348401228e-05,8.526822182133574e-05,8.699501757101786e-05,8.867773022924084e-05,9.031248063940969e-05,9.189544574195877e-05,9.342287335057974e-05,9.489109687570902e-05,9.629654991502248e-05,9.763578063015046e-05,9.890546582886408e-05,0.00010010242467260046,0.00010122363193039563,0.00010226623070207786,0.00010322754453593279,0.00010410508886897658,0.00010489658172144344,0.00010559995358109065,0.00010621335641741801,0.00010673517177085987,0.00010716401786739881,0.00010749875571483124,0.00010773849414304275,0.00010788259375707673,0.00010793066977845468,0.00010788259375707673,0.00010773849414304275,0.00010749875571483124,0.00010716401786739881,0.00010673517177085987,0.00010621335641741801,0.00010559995358109065,0.00010489658172144344,0.00010410508886897658,0.00010322754453593279,0.00010226623070207786,0.00010122363193039563,0.00010010242467260046,9.890546582886408e-05,9.763578063015046e-05,9.629654991502248e-05,9.489109687570902e-05,9.342287335057974e-05,9.189544574195877e-05,9.031248063940969e-05,8.867773022924084e-05,8.699501757101786e-05,8.526822182133574e-05,8.350126348401228e-05,8.169808976423424e-05,7.986266010204268e-05,7.799893195790823e-05,7.61108469200561e-05,7.420231719968276e-05,7.227721257630426e-05,7.033934785122595e-05,6.839247086256826e-05,6.64402511104671e-05,6.448626903603402e-05,6.253400599245699e-05,6.058683494129283e-05,5.864801190159214e-05,5.672066817405325e-05,5.480780335696624e-05,5.291227916532355e-05,5.1036814059183314e-05,4.918397868221013e-05,4.735619210632657e-05,4.555571887361562e-05,4.378466682205535e-05,4.204498567736555e-05,4.033846638922921e-05,3.866674118643871e-05,3.7031284322125724e-05,3.543341347717894e-05,3.3874291787244765e-05,3.235493045635123e-05,3.087619191819702e-05,2.9438793504506922e-05,2.8043311578569205e-05,2.6690186091133646e-05,2.537972551525288e-05,2.4112112116383145e-05,2.288740751411031e-05,2.170555849221742e-05,2.056640301444383e-05,1.9469676404183894e-05,1.8415017647515704e-05,1.7401975780314915e-05,1.6430016321774055e-05,1.5498527718390602e-05,1.4606827764384478e-05,1.3754169966534286e-05,1.293974982355862e-05,1.2162710992391047e-05,1.142215131598342e-05,1.0717128689599637e-05,1.0046666744911225e-05,9.409760333556953e-06,8.805380794163188e-06,8.232480989122348e-06,7.690000099678406e-06,7.176868170055866e-06,6.692010393479909e-06,6.234351134958237e-06,5.802817687620412e-06,5.39634376122914e-06,5.0138727031835005e-06,4.654360453920836e-06,4.316778240087856e-06,4.0001150101897075e-06,3.7033796186369878e-06,3.425602765194196e-06,3.165838697790415e-06,2.9231666874852578e-06,2.6966922850935694e-06,2.4855483695644363e-06,2.288895998688107e-06,2.1059250730735367e-06,1.935854824604928e-06,1.7779341407538546e-06,1.6314417362007794e-06,1.495686183212519e-06,1.3700058121374291e-06,1.2537684932246284e-06],[1.2814406506054494e-06,1.4002434649824145e-06,1.528697750880587e-06,1.6674495899040384e-06,1.8171752555382416e-06,1.978581436146356e-06,2.152405336670229e-06,2.3394146475824697e-06,2.540407369477036e-06,2.7562114815991606e-06,2.9876844426079917e-06,3.235712511944281e-06,3.5012098803473495e-06,3.7851175983371107e-06,4.088402291854173e-06,4.412054654739642e-06,4.757087708341396e-06,5.1245348192596935e-06,5.515447467095667e-06,5.930892755044583e-06,6.371950657283254e-06,6.839710998338935e-06,7.335270160994724e-06,7.8597275207827e-06,8.414181606737723e-06,8.999725989828021e-06,9.617444902337501e-06,1.0268408593442457e-05,1.0953668428292832e-05,1.1674251740066113e-05,1.2431156446697568e-05,1.3225345446291992e-05,1.4057740807573367e-05,1.492921777411507e-05,1.5840598603495776e-05,1.6792646264927472e-05,1.778605802128078e-05,1.882145892376921e-05,1.989939524982545e-05,2.1020327916886823e-05,2.2184625906880595e-05,2.3392559738138942e-05,2.4644295023254948e-05,2.5939886152990566e-05,2.72792701477426e-05,2.866226071924006e-05,3.008854258606425e-05,3.155766608723064e-05,3.3069042138429734e-05,3.4621937575574964e-05,3.6215470930033215e-05,3.7848608679304476e-05,3.952016201595935e-05,4.122878417632942e-05,4.29729683687682e-05,4.475104633925834e-05,4.6561187609733626e-05,4.840139942171561e-05,5.0269527414742545e-05,5.216325706560236e-05,5.408011591058659e-05,5.601747656887662e-05,5.797256058077727e-05,5.9942443069852776e-05,6.19240582331218e-05,6.391420565836649e-05,6.590955746233474e-05,6.790666623820849e-05,6.990197379520667e-05,7.189182066763666e-05,7.387245636514321e-05,7.584005033037433e-05,7.779070356483625e-05,7.972046087839013e-05,8.162532371269923e-05,8.350126348401228e-05,8.534423538601317e-05,8.715019258912408e-05,8.891510076865904e-05,9.063495289063205e-05,9.23057841808621e-05,9.392368720032551e-05,9.548482694751271e-05,9.698545590688059e-05,9.842192896137661e-05,9.979071808646506e-05,0.00010108842674312389,0.00010231180388791122,0.00010345775751942842,0.00010452336768232917,0.000105505898852436,0.0001064028116295138,0.00010721177366779736,0.0001079306697784547,0.00010855761114276103,0.00010909094357982895,0.0001095292548182499,0.00010987138072691177,0.00011011641046651892,0.00011026369052990986,0.00011031282764608881,0.00011026369052990986,0.00011011641046651892,0.00010987138072691177,0.0001095292548182499,0.00010909094357982895,0.00010855761114276103,0.0001079306697784547,0.00010721177366779736,0.0001064028116295138,0.000105505898852436,0.00010452336768232917,0.00010345775751942842,0.00010231180388791122,0.00010108842674312389,9.979071808646506e-05,9.842192896137661e-05,9.698545590688059e-05,9.548482694751271e-05,9.392368720032551e-05,9.23057841808621e-05,9.063495289063205e-05,8.891510076865904e-05,8.715019258912408e-05,8.534423538601317e-05,8.350126348401228e-05,8.162532371269923e-05,7.972046087839013e-05,7.779070356483625e-05,7.584005033037433e-05,7.387245636514321e-05,7.189182066763666e-05,6.990197379520667e-05,6.790666623820849e-05,6.590955746233474e-05,6.391420565836649e-05,6.19240582331218e-05,5.9942443069852776e-05,5.797256058077727e-05,5.601747656887662e-05,5.408011591058659e-05,5.216325706560236e-05,5.0269527414742545e-05,4.840139942171561e-05,4.6561187609733626e-05,4.475104633925834e-05,4.29729683687682e-05,4.122878417632942e-05,3.952016201595935e-05,3.7848608679304476e-05,3.6215470930033215e-05,3.4621937575574964e-05,3.3069042138429734e-05,3.155766608723064e-05,3.008854258606425e-05,2.866226071924006e-05,2.72792701477426e-05,2.5939886152990566e-05,2.4644295023254948e-05,2.3392559738138942e-05,2.2184625906880595e-05,2.1020327916886823e-05,1.989939524982545e-05,1.882145892376921e-05,1.778605802128078e-05,1.6792646264927472e-05,1.5840598603495776e-05,1.492921777411507e-05,1.4057740807573367e-05,1.3225345446291992e-05,1.2431156446697568e-05,1.1674251740066113e-05,1.0953668428292832e-05,1.0268408593442457e-05,9.617444902337501e-06,8.999725989828021e-06,8.414181606737723e-06,7.8597275207827e-06,7.335270160994724e-06,6.839710998338935e-06,6.371950657283254e-06,5.930892755044583e-06,5.515447467095667e-06,5.1245348192596935e-06,4.757087708341396e-06,4.412054654739642e-06,4.088402291854173e-06,3.7851175983371107e-06,3.5012098803473495e-06,3.235712511944281e-06,2.9876844426079917e-06,2.7562114815991606e-06,2.540407369477036e-06,2.3394146475824697e-06,2.152405336670229e-06,1.978581436146356e-06,1.8171752555382416e-06,1.6674495899040384e-06,1.528697750880587e-06,1.4002434649824145e-06,1.2814406506054494e-06],[1.3085570336025288e-06,1.4298738174046518e-06,1.5610463061414698e-06,1.7027342530578084e-06,1.855628242165995e-06,2.0204499159609352e-06,2.1979520792731976e-06,2.388918667564083e-06,2.5941645678043992e-06,2.8145352799901964e-06,3.0509064073411196e-06,3.304182963307649e-06,3.5752984836890655e-06,3.86521393244123e-06,4.174916390138534e-06,4.505417514553275e-06,4.857751763433715e-06,5.2329743703034814e-06,5.632159064973708e-06,6.056395531458306e-06,6.506786597113747e-06,6.984445148088801e-06,7.4904907675664005e-06,8.026046094807591e-06,8.5922329046636e-06,9.190167909002071e-06,9.820958283391767e-06,1.0485696924399281e-05,1.118545744496268e-05,1.1921288917510408e-05,1.2694210376776965e-05,1.350520509661672e-05,1.4355214657518527e-05,1.5245132823960286e-05,1.6175799253196128e-05,1.7147993059520812e-05,1.816242626048519e-05,1.9219737133922437e-05,2.032048351696414e-05,2.146513608045585e-05,2.2654071614298784e-05,2.3887566361225022e-05,2.516578943833212e-05,2.6488796387337188e-05,2.7856522895934633e-05,2.92687787338339e-05,3.0725241947991123e-05,3.222545336220977e-05,3.37688114266512e-05,3.535456746284809e-05,3.6981821349535196e-05,3.864951769399018e-05,4.035644253259901e-05,4.2101220603019226e-05,4.388231322860102e-05,4.569801685364153e-05,4.754646226558902e-05,4.9425614537486866e-05,5.133327372075859e-05,5.326707631489625e-05,5.522449753673919e-05,5.720285440783771e-05,5.9199309673906954e-05,6.12108765656177e-05,6.323442440496863e-05,6.526668505627501e-05,6.730426021542148e-05,6.934362952550557e-05,7.138115950137814e-05,7.341311323991451e-05,7.543566088716755e-05,7.744489082790698e-05,7.943682155748752e-05,8.140741419055542e-05,8.335258555585082e-05,8.526822182133574e-05,8.715019258912408e-05,8.899436539525393e-05,9.07966205452696e-05,9.255286621290993e-05,9.425905372597244e-05,9.591119296067311e-05,9.750536776358193e-05,9.903775131851339e-05,0.0001005046213746125,0.00010190237525131906,0.0001032275445359328,0.0001044768093901449,0.00010564701238315567,0.00010673517177085988,0.00010773849414304276,0.00010865438636358267,0.00010948046673227803,0.00011021457530108743,0.00011085478328226223,0.00011139940149102895,0.00011184698777110504,0.0001121963533573658,0.00011244656813637505,0.00011259696477219942,0.0001126471416718916,0.00011259696477219942,0.00011244656813637505,0.0001121963533573658,0.00011184698777110504,0.00011139940149102895,0.00011085478328226223,0.00011021457530108743,0.00010948046673227803,0.00010865438636358267,0.00010773849414304276,0.00010673517177085988,0.00010564701238315567,0.0001044768093901449,0.0001032275445359328,0.00010190237525131906,0.0001005046213746125,9.903775131851339e-05,9.750536776358193e-05,9.591119296067311e-05,9.425905372597244e-05,9.255286621290993e-05,9.07966205452696e-05,8.899436539525393e-05,8.715019258912408e-05,8.526822182133574e-05,8.335258555585082e-05,8.140741419055542e-05,7.943682155748752e-05,7.744489082790698e-05,7.543566088716755e-05,7.341311323991451e-05,7.138115950137814e-05,6.934362952550557e-05,6.730426021542148e-05,6.526668505627501e-05,6.323442440496863e-05,6.12108765656177e-05,5.9199309673906954e-05,5.720285440783771e-05,5.522449753673919e-05,5.326707631489625e-05,5.133327372075859e-05,4.9425614537486866e-05,4.754646226558902e-05,4.569801685364153e-05,4.388231322860102e-05,4.2101220603019226e-05,4.035644253259901e-05,3.864951769399018e-05,3.6981821349535196e-05,3.535456746284809e-05,3.37688114266512e-05,3.222545336220977e-05,3.0725241947991123e-05,2.92687787338339e-05,2.7856522895934633e-05,2.6488796387337188e-05,2.516578943833212e-05,2.3887566361225022e-05,2.2654071614298784e-05,2.146513608045585e-05,2.032048351696414e-05,1.9219737133922437e-05,1.816242626048519e-05,1.7147993059520812e-05,1.6175799253196128e-05,1.5245132823960286e-05,1.4355214657518527e-05,1.350520509661672e-05,1.2694210376776965e-05,1.1921288917510408e-05,1.118545744496268e-05,1.0485696924399281e-05,9.820958283391767e-06,9.190167909002071e-06,8.5922329046636e-06,8.026046094807591e-06,7.4904907675664005e-06,6.984445148088801e-06,6.506786597113747e-06,6.056395531458306e-06,5.632159064973708e-06,5.2329743703034814e-06,4.857751763433715e-06,4.505417514553275e-06,4.174916390138534e-06,3.86521393244123e-06,3.5752984836890655e-06,3.304182963307649e-06,3.0509064073411196e-06,2.8145352799901964e-06,2.5941645678043992e-06,2.388918667564083e-06,2.1979520792731976e-06,2.0204499159609352e-06,1.855628242165995e-06,1.7027342530578084e-06,1.5610463061414698e-06,1.4298738174046518e-06,1.3085570336025288e-06],[1.3350570669745875e-06,1.458830678210893e-06,1.5926595856132782e-06,1.7372169033138345e-06,1.8932072005765074e-06,2.0613667341237122e-06,2.2424635540925805e-06,2.4372974716879625e-06,2.6466998764337588e-06,2.8715333908338935e-06,3.1126913502465006e-06,3.3710970958571333e-06,3.6477030688159286e-06,3.943489693886528e-06,4.259464041347621e-06,4.596658256397e-06,4.9561277459384795e-06,5.338949113388535e-06,5.746217833025756e-06,6.179045656425485e-06,6.638557744675935e-06,7.1258895213616325e-06,7.642183242725185e-06,8.188584282976992e-06,8.766237134412172e-06,9.376281123810064e-06,1.0019845848528289e-05,1.0698046337753377e-05,1.141197794652401e-05,1.2162710992391049e-05,1.295128514690785e-05,1.3778703596541902e-05,1.4645926990048661e-05,1.555386719183433e-05,1.6503380863337563e-05,1.7495262896961583e-05,1.8530239729566738e-05,1.9608962564967605e-05,2.0732000537245186e-05,2.189983384896032e-05,2.3112846920514647e-05,2.4371321588925707e-05,2.5675430396138905e-05,2.7025230008665546e-05,2.842065481178967e-05,2.9861510722802436e-05,3.134746926867943e-05,3.2878061974290845e-05,3.4452675107607745e-05,3.607054482842063e-05,3.7730752786802505e-05,3.9432222216914166e-05,4.1173714570751745e-05,4.29538267350675e-05,4.477098887294765e-05,4.6623462929403663e-05,4.8509341837824885e-05,5.042654946125706e-05,5.237284129921716e-05,5.4345805987144913e-05,5.6342867611637486e-05,5.8361288860336433e-05,6.039817502075578e-05,6.245047883748515e-05,6.451500623209867e-05,6.658842288478472e-05,6.866726167121597e-05,7.074793094254546e-05,7.282672363068098e-05,7.48998271552022e-05,7.69633341024876e-05,7.9013253641857e-05,8.104552363786093e-05,8.305602341230522e-05,8.504058710424062e-05,8.699501757101786e-05,8.891510076865904e-05,9.07966205452696e-05,9.263537377706083e-05,9.442718577280675e-05,9.616792586926768e-05,9.785352313730629e-05,9.947998211613801e-05,0.00010104339849142175,0.0001025399746317349,0.00010396603489740845,0.00010531804063573734,0.00010659260477723842,0.0001077865059489075,0.00010889670202232566,0.00010992034301697819,0.00011085478328226225,0.0001116975928853557,0.00011244656813637506,0.00011309974118703519,0.00011365538864430751,0.00011411203914631227,0.00011446847985383806,0.00011472376181740531,0.00011487720418663378,0.00011492839723578082,0.00011487720418663378,0.00011472376181740531,0.00011446847985383806,0.00011411203914631227,0.00011365538864430751,0.00011309974118703519,0.00011244656813637506,0.0001116975928853557,0.00011085478328226225,0.00010992034301697819,0.00010889670202232566,0.0001077865059489075,0.00010659260477723842,0.00010531804063573734,0.00010396603489740845,0.0001025399746317349,0.00010104339849142175,9.947998211613801e-05,9.785352313730629e-05,9.616792586926768e-05,9.442718577280675e-05,9.263537377706083e-05,9.07966205452696e-05,8.891510076865904e-05,8.699501757101786e-05,8.504058710424062e-05,8.305602341230522e-05,8.104552363786093e-05,7.9013253641857e-05,7.69633341024876e-05,7.48998271552022e-05,7.282672363068098e-05,7.074793094254546e-05,6.866726167121597e-05,6.658842288478472e-05,6.451500623209867e-05,6.245047883748515e-05,6.039817502075578e-05,5.8361288860336433e-05,5.6342867611637486e-05,5.4345805987144913e-05,5.237284129921716e-05,5.042654946125706e-05,4.8509341837824885e-05,4.6623462929403663e-05,4.477098887294765e-05,4.29538267350675e-05,4.1173714570751745e-05,3.9432222216914166e-05,3.7730752786802505e-05,3.607054482842063e-05,3.4452675107607745e-05,3.2878061974290845e-05,3.134746926867943e-05,2.9861510722802436e-05,2.842065481178967e-05,2.7025230008665546e-05,2.5675430396138905e-05,2.4371321588925707e-05,2.3112846920514647e-05,2.189983384896032e-05,2.0732000537245186e-05,1.9608962564967605e-05,1.8530239729566738e-05,1.7495262896961583e-05,1.6503380863337563e-05,1.555386719183433e-05,1.4645926990048661e-05,1.3778703596541902e-05,1.295128514690785e-05,1.2162710992391049e-05,1.141197794652401e-05,1.0698046337753377e-05,1.0019845848528289e-05,9.376281123810064e-06,8.766237134412172e-06,8.188584282976992e-06,7.642183242725185e-06,7.1258895213616325e-06,6.638557744675935e-06,6.179045656425485e-06,5.746217833025756e-06,5.338949113388535e-06,4.9561277459384795e-06,4.596658256397e-06,4.259464041347621e-06,3.943489693886528e-06,3.6477030688159286e-06,3.3710970958571333e-06,3.1126913502465006e-06,2.8715333908338935e-06,2.6466998764337588e-06,2.4372974716879625e-06,2.2424635540925805e-06,2.0613667341237122e-06,1.8932072005765074e-06,1.7372169033138345e-06,1.5926595856132782e-06,1.458830678210893e-06,1.3350570669745875e-06],[1.3608805852492316e-06,1.4870483039665922e-06,1.6234658147489161e-06,1.7708192515276127e-06,1.929826811791004e-06,2.101238993404746e-06,2.2858387026175503e-06,2.484441221088509e-06,2.697894019603585e-06,2.9270764060568237e-06,3.172898995263931e-06,3.4363029882597273e-06,3.7182592489135373e-06,4.019767165984946e-06,4.341853289142992e-06,4.685569727990762e-06,5.051992303779998e-06,5.442218444271459e-06,5.857364813100167e-06,6.298564666043673e-06,6.7669649277676695e-06,7.263722983937866e-06,7.790003185039644e-06,8.34697305983588e-06,8.935799238115614e-06,9.557643084237424e-06,1.0213656044945543e-05,1.0904974717026338e-05,1.163271564256851e-05,1.2397969841882015e-05,1.3201797096505035e-05,1.404521999717227e-05,1.4929217774115066e-05,1.5854719929597766e-05,1.682259969514644e-05,1.7833667338475987e-05,1.8888663347648013e-05,1.9988251522473194e-05,2.113301200558392e-05,2.232343428792273e-05,2.355991022559382e-05,2.4842727107084608e-05,2.617206081175594e-05,2.7547969102198635e-05,2.8970385094535387e-05,3.0439110951986833e-05,3.195381184799555e-05,3.351401024588944e-05,3.511908054244645e-05,3.6768244122776584e-05,3.846056487364765e-05,4.019494520173449e-05,4.197012260225429e-05,4.378466682205535e-05,4.5636977659445325e-05,4.752528344087665e-05,4.9447640212050016e-05,5.140193167805695e-05,5.33858699238663e-05,5.539699694277919e-05,5.743268699644635e-05,5.949014982568225e-05,6.156643472664094e-05,6.365843550197039e-05,6.576289629135941e-05,6.787641828047346e-05,6.999546728167335e-05,7.211638217416826e-05,7.423538418541002e-05,7.63485869896362e-05,7.84520075935594e-05,8.054157797332802e-05,8.261315742109926e-05,8.466254555391474e-05,8.668549593210769e-05,8.867773022924084e-05,9.063495289063205e-05,9.255286621290993e-05,9.442718577280675e-05,9.625365612957819e-05,9.802806672208332e-05,9.974626787869841e-05,0.00010140418685590908,0.00010299784381965658,0.00010452336768232917,0.00010597701170771033,0.000107355168796236,0.00010865438636358265,0.00010987138072691177,0.00011100305091503223,0.00011204649182130351,0.00011299900662127529,0.00011385811838082778,0.00011462158078491376,0.00011528738792188187,0.00011585378306374541,0.00011631926638861247,0.00011668260159776843,0.00011694282138655263,0.00011709923173514609,0.00011715141499263169,0.00011709923173514609,0.00011694282138655263,0.00011668260159776843,0.00011631926638861247,0.00011585378306374541,0.00011528738792188187,0.00011462158078491376,0.00011385811838082778,0.00011299900662127529,0.00011204649182130351,0.00011100305091503223,0.00010987138072691177,0.00010865438636358265,0.000107355168796236,0.00010597701170771033,0.00010452336768232917,0.00010299784381965658,0.00010140418685590908,9.974626787869841e-05,9.802806672208332e-05,9.625365612957819e-05,9.442718577280675e-05,9.255286621290993e-05,9.063495289063205e-05,8.867773022924084e-05,8.668549593210769e-05,8.466254555391474e-05,8.261315742109926e-05,8.054157797332802e-05,7.84520075935594e-05,7.63485869896362e-05,7.423538418541002e-05,7.211638217416826e-05,6.999546728167335e-05,6.787641828047346e-05,6.576289629135941e-05,6.365843550197039e-05,6.156643472664094e-05,5.949014982568225e-05,5.743268699644635e-05,5.539699694277919e-05,5.33858699238663e-05,5.140193167805695e-05,4.9447640212050016e-05,4.752528344087665e-05,4.5636977659445325e-05,4.378466682205535e-05,4.197012260225429e-05,4.019494520173449e-05,3.846056487364765e-05,3.6768244122776584e-05,3.511908054244645e-05,3.351401024588944e-05,3.195381184799555e-05,3.0439110951986833e-05,2.8970385094535387e-05,2.7547969102198635e-05,2.617206081175594e-05,2.4842727107084608e-05,2.355991022559382e-05,2.232343428792273e-05,2.113301200558392e-05,1.9988251522473194e-05,1.8888663347648013e-05,1.7833667338475987e-05,1.682259969514644e-05,1.5854719929597766e-05,1.4929217774115066e-05,1.404521999717227e-05,1.3201797096505035e-05,1.2397969841882015e-05,1.163271564256851e-05,1.0904974717026338e-05,1.0213656044945543e-05,9.557643084237424e-06,8.935799238115614e-06,8.34697305983588e-06,7.790003185039644e-06,7.263722983937866e-06,6.7669649277676695e-06,6.298564666043673e-06,5.857364813100167e-06,5.442218444271459e-06,5.051992303779998e-06,4.685569727990762e-06,4.341853289142992e-06,4.019767165984946e-06,3.7182592489135373e-06,3.4363029882597273e-06,3.172898995263931e-06,2.9270764060568237e-06,2.697894019603585e-06,2.484441221088509e-06,2.2858387026175503e-06,2.101238993404746e-06,1.929826811791004e-06,1.7708192515276127e-06,1.6234658147489161e-06,1.4870483039665922e-06,1.3608805852492316e-06],[1.3859680574835336e-06,1.5144616445941208e-06,1.653393975964761e-06,1.8034638342236985e-06,1.965402656639251e-06,2.1399747763059477e-06,2.3279775321413095e-06,2.5302412353053318e-06,2.7476289794828896e-06,2.9810362823755698e-06,3.2313905457414113e-06,3.499650321406394e-06,3.786804370857482e-06,4.0938705063206725e-06,4.421894201635574e-06,4.77194696176644e-06,5.145124440444125e-06,5.542544296218757e-06,5.9653437781229626e-06,6.414677033203637e-06,6.891712129378143e-06,7.397627788409618e-06,7.93360982527547e-06,8.500847291821304e-06,9.100528324346546e-06,9.733835696653346e-06,1.0401942082100931e-05,1.1106005030335613e-05,1.184716166660303e-05,1.262652312388285e-05,1.3445168720504506e-05,1.4304139898391373e-05,1.520443393962408e-05,1.6146997481594417e-05,1.7132719853619765e-05,1.816242626048519e-05,1.92368708409531e-05,2.035672963180742e-05,2.152259347045592e-05,2.2734960871476687e-05,2.3994230914737155e-05,2.5300696184811722e-05,2.6654535803350546e-05,2.805580859778248e-05,2.9504446451243685e-05,3.1000247879886316e-05,3.254287188471427e-05,3.413183212579368e-05,3.576649146707323e-05,3.744605694010417e-05,3.916957517465543e-05,4.093592834356036e-05,4.2743830668095697e-05,4.459182552877267e-05,4.647828322460563e-05,4.840139942171561e-05,5.035919432952195e-05,5.23495126397815e-05,5.437002426035701e-05,5.641822587184878e-05,5.849144333111831e-05,6.058683494129285e-05,6.270139560308456e-05,6.483196185721802e-05,6.697521782246172e-05,6.912770202824136e-05,7.128581513510708e-05,7.344582853047835e-05,7.560389378113854e-05,7.775605291794167e-05,7.989824952217668e-05,8.20263405770525e-05,8.413610904187667e-05,8.622327710074638e-05,8.828352003200708e-05,9.031248063940969e-05,9.23057841808621e-05,9.425905372597244e-05,9.616792586926768e-05,9.802806672208332e-05,9.983518810270187e-05,0.00010158506384140502,0.00010327354611473317,0.00010489658172144344,0.00010645022821145188,0.0001079306697784547,0.00010933423282696514,0.00011065740112518444,0.00011189683045645287,0.00011304936268399885,0.00011411203914631227,0.00011508211330370016,0.00011595706256041995,0.00011673459919120301,0.00011741268030594929,0.00011798951679185814,0.00011846358117821927,0.00011883361437547957,0.00011909863124697383,0.00011925792497881196,0.00011931107022079307,0.00011925792497881196,0.00011909863124697383,0.00011883361437547957,0.00011846358117821927,0.00011798951679185814,0.00011741268030594929,0.00011673459919120301,0.00011595706256041995,0.00011508211330370016,0.00011411203914631227,0.00011304936268399885,0.00011189683045645287,0.00011065740112518444,0.00010933423282696514,0.0001079306697784547,0.00010645022821145188,0.00010489658172144344,0.00010327354611473317,0.00010158506384140502,9.983518810270187e-05,9.802806672208332e-05,9.616792586926768e-05,9.425905372597244e-05,9.23057841808621e-05,9.031248063940969e-05,8.828352003200708e-05,8.622327710074638e-05,8.413610904187667e-05,8.20263405770525e-05,7.989824952217668e-05,7.775605291794167e-05,7.560389378113854e-05,7.344582853047835e-05,7.128581513510708e-05,6.912770202824136e-05,6.697521782246172e-05,6.483196185721802e-05,6.270139560308456e-05,6.058683494129285e-05,5.849144333111831e-05,5.641822587184878e-05,5.437002426035701e-05,5.23495126397815e-05,5.035919432952195e-05,4.840139942171561e-05,4.647828322460563e-05,4.459182552877267e-05,4.2743830668095697e-05,4.093592834356036e-05,3.916957517465543e-05,3.744605694010417e-05,3.576649146707323e-05,3.413183212579368e-05,3.254287188471427e-05,3.1000247879886316e-05,2.9504446451243685e-05,2.805580859778248e-05,2.6654535803350546e-05,2.5300696184811722e-05,2.3994230914737155e-05,2.2734960871476687e-05,2.152259347045592e-05,2.035672963180742e-05,1.92368708409531e-05,1.816242626048519e-05,1.7132719853619765e-05,1.6146997481594417e-05,1.520443393962408e-05,1.4304139898391373e-05,1.3445168720504506e-05,1.262652312388285e-05,1.184716166660303e-05,1.1106005030335613e-05,1.0401942082100931e-05,9.733835696653346e-06,9.100528324346546e-06,8.500847291821304e-06,7.93360982527547e-06,7.397627788409618e-06,6.891712129378143e-06,6.414677033203637e-06,5.9653437781229626e-06,5.542544296218757e-06,5.145124440444125e-06,4.77194696176644e-06,4.421894201635574e-06,4.0938705063206725e-06,3.786804370857482e-06,3.499650321406394e-06,3.2313905457414113e-06,2.9810362823755698e-06,2.7476289794828896e-06,2.5302412353053318e-06,2.3279775321413095e-06,2.1399747763059477e-06,1.965402656639251e-06,1.8034638342236985e-06,1.653393975964761e-06,1.5144616445941208e-06,1.3859680574835336e-06],[1.4102608136199075e-06,1.5410065907141753e-06,1.682374078672459e-06,1.8350743081368657e-06,1.999851536748514e-06,2.177483494561101e-06,2.368781495965662e-06,2.5745904055214717e-06,2.7957884449131413e-06,3.0332868281586513e-06,3.2880292121848567e-06,3.5609909499738884e-06,3.853178133673071e-06,4.165626415359812e-06,4.499399593568069e-06,4.855587954220756e-06,5.2353063552784e-06,5.639692045213464e-06,6.069902206355929e-06,6.527111215232442e-06,7.012507613240197e-06,7.527290782358981e-06,8.072667322110202e-06,8.64984712561814e-06,9.260039154413525e-06,9.90444691353786e-06,1.0584263630552754e-05,1.1300667144223827e-05,1.2054814510924375e-05,1.2847836339178519e-05,1.3680830865224245e-05,1.455485778500928e-05,1.5470931860620565e-05,1.6430016321774058e-05,1.7433016085635733e-05,1.8480770820887214e-05,1.9574047884567435e-05,2.071353516279309e-05,2.189983384896032e-05,2.313345119543377e-05,2.4414793277011137e-05,2.5744157806585368e-05,2.7121727045387334e-05,2.854756085195217e-05,3.0021589915487833e-05,3.154360922060911e-05,3.3113271791410544e-05,3.473008276356454e-05,3.6393393833525235e-05,3.8102398133974386e-05,3.9856125584345934e-05,4.165343876459544e-05,4.349302935932661e-05,4.5373415217941295e-05,4.7292938074633496e-05,4.924976196980048e-05,5.124187241179506e-05,5.3267076314896246e-05,5.5323002745938946e-05,5.74071045082296e-05,5.951666058719802e-05,6.164877947771739e-05,6.380040340818626e-05,6.596831347133796e-05,6.81491356663518e-05,7.033934785122595e-05,7.253528759856632e-05,7.473316094199468e-05,7.692905199432292e-05,7.911893341252693e-05,8.129867767842837e-05,8.346406915790846e-05,8.561081689548243e-05,8.773456809520878e-05,8.983092223324699e-05,9.189544574195877e-05,9.392368720032551e-05,9.591119296067311e-05,9.785352313730629e-05,9.974626787869841e-05,0.00010158506384140502,0.00010336561078090514,0.00010508368817216193,0.00010673517177085987,0.0001083160500250494,0.0001098224402463283,0.00011125060444973216,0.00011259696477219942,0.00011385811838082778,0.00011503085178414538,0.0001161121544622734,0.0001170992317351461,0.00011798951679185813,0.00011878068180870442,0.00011947064808853243,0.00012005759515960742,0.00012053996877825471,0.00012091648778604642,0.00012118614977919155,0.00012134823555501704,0.00012140231230793472,0.00012134823555501704,0.00012118614977919155,0.00012091648778604642,0.00012053996877825471,0.00012005759515960742,0.00011947064808853243,0.00011878068180870442,0.00011798951679185813,0.0001170992317351461,0.0001161121544622734,0.00011503085178414538,0.00011385811838082778,0.00011259696477219942,0.00011125060444973216,0.0001098224402463283,0.0001083160500250494,0.00010673517177085987,0.00010508368817216193,0.00010336561078090514,0.00010158506384140502,9.974626787869841e-05,9.785352313730629e-05,9.591119296067311e-05,9.392368720032551e-05,9.189544574195877e-05,8.983092223324699e-05,8.773456809520878e-05,8.561081689548243e-05,8.346406915790846e-05,8.129867767842837e-05,7.911893341252693e-05,7.692905199432292e-05,7.473316094199468e-05,7.253528759856632e-05,7.033934785122595e-05,6.81491356663518e-05,6.596831347133796e-05,6.380040340818626e-05,6.164877947771739e-05,5.951666058719802e-05,5.74071045082296e-05,5.5323002745938946e-05,5.3267076314896246e-05,5.124187241179506e-05,4.924976196980048e-05,4.7292938074633496e-05,4.5373415217941295e-05,4.349302935932661e-05,4.165343876459544e-05,3.9856125584345934e-05,3.8102398133974386e-05,3.6393393833525235e-05,3.473008276356454e-05,3.3113271791410544e-05,3.154360922060911e-05,3.0021589915487833e-05,2.854756085195217e-05,2.7121727045387334e-05,2.5744157806585368e-05,2.4414793277011137e-05,2.313345119543377e-05,2.189983384896032e-05,2.071353516279309e-05,1.9574047884567435e-05,1.8480770820887214e-05,1.7433016085635733e-05,1.6430016321774058e-05,1.5470931860620565e-05,1.455485778500928e-05,1.3680830865224245e-05,1.2847836339178519e-05,1.2054814510924375e-05,1.1300667144223827e-05,1.0584263630552754e-05,9.90444691353786e-06,9.260039154413525e-06,8.64984712561814e-06,8.072667322110202e-06,7.527290782358981e-06,7.012507613240197e-06,6.527111215232442e-06,6.069902206355929e-06,5.639692045213464e-06,5.2353063552784e-06,4.855587954220756e-06,4.499399593568069e-06,4.165626415359812e-06,3.853178133673071e-06,3.5609909499738884e-06,3.2880292121848567e-06,3.0332868281586513e-06,2.7957884449131413e-06,2.5745904055214717e-06,2.368781495965662e-06,2.177483494561101e-06,1.999851536748514e-06,1.8350743081368657e-06,1.682374078672459e-06,1.5410065907141753e-06,1.4102608136199075e-06],[1.4337012712474588e-06,1.566620221430251e-06,1.7103374297944317e-06,1.8655757452808774e-06,2.033091796107505e-06,2.213676239261946e-06,2.4081538742866523e-06,2.6173836085418537e-06,2.842258260954025e-06,3.083704191160575e-06,3.342680740953168e-06,3.620179475010402e-06,3.917223208102909e-06,4.234864806257743e-06,4.5741857497909975e-06,4.936294446664242e-06,5.322324285297427e-06,5.733431416783278e-06,6.17079225739993e-06,6.635600703413179e-06,7.129065051398824e-06,7.652404618700531e-06,8.206846060168965e-06,8.79361937900183e-06,9.413953631318927e-06,1.0069072326056546e-05,1.0760188523845344e-05,1.1488499640737223e-05,1.2255181964960058e-05,1.3061384897293241e-05,1.3908224928158489e-05,1.4796779367095085e-05,1.5728079842919496e-05,1.670310559553893e-05,1.772277658307653e-05,1.8787946430652295e-05,1.989939524982545e-05,2.1057822360317896e-05,2.226383894817974e-05,2.3517960697001574e-05,2.4820600431097917e-05,2.617206081175594e-05,2.7572527129636686e-05,2.902206023820575e-05,3.052058967463123e-05,3.206790701589268e-05,3.3663659518871955e-05,3.5307344093921616e-05,3.699830166180688e-05,3.873571194397452e-05,4.051858873579675e-05,4.2345775711757085e-05,4.421594281047346e-05,4.612758324598388e-05,4.8079011189843545e-05,5.0068360166297796e-05,5.2093582200101494e-05,5.415244775345866e-05,5.624254648506223e-05,5.8361288860336433e-05,6.050590863773881e-05,6.267346625138475e-05,6.486085310533948e-05,6.706479678970852e-05,6.928186722317708e-05,7.150848372094078e-05,7.374092298106848e-05,7.597532797628761e-05,7.82077177320257e-05,8.04339979653262e-05,8.264997255303075e-05,8.485135579143344e-05,8.703378540351861e-05,8.919283624394111e-05,9.132403464615404e-05,9.342287335057974e-05,9.548482694751271e-05,9.750536776358193e-05,9.947998211613801e-05,0.00010140418685590908,0.00010327354611473317,0.00010508368817216193,0.00010683032235227768,0.00010850925586020093,0.00011011641046651892,0.0001116478389472541,0.00011309974118703519,0.00011446847985383805,0.00011575059555503779,0.00011694282138655263,0.00011804209678955852,0.00011904558063259642,0.00011995066344086387,0.00012075497869905183,0.00012145641315922674,0.00012205311609093139,0.00012254350741684202,0.00012292628468393076,0.00012320042882708887,0.00012336520868951422,0.0001234201842717996,0.00012336520868951422,0.00012320042882708887,0.00012292628468393076,0.00012254350741684202,0.00012205311609093139,0.00012145641315922674,0.00012075497869905183,0.00011995066344086387,0.00011904558063259642,0.00011804209678955852,0.00011694282138655263,0.00011575059555503779,0.00011446847985383805,0.00011309974118703519,0.0001116478389472541,0.00011011641046651892,0.00010850925586020093,0.00010683032235227768,0.00010508368817216193,0.00010327354611473317,0.00010140418685590908,9.947998211613801e-05,9.750536776358193e-05,9.548482694751271e-05,9.342287335057974e-05,9.132403464615404e-05,8.919283624394111e-05,8.703378540351861e-05,8.485135579143344e-05,8.264997255303075e-05,8.04339979653262e-05,7.82077177320257e-05,7.597532797628761e-05,7.374092298106848e-05,7.150848372094078e-05,6.928186722317708e-05,6.706479678970852e-05,6.486085310533948e-05,6.267346625138475e-05,6.050590863773881e-05,5.8361288860336433e-05,5.624254648506223e-05,5.415244775345866e-05,5.2093582200101494e-05,5.0068360166297796e-05,4.8079011189843545e-05,4.612758324598388e-05,4.421594281047346e-05,4.2345775711757085e-05,4.051858873579675e-05,3.873571194397452e-05,3.699830166180688e-05,3.5307344093921616e-05,3.3663659518871955e-05,3.206790701589268e-05,3.052058967463123e-05,2.902206023820575e-05,2.7572527129636686e-05,2.617206081175594e-05,2.4820600431097917e-05,2.3517960697001574e-05,2.226383894817974e-05,2.1057822360317896e-05,1.989939524982545e-05,1.8787946430652295e-05,1.772277658307653e-05,1.670310559553893e-05,1.5728079842919496e-05,1.4796779367095085e-05,1.3908224928158489e-05,1.3061384897293241e-05,1.2255181964960058e-05,1.1488499640737223e-05,1.0760188523845344e-05,1.0069072326056546e-05,9.413953631318927e-06,8.79361937900183e-06,8.206846060168965e-06,7.652404618700531e-06,7.129065051398824e-06,6.635600703413179e-06,6.17079225739993e-06,5.733431416783278e-06,5.322324285297427e-06,4.936294446664242e-06,4.5741857497909975e-06,4.234864806257743e-06,3.917223208102909e-06,3.620179475010402e-06,3.342680740953168e-06,3.083704191160575e-06,2.842258260954025e-06,2.6173836085418537e-06,2.4081538742866523e-06,2.213676239261946e-06,2.033091796107505e-06,1.8655757452808774e-06,1.7103374297944317e-06,1.566620221430251e-06,1.4337012712474588e-06],[1.4562331615539585e-06,1.5912410512287049e-06,1.7372169033138334e-06,1.8948949269640748e-06,2.065043641482574e-06,2.248466129734566e-06,2.446000153720713e-06,2.658518119294141e-06,2.8869268768246356e-06,3.1321673445150163e-06,3.3952139410662386e-06,3.6770738144775093e-06,3.978785853963056e-06,4.301419472275743e-06,4.646073146156469e-06,5.013872703183501e-06,5.405969343983605e-06,5.823537389591963e-06,6.267771744714574e-06,6.73988506875865e-06,7.241104647755082e-06,7.772668961703792e-06,8.335823943427142e-06,8.931818926716803e-06,9.56190228340235e-06,1.0227316750950944e-05,1.0929294454319681e-05,1.1669051628018453e-05,1.2447783046690573e-05,1.3266656174970714e-05,1.4126805049920341e-05,1.5029323911956078e-05,1.597526060285855e-05,1.6965609752160836e-05,1.8001305775945995e-05,1.908321571481183e-05,2.0212131940464375e-05,2.1388764763056785e-05,2.2613734973971415e-05,2.3887566361225015e-05,2.5210678237033285e-05,2.6583378019274648e-05,2.800585391061764e-05,2.9478167720894185e-05,3.1000247879886316e-05,3.2571882689020485e-05,3.4192713861506813e-05,3.5862230401196694e-05,3.757976287083914e-05,3.9344478100474054e-05,4.115537438639102e-05,4.301127723038988e-05,4.491083566799127e-05,4.6852519232751966e-05,4.8834615601934175e-05,5.0855228966457095e-05,5.291227916532356e-05,5.500350162156868e-05,5.7126448113228465e-05,5.927848840888874e-05,6.14568127930615e-05,6.36584355019704e-05,6.588019908533146e-05,6.811877970441892e-05,7.037069337114013e-05,7.263230312704512e-05,7.48998271552022e-05,7.716934781172555e-05,7.94368215574875e-05,8.169808976423424e-05,8.394889036300083e-05,8.618487029643689e-05,8.840159873046448e-05,9.059458097464465e-05,9.275927305478272e-05,9.489109687570902e-05,9.698545590688059e-05,9.903775131851339e-05,0.00010104339849142175,0.00010299784381965658,0.00010489658172144344,0.00010673517177085987,0.00010850925586020093,0.00011021457530108741,0.00011184698777110502,0.0001134024840121416,0.00011487720418663377,0.00011626745379865037,0.00011756971908813535,0.00011878068180870441,0.00011989723330213019,0.00012091648778604641,0.00012183579477543386,0.0001226527505630911,0.0001233652086895142,0.00012397128933837122,0.0001244693876000182,0.00012485818055221992,0.00012513663311435324,0.00012530400263883676,0.00012535984221128134,0.00012530400263883676,0.00012513663311435324,0.00012485818055221992,0.0001244693876000182,0.00012397128933837122,0.0001233652086895142,0.0001226527505630911,0.00012183579477543386,0.00012091648778604641,0.00011989723330213019,0.00011878068180870441,0.00011756971908813535,0.00011626745379865037,0.00011487720418663377,0.0001134024840121416,0.00011184698777110502,0.00011021457530108741,0.00010850925586020093,0.00010673517177085987,0.00010489658172144344,0.00010299784381965658,0.00010104339849142175,9.903775131851339e-05,9.698545590688059e-05,9.489109687570902e-05,9.275927305478272e-05,9.059458097464465e-05,8.840159873046448e-05,8.618487029643689e-05,8.394889036300083e-05,8.169808976423424e-05,7.94368215574875e-05,7.716934781172555e-05,7.48998271552022e-05,7.263230312704512e-05,7.037069337114013e-05,6.811877970441892e-05,6.588019908533146e-05,6.36584355019704e-05,6.14568127930615e-05,5.927848840888874e-05,5.7126448113228465e-05,5.500350162156868e-05,5.291227916532356e-05,5.0855228966457095e-05,4.8834615601934175e-05,4.6852519232751966e-05,4.491083566799127e-05,4.301127723038988e-05,4.115537438639102e-05,3.9344478100474054e-05,3.757976287083914e-05,3.5862230401196694e-05,3.4192713861506813e-05,3.2571882689020485e-05,3.1000247879886316e-05,2.9478167720894185e-05,2.800585391061764e-05,2.6583378019274648e-05,2.5210678237033285e-05,2.3887566361225015e-05,2.2613734973971415e-05,2.1388764763056785e-05,2.0212131940464375e-05,1.908321571481183e-05,1.8001305775945995e-05,1.6965609752160836e-05,1.597526060285855e-05,1.5029323911956078e-05,1.4126805049920341e-05,1.3266656174970714e-05,1.2447783046690573e-05,1.1669051628018453e-05,1.0929294454319681e-05,1.0227316750950944e-05,9.56190228340235e-06,8.931818926716803e-06,8.335823943427142e-06,7.772668961703792e-06,7.241104647755082e-06,6.73988506875865e-06,6.267771744714574e-06,5.823537389591963e-06,5.405969343983605e-06,5.013872703183501e-06,4.646073146156469e-06,4.301419472275743e-06,3.978785853963056e-06,3.6770738144775093e-06,3.3952139410662386e-06,3.1321673445150163e-06,2.8869268768246356e-06,2.658518119294141e-06,2.446000153720713e-06,2.248466129734566e-06,2.065043641482574e-06,1.8948949269640748e-06,1.7372169033138334e-06,1.5912410512287049e-06,1.4562331615539585e-06],[1.4778017532368626e-06,1.6148092746486434e-06,1.762947207389749e-06,1.922960635149213e-06,2.0956294599396854e-06,2.2817686592644757e-06,2.48222840340267e-06,2.6978940196035864e-06,2.929685789798563e-06,3.1785585683381855e-06,3.4455012062544705e-06,3.731535768638567e-06,4.037716531922805e-06,4.3651287481690394e-06,4.714887163900317e-06,5.0881342815763625e-06,5.486038352511233e-06,5.9097910908688926e-06,6.360605099353424e-06,6.839710998338932e-06,7.3483542514613644e-06,7.887791682122047e-06,8.459287676930161e-06,9.064110073836686e-06,9.703525734582694e-06,1.0378795803095033e-05,1.109117065360627e-05,1.1841884534544824e-05,1.2632149916625704e-05,1.3463151556060702e-05,1.4336040286385208e-05,1.5251926555052855e-05,1.621187372366082e-05,1.721689115342035e-05,1.8267927100257936e-05,1.936586144670159e-05,2.0511498300450064e-05,2.170555849221742e-05,2.294867200806458e-05,2.4241370393948555e-05,2.5584079172611075e-05,2.697711031516481e-05,2.842065481178967e-05,2.9914775387796686e-05,3.1459399412925556e-05,3.30543120530883e-05,3.469914971483008e-05,3.6393393833525235e-05,3.813636505673947e-05,3.992721787424801e-05,4.176493574588504e-05,4.364832677769762e-05,4.557601999577243e-05,4.7546462265589016e-05,4.955791590281849e-05,5.160845701913213e-05,5.369597464380783e-05,5.5818170658730006e-05,5.797256058077727e-05,6.0156475221595804e-05,6.236706325037956e-05,6.460129468054406e-05,6.685596529611027e-05,6.912770202824136e-05,7.141296928672587e-05,7.370807624531725e-05,7.600918507375608e-05,7.83123201030659e-05,8.061337790436593e-05,8.290813825503887e-05,8.519227595967294e-05,8.746137348682177e-05,8.971093437634323e-05,9.193639736594341e-05,9.413315117962e-05,9.629654991502248e-05,9.842192896137661e-05,0.0001005046213746125,0.0001025399746317349,0.00010452336768232917,0.00010645022821145188,0.0001083160500250494,0.00011011641046651892,0.00011184698777110502,0.00011350357826353925,0.00011508211330370014,0.00011657867588511583,0.00011798951679185813,0.00011931107022079306,0.0001205399687782547,0.00012167305776299054,0.00012270740865067298,0.00012364033169936248,0.0001244693876000182,0.00012519239810144947,0.00012580745554494844,0.0001263129312501993,0.0001267074827008727,0.0001269900594855373,0.00012715990795709404,0.00012721657458180578,0.00012715990795709404,0.0001269900594855373,0.0001267074827008727,0.0001263129312501993,0.00012580745554494844,0.00012519239810144947,0.0001244693876000182,0.00012364033169936248,0.00012270740865067298,0.00012167305776299054,0.0001205399687782547,0.00011931107022079306,0.00011798951679185813,0.00011657867588511583,0.00011508211330370014,0.00011350357826353925,0.00011184698777110502,0.00011011641046651892,0.0001083160500250494,0.00010645022821145188,0.00010452336768232917,0.0001025399746317349,0.0001005046213746125,9.842192896137661e-05,9.629654991502248e-05,9.413315117962e-05,9.193639736594341e-05,8.971093437634323e-05,8.746137348682177e-05,8.519227595967294e-05,8.290813825503887e-05,8.061337790436593e-05,7.83123201030659e-05,7.600918507375608e-05,7.370807624531725e-05,7.141296928672587e-05,6.912770202824136e-05,6.685596529611027e-05,6.460129468054406e-05,6.236706325037956e-05,6.0156475221595804e-05,5.797256058077727e-05,5.5818170658730006e-05,5.369597464380783e-05,5.160845701913213e-05,4.955791590281849e-05,4.7546462265589016e-05,4.557601999577243e-05,4.364832677769762e-05,4.176493574588504e-05,3.992721787424801e-05,3.813636505673947e-05,3.6393393833525235e-05,3.469914971483008e-05,3.30543120530883e-05,3.1459399412925556e-05,2.9914775387796686e-05,2.842065481178967e-05,2.697711031516481e-05,2.5584079172611075e-05,2.4241370393948555e-05,2.294867200806458e-05,2.170555849221742e-05,2.0511498300450064e-05,1.936586144670159e-05,1.8267927100257936e-05,1.721689115342035e-05,1.621187372366082e-05,1.5251926555052855e-05,1.4336040286385208e-05,1.3463151556060702e-05,1.2632149916625704e-05,1.1841884534544824e-05,1.109117065360627e-05,1.0378795803095033e-05,9.703525734582694e-06,9.064110073836686e-06,8.459287676930161e-06,7.887791682122047e-06,7.3483542514613644e-06,6.839710998338932e-06,6.360605099353424e-06,5.9097910908688926e-06,5.486038352511233e-06,5.0881342815763625e-06,4.714887163900317e-06,4.3651287481690394e-06,4.037716531922805e-06,3.731535768638567e-06,3.4455012062544705e-06,3.1785585683381855e-06,2.929685789798563e-06,2.6978940196035864e-06,2.48222840340267e-06,2.2817686592644757e-06,2.0956294599396854e-06,1.922960635149213e-06,1.762947207389749e-06,1.6148092746486434e-06,1.4778017532368626e-06],[1.498354073133591e-06,1.6372670073669123e-06,1.7874651475586224e-06,1.9497039395442967e-06,2.124774131714063e-06,2.313502035756157e-06,2.5167496455731685e-06,2.7354146009785332e-06,2.970429982595029e-06,3.2227639242757366e-06,3.4934190293592277e-06,3.7834315771630625e-06,4.0938705063206725e-06,4.425836161884223e-06,4.780458793557144e-06,5.158896792991319e-06,5.562334658791537e-06,5.991980678718775e-06,6.44906431957856e-06,6.9348333164246526e-06,7.450550454003229e-06,7.997490034810185e-06,8.576934029733515e-06,9.19016790900207e-06,9.838476153058286e-06,1.0523137445010679e-05,1.124541954849548e-05,1.2006573877077412e-05,1.2807829763737313e-05,1.3650388441517246e-05,1.4535416749008028e-05,1.546404057705497e-05,1.6437338075807e-05,1.7456332644024356e-05,1.8521985725369362e-05,1.9635189439212453e-05,2.0796759076267048e-05,2.20074254920989e-05,2.3267827434211405e-05,2.4578503840962167e-05,2.5939886152990563e-05,2.73522906801036e-05,2.8815911068650238e-05,3.033081091628494e-05,3.189691658265228e-05,3.351401024588944e-05,3.518172325591678e-05,3.689952983624409e-05,3.866674118643871e-05,4.04825000374614e-05,4.234577571175708e-05,4.425535973927537e-05,4.620986207947624e-05,4.820770799783946e-05,5.024713564343591e-05,5.2326194371730706e-05,5.444274385397351e-05,5.6594454011294496e-05,5.877880580797293e-05,6.099309293429361e-05,6.323442440496863e-05,6.549972809430152e-05,6.778575522413046e-05,7.008908581513852e-05,7.240613510639097e-05,7.473316094199468e-05,7.706627211760605e-05,7.940143767319185e-05,8.173449711201166e-05,8.406117151929609e-05,8.637707554758688e-05,8.867773022924084e-05,9.095857657022923e-05,9.32149898731447e-05,9.544229473131298e-05,9.763578063015046e-05,9.979071808646506e-05,0.00010190237525131906,0.00010396603489740845,0.00010597701170771033,0.0001079306697784547,0.0001098224402463283,0.0001116478389472541,0.0001134024840121416,0.00011508211330370014,0.00011668260159776842,0.00011819997741265831,0.0001196304393907488,0.0001209703721380007,0.00012221636142919454,0.00012336520868951422,0.00012441394466659213,0.00012535984221128134,0.00012620042809019375,0.00012693349375841688,0.0001275571050267479,0.00012806961056422868,0.00012846964918367297,0.00012875615586520033,0.0001289283664804707,0.00012898582118829035,0.0001289283664804707,0.00012875615586520033,0.00012846964918367297,0.00012806961056422868,0.0001275571050267479,0.00012693349375841688,0.00012620042809019375,0.00012535984221128134,0.00012441394466659213,0.00012336520868951422,0.00012221636142919454,0.0001209703721380007,0.0001196304393907488,0.00011819997741265831,0.00011668260159776842,0.00011508211330370014,0.0001134024840121416,0.0001116478389472541,0.0001098224402463283,0.0001079306697784547,0.00010597701170771033,0.00010396603489740845,0.00010190237525131906,9.979071808646506e-05,9.763578063015046e-05,9.544229473131298e-05,9.32149898731447e-05,9.095857657022923e-05,8.867773022924084e-05,8.637707554758688e-05,8.406117151929609e-05,8.173449711201166e-05,7.940143767319185e-05,7.706627211760605e-05,7.473316094199468e-05,7.240613510639097e-05,7.008908581513852e-05,6.778575522413046e-05,6.549972809430152e-05,6.323442440496863e-05,6.099309293429361e-05,5.877880580797293e-05,5.6594454011294496e-05,5.444274385397351e-05,5.2326194371730706e-05,5.024713564343591e-05,4.820770799783946e-05,4.620986207947624e-05,4.425535973927537e-05,4.234577571175708e-05,4.04825000374614e-05,3.866674118643871e-05,3.689952983624409e-05,3.518172325591678e-05,3.351401024588944e-05,3.189691658265228e-05,3.033081091628494e-05,2.8815911068650238e-05,2.73522906801036e-05,2.5939886152990563e-05,2.4578503840962167e-05,2.3267827434211405e-05,2.20074254920989e-05,2.0796759076267048e-05,1.9635189439212453e-05,1.8521985725369362e-05,1.7456332644024356e-05,1.6437338075807e-05,1.546404057705497e-05,1.4535416749008028e-05,1.3650388441517246e-05,1.2807829763737313e-05,1.2006573877077412e-05,1.124541954849548e-05,1.0523137445010679e-05,9.838476153058286e-06,9.19016790900207e-06,8.576934029733515e-06,7.997490034810185e-06,7.450550454003229e-06,6.9348333164246526e-06,6.44906431957856e-06,5.991980678718775e-06,5.562334658791537e-06,5.158896792991319e-06,4.780458793557144e-06,4.425836161884223e-06,4.0938705063206725e-06,3.7834315771630625e-06,3.4934190293592277e-06,3.2227639242757366e-06,2.970429982595029e-06,2.7354146009785332e-06,2.5167496455731685e-06,2.313502035756157e-06,2.124774131714063e-06,1.9497039395442967e-06,1.7874651475586224e-06,1.6372670073669123e-06,1.498354073133591e-06],[1.5178391223318609e-06,1.6585585223440965e-06,1.8107098845436085e-06,1.975058478811929e-06,2.152405336670229e-06,2.343587515413666e-06,2.5494782185740506e-06,2.7709867591442355e-06,3.009058351809413e-06,3.264673720327877e-06,3.53884850619502e-06,3.832632464817831e-06,4.1471084356307844e-06,4.483391072905651e-06,4.842625324454583e-06,5.225984646004598e-06,5.634668939738317e-06,6.069902206355927e-06,6.532929901020867e-06,7.0250159847106226e-06,7.547439663805846e-06,8.10149181221721e-06,8.688471071969576e-06,9.30967962993514e-06,9.966418670328206e-06,1.0659983504638877e-05,1.139165838288485e-05,1.2162710992391049e-05,1.2974386652755921e-05,1.3827902218219042e-05,1.4724439701292906e-05,1.5665139634247643e-05,1.665109418782255e-05,1.7683340069364636e-05,1.8762851225440186e-05,1.9890531376809536e-05,2.106720641647293e-05,2.2293616704262793e-05,2.357040929414809e-05,2.4898130133003702e-05,2.627721627205347e-05,2.770798813449273e-05,2.9190641884906088e-05,3.0725241947991123e-05,3.2311713725750975e-05,3.394983656370148e-05,3.5639237017725964e-05,3.737938247397784e-05,3.9169575174655426e-05,4.1008946702533855e-05,4.28964529768156e-05,4.4830869812140536e-05,4.6810789091461336e-05,4.883461560193418e-05,5.090056458098798e-05,5.300666001731681e-05,5.5150733748688415e-05,5.733042539518313e-05,5.954318316277844e-05,6.17862655480897e-05,6.405674397058258e-05,6.635150635370961e-05,6.866726167121596e-05,7.100054546934002e-05,7.33477263698325e-05,7.570501355267407e-05,7.806846521112391e-05,8.043399796532619e-05,8.279739721418358e-05,8.515432839862582e-05,8.750034914281096e-05,8.983092223324698e-05,9.214142938936893e-05,9.442718577280675e-05,9.668345517648477e-05,9.890546582886408e-05,0.00010108842674312389,0.0001032275445359328,0.00010531804063573734,0.000107355168796236,0.00010933423282696514,0.00011125060444973216,0.00011309974118703519,0.00011487720418663377,0.00011657867588511583,0.00011819997741265831,0.000119737085641225,0.00012118614977919153,0.000122543507416842,0.00012380569992934031,0.00012496948714663678,0.00012603186120330867,0.0001269900594855373,0.00012784157659726024,0.0001285841752729794,0.000129215896170711,0.00012973506648509016,0.00013014030732764104,0.0001304305398286428,0.00013060498992279945,0.0001306631917890035,0.00013060498992279945,0.0001304305398286428,0.00013014030732764104,0.00012973506648509016,0.000129215896170711,0.0001285841752729794,0.00012784157659726024,0.0001269900594855373,0.00012603186120330867,0.00012496948714663678,0.00012380569992934031,0.000122543507416842,0.00012118614977919153,0.000119737085641225,0.00011819997741265831,0.00011657867588511583,0.00011487720418663377,0.00011309974118703519,0.00011125060444973216,0.00010933423282696514,0.000107355168796236,0.00010531804063573734,0.0001032275445359328,0.00010108842674312389,9.890546582886408e-05,9.668345517648477e-05,9.442718577280675e-05,9.214142938936893e-05,8.983092223324698e-05,8.750034914281096e-05,8.515432839862582e-05,8.279739721418358e-05,8.043399796532619e-05,7.806846521112391e-05,7.570501355267407e-05,7.33477263698325e-05,7.100054546934002e-05,6.866726167121596e-05,6.635150635370961e-05,6.405674397058258e-05,6.17862655480897e-05,5.954318316277844e-05,5.733042539518313e-05,5.5150733748688415e-05,5.300666001731681e-05,5.090056458098798e-05,4.883461560193418e-05,4.6810789091461336e-05,4.4830869812140536e-05,4.28964529768156e-05,4.1008946702533855e-05,3.9169575174655426e-05,3.737938247397784e-05,3.5639237017725964e-05,3.394983656370148e-05,3.2311713725750975e-05,3.0725241947991123e-05,2.9190641884906088e-05,2.770798813449273e-05,2.627721627205347e-05,2.4898130133003702e-05,2.357040929414809e-05,2.2293616704262793e-05,2.106720641647293e-05,1.9890531376809536e-05,1.8762851225440186e-05,1.7683340069364636e-05,1.665109418782255e-05,1.5665139634247643e-05,1.4724439701292906e-05,1.3827902218219042e-05,1.2974386652755921e-05,1.2162710992391049e-05,1.139165838288485e-05,1.0659983504638877e-05,9.966418670328206e-06,9.30967962993514e-06,8.688471071969576e-06,8.10149181221721e-06,7.547439663805846e-06,7.0250159847106226e-06,6.532929901020867e-06,6.069902206355927e-06,5.634668939738317e-06,5.225984646004598e-06,4.842625324454583e-06,4.483391072905651e-06,4.1471084356307844e-06,3.832632464817831e-06,3.53884850619502e-06,3.264673720327877e-06,3.009058351809413e-06,2.7709867591442355e-06,2.5494782185740506e-06,2.343587515413666e-06,2.152405336670229e-06,1.975058478811929e-06,1.8107098845436085e-06,1.6585585223440965e-06,1.5178391223318609e-06],[1.5362080865303387e-06,1.6786304796877798e-06,1.8326231852048225e-06,1.998960734296989e-06,2.1784538526085757e-06,2.3719497275435632e-06,2.5803321301861312e-06,2.804521378079988e-06,3.045474124945239e-06,3.304182963307649e-06,3.581675826006269e-06,3.879015172639991e-06,4.19729694721973e-06,4.537649293618433e-06,4.901231015863358e-06,5.28922977090082e-06,5.7028599821890586e-06,6.143360463345323e-06,6.611991742093098e-06,7.110033075928192e-06,7.638779152250201e-06,8.199536467189769e-06,8.79361937900183e-06,9.422345833688573e-06,1.0087032762460078e-05,1.0788991152730228e-05,1.1529520796574004e-05,1.2309904722931097e-05,1.3131403322319385e-05,1.3995248175408686e-05,1.490263559948544e-05,1.5854719929597766e-05,1.6852606553989324e-05,1.789734472629075e-05,1.8989920179817892e-05,2.013124757220447e-05,2.1322162791448697e-05,2.2563415157254342e-05,2.3855659554269535e-05,2.5199448536445267e-05,2.659522444422092e-05,2.804331157856921e-05,2.9543908478068247e-05,3.10970803470865e-05,3.270275168483845e-05,3.436069916646845e-05,3.607054482842063e-05,3.7831749611129263e-05,3.964360731249323e-05,4.150523900565939e-05,4.3415587974312735e-05,4.5373415217941295e-05,4.737729557839556e-05,4.9425614537486866e-05,5.1516565733359145e-05,5.364814924091983e-05,5.581817065873001e-05,5.802424104143537e-05,6.02637777130758e-05,6.2534005992457e-05,6.483196185721801e-05,6.715449556830695e-05,6.949827627130628e-05,7.185979758546353e-05,7.423538418541002e-05,7.66211993744349e-05,7.9013253641857e-05,8.14074141905554e-05,8.37994154141216e-05,8.618487029643689e-05,8.855928269980697e-05,9.091806050115754e-05,9.325652952926362e-05,9.556994824960924e-05,9.785352313730627e-05,0.00010010242467260046,0.00010231180388791122,0.0001044768093901449,0.00010659260477723842,0.00010865438636358265,0.00011065740112518444,0.00011259696477219942,0.00011446847985383805,0.00011626745379865037,0.00011798951679185813,0.0001196304393907488,0.00012118614977919153,0.0001226527505630911,0.00012402653501006783,0.00012530400263883676,0.00012648187406664974,0.0001275571050267479,0.0001285268994720233,0.0001293887216859863,0.00013014030732764104,0.0001307796733429501,0.0001313051266821752,0.00013171527176946392,0.00013200901667856062,0.00013218557797639287,0.00013224448420446299,0.00013218557797639287,0.00013200901667856062,0.00013171527176946392,0.0001313051266821752,0.0001307796733429501,0.00013014030732764104,0.0001293887216859863,0.0001285268994720233,0.0001275571050267479,0.00012648187406664974,0.00012530400263883676,0.00012402653501006783,0.0001226527505630911,0.00012118614977919153,0.0001196304393907488,0.00011798951679185813,0.00011626745379865037,0.00011446847985383805,0.00011259696477219942,0.00011065740112518444,0.00010865438636358265,0.00010659260477723842,0.0001044768093901449,0.00010231180388791122,0.00010010242467260046,9.785352313730627e-05,9.556994824960924e-05,9.325652952926362e-05,9.091806050115754e-05,8.855928269980697e-05,8.618487029643689e-05,8.37994154141216e-05,8.14074141905554e-05,7.9013253641857e-05,7.66211993744349e-05,7.423538418541002e-05,7.185979758546353e-05,6.949827627130628e-05,6.715449556830695e-05,6.483196185721801e-05,6.2534005992457e-05,6.02637777130758e-05,5.802424104143537e-05,5.581817065873001e-05,5.364814924091983e-05,5.1516565733359145e-05,4.9425614537486866e-05,4.737729557839556e-05,4.5373415217941295e-05,4.3415587974312735e-05,4.150523900565939e-05,3.964360731249323e-05,3.7831749611129263e-05,3.607054482842063e-05,3.436069916646845e-05,3.270275168483845e-05,3.10970803470865e-05,2.9543908478068247e-05,2.804331157856921e-05,2.659522444422092e-05,2.5199448536445267e-05,2.3855659554269535e-05,2.2563415157254342e-05,2.1322162791448697e-05,2.013124757220447e-05,1.8989920179817892e-05,1.789734472629075e-05,1.6852606553989324e-05,1.5854719929597766e-05,1.490263559948544e-05,1.3995248175408686e-05,1.3131403322319385e-05,1.2309904722931097e-05,1.1529520796574004e-05,1.0788991152730228e-05,1.0087032762460078e-05,9.422345833688573e-06,8.79361937900183e-06,8.199536467189769e-06,7.638779152250201e-06,7.110033075928192e-06,6.611991742093098e-06,6.143360463345323e-06,5.7028599821890586e-06,5.28922977090082e-06,4.901231015863358e-06,4.537649293618433e-06,4.19729694721973e-06,3.879015172639991e-06,3.581675826006269e-06,3.304182963307649e-06,3.045474124945239e-06,2.804521378079988e-06,2.5803321301861312e-06,2.3719497275435632e-06,2.1784538526085757e-06,1.998960734296989e-06,1.8326231852048225e-06,1.6786304796877798e-06,1.5362080865303387e-06],[1.553414539438296e-06,1.6974321489094574e-06,1.8531496651854597e-06,2.021350294696467e-06,2.2028538437007513e-06,2.3985169886098686e-06,2.6092333992747577e-06,2.835933701348175e-06,3.0795852636462643e-06,3.341191796327033e-06,3.621792745694499e-06,3.922462471532962e-06,4.2443091930842645e-06,4.588473690110067e-06,4.9561277459384795e-06,5.348472319986682e-06,5.766735437984788e-06,6.212169789006345e-06,6.686050019442156e-06,7.189669715240051e-06,7.724338065075833e-06,8.291376198621228e-06,8.892113195732764e-06,9.52788176419915e-06,1.0200013585650705e-05,1.090983433134746e-05,1.1658658351816037e-05,1.2447783046690575e-05,1.3278482923619494e-05,1.4152003357715555e-05,1.5069554065737071e-05,1.6032302311977767e-05,1.7041365865693303e-05,1.8097805732784955e-05,1.9202618687373533e-05,2.0356729631807422e-05,2.1560983816532283e-05,2.281613895408245e-05,2.4122857264207318e-05,2.5481697489793866e-05,2.689310692576e-05,2.8357413505444014e-05,2.987481799117531e-05,3.144538631765044e-05,3.3069042138429734e-05,3.47455596272851e-05,3.647455658724191e-05,3.825548792094364e-05,4.008763951640163e-05,4.197012260225429e-05,4.3901868626329426e-05,4.588162471056546e-05,4.79079497341859e-05,4.997921109542904e-05,5.209358220010149e-05,5.424904072274888e-05,5.6443367683318655e-05,5.867414737883422e-05,6.093876820581409e-05,6.323442440496865e-05,6.555811875510692e-05,6.79066662382085e-05,7.027669869228658e-05,7.266467046301897e-05,7.506686505918626e-05,7.747940281077086e-05,7.989824952217668e-05,8.231922610647368e-05,8.473801917990055e-05,8.715019258912408e-05,8.955119983700832e-05,9.193639736594341e-05,9.430105865118028e-05,9.66403890501696e-05,9.894954134766645e-05,0.00010122363193039563,0.00010345775751942842,0.00010564701238315567,0.0001077865059489075,0.00010987138072691177,0.00011189683045645287,0.00011385811838082778,0.00011575059555503779,0.00011756971908813535,0.00011931107022079306,0.0001209703721380007,0.000122543507416842,0.00012402653501006783,0.00012541570666767043,0.0001267074827008727,0.0001278985469958708,0.00012898582118829035,0.0001299664779136171,0.00013083795305381427,0.0001315979569059073,0.00013224448420446299,0.0001327758229365694,0.00013319056189508674,0.00013348759692352968,0.00013366613581390497,0.00013372570182709675,0.00013366613581390497,0.00013348759692352968,0.00013319056189508674,0.0001327758229365694,0.00013224448420446299,0.0001315979569059073,0.00013083795305381427,0.0001299664779136171,0.00012898582118829035,0.0001278985469958708,0.0001267074827008727,0.00012541570666767043,0.00012402653501006783,0.000122543507416842,0.0001209703721380007,0.00011931107022079306,0.00011756971908813535,0.00011575059555503779,0.00011385811838082778,0.00011189683045645287,0.00010987138072691177,0.0001077865059489075,0.00010564701238315567,0.00010345775751942842,0.00010122363193039563,9.894954134766645e-05,9.66403890501696e-05,9.430105865118028e-05,9.193639736594341e-05,8.955119983700832e-05,8.715019258912408e-05,8.473801917990055e-05,8.231922610647368e-05,7.989824952217668e-05,7.747940281077086e-05,7.506686505918626e-05,7.266467046301897e-05,7.027669869228658e-05,6.79066662382085e-05,6.555811875510692e-05,6.323442440496865e-05,6.093876820581409e-05,5.867414737883422e-05,5.6443367683318655e-05,5.424904072274888e-05,5.209358220010149e-05,4.997921109542904e-05,4.79079497341859e-05,4.588162471056546e-05,4.3901868626329426e-05,4.197012260225429e-05,4.008763951640163e-05,3.825548792094364e-05,3.647455658724191e-05,3.47455596272851e-05,3.3069042138429734e-05,3.144538631765044e-05,2.987481799117531e-05,2.8357413505444014e-05,2.689310692576e-05,2.5481697489793866e-05,2.4122857264207318e-05,2.281613895408245e-05,2.1560983816532283e-05,2.0356729631807422e-05,1.9202618687373533e-05,1.8097805732784955e-05,1.7041365865693303e-05,1.6032302311977767e-05,1.5069554065737071e-05,1.4152003357715555e-05,1.3278482923619494e-05,1.2447783046690575e-05,1.1658658351816037e-05,1.090983433134746e-05,1.0200013585650705e-05,9.52788176419915e-06,8.892113195732764e-06,8.291376198621228e-06,7.724338065075833e-06,7.189669715240051e-06,6.686050019442156e-06,6.212169789006345e-06,5.766735437984788e-06,5.348472319986682e-06,4.9561277459384795e-06,4.588473690110067e-06,4.2443091930842645e-06,3.922462471532962e-06,3.621792745694499e-06,3.341191796327033e-06,3.0795852636462643e-06,2.835933701348175e-06,2.6092333992747577e-06,2.3985169886098686e-06,2.2028538437007513e-06,2.021350294696467e-06,1.8531496651854597e-06,1.6974321489094574e-06,1.553414539438296e-06],[1.5694146380303457e-06,1.7149156222814053e-06,1.8722370218414057e-06,2.0421701101308627e-06,2.225543137374951e-06,2.423221603713021e-06,2.6361083837545353e-06,2.86514368855384e-06,3.1113048507815698e-06,3.375605918764377e-06,3.6590970450555933e-06,3.962863655296078e-06,4.288025383335094e-06,4.635734758913591e-06,5.007175634674272e-06,5.403561339861299e-06,5.826132548813547e-06,6.276154853244635e-06,6.754916028344797e-06,7.263722983937864e-06,7.803898393283026e-06,8.376776993627102e-06,8.983701554288257e-06,9.62601850988437e-06,1.0305073258305545e-05,1.1022205125165064e-05,1.1778741998739757e-05,1.2575994641820559e-05,1.3415250689426284e-05,1.4297768343976302e-05,1.5224769782256115e-05,1.61974342913282e-05,1.7216891153420347e-05,1.8284212302746007e-05,1.940040478015377e-05,2.0566403014443835e-05,2.178306096210274e-05,2.3051144140069204e-05,2.43713215889257e-05,2.5744157806585358e-05,2.7170104695083233e-05,2.8649493565455995e-05,3.0182527247875835e-05,3.176927235616365e-05,3.3409651757514954e-05,3.510343729970184e-05,3.685024284913835e-05,3.864951769399018e-05,4.050054036694788e-05,4.2402412942345545e-05,4.435405586197258e-05,4.635420334318075e-05,4.8401399421715605e-05,5.049399468009207e-05,5.263014371028025e-05,5.480780335696624e-05,5.70247317847046e-05,5.927848840888874e-05,6.156643472664094e-05,6.388573607947946e-05,6.623336437497236e-05,6.860610178955954e-05,7.100054546934e-05,7.341311323991451e-05,7.584005033037433e-05,7.82774371102784e-05,8.072119783200084e-05,8.316711036420767e-05,8.561081689548243e-05,8.804783558031579e-05,9.047357309285963e-05,9.28833380470734e-05,9.527235523521968e-05,9.763578063015047e-05,9.996871709052593e-05,0.00010226623070207786,0.00010452336768232917,0.00010673517177085988,0.00010889670202232566,0.00011100305091503223,0.00011304936268399885,0.00011503085178414538,0.00011694282138655263,0.00011878068180870441,0.0001205399687782547,0.00012221636142919454,0.00012380569992934031,0.00012530400263883676,0.0001267074827008727,0.0001280125639680388,0.000129215896170711,0.00013031436923750288,0.00013130512668217518,0.00013218557797639287,0.0001329534098333456,0.00013360659633345805,0.00013414340783016374,0.000134562418580954,0.0001348625130565823,0.00013504289088934934,0.00013510307042974819,0.00013504289088934934,0.0001348625130565823,0.000134562418580954,0.00013414340783016374,0.00013360659633345805,0.0001329534098333456,0.00013218557797639287,0.00013130512668217518,0.00013031436923750288,0.000129215896170711,0.0001280125639680388,0.0001267074827008727,0.00012530400263883676,0.00012380569992934031,0.00012221636142919454,0.0001205399687782547,0.00011878068180870441,0.00011694282138655263,0.00011503085178414538,0.00011304936268399885,0.00011100305091503223,0.00010889670202232566,0.00010673517177085988,0.00010452336768232917,0.00010226623070207786,9.996871709052593e-05,9.763578063015047e-05,9.527235523521968e-05,9.28833380470734e-05,9.047357309285963e-05,8.804783558031579e-05,8.561081689548243e-05,8.316711036420767e-05,8.072119783200084e-05,7.82774371102784e-05,7.584005033037433e-05,7.341311323991451e-05,7.100054546934e-05,6.860610178955954e-05,6.623336437497236e-05,6.388573607947946e-05,6.156643472664094e-05,5.927848840888874e-05,5.70247317847046e-05,5.480780335696624e-05,5.263014371028025e-05,5.049399468009207e-05,4.8401399421715605e-05,4.635420334318075e-05,4.435405586197258e-05,4.2402412942345545e-05,4.050054036694788e-05,3.864951769399018e-05,3.685024284913835e-05,3.510343729970184e-05,3.3409651757514954e-05,3.176927235616365e-05,3.0182527247875835e-05,2.8649493565455995e-05,2.7170104695083233e-05,2.5744157806585358e-05,2.43713215889257e-05,2.3051144140069204e-05,2.178306096210274e-05,2.0566403014443835e-05,1.940040478015377e-05,1.8284212302746007e-05,1.7216891153420347e-05,1.61974342913282e-05,1.5224769782256115e-05,1.4297768343976302e-05,1.3415250689426284e-05,1.2575994641820559e-05,1.1778741998739757e-05,1.1022205125165064e-05,1.0305073258305545e-05,9.62601850988437e-06,8.983701554288257e-06,8.376776993627102e-06,7.803898393283026e-06,7.263722983937864e-06,6.754916028344797e-06,6.276154853244635e-06,5.826132548813547e-06,5.403561339861299e-06,5.007175634674272e-06,4.635734758913591e-06,4.288025383335094e-06,3.962863655296078e-06,3.6590970450555933e-06,3.375605918764377e-06,3.1113048507815698e-06,2.86514368855384e-06,2.6361083837545353e-06,2.423221603713021e-06,2.225543137374951e-06,2.0421701101308627e-06,1.8722370218414057e-06,1.7149156222814053e-06,1.5694146380303457e-06],[1.584167308508523e-06,1.7310360180393722e-06,1.8898362560851585e-06,2.061366734123713e-06,2.2464634880235646e-06,2.4460001537207132e-06,2.6608880929454084e-06,2.8920763548394768e-06,3.1405514591083154e-06,3.4073369862445525e-06,3.6934929603512e-06,4.000115010189708e-06,4.3283332942908605e-06,4.679311176302125e-06,5.054243637211457e-06,5.454355411691571e-06,5.8808988365567915e-06,6.33515140022226e-06,6.8184129831068574e-06,7.3320027801307215e-06,7.877255897827375e-06,8.455519620120796e-06,9.068149338508645e-06,9.71650414424253e-06,1.040194208210093e-05,1.1125815067505421e-05,1.1889463471028914e-05,1.2694210376776967e-05,1.3541355523679411e-05,1.4432168941396954e-05,1.5367884295311517e-05,1.6349691957913872e-05,1.737873182680914e-05,1.845608591251046e-05,1.9582770722161334e-05,2.0759729468295616e-05,2.198782413468488e-05,2.326782743421141e-05,2.4600414696512835e-05,2.5986155725844863e-05,2.7425506672171452e-05,2.8918801960889515e-05,3.0466246328797206e-05,3.206790701589268e-05,3.372370616431459e-05,3.5433413477178946e-05,3.7196639191201556e-05,3.901282741779618e-05,4.088124990778125e-05,4.280100029489064e-05,4.477098887294765e-05,4.678993796080775e-05,4.885637790799209e-05,5.096864379230956e-05,5.3124872858691495e-05,5.532300274593895e-05,5.756077054510638e-05,5.983571272982303e-05,6.214516599499349e-05,6.448626903603402e-05,6.685596529611028e-05,6.925100670376622e-05,7.166795841789934e-05,7.410320459127646e-05,7.655295515772868e-05,7.9013253641857e-05,8.147998598355894e-05,8.394889036300083e-05,8.64155680048589e-05,8.887549493378234e-05,9.132403464615402e-05,9.375645165638787e-05,9.616792586926768e-05,9.85535677232567e-05,0.000100908434043347,0.00010322754453593279,0.000105505898852436,0.00010773849414304276,0.00010992034301697819,0.00011204649182130351,0.00011411203914631227,0.0001161121544622734,0.00011804209678955852,0.00011989723330213019,0.00012167305776299054,0.00012336520868951422,0.00012496948714663678,0.00012648187406664974,0.0001278985469958708,0.000129215896170711,0.00013043053982864282,0.0001315393386632661,0.00013253940933705637,0.0001334281369704268,0.0001342031865314163,0.00013486251305658232,0.00013540437064049016,0.00013582732013849448,0.00013613023553525093,0.0001363123089395157,0.00013637305417422345,0.0001363123089395157,0.00013613023553525093,0.00013582732013849448,0.00013540437064049016,0.00013486251305658232,0.0001342031865314163,0.0001334281369704268,0.00013253940933705637,0.0001315393386632661,0.00013043053982864282,0.000129215896170711,0.0001278985469958708,0.00012648187406664974,0.00012496948714663678,0.00012336520868951422,0.00012167305776299054,0.00011989723330213019,0.00011804209678955852,0.0001161121544622734,0.00011411203914631227,0.00011204649182130351,0.00010992034301697819,0.00010773849414304276,0.000105505898852436,0.00010322754453593279,0.000100908434043347,9.85535677232567e-05,9.616792586926768e-05,9.375645165638787e-05,9.132403464615402e-05,8.887549493378234e-05,8.64155680048589e-05,8.394889036300083e-05,8.147998598355894e-05,7.9013253641857e-05,7.655295515772868e-05,7.410320459127646e-05,7.166795841789934e-05,6.925100670376622e-05,6.685596529611028e-05,6.448626903603402e-05,6.214516599499349e-05,5.983571272982303e-05,5.756077054510638e-05,5.532300274593895e-05,5.3124872858691495e-05,5.096864379230956e-05,4.885637790799209e-05,4.678993796080775e-05,4.477098887294765e-05,4.280100029489064e-05,4.088124990778125e-05,3.901282741779618e-05,3.7196639191201556e-05,3.5433413477178946e-05,3.372370616431459e-05,3.206790701589268e-05,3.0466246328797206e-05,2.8918801960889515e-05,2.7425506672171452e-05,2.5986155725844863e-05,2.4600414696512835e-05,2.326782743421141e-05,2.198782413468488e-05,2.0759729468295616e-05,1.9582770722161334e-05,1.845608591251046e-05,1.737873182680914e-05,1.6349691957913872e-05,1.5367884295311517e-05,1.4432168941396954e-05,1.3541355523679411e-05,1.2694210376776967e-05,1.1889463471028914e-05,1.1125815067505421e-05,1.040194208210093e-05,9.71650414424253e-06,9.068149338508645e-06,8.455519620120796e-06,7.877255897827375e-06,7.3320027801307215e-06,6.8184129831068574e-06,6.33515140022226e-06,5.8808988365567915e-06,5.454355411691571e-06,5.054243637211457e-06,4.679311176302125e-06,4.3283332942908605e-06,4.000115010189708e-06,3.6934929603512e-06,3.4073369862445525e-06,3.1405514591083154e-06,2.8920763548394768e-06,2.6608880929454084e-06,2.4460001537207132e-06,2.2464634880235646e-06,2.061366734123713e-06,1.8898362560851585e-06,1.7310360180393722e-06,1.584167308508523e-06],[1.5976344218688622e-06,1.7457516722259963e-06,1.9059018818284012e-06,2.078890552054164e-06,2.2655608259692387e-06,2.4667937663477645e-06,2.6835084824676557e-06,2.9166620914016387e-06,3.1672494993258036e-06,3.4363029882597273e-06,3.724891593642967e-06,4.034120258251125e-06,4.36512874816904e-06,4.719090316877177e-06,5.097210103977636e-06,5.500723255695362e-06,5.930892755044583e-06,6.389006950455795e-06,6.876376772719181e-06,7.394332631320055e-06,7.94422098262282e-06,8.527400563903146e-06,9.14523828893343e-06,9.799104802691869e-06,1.0490369694787385e-05,1.122039637336593e-05,1.1990536603581248e-05,1.2802124717166304e-05,1.3656471502219417e-05,1.4554857785009279e-05,1.5498527718390606e-05,1.648868179429116e-05,1.752646960066266e-05,1.8612982346262742e-05,1.9749245179630837e-05,2.09362093316143e-05,2.217474411376701e-05,2.3465628807855682e-05,2.4809544484540848e-05,2.62070657920227e-05,2.765865275802687e-05,2.9164642650923173e-05,3.072524194799113e-05,3.2340518460840644e-05,3.4010393669735456e-05,3.573463532002218e-05,3.75128503350126e-05,3.9344478100474054e-05,4.122878417632942e-05,4.3164854491231735e-05,4.515159007533841e-05,4.718770238585115e-05,4.927170927869306e-05,5.140193167805695e-05,5.357649099346741e-05,5.579330733145357e-05,5.805009854592798e-05,6.034438016791572e-05,6.267346625138472e-05,6.503447116760763e-05,6.742431237575384e-05,6.983971419229234e-05,7.227721257630426e-05,7.473316094199468e-05,7.720373700358605e-05,7.968495065141464e-05,8.217265285147488e-05,8.466254555391474e-05,8.715019258912408e-05,8.963103152313184e-05,9.210038643709031e-05,9.455348158873035e-05,9.698545590688059e-05,9.939137826351116e-05,0.00010176626346134925,0.00010410508886897658,0.0001064028116295138,0.00010865438636358267,0.00011085478328226225,0.00011299900662127529,0.00011508211330370016,0.0001170992317351461,0.00011904558063259642,0.00012091648778604641,0.00012270740865067298,0.00012441394466659213,0.00012603186120330867,0.0001275571050267479,0.00012898582118829035,0.00013031436923750288,0.0001315393386632661,0.00013265756347172403,0.00013366613581390497,0.000134562418580954,0.00013534405689064554,0.00013600898839516456,0.00013655545234701627,0.00013698199736728942,0.00013728748786830716,0.00013747110909088757,0.00013753237072494122,0.00013747110909088757,0.00013728748786830716,0.00013698199736728942,0.00013655545234701627,0.00013600898839516456,0.00013534405689064554,0.000134562418580954,0.00013366613581390497,0.00013265756347172403,0.0001315393386632661,0.00013031436923750288,0.00012898582118829035,0.0001275571050267479,0.00012603186120330867,0.00012441394466659213,0.00012270740865067298,0.00012091648778604641,0.00011904558063259642,0.0001170992317351461,0.00011508211330370016,0.00011299900662127529,0.00011085478328226225,0.00010865438636358267,0.0001064028116295138,0.00010410508886897658,0.00010176626346134925,9.939137826351116e-05,9.698545590688059e-05,9.455348158873035e-05,9.210038643709031e-05,8.963103152313184e-05,8.715019258912408e-05,8.466254555391474e-05,8.217265285147488e-05,7.968495065141464e-05,7.720373700358605e-05,7.473316094199468e-05,7.227721257630426e-05,6.983971419229234e-05,6.742431237575384e-05,6.503447116760763e-05,6.267346625138472e-05,6.034438016791572e-05,5.805009854592798e-05,5.579330733145357e-05,5.357649099346741e-05,5.140193167805695e-05,4.927170927869306e-05,4.718770238585115e-05,4.515159007533841e-05,4.3164854491231735e-05,4.122878417632942e-05,3.9344478100474054e-05,3.75128503350126e-05,3.573463532002218e-05,3.4010393669735456e-05,3.2340518460840644e-05,3.072524194799113e-05,2.9164642650923173e-05,2.765865275802687e-05,2.62070657920227e-05,2.4809544484540848e-05,2.3465628807855682e-05,2.217474411376701e-05,2.09362093316143e-05,1.9749245179630837e-05,1.8612982346262742e-05,1.752646960066266e-05,1.648868179429116e-05,1.5498527718390606e-05,1.4554857785009279e-05,1.3656471502219417e-05,1.2802124717166304e-05,1.1990536603581248e-05,1.122039637336593e-05,1.0490369694787385e-05,9.799104802691869e-06,9.14523828893343e-06,8.527400563903146e-06,7.94422098262282e-06,7.394332631320055e-06,6.876376772719181e-06,6.389006950455795e-06,5.930892755044583e-06,5.500723255695362e-06,5.097210103977636e-06,4.719090316877177e-06,4.36512874816904e-06,4.034120258251125e-06,3.724891593642967e-06,3.4363029882597273e-06,3.1672494993258036e-06,2.9166620914016387e-06,2.6835084824676557e-06,2.4667937663477645e-06,2.2655608259692387e-06,2.078890552054164e-06,1.9059018818284012e-06,1.7457516722259963e-06,1.5976344218688622e-06],[1.6097809580228796e-06,1.759024318028047e-06,1.9203921217711273e-06,2.0946959947168433e-06,2.2827854902009785e-06,2.4855483695644367e-06,2.7039107299128355e-06,2.938836965113248e-06,3.191329545440078e-06,3.4624286011732436e-06,3.7532112954424903e-06,4.06479097171083e-06,4.398316061506064e-06,4.7549687383504515e-06,5.135963304312519e-06,5.542544296218758e-06,5.975984299323203e-06,6.437581457145005e-06,6.928656667252735e-06,7.450550454003229e-06,8.004619510634037e-06,8.592232904663603e-06,9.214767942271578e-06,9.87360568921112e-06,1.0570126147842327e-05,1.1305703092065738e-05,1.208169856427004e-05,1.2899457040879887e-05,1.3760299275687127e-05,1.4665515832859421e-05,1.5616360324328864e-05,1.6614042369154193e-05,1.765972029540402e-05,1.875449360810605e-05,1.9899395249825454e-05,2.1095383683451974e-05,2.2343334829763778e-05,2.3644033895271084e-05,2.499816712869599e-05,2.6406313547188838e-05,2.7868936675985894e-05,2.938637634764964e-05,3.0958840609270374e-05,3.258639778801785e-05,3.426896876718394e-05,3.60063195263236e-05,3.779805400025504e-05,3.9643607312493236e-05,4.154223943914115e-05,4.349302935932661e-05,4.5494869747930796e-05,4.754646226558902e-05,4.96463134997412e-05,5.179273160885933e-05,5.398382371987192e-05,5.6217494126240434e-05,5.8491443331118316e-05,6.0803167976545895e-05,6.314996169571143e-05,6.552891692095507e-05,6.793692767542538e-05,7.037069337114015e-05,7.282672363068097e-05,7.530134414389645e-05,7.779070356483625e-05,8.029078144772802e-05,8.279739721418358e-05,8.530622013702672e-05,8.78127803192226e-05,9.031248063940969e-05,9.280060962854387e-05,9.527235523521968e-05,9.772281943038853e-05,0.00010014703359551328,0.0001025399746317349,0.00010489658172144344,0.00010721177366779736,0.00010948046673227803,0.0001116975928853557,0.00011385811838082778,0.00011595706256041995,0.00011798951679185813,0.00011995066344086387,0.00012183579477543386,0.00012364033169936248,0.00012535984221128134,0.0001269900594855373,0.0001285268994720233,0.0001299664779136171,0.00013130512668217518,0.00013253940933705637,0.00013366613581390497,0.0001346823761558802,0.000135585473204648,0.00013637305417422345,0.00013704304103712047,0.00013759365965918782,0.0001380234476269333,0.00013833126071900474,0.00013851627798174815,0.0001385780053773319,0.00013851627798174815,0.00013833126071900474,0.0001380234476269333,0.00013759365965918782,0.00013704304103712047,0.00013637305417422345,0.000135585473204648,0.0001346823761558802,0.00013366613581390497,0.00013253940933705637,0.00013130512668217518,0.0001299664779136171,0.0001285268994720233,0.0001269900594855373,0.00012535984221128134,0.00012364033169936248,0.00012183579477543386,0.00011995066344086387,0.00011798951679185813,0.00011595706256041995,0.00011385811838082778,0.0001116975928853557,0.00010948046673227803,0.00010721177366779736,0.00010489658172144344,0.0001025399746317349,0.00010014703359551328,9.772281943038853e-05,9.527235523521968e-05,9.280060962854387e-05,9.031248063940969e-05,8.78127803192226e-05,8.530622013702672e-05,8.279739721418358e-05,8.029078144772802e-05,7.779070356483625e-05,7.530134414389645e-05,7.282672363068097e-05,7.037069337114015e-05,6.793692767542538e-05,6.552891692095507e-05,6.314996169571143e-05,6.0803167976545895e-05,5.8491443331118316e-05,5.6217494126240434e-05,5.398382371987192e-05,5.179273160885933e-05,4.96463134997412e-05,4.754646226558902e-05,4.5494869747930796e-05,4.349302935932661e-05,4.154223943914115e-05,3.9643607312493236e-05,3.779805400025504e-05,3.60063195263236e-05,3.426896876718394e-05,3.258639778801785e-05,3.0958840609270374e-05,2.938637634764964e-05,2.7868936675985894e-05,2.6406313547188838e-05,2.499816712869599e-05,2.3644033895271084e-05,2.2343334829763778e-05,2.1095383683451974e-05,1.9899395249825454e-05,1.875449360810605e-05,1.765972029540402e-05,1.6614042369154193e-05,1.5616360324328864e-05,1.4665515832859421e-05,1.3760299275687127e-05,1.2899457040879887e-05,1.208169856427004e-05,1.1305703092065738e-05,1.0570126147842327e-05,9.87360568921112e-06,9.214767942271578e-06,8.592232904663603e-06,8.004619510634037e-06,7.450550454003229e-06,6.928656667252735e-06,6.437581457145005e-06,5.975984299323203e-06,5.542544296218758e-06,5.135963304312519e-06,4.7549687383504515e-06,4.398316061506064e-06,4.06479097171083e-06,3.7532112954424903e-06,3.4624286011732436e-06,3.191329545440078e-06,2.938836965113248e-06,2.7039107299128355e-06,2.4855483695644367e-06,2.2827854902009785e-06,2.0946959947168433e-06,1.9203921217711273e-06,1.759024318028047e-06,1.6097809580228796e-06],[1.6205751574856993e-06,1.7708192515276114e-06,1.9332690883583604e-06,2.1087417357030663e-06,2.298092443478848e-06,2.502214925807291e-06,2.7220414896307194e-06,2.9585429954474006e-06,3.212728635479867e-06,3.485645514480963e-06,3.778378018372839e-06,4.092046956013939e-06,4.427808459606442e-06,4.786852629600019e-06,5.170401910424844e-06,5.579709184004719e-06,6.01605556876647e-06,6.480747912780011e-06,6.975115970739326e-06,7.500509255731811e-06,8.058293558144129e-06,8.649847125618142e-06,9.27655649970031e-06,9.939812006719979e-06,1.0641002902482976e-05,1.1381512172571361e-05,1.2162710992391045e-05,1.2985952853597379e-05,1.3852567366143535e-05,1.4763853747925485e-05,1.5721074016824707e-05,1.6725445902860198e-05,1.777813550113506e-05,1.8880249689280416e-05,2.003282833613796e-05,2.1236836331459166e-05,2.2493155469407354e-05,2.3802576221603903e-05,2.5165789438332115e-05,2.6583378019274645e-05,2.805580859778248e-05,2.9583423285125908e-05,3.116643152343085e-05,3.2804902098027e-05,3.4498755361698294e-05,3.624775572480274e-05,3.805150446638943e-05,3.990943292225962e-05,4.182079610637186e-05,4.378466682205535e-05,4.579993031915118e-05,4.7865279552430666e-05,4.997921109542904e-05,5.2140021762171206e-05,5.43458059871449e-05,5.65944540112945e-05,5.888365091876411e-05,6.12108765656177e-05,6.357340643781481e-05,6.596831347133797e-05,6.839247086256827e-05,7.084255589181372e-05,7.331505477733504e-05,7.580626857132039e-05,7.83123201030659e-05,8.082916196816658e-05,8.335258555585082e-05,8.587823109975372e-05,8.840159873046448e-05,9.091806050115754e-05,9.342287335057974e-05,9.591119296067311e-05,9.837808845922352e-05,0.00010081855791119865,0.0001032275445359328,0.00010559995358109065,0.0001079306697784547,0.00011021457530108743,0.00011244656813637506,0.00011462158078491376,0.00011673459919120301,0.00011878068180870442,0.00012075497869905183,0.0001226527505630911,0.0001244693876000182,0.00012620042809019375,0.00012784157659726024,0.0001293887216859863,0.00013083795305381427,0.00013218557797639287,0.0001334281369704268,0.000134562418580954,0.000135585473204648,0.00013649462586590774,0.00013728748786830716,0.00013796196725038794,0.00013851627798174815,0.00013894894784285147,0.0001392588249399023,0.00013944508281443712,0.00013950722411591095,0.00013944508281443712,0.0001392588249399023,0.00013894894784285147,0.00013851627798174815,0.00013796196725038794,0.00013728748786830716,0.00013649462586590774,0.000135585473204648,0.000134562418580954,0.0001334281369704268,0.00013218557797639287,0.00013083795305381427,0.0001293887216859863,0.00012784157659726024,0.00012620042809019375,0.0001244693876000182,0.0001226527505630911,0.00012075497869905183,0.00011878068180870442,0.00011673459919120301,0.00011462158078491376,0.00011244656813637506,0.00011021457530108743,0.0001079306697784547,0.00010559995358109065,0.0001032275445359328,0.00010081855791119865,9.837808845922352e-05,9.591119296067311e-05,9.342287335057974e-05,9.091806050115754e-05,8.840159873046448e-05,8.587823109975372e-05,8.335258555585082e-05,8.082916196816658e-05,7.83123201030659e-05,7.580626857132039e-05,7.331505477733504e-05,7.084255589181372e-05,6.839247086256827e-05,6.596831347133797e-05,6.357340643781481e-05,6.12108765656177e-05,5.888365091876411e-05,5.65944540112945e-05,5.43458059871449e-05,5.2140021762171206e-05,4.997921109542904e-05,4.7865279552430666e-05,4.579993031915118e-05,4.378466682205535e-05,4.182079610637186e-05,3.990943292225962e-05,3.805150446638943e-05,3.624775572480274e-05,3.4498755361698294e-05,3.2804902098027e-05,3.116643152343085e-05,2.9583423285125908e-05,2.805580859778248e-05,2.6583378019274645e-05,2.5165789438332115e-05,2.3802576221603903e-05,2.2493155469407354e-05,2.1236836331459166e-05,2.003282833613796e-05,1.8880249689280416e-05,1.777813550113506e-05,1.6725445902860198e-05,1.5721074016824707e-05,1.4763853747925485e-05,1.3852567366143535e-05,1.2985952853597379e-05,1.2162710992391045e-05,1.1381512172571361e-05,1.0641002902482976e-05,9.939812006719979e-06,9.27655649970031e-06,8.649847125618142e-06,8.058293558144129e-06,7.500509255731811e-06,6.975115970739326e-06,6.480747912780011e-06,6.01605556876647e-06,5.579709184004719e-06,5.170401910424844e-06,4.786852629600019e-06,4.427808459606442e-06,4.092046956013939e-06,3.778378018372839e-06,3.485645514480963e-06,3.212728635479867e-06,2.9585429954474006e-06,2.7220414896307194e-06,2.502214925807291e-06,2.298092443478848e-06,2.1087417357030663e-06,1.9332690883583604e-06,1.7708192515276114e-06,1.6205751574856993e-06],[1.6299886597115317e-06,1.781105482862704e-06,1.9444989488078007e-06,2.1209908714071727e-06,2.3114414685036548e-06,2.5167496455731685e-06,2.737853125088097e-06,2.9757284070244076e-06,3.2313905457414105e-06,3.5058927283528185e-06,3.800325639698327e-06,4.115816599125347e-06,4.453528454509198e-06,4.814658219285463e-06,5.20043543874805e-06,5.612120272488031e-06,6.051001280618043e-06,6.5183929023506666e-06,7.0156326165812035e-06,7.544077775369772e-06,8.105102102626378e-06,8.70009185187721e-06,9.330441618730192e-06,9.997549805560967e-06,1.0702813738003264e-05,1.1447624435044927e-05,1.2233361036895407e-05,1.3061384897293241e-05,1.3933033349552166e-05,1.4849613158389105e-05,1.5812393672421214e-05,1.682259969514644e-05,1.788140409521294e-05,1.8989920179817892e-05,2.0149193858132343e-05,2.1360195624702925e-05,2.2623812395807344e-05,2.3940839234712318e-05,2.5311971004671876e-05,2.673779399128228e-05,2.821877753844704e-05,2.975526574467239e-05,3.134746926867943e-05,3.299545729535404e-05,3.469914971483008e-05,3.645830956898622e-05,3.827253582080459e-05,4.0141256502863106e-05,4.206372230168895e-05,4.403900063476554e-05,4.606597027663838e-05,4.814331658979088e-05,5.0269527414742545e-05,5.2442889672151166e-05,5.4661486727566926e-05,5.6923196566889166e-05,5.92256908275141e-05,6.156643472664094e-05,6.394268792423139e-05,6.635150635370961e-05,6.878974504866268e-05,7.12540619885787e-05,7.374092298106847e-05,7.624660759208835e-05,7.876721612945201e-05,8.129867767842835e-05,8.38367591815136e-05,8.637707554758688e-05,8.891510076865903e-05,9.144618001535758e-05,9.396554267521246e-05,9.646831629077418e-05,9.894954134766643e-05,0.00010140418685590908,0.00010382716666130453,0.00010621335641741801,0.00010855761114276103,0.00011085478328226223,0.00011309974118703519,0.00011528738792188187,0.00011741268030594929,0.00011947064808853243,0.00012145641315922674,0.0001233652086895142,0.00012519239810144947,0.00012693349375841688,0.0001285841752729794,0.00013014030732764104,0.0001315979569059073,0.0001329534098333456,0.0001342031865314163,0.00013534405689064554,0.00013637305417422345,0.00013728748786830716,0.00013808495540115043,0.00013876335265963156,0.0001393208832387596,0.00013975606636725554,0.00014006774346027036,0.00014025508325865699,0.00014031758552288963,0.00014025508325865699,0.00014006774346027036,0.00013975606636725554,0.0001393208832387596,0.00013876335265963156,0.00013808495540115043,0.00013728748786830716,0.00013637305417422345,0.00013534405689064554,0.0001342031865314163,0.0001329534098333456,0.0001315979569059073,0.00013014030732764104,0.0001285841752729794,0.00012693349375841688,0.00012519239810144947,0.0001233652086895142,0.00012145641315922674,0.00011947064808853243,0.00011741268030594929,0.00011528738792188187,0.00011309974118703519,0.00011085478328226223,0.00010855761114276103,0.00010621335641741801,0.00010382716666130453,0.00010140418685590908,9.894954134766643e-05,9.646831629077418e-05,9.396554267521246e-05,9.144618001535758e-05,8.891510076865903e-05,8.637707554758688e-05,8.38367591815136e-05,8.129867767842835e-05,7.876721612945201e-05,7.624660759208835e-05,7.374092298106847e-05,7.12540619885787e-05,6.878974504866268e-05,6.635150635370961e-05,6.394268792423139e-05,6.156643472664094e-05,5.92256908275141e-05,5.6923196566889166e-05,5.4661486727566926e-05,5.2442889672151166e-05,5.0269527414742545e-05,4.814331658979088e-05,4.606597027663838e-05,4.403900063476554e-05,4.206372230168895e-05,4.0141256502863106e-05,3.827253582080459e-05,3.645830956898622e-05,3.469914971483008e-05,3.299545729535404e-05,3.134746926867943e-05,2.975526574467239e-05,2.821877753844704e-05,2.673779399128228e-05,2.5311971004671876e-05,2.3940839234712318e-05,2.2623812395807344e-05,2.1360195624702925e-05,2.0149193858132343e-05,1.8989920179817892e-05,1.788140409521294e-05,1.682259969514644e-05,1.5812393672421214e-05,1.4849613158389105e-05,1.3933033349552166e-05,1.3061384897293241e-05,1.2233361036895407e-05,1.1447624435044927e-05,1.0702813738003264e-05,9.997549805560967e-06,9.330441618730192e-06,8.70009185187721e-06,8.105102102626378e-06,7.544077775369772e-06,7.0156326165812035e-06,6.5183929023506666e-06,6.051001280618043e-06,5.612120272488031e-06,5.20043543874805e-06,4.814658219285463e-06,4.453528454509198e-06,4.115816599125347e-06,3.800325639698327e-06,3.5058927283528185e-06,3.2313905457414105e-06,2.9757284070244076e-06,2.737853125088097e-06,2.5167496455731685e-06,2.3114414685036548e-06,2.1209908714071727e-06,1.9444989488078007e-06,1.781105482862704e-06,1.6299886597115317e-06],[1.6379966272333465e-06,1.7898558718759715e-06,1.9540520732025507e-06,2.1314110825608504e-06,2.322797343955959e-06,2.529114179094436e-06,2.7513039173832315e-06,2.9903478562427905e-06,3.247266036890641e-06,3.523116820641034e-06,3.818996250756694e-06,4.136037184989652e-06,4.475408184167868e-06,4.838312142531468e-06,5.225984646004595e-06,5.639692045213466e-06,6.0807292308347175e-06,6.5504170997863035e-06,7.050099701860502e-06,7.58114105764923e-06,8.144921640027524e-06,8.742834513043311e-06,9.376281123810064e-06,1.0046666744911223e-05,1.0755395566898398e-05,1.1503865442693409e-05,1.2293462288080448e-05,1.3125554144989699e-05,1.4001484916916643e-05,1.492256778857956e-05,1.5890078344775503e-05,1.690524740633669e-05,1.7969253604094952e-05,1.908321571481183e-05,2.024818478610311e-05,2.146513608045585e-05,2.2734960871476687e-05,2.4058458128496824e-05,2.5436326128562373e-05,2.6869154037630737e-05,2.8357413505444007e-05,2.990145032102918e-05,3.1501476178052096e-05,3.3157560601296905e-05,3.4869623087325883e-05,3.66374255138667e-05,3.8460564873647655e-05,4.033846638922922e-05,4.2270377065838155e-05,4.425535973927537e-05,4.629228767562046e-05,4.837983977867719e-05,5.051649645988024e-05,5.270053622370388e-05,5.493003301946932e-05,5.7202854407837706e-05,5.951666058719802e-05,6.186890432162091e-05,6.42568318080578e-05,6.667748451603501e-05,6.912770202824136e-05,7.160412590516012e-05,7.410320459127645e-05,7.66211993744349e-05,7.91541914036604e-05,8.169808976423426e-05,8.424864060207426e-05,8.680143728255551e-05,8.935193156187468e-05,9.189544574195877e-05,9.442718577280675e-05,9.69422552590842e-05,9.9435670320828e-05,0.00010190237525131906,0.00010433725890860453,0.00010673517177085987,0.00010909094357982895,0.00011139940149102895,0.00011365538864430751,0.00011585378306374541,0.00011798951679185814,0.00012005759515960742,0.00012205311609093139,0.00012397128933837122,0.00012580745554494844,0.0001275571050267479,0.000129215896170711,0.0001307796733429501,0.00013224448420446299,0.00013360659633345805,0.00013486251305658232,0.00013600898839516456,0.00013704304103712047,0.00013796196725038794,0.00013876335265963156,0.00013944508281443714,0.00014000535248425976,0.0001404426736229426,0.00014075588195362786,0.0001409441421332773,0.00014100695146473957,0.0001409441421332773,0.00014075588195362786,0.0001404426736229426,0.00014000535248425976,0.00013944508281443714,0.00013876335265963156,0.00013796196725038794,0.00013704304103712047,0.00013600898839516456,0.00013486251305658232,0.00013360659633345805,0.00013224448420446299,0.0001307796733429501,0.000129215896170711,0.0001275571050267479,0.00012580745554494844,0.00012397128933837122,0.00012205311609093139,0.00012005759515960742,0.00011798951679185814,0.00011585378306374541,0.00011365538864430751,0.00011139940149102895,0.00010909094357982895,0.00010673517177085987,0.00010433725890860453,0.00010190237525131906,9.9435670320828e-05,9.69422552590842e-05,9.442718577280675e-05,9.189544574195877e-05,8.935193156187468e-05,8.680143728255551e-05,8.424864060207426e-05,8.169808976423426e-05,7.91541914036604e-05,7.66211993744349e-05,7.410320459127645e-05,7.160412590516012e-05,6.912770202824136e-05,6.667748451603501e-05,6.42568318080578e-05,6.186890432162091e-05,5.951666058719802e-05,5.7202854407837706e-05,5.493003301946932e-05,5.270053622370388e-05,5.051649645988024e-05,4.837983977867719e-05,4.629228767562046e-05,4.425535973927537e-05,4.2270377065838155e-05,4.033846638922922e-05,3.8460564873647655e-05,3.66374255138667e-05,3.4869623087325883e-05,3.3157560601296905e-05,3.1501476178052096e-05,2.990145032102918e-05,2.8357413505444007e-05,2.6869154037630737e-05,2.5436326128562373e-05,2.4058458128496824e-05,2.2734960871476687e-05,2.146513608045585e-05,2.024818478610311e-05,1.908321571481183e-05,1.7969253604094952e-05,1.690524740633669e-05,1.5890078344775503e-05,1.492256778857956e-05,1.4001484916916643e-05,1.3125554144989699e-05,1.2293462288080448e-05,1.1503865442693409e-05,1.0755395566898398e-05,1.0046666744911223e-05,9.376281123810064e-06,8.742834513043311e-06,8.144921640027524e-06,7.58114105764923e-06,7.050099701860502e-06,6.5504170997863035e-06,6.0807292308347175e-06,5.639692045213466e-06,5.225984646004595e-06,4.838312142531468e-06,4.475408184167868e-06,4.136037184989652e-06,3.818996250756694e-06,3.523116820641034e-06,3.247266036890641e-06,2.9903478562427905e-06,2.7513039173832315e-06,2.529114179094436e-06,2.322797343955959e-06,2.1314110825608504e-06,1.9540520732025507e-06,1.7898558718759715e-06,1.6379966272333465e-06],[1.6445778548463115e-06,1.7970472474205685e-06,1.9619031647417644e-06,2.139974776305948e-06,2.332129999326065e-06,2.539275784921373e-06,2.7623582486386783e-06,3.0023626306059814e-06,3.2603130704152004e-06,3.5372721817194433e-06,3.834340411520775e-06,4.1526551692257245e-06,4.493389710766422e-06,4.857751763433714e-06,5.246981877552813e-06,5.6623514917590115e-06,6.105160699407719e-06,6.576735704584879e-06,7.078425957275576e-06,7.611600958504251e-06,8.17764672768129e-06,8.777961925979448e-06,9.413953631318929e-06,1.008703276246008e-05,1.0798609151783972e-05,1.1550086268578237e-05,1.2342855597031222e-05,1.3178290675662768e-05,1.4057740807573369e-05,1.4982524453662823e-05,1.595392232383879e-05,1.6973170184189117e-05,1.8041451401109585e-05,1.9159889246440905e-05,2.032953899075236e-05,2.15513798149911e-05,2.2826306573768983e-05,2.4155121446557538e-05,2.5538525515976514e-05,2.6977110315164802e-05,2.847134938888323e-05,3.0021589915487837e-05,3.1628044439198235e-05,3.329078276413884e-05,3.500972406342106e-05,3.678462925803257e-05,3.8615093721478205e-05,4.050054036694788e-05,4.2440213174247006e-05,4.443317121378969e-05,4.647828322460563e-05,4.857422280252996e-05,5.071946425351579e-05,5.291227916532356e-05,5.5150733748688415e-05,5.743268699644636e-05,5.975578970601039e-05,6.211748440703482e-05,6.451500623209867e-05,6.694538476379143e-05,6.94054468867137e-05,7.189182066763666e-05,7.440094028142194e-05,7.692905199432292e-05,7.947222121000229e-05,8.20263405770525e-05,8.458713915003627e-05,8.715019258912408e-05,8.971093437634325e-05,9.226466801932342e-05,9.48065802062814e-05,9.733175486889219e-05,9.983518810270187e-05,0.00010231180388791122,0.00010475647054675682,0.00010716401786739881,0.0001095292548182499,0.00011184698777110504,0.00011411203914631227,0.00011631926638861247,0.00011846358117821927,0.00012053996877825471,0.00012254350741684202,0.0001244693876000182,0.0001263129312501993,0.00012806961056422868,0.00012973506648509016,0.0001313051266821752,0.0001327758229365694,0.00013414340783016374,0.00013540437064049016,0.00013655545234701627,0.00013759365965918782,0.00013851627798174815,0.0001393208832387596,0.00014000535248425976,0.00014056787323455495,0.00014100695146473957,0.00014132141822006397,0.00014151043480120542,0.00014157349649124992,0.00014151043480120542,0.00014132141822006397,0.00014100695146473957,0.00014056787323455495,0.00014000535248425976,0.0001393208832387596,0.00013851627798174815,0.00013759365965918782,0.00013655545234701627,0.00013540437064049016,0.00013414340783016374,0.0001327758229365694,0.0001313051266821752,0.00012973506648509016,0.00012806961056422868,0.0001263129312501993,0.0001244693876000182,0.00012254350741684202,0.00012053996877825471,0.00011846358117821927,0.00011631926638861247,0.00011411203914631227,0.00011184698777110504,0.0001095292548182499,0.00010716401786739881,0.00010475647054675682,0.00010231180388791122,9.983518810270187e-05,9.733175486889219e-05,9.48065802062814e-05,9.226466801932342e-05,8.971093437634325e-05,8.715019258912408e-05,8.458713915003627e-05,8.20263405770525e-05,7.947222121000229e-05,7.692905199432292e-05,7.440094028142194e-05,7.189182066763666e-05,6.94054468867137e-05,6.694538476379143e-05,6.451500623209867e-05,6.211748440703482e-05,5.975578970601039e-05,5.743268699644636e-05,5.5150733748688415e-05,5.291227916532356e-05,5.071946425351579e-05,4.857422280252996e-05,4.647828322460563e-05,4.443317121378969e-05,4.2440213174247006e-05,4.050054036694788e-05,3.8615093721478205e-05,3.678462925803257e-05,3.500972406342106e-05,3.329078276413884e-05,3.1628044439198235e-05,3.0021589915487837e-05,2.847134938888323e-05,2.6977110315164802e-05,2.5538525515976514e-05,2.4155121446557538e-05,2.2826306573768983e-05,2.15513798149911e-05,2.032953899075236e-05,1.9159889246440905e-05,1.8041451401109585e-05,1.6973170184189117e-05,1.595392232383879e-05,1.4982524453662823e-05,1.4057740807573369e-05,1.3178290675662768e-05,1.2342855597031222e-05,1.1550086268578237e-05,1.0798609151783972e-05,1.008703276246008e-05,9.413953631318929e-06,8.777961925979448e-06,8.17764672768129e-06,7.611600958504251e-06,7.078425957275576e-06,6.576735704584879e-06,6.105160699407719e-06,5.6623514917590115e-06,5.246981877552813e-06,4.857751763433714e-06,4.493389710766422e-06,4.1526551692257245e-06,3.834340411520775e-06,3.5372721817194433e-06,3.2603130704152004e-06,3.0023626306059814e-06,2.7623582486386783e-06,2.539275784921373e-06,2.332129999326065e-06,2.139974776305948e-06,1.9619031647417644e-06,1.7970472474205685e-06,1.6445778548463115e-06],[1.649714863163296e-06,1.8026605095892217e-06,1.968031371347914e-06,2.1466592079317456e-06,2.3394146475824693e-06,2.547207474374578e-06,2.770986759144235e-06,3.0117408195184594e-06,3.270496994094667e-06,3.548321215709159e-06,3.8463173687235536e-06,4.165626415359812e-06,4.50742527633581e-06,4.872925451402981e-06,5.263371365873252e-06,5.680038429851446e-06,6.124230797668476e-06,6.597278815945343e-06,7.100536149813151e-06,7.635376578073844e-06,8.203190449512195e-06,8.80538079416319e-06,9.443359085099838e-06,1.0118540648232562e-05,1.0832339719699082e-05,1.1586164152667901e-05,1.238140977777155e-05,1.321945442391891e-05,1.410165160889768e-05,1.5029323911956078e-05,1.600375604343107e-05,1.702618762945316e-05,1.8097805732784952e-05,1.9219737133922437e-05,2.039304039968123e-05,2.1618697769581002e-05,2.289760689340417e-05,2.4230572456312456e-05,2.56182977308294e-05,2.7061376097808557e-05,2.8560282581176602e-05,3.0115365443736923e-05,3.172683789361289e-05,3.339476995296931e-05,3.511908054244645e-05,3.689952983624409e-05,3.873571194397452e-05,4.062704797623757e-05,4.257277955133171e-05,4.4571962800580545e-05,4.662346292940366e-05,4.8725949390476125e-05,5.087789172408857e-05,5.307755611912778e-05,5.5323002745938946e-05,5.76120839097017e-05,5.9942443069852776e-05,6.231151476752444e-05,6.471652549894759e-05,6.715449556830695e-05,6.962224194865036e-05,7.211638217416827e-05,7.46333392815002e-05,7.716934781172555e-05,7.972046087839011e-05,8.228255830035115e-05,8.485135579143344e-05,8.742241519192628e-05,8.999115571986777e-05,9.255286621290993e-05,9.510271832439442e-05,9.763578063015047e-05,0.00010014703359551328,0.00010263138534521292,0.00010508368817216193,0.00010749875571483124,0.00010987138072691177,0.0001121963533573658,0.00011446847985383806,0.00011668260159776843,0.00011883361437547957,0.00012091648778604642,0.00012292628468393076,0.00012485818055221992,0.0001267074827008727,0.00012846964918367297,0.00013014030732764104,0.00013171527176946392,0.00013319056189508674,0.000134562418580954,0.00013582732013849448,0.00013698199736728942,0.0001380234476269333,0.00013894894784285147,0.00013975606636725554,0.0001404426736229426,0.00014100695146473957,0.00014144740120100013,0.00014176285022562407,0.00014195245721952495,0.00014201571588925348,0.00014195245721952495,0.00014176285022562407,0.00014144740120100013,0.00014100695146473957,0.0001404426736229426,0.00013975606636725554,0.00013894894784285147,0.0001380234476269333,0.00013698199736728942,0.00013582732013849448,0.000134562418580954,0.00013319056189508674,0.00013171527176946392,0.00013014030732764104,0.00012846964918367297,0.0001267074827008727,0.00012485818055221992,0.00012292628468393076,0.00012091648778604642,0.00011883361437547957,0.00011668260159776843,0.00011446847985383806,0.0001121963533573658,0.00010987138072691177,0.00010749875571483124,0.00010508368817216193,0.00010263138534521292,0.00010014703359551328,9.763578063015047e-05,9.510271832439442e-05,9.255286621290993e-05,8.999115571986777e-05,8.742241519192628e-05,8.485135579143344e-05,8.228255830035115e-05,7.972046087839011e-05,7.716934781172555e-05,7.46333392815002e-05,7.211638217416827e-05,6.962224194865036e-05,6.715449556830695e-05,6.471652549894759e-05,6.231151476752444e-05,5.9942443069852776e-05,5.76120839097017e-05,5.5323002745938946e-05,5.307755611912778e-05,5.087789172408857e-05,4.8725949390476125e-05,4.662346292940366e-05,4.4571962800580545e-05,4.257277955133171e-05,4.062704797623757e-05,3.873571194397452e-05,3.689952983624409e-05,3.511908054244645e-05,3.339476995296931e-05,3.172683789361289e-05,3.0115365443736923e-05,2.8560282581176602e-05,2.7061376097808557e-05,2.56182977308294e-05,2.4230572456312456e-05,2.289760689340417e-05,2.1618697769581002e-05,2.039304039968123e-05,1.9219737133922437e-05,1.8097805732784952e-05,1.702618762945316e-05,1.600375604343107e-05,1.5029323911956078e-05,1.410165160889768e-05,1.321945442391891e-05,1.238140977777155e-05,1.1586164152667901e-05,1.0832339719699082e-05,1.0118540648232562e-05,9.443359085099838e-06,8.80538079416319e-06,8.203190449512195e-06,7.635376578073844e-06,7.100536149813151e-06,6.597278815945343e-06,6.124230797668476e-06,5.680038429851446e-06,5.263371365873252e-06,4.872925451402981e-06,4.50742527633581e-06,4.165626415359812e-06,3.8463173687235536e-06,3.548321215709159e-06,3.270496994094667e-06,3.0117408195184594e-06,2.770986759144235e-06,2.547207474374578e-06,2.3394146475824693e-06,2.1466592079317456e-06,1.968031371347914e-06,1.8026605095892217e-06,1.649714863163296e-06],[1.6533939759647603e-06,1.8066807142352578e-06,1.9724203779415297e-06,2.1514465815249852e-06,2.3446318948595837e-06,2.552888130975433e-06,2.7771664772797116e-06,3.0184574554967136e-06,3.2777906953437743e-06,3.556234506848084e-06,3.854895236199774e-06,4.174916390138534e-06,4.517477514092832e-06,4.883792809641157e-06,5.275109477351447e-06,5.692705771685298e-06,6.1378887554343535e-06,6.611991742093098e-06,7.11637141566991e-06,7.65240461870053e-06,8.221484800657084e-06,8.825018120543007e-06,9.464419199229014e-06,1.014110651901563e-05,1.085649747000033e-05,1.1612003045076383e-05,1.2409022187789018e-05,1.324893579981326e-05,1.4133100417485487e-05,1.5062841569604993e-05,1.6039446831606428e-05,1.7064158594173416e-05,1.8138166567397443e-05,1.9262600044664848e-05,2.0438519953554787e-05,2.1666910724129125e-05,2.2948672008064583e-05,2.4284610285092088e-05,2.5675430396138895e-05,2.712172704538733e-05,2.8623976316138998e-05,3.0182527247875835e-05,3.179759352420748e-05,3.346924532345869e-05,3.519740138545057e-05,3.6981821349535196e-05,3.882209842012813e-05,4.0717652416818584e-05,4.26677232665995e-05,4.46713649958251e-05,4.6727440279152e-05,4.883461560193418e-05,5.099135709130645e-05,5.319592706949546e-05,5.5446381380733896e-05,5.774056754051823e-05,6.0076123752844546e-05,6.245047883748514e-05,6.486085310533948e-05,6.730426021542147e-05,6.977751004214912e-05,7.227721257630426e-05,7.4799782877359e-05,7.734144708885177e-05,7.989824952217667e-05,8.246606080756602e-05,8.504058710424059e-05,8.761738035472467e-05,9.019184956122209e-05,9.275927305478272e-05,9.531481172080742e-05,9.785352313730627e-05,0.00010037037657529553,0.00010286026880385592,0.00010531804063573734,0.00010773849414304275,0.00011011641046651892,0.00011244656813637505,0.00011472376181740531,0.00011694282138655263,0.00011909863124697383,0.00012118614977919155,0.00012320042882708887,0.00012513663311435324,0.0001269900594855373,0.00012875615586520033,0.0001304305398286428,0.00013200901667856062,0.00013348759692352968,0.0001348625130565823,0.00013613023553525093,0.00013728748786830716,0.00013833126071900474,0.0001392588249399023,0.00014006774346027036,0.00014075588195362786,0.00014132141822006397,0.00014176285022562407,0.0001420790027491196,0.00014226903259519576,0.0001423324323412926,0.00014226903259519576,0.0001420790027491196,0.00014176285022562407,0.00014132141822006397,0.00014075588195362786,0.00014006774346027036,0.0001392588249399023,0.00013833126071900474,0.00013728748786830716,0.00013613023553525093,0.0001348625130565823,0.00013348759692352968,0.00013200901667856062,0.0001304305398286428,0.00012875615586520033,0.0001269900594855373,0.00012513663311435324,0.00012320042882708887,0.00012118614977919155,0.00011909863124697383,0.00011694282138655263,0.00011472376181740531,0.00011244656813637505,0.00011011641046651892,0.00010773849414304275,0.00010531804063573734,0.00010286026880385592,0.00010037037657529553,9.785352313730627e-05,9.531481172080742e-05,9.275927305478272e-05,9.019184956122209e-05,8.761738035472467e-05,8.504058710424059e-05,8.246606080756602e-05,7.989824952217667e-05,7.734144708885177e-05,7.4799782877359e-05,7.227721257630426e-05,6.977751004214912e-05,6.730426021542147e-05,6.486085310533948e-05,6.245047883748514e-05,6.0076123752844546e-05,5.774056754051823e-05,5.5446381380733896e-05,5.319592706949546e-05,5.099135709130645e-05,4.883461560193418e-05,4.6727440279152e-05,4.46713649958251e-05,4.26677232665995e-05,4.0717652416818584e-05,3.882209842012813e-05,3.6981821349535196e-05,3.519740138545057e-05,3.346924532345869e-05,3.179759352420748e-05,3.0182527247875835e-05,2.8623976316138998e-05,2.712172704538733e-05,2.5675430396138895e-05,2.4284610285092088e-05,2.2948672008064583e-05,2.1666910724129125e-05,2.0438519953554787e-05,1.9262600044664848e-05,1.8138166567397443e-05,1.7064158594173416e-05,1.6039446831606428e-05,1.5062841569604993e-05,1.4133100417485487e-05,1.324893579981326e-05,1.2409022187789018e-05,1.1612003045076383e-05,1.085649747000033e-05,1.014110651901563e-05,9.464419199229014e-06,8.825018120543007e-06,8.221484800657084e-06,7.65240461870053e-06,7.11637141566991e-06,6.611991742093098e-06,6.1378887554343535e-06,5.692705771685298e-06,5.275109477351447e-06,4.883792809641157e-06,4.517477514092832e-06,4.174916390138534e-06,3.854895236199774e-06,3.556234506848084e-06,3.2777906953437743e-06,3.0184574554967136e-06,2.7771664772797116e-06,2.552888130975433e-06,2.3446318948595837e-06,2.1514465815249852e-06,1.9724203779415297e-06,1.8066807142352578e-06,1.6533939759647603e-06],[1.6556053808639816e-06,1.8090971392621225e-06,1.975058478811928e-06,2.1543241289093108e-06,2.347767826485401e-06,2.556302604114969e-06,2.7808809214128626e-06,3.022494624920463e-06,3.2821747214789097e-06,3.5609909499738884e-06,3.860051136327173e-06,4.180500316712117e-06,4.523519614192391e-06,4.890324854334086e-06,5.2821649058287015e-06,5.700319732795797e-06,6.146098146215956e-06,6.620835242882765e-06,7.125889521361633e-06,7.662639665707244e-06,8.23248098912235e-06,8.83682153133994e-06,9.477077805277972e-06,1.0154670190448866e-05,1.0871017972701166e-05,1.1627534032122994e-05,1.2425619183338498e-05,1.3266656174970718e-05,1.4152003357715555e-05,1.5082988033259414e-05,1.606089949916167e-05,1.7086981807796303e-05,1.816242626048519e-05,1.9288363661038046e-05,2.0465856356018545e-05,2.1695890092158072e-05,2.2979365724412283e-05,2.431709081117408e-05,2.5709771136091398e-05,2.7158002198759963e-05,2.8662260719240055e-05,3.022289620385191e-05,3.184012262200574e-05,3.351401024588944e-05,3.524447770663907e-05,3.7031284322125724e-05,3.887402275267822e-05,4.0772112041897836e-05,4.272479110018425e-05,4.473111268865738e-05,4.678993796080775e-05,4.8899931618421236e-05,5.105955773708651e-05,5.3267076314896246e-05,5.552054059578601e-05,5.7817795216316684e-05,6.0156475221595804e-05,6.2534005992457e-05,6.494760412198154e-05,6.739427927496958e-05,6.98708370590645e-05,7.237388293093044e-05,7.489982715520219e-05,7.744489082790698e-05,8.000511296972821e-05,8.257635868788997e-05,8.515432839862582e-05,8.773456809520878e-05,9.031248063940969e-05,9.28833380470734e-05,9.544229473131299e-05,9.79844016596776e-05,0.0001005046213746125,0.0001029978438196566,0.00010545890290717652,0.00010788259375707673,0.00011026369052990986,0.00011259696477219942,0.00011487720418663378,0.00011709923173514609,0.00011925792497881196,0.00012134823555501704,0.00012336520868951422,0.00012530400263883676,0.00012715990795709404,0.0001289283664804707,0.00013060498992279945,0.00013218557797639287,0.00013366613581390497,0.00013504289088934934,0.0001363123089395157,0.00013747110909088757,0.00013851627798174815,0.00013944508281443712,0.00014025508325865699,0.0001409441421332773,0.00014151043480120542,0.00014195245721952495,0.00014226903259519576,0.0001424593166050942,0.00014252280114798548,0.0001424593166050942,0.00014226903259519576,0.00014195245721952495,0.00014151043480120542,0.0001409441421332773,0.00014025508325865699,0.00013944508281443712,0.00013851627798174815,0.00013747110909088757,0.0001363123089395157,0.00013504289088934934,0.00013366613581390497,0.00013218557797639287,0.00013060498992279945,0.0001289283664804707,0.00012715990795709404,0.00012530400263883676,0.00012336520868951422,0.00012134823555501704,0.00011925792497881196,0.00011709923173514609,0.00011487720418663378,0.00011259696477219942,0.00011026369052990986,0.00010788259375707673,0.00010545890290717652,0.0001029978438196566,0.0001005046213746125,9.79844016596776e-05,9.544229473131299e-05,9.28833380470734e-05,9.031248063940969e-05,8.773456809520878e-05,8.515432839862582e-05,8.257635868788997e-05,8.000511296972821e-05,7.744489082790698e-05,7.489982715520219e-05,7.237388293093044e-05,6.98708370590645e-05,6.739427927496958e-05,6.494760412198154e-05,6.2534005992457e-05,6.0156475221595804e-05,5.7817795216316684e-05,5.552054059578601e-05,5.3267076314896246e-05,5.105955773708651e-05,4.8899931618421236e-05,4.678993796080775e-05,4.473111268865738e-05,4.272479110018425e-05,4.0772112041897836e-05,3.887402275267822e-05,3.7031284322125724e-05,3.524447770663907e-05,3.351401024588944e-05,3.184012262200574e-05,3.022289620385191e-05,2.8662260719240055e-05,2.7158002198759963e-05,2.5709771136091398e-05,2.431709081117408e-05,2.2979365724412283e-05,2.1695890092158072e-05,2.0465856356018545e-05,1.9288363661038046e-05,1.816242626048519e-05,1.7086981807796303e-05,1.606089949916167e-05,1.5082988033259414e-05,1.4152003357715555e-05,1.3266656174970718e-05,1.2425619183338498e-05,1.1627534032122994e-05,1.0871017972701166e-05,1.0154670190448866e-05,9.477077805277972e-06,8.83682153133994e-06,8.23248098912235e-06,7.662639665707244e-06,7.125889521361633e-06,6.620835242882765e-06,6.146098146215956e-06,5.700319732795797e-06,5.2821649058287015e-06,4.890324854334086e-06,4.523519614192391e-06,4.180500316712117e-06,3.860051136327173e-06,3.5609909499738884e-06,3.2821747214789097e-06,3.022494624920463e-06,2.7808809214128626e-06,2.556302604114969e-06,2.347767826485401e-06,2.1543241289093108e-06,1.975058478811928e-06,1.8090971392621225e-06,1.6556053808639816e-06],[1.656343172910983e-06,1.809903332269845e-06,1.9759386296346257e-06,2.1552841663840277e-06,2.3488140688150084e-06,2.5574417763795946e-06,2.7821201731398687e-06,3.0238415476365552e-06,3.283637366161251e-06,3.5625778443103657e-06,3.861771301689232e-06,4.182363284736869e-06,4.525535442864115e-06,4.892504143448802e-06,5.284518811719268e-06,5.70285998218906e-06,6.148837049087848e-06,6.6237857041721305e-06,7.129065051398826e-06,7.666054389209439e-06,8.23614965260404e-06,8.840759508784293e-06,9.481301101912764e-06,1.0159195444469559e-05,1.0875862454783534e-05,1.163271564256851e-05,1.2431156446697567e-05,1.327256823199187e-05,1.4158309954472937e-05,1.5089709507316325e-05,1.6068056762634675e-05,1.709459632719251e-05,1.8170520033194628e-05,1.9296959188374008e-05,2.047497661271079e-05,2.1705558492217425e-05,2.2989606083300074e-05,2.4327927304226146e-05,2.5721228253163908e-05,2.7170104695083233e-05,2.8675033562486495e-05,3.0236364517445406e-05,3.185431162472197e-05,3.352894518781965e-05,3.526018380161389e-05,3.704778667671995e-05,3.88913462919427e-05,4.0790281431990214e-05,4.274383066809569e-05,4.475104633925834e-05,4.6810789091461336e-05,4.892172303143788e-05,5.1082311550318364e-05,5.329081387079356e-05,5.554528236926069e-05,5.7843560721780004e-05,6.018328291955761e-05,6.256187319609238e-05,6.497654690408822e-05,6.742431237575384e-05,6.990197379520667e-05,7.240613510639098e-05,7.493320497423781e-05,7.747940281077086e-05,8.004076587153125e-05,8.261315742109926e-05,8.519227595967294e-05,8.777366549567384e-05,9.035272684223728e-05,9.292472990826337e-05,9.548482694751271e-05,9.802806672208332e-05,0.00010054940952956425,0.00010304374303628561,0.000105505898852436,0.00010793066977845468,0.00011031282764608881,0.0001126471416718916,0.00011492839723578082,0.00011715141499263169,0.00011931107022079307,0.00012140231230793472,0.0001234201842717996,0.00012535984221128134,0.00012721657458180578,0.00012898582118829035,0.0001306631917890035,0.00013224448420446299,0.00013372570182709675,0.00013510307042974819,0.00013637305417422345,0.00013753237072494122,0.0001385780053773319,0.00013950722411591095,0.00014031758552288963,0.00014100695146473957,0.00014157349649124992,0.00014201571588925348,0.0001423324323412926,0.00014252280114798548,0.00014258631398167082,0.00014252280114798548,0.0001423324323412926,0.00014201571588925348,0.00014157349649124992,0.00014100695146473957,0.00014031758552288963,0.00013950722411591095,0.0001385780053773319,0.00013753237072494122,0.00013637305417422345,0.00013510307042974819,0.00013372570182709675,0.00013224448420446299,0.0001306631917890035,0.00012898582118829035,0.00012721657458180578,0.00012535984221128134,0.0001234201842717996,0.00012140231230793472,0.00011931107022079307,0.00011715141499263169,0.00011492839723578082,0.0001126471416718916,0.00011031282764608881,0.00010793066977845468,0.000105505898852436,0.00010304374303628561,0.00010054940952956425,9.802806672208332e-05,9.548482694751271e-05,9.292472990826337e-05,9.035272684223728e-05,8.777366549567384e-05,8.519227595967294e-05,8.261315742109926e-05,8.004076587153125e-05,7.747940281077086e-05,7.493320497423781e-05,7.240613510639098e-05,6.990197379520667e-05,6.742431237575384e-05,6.497654690408822e-05,6.256187319609238e-05,6.018328291955761e-05,5.7843560721780004e-05,5.554528236926069e-05,5.329081387079356e-05,5.1082311550318364e-05,4.892172303143788e-05,4.6810789091461336e-05,4.475104633925834e-05,4.274383066809569e-05,4.0790281431990214e-05,3.88913462919427e-05,3.704778667671995e-05,3.526018380161389e-05,3.352894518781965e-05,3.185431162472197e-05,3.0236364517445406e-05,2.8675033562486495e-05,2.7170104695083233e-05,2.5721228253163908e-05,2.4327927304226146e-05,2.2989606083300074e-05,2.1705558492217425e-05,2.047497661271079e-05,1.9296959188374008e-05,1.8170520033194628e-05,1.709459632719251e-05,1.6068056762634675e-05,1.5089709507316325e-05,1.4158309954472937e-05,1.327256823199187e-05,1.2431156446697567e-05,1.163271564256851e-05,1.0875862454783534e-05,1.0159195444469559e-05,9.481301101912764e-06,8.840759508784293e-06,8.23614965260404e-06,7.666054389209439e-06,7.129065051398826e-06,6.6237857041721305e-06,6.148837049087848e-06,5.70285998218906e-06,5.284518811719268e-06,4.892504143448802e-06,4.525535442864115e-06,4.182363284736869e-06,3.861771301689232e-06,3.5625778443103657e-06,3.283637366161251e-06,3.0238415476365552e-06,2.7821201731398687e-06,2.5574417763795946e-06,2.3488140688150084e-06,2.1552841663840277e-06,1.9759386296346257e-06,1.809903332269845e-06,1.656343172910983e-06],[1.6556053808639816e-06,1.8090971392621225e-06,1.975058478811928e-06,2.1543241289093108e-06,2.347767826485401e-06,2.556302604114969e-06,2.7808809214128626e-06,3.022494624920463e-06,3.2821747214789097e-06,3.5609909499738884e-06,3.860051136327173e-06,4.180500316712117e-06,4.523519614192391e-06,4.890324854334086e-06,5.2821649058287015e-06,5.700319732795797e-06,6.146098146215956e-06,6.620835242882765e-06,7.125889521361633e-06,7.662639665707244e-06,8.23248098912235e-06,8.83682153133994e-06,9.477077805277972e-06,1.0154670190448866e-05,1.0871017972701166e-05,1.1627534032122994e-05,1.2425619183338498e-05,1.3266656174970718e-05,1.4152003357715555e-05,1.5082988033259414e-05,1.606089949916167e-05,1.7086981807796303e-05,1.816242626048519e-05,1.9288363661038046e-05,2.0465856356018545e-05,2.1695890092158072e-05,2.2979365724412283e-05,2.431709081117408e-05,2.5709771136091398e-05,2.7158002198759963e-05,2.8662260719240055e-05,3.022289620385191e-05,3.184012262200574e-05,3.351401024588944e-05,3.524447770663907e-05,3.7031284322125724e-05,3.887402275267822e-05,4.0772112041897836e-05,4.272479110018425e-05,4.473111268865738e-05,4.678993796080775e-05,4.8899931618421236e-05,5.105955773708651e-05,5.3267076314896246e-05,5.552054059578601e-05,5.7817795216316684e-05,6.0156475221595804e-05,6.2534005992457e-05,6.494760412198154e-05,6.739427927496958e-05,6.98708370590645e-05,7.237388293093044e-05,7.489982715520219e-05,7.744489082790698e-05,8.000511296972821e-05,8.257635868788997e-05,8.515432839862582e-05,8.773456809520878e-05,9.031248063940969e-05,9.28833380470734e-05,9.544229473131299e-05,9.79844016596776e-05,0.0001005046213746125,0.0001029978438196566,0.00010545890290717652,0.00010788259375707673,0.00011026369052990986,0.00011259696477219942,0.00011487720418663378,0.00011709923173514609,0.00011925792497881196,0.00012134823555501704,0.00012336520868951422,0.00012530400263883676,0.00012715990795709404,0.0001289283664804707,0.00013060498992279945,0.00013218557797639287,0.00013366613581390497,0.00013504289088934934,0.0001363123089395157,0.00013747110909088757,0.00013851627798174815,0.00013944508281443712,0.00014025508325865699,0.0001409441421332773,0.00014151043480120542,0.00014195245721952495,0.00014226903259519576,0.0001424593166050942,0.00014252280114798548,0.0001424593166050942,0.00014226903259519576,0.00014195245721952495,0.00014151043480120542,0.0001409441421332773,0.00014025508325865699,0.00013944508281443712,0.00013851627798174815,0.00013747110909088757,0.0001363123089395157,0.00013504289088934934,0.00013366613581390497,0.00013218557797639287,0.00013060498992279945,0.0001289283664804707,0.00012715990795709404,0.00012530400263883676,0.00012336520868951422,0.00012134823555501704,0.00011925792497881196,0.00011709923173514609,0.00011487720418663378,0.00011259696477219942,0.00011026369052990986,0.00010788259375707673,0.00010545890290717652,0.0001029978438196566,0.0001005046213746125,9.79844016596776e-05,9.544229473131299e-05,9.28833380470734e-05,9.031248063940969e-05,8.773456809520878e-05,8.515432839862582e-05,8.257635868788997e-05,8.000511296972821e-05,7.744489082790698e-05,7.489982715520219e-05,7.237388293093044e-05,6.98708370590645e-05,6.739427927496958e-05,6.494760412198154e-05,6.2534005992457e-05,6.0156475221595804e-05,5.7817795216316684e-05,5.552054059578601e-05,5.3267076314896246e-05,5.105955773708651e-05,4.8899931618421236e-05,4.678993796080775e-05,4.473111268865738e-05,4.272479110018425e-05,4.0772112041897836e-05,3.887402275267822e-05,3.7031284322125724e-05,3.524447770663907e-05,3.351401024588944e-05,3.184012262200574e-05,3.022289620385191e-05,2.8662260719240055e-05,2.7158002198759963e-05,2.5709771136091398e-05,2.431709081117408e-05,2.2979365724412283e-05,2.1695890092158072e-05,2.0465856356018545e-05,1.9288363661038046e-05,1.816242626048519e-05,1.7086981807796303e-05,1.606089949916167e-05,1.5082988033259414e-05,1.4152003357715555e-05,1.3266656174970718e-05,1.2425619183338498e-05,1.1627534032122994e-05,1.0871017972701166e-05,1.0154670190448866e-05,9.477077805277972e-06,8.83682153133994e-06,8.23248098912235e-06,7.662639665707244e-06,7.125889521361633e-06,6.620835242882765e-06,6.146098146215956e-06,5.700319732795797e-06,5.2821649058287015e-06,4.890324854334086e-06,4.523519614192391e-06,4.180500316712117e-06,3.860051136327173e-06,3.5609909499738884e-06,3.2821747214789097e-06,3.022494624920463e-06,2.7808809214128626e-06,2.556302604114969e-06,2.347767826485401e-06,2.1543241289093108e-06,1.975058478811928e-06,1.8090971392621225e-06,1.6556053808639816e-06],[1.6533939759647603e-06,1.8066807142352578e-06,1.9724203779415297e-06,2.1514465815249852e-06,2.3446318948595837e-06,2.552888130975433e-06,2.7771664772797116e-06,3.0184574554967136e-06,3.2777906953437743e-06,3.556234506848084e-06,3.854895236199774e-06,4.174916390138534e-06,4.517477514092832e-06,4.883792809641157e-06,5.275109477351447e-06,5.692705771685298e-06,6.1378887554343535e-06,6.611991742093098e-06,7.11637141566991e-06,7.65240461870053e-06,8.221484800657084e-06,8.825018120543007e-06,9.464419199229014e-06,1.014110651901563e-05,1.085649747000033e-05,1.1612003045076383e-05,1.2409022187789018e-05,1.324893579981326e-05,1.4133100417485487e-05,1.5062841569604993e-05,1.6039446831606428e-05,1.7064158594173416e-05,1.8138166567397443e-05,1.9262600044664848e-05,2.0438519953554787e-05,2.1666910724129125e-05,2.2948672008064583e-05,2.4284610285092088e-05,2.5675430396138895e-05,2.712172704538733e-05,2.8623976316138998e-05,3.0182527247875835e-05,3.179759352420748e-05,3.346924532345869e-05,3.519740138545057e-05,3.6981821349535196e-05,3.882209842012813e-05,4.0717652416818584e-05,4.26677232665995e-05,4.46713649958251e-05,4.6727440279152e-05,4.883461560193418e-05,5.099135709130645e-05,5.319592706949546e-05,5.5446381380733896e-05,5.774056754051823e-05,6.0076123752844546e-05,6.245047883748514e-05,6.486085310533948e-05,6.730426021542147e-05,6.977751004214912e-05,7.227721257630426e-05,7.4799782877359e-05,7.734144708885177e-05,7.989824952217667e-05,8.246606080756602e-05,8.504058710424059e-05,8.761738035472467e-05,9.019184956122209e-05,9.275927305478272e-05,9.531481172080742e-05,9.785352313730627e-05,0.00010037037657529553,0.00010286026880385592,0.00010531804063573734,0.00010773849414304275,0.00011011641046651892,0.00011244656813637505,0.00011472376181740531,0.00011694282138655263,0.00011909863124697383,0.00012118614977919155,0.00012320042882708887,0.00012513663311435324,0.0001269900594855373,0.00012875615586520033,0.0001304305398286428,0.00013200901667856062,0.00013348759692352968,0.0001348625130565823,0.00013613023553525093,0.00013728748786830716,0.00013833126071900474,0.0001392588249399023,0.00014006774346027036,0.00014075588195362786,0.00014132141822006397,0.00014176285022562407,0.0001420790027491196,0.00014226903259519576,0.0001423324323412926,0.00014226903259519576,0.0001420790027491196,0.00014176285022562407,0.00014132141822006397,0.00014075588195362786,0.00014006774346027036,0.0001392588249399023,0.00013833126071900474,0.00013728748786830716,0.00013613023553525093,0.0001348625130565823,0.00013348759692352968,0.00013200901667856062,0.0001304305398286428,0.00012875615586520033,0.0001269900594855373,0.00012513663311435324,0.00012320042882708887,0.00012118614977919155,0.00011909863124697383,0.00011694282138655263,0.00011472376181740531,0.00011244656813637505,0.00011011641046651892,0.00010773849414304275,0.00010531804063573734,0.00010286026880385592,0.00010037037657529553,9.785352313730627e-05,9.531481172080742e-05,9.275927305478272e-05,9.019184956122209e-05,8.761738035472467e-05,8.504058710424059e-05,8.246606080756602e-05,7.989824952217667e-05,7.734144708885177e-05,7.4799782877359e-05,7.227721257630426e-05,6.977751004214912e-05,6.730426021542147e-05,6.486085310533948e-05,6.245047883748514e-05,6.0076123752844546e-05,5.774056754051823e-05,5.5446381380733896e-05,5.319592706949546e-05,5.099135709130645e-05,4.883461560193418e-05,4.6727440279152e-05,4.46713649958251e-05,4.26677232665995e-05,4.0717652416818584e-05,3.882209842012813e-05,3.6981821349535196e-05,3.519740138545057e-05,3.346924532345869e-05,3.179759352420748e-05,3.0182527247875835e-05,2.8623976316138998e-05,2.712172704538733e-05,2.5675430396138895e-05,2.4284610285092088e-05,2.2948672008064583e-05,2.1666910724129125e-05,2.0438519953554787e-05,1.9262600044664848e-05,1.8138166567397443e-05,1.7064158594173416e-05,1.6039446831606428e-05,1.5062841569604993e-05,1.4133100417485487e-05,1.324893579981326e-05,1.2409022187789018e-05,1.1612003045076383e-05,1.085649747000033e-05,1.014110651901563e-05,9.464419199229014e-06,8.825018120543007e-06,8.221484800657084e-06,7.65240461870053e-06,7.11637141566991e-06,6.611991742093098e-06,6.1378887554343535e-06,5.692705771685298e-06,5.275109477351447e-06,4.883792809641157e-06,4.517477514092832e-06,4.174916390138534e-06,3.854895236199774e-06,3.556234506848084e-06,3.2777906953437743e-06,3.0184574554967136e-06,2.7771664772797116e-06,2.552888130975433e-06,2.3446318948595837e-06,2.1514465815249852e-06,1.9724203779415297e-06,1.8066807142352578e-06,1.6533939759647603e-06],[1.649714863163296e-06,1.8026605095892217e-06,1.968031371347914e-06,2.1466592079317456e-06,2.3394146475824693e-06,2.547207474374578e-06,2.770986759144235e-06,3.0117408195184594e-06,3.270496994094667e-06,3.548321215709159e-06,3.8463173687235536e-06,4.165626415359812e-06,4.50742527633581e-06,4.872925451402981e-06,5.263371365873252e-06,5.680038429851446e-06,6.124230797668476e-06,6.597278815945343e-06,7.100536149813151e-06,7.635376578073844e-06,8.203190449512195e-06,8.80538079416319e-06,9.443359085099838e-06,1.0118540648232562e-05,1.0832339719699082e-05,1.1586164152667901e-05,1.238140977777155e-05,1.321945442391891e-05,1.410165160889768e-05,1.5029323911956078e-05,1.600375604343107e-05,1.702618762945316e-05,1.8097805732784952e-05,1.9219737133922437e-05,2.039304039968123e-05,2.1618697769581002e-05,2.289760689340417e-05,2.4230572456312456e-05,2.56182977308294e-05,2.7061376097808557e-05,2.8560282581176602e-05,3.0115365443736923e-05,3.172683789361289e-05,3.339476995296931e-05,3.511908054244645e-05,3.689952983624409e-05,3.873571194397452e-05,4.062704797623757e-05,4.257277955133171e-05,4.4571962800580545e-05,4.662346292940366e-05,4.8725949390476125e-05,5.087789172408857e-05,5.307755611912778e-05,5.5323002745938946e-05,5.76120839097017e-05,5.9942443069852776e-05,6.231151476752444e-05,6.471652549894759e-05,6.715449556830695e-05,6.962224194865036e-05,7.211638217416827e-05,7.46333392815002e-05,7.716934781172555e-05,7.972046087839011e-05,8.228255830035115e-05,8.485135579143344e-05,8.742241519192628e-05,8.999115571986777e-05,9.255286621290993e-05,9.510271832439442e-05,9.763578063015047e-05,0.00010014703359551328,0.00010263138534521292,0.00010508368817216193,0.00010749875571483124,0.00010987138072691177,0.0001121963533573658,0.00011446847985383806,0.00011668260159776843,0.00011883361437547957,0.00012091648778604642,0.00012292628468393076,0.00012485818055221992,0.0001267074827008727,0.00012846964918367297,0.00013014030732764104,0.00013171527176946392,0.00013319056189508674,0.000134562418580954,0.00013582732013849448,0.00013698199736728942,0.0001380234476269333,0.00013894894784285147,0.00013975606636725554,0.0001404426736229426,0.00014100695146473957,0.00014144740120100013,0.00014176285022562407,0.00014195245721952495,0.00014201571588925348,0.00014195245721952495,0.00014176285022562407,0.00014144740120100013,0.00014100695146473957,0.0001404426736229426,0.00013975606636725554,0.00013894894784285147,0.0001380234476269333,0.00013698199736728942,0.00013582732013849448,0.000134562418580954,0.00013319056189508674,0.00013171527176946392,0.00013014030732764104,0.00012846964918367297,0.0001267074827008727,0.00012485818055221992,0.00012292628468393076,0.00012091648778604642,0.00011883361437547957,0.00011668260159776843,0.00011446847985383806,0.0001121963533573658,0.00010987138072691177,0.00010749875571483124,0.00010508368817216193,0.00010263138534521292,0.00010014703359551328,9.763578063015047e-05,9.510271832439442e-05,9.255286621290993e-05,8.999115571986777e-05,8.742241519192628e-05,8.485135579143344e-05,8.228255830035115e-05,7.972046087839011e-05,7.716934781172555e-05,7.46333392815002e-05,7.211638217416827e-05,6.962224194865036e-05,6.715449556830695e-05,6.471652549894759e-05,6.231151476752444e-05,5.9942443069852776e-05,5.76120839097017e-05,5.5323002745938946e-05,5.307755611912778e-05,5.087789172408857e-05,4.8725949390476125e-05,4.662346292940366e-05,4.4571962800580545e-05,4.257277955133171e-05,4.062704797623757e-05,3.873571194397452e-05,3.689952983624409e-05,3.511908054244645e-05,3.339476995296931e-05,3.172683789361289e-05,3.0115365443736923e-05,2.8560282581176602e-05,2.7061376097808557e-05,2.56182977308294e-05,2.4230572456312456e-05,2.289760689340417e-05,2.1618697769581002e-05,2.039304039968123e-05,1.9219737133922437e-05,1.8097805732784952e-05,1.702618762945316e-05,1.600375604343107e-05,1.5029323911956078e-05,1.410165160889768e-05,1.321945442391891e-05,1.238140977777155e-05,1.1586164152667901e-05,1.0832339719699082e-05,1.0118540648232562e-05,9.443359085099838e-06,8.80538079416319e-06,8.203190449512195e-06,7.635376578073844e-06,7.100536149813151e-06,6.597278815945343e-06,6.124230797668476e-06,5.680038429851446e-06,5.263371365873252e-06,4.872925451402981e-06,4.50742527633581e-06,4.165626415359812e-06,3.8463173687235536e-06,3.548321215709159e-06,3.270496994094667e-06,3.0117408195184594e-06,2.770986759144235e-06,2.547207474374578e-06,2.3394146475824693e-06,2.1466592079317456e-06,1.968031371347914e-06,1.8026605095892217e-06,1.649714863163296e-06],[1.6445778548463115e-06,1.7970472474205685e-06,1.9619031647417644e-06,2.139974776305948e-06,2.332129999326065e-06,2.539275784921373e-06,2.7623582486386783e-06,3.0023626306059814e-06,3.2603130704152004e-06,3.5372721817194433e-06,3.834340411520775e-06,4.1526551692257245e-06,4.493389710766422e-06,4.857751763433714e-06,5.246981877552813e-06,5.6623514917590115e-06,6.105160699407719e-06,6.576735704584879e-06,7.078425957275576e-06,7.611600958504251e-06,8.17764672768129e-06,8.777961925979448e-06,9.413953631318929e-06,1.008703276246008e-05,1.0798609151783972e-05,1.1550086268578237e-05,1.2342855597031222e-05,1.3178290675662768e-05,1.4057740807573369e-05,1.4982524453662823e-05,1.595392232383879e-05,1.6973170184189117e-05,1.8041451401109585e-05,1.9159889246440905e-05,2.032953899075236e-05,2.15513798149911e-05,2.2826306573768983e-05,2.4155121446557538e-05,2.5538525515976514e-05,2.6977110315164802e-05,2.847134938888323e-05,3.0021589915487837e-05,3.1628044439198235e-05,3.329078276413884e-05,3.500972406342106e-05,3.678462925803257e-05,3.8615093721478205e-05,4.050054036694788e-05,4.2440213174247006e-05,4.443317121378969e-05,4.647828322460563e-05,4.857422280252996e-05,5.071946425351579e-05,5.291227916532356e-05,5.5150733748688415e-05,5.743268699644636e-05,5.975578970601039e-05,6.211748440703482e-05,6.451500623209867e-05,6.694538476379143e-05,6.94054468867137e-05,7.189182066763666e-05,7.440094028142194e-05,7.692905199432292e-05,7.947222121000229e-05,8.20263405770525e-05,8.458713915003627e-05,8.715019258912408e-05,8.971093437634325e-05,9.226466801932342e-05,9.48065802062814e-05,9.733175486889219e-05,9.983518810270187e-05,0.00010231180388791122,0.00010475647054675682,0.00010716401786739881,0.0001095292548182499,0.00011184698777110504,0.00011411203914631227,0.00011631926638861247,0.00011846358117821927,0.00012053996877825471,0.00012254350741684202,0.0001244693876000182,0.0001263129312501993,0.00012806961056422868,0.00012973506648509016,0.0001313051266821752,0.0001327758229365694,0.00013414340783016374,0.00013540437064049016,0.00013655545234701627,0.00013759365965918782,0.00013851627798174815,0.0001393208832387596,0.00014000535248425976,0.00014056787323455495,0.00014100695146473957,0.00014132141822006397,0.00014151043480120542,0.00014157349649124992,0.00014151043480120542,0.00014132141822006397,0.00014100695146473957,0.00014056787323455495,0.00014000535248425976,0.0001393208832387596,0.00013851627798174815,0.00013759365965918782,0.00013655545234701627,0.00013540437064049016,0.00013414340783016374,0.0001327758229365694,0.0001313051266821752,0.00012973506648509016,0.00012806961056422868,0.0001263129312501993,0.0001244693876000182,0.00012254350741684202,0.00012053996877825471,0.00011846358117821927,0.00011631926638861247,0.00011411203914631227,0.00011184698777110504,0.0001095292548182499,0.00010716401786739881,0.00010475647054675682,0.00010231180388791122,9.983518810270187e-05,9.733175486889219e-05,9.48065802062814e-05,9.226466801932342e-05,8.971093437634325e-05,8.715019258912408e-05,8.458713915003627e-05,8.20263405770525e-05,7.947222121000229e-05,7.692905199432292e-05,7.440094028142194e-05,7.189182066763666e-05,6.94054468867137e-05,6.694538476379143e-05,6.451500623209867e-05,6.211748440703482e-05,5.975578970601039e-05,5.743268699644636e-05,5.5150733748688415e-05,5.291227916532356e-05,5.071946425351579e-05,4.857422280252996e-05,4.647828322460563e-05,4.443317121378969e-05,4.2440213174247006e-05,4.050054036694788e-05,3.8615093721478205e-05,3.678462925803257e-05,3.500972406342106e-05,3.329078276413884e-05,3.1628044439198235e-05,3.0021589915487837e-05,2.847134938888323e-05,2.6977110315164802e-05,2.5538525515976514e-05,2.4155121446557538e-05,2.2826306573768983e-05,2.15513798149911e-05,2.032953899075236e-05,1.9159889246440905e-05,1.8041451401109585e-05,1.6973170184189117e-05,1.595392232383879e-05,1.4982524453662823e-05,1.4057740807573369e-05,1.3178290675662768e-05,1.2342855597031222e-05,1.1550086268578237e-05,1.0798609151783972e-05,1.008703276246008e-05,9.413953631318929e-06,8.777961925979448e-06,8.17764672768129e-06,7.611600958504251e-06,7.078425957275576e-06,6.576735704584879e-06,6.105160699407719e-06,5.6623514917590115e-06,5.246981877552813e-06,4.857751763433714e-06,4.493389710766422e-06,4.1526551692257245e-06,3.834340411520775e-06,3.5372721817194433e-06,3.2603130704152004e-06,3.0023626306059814e-06,2.7623582486386783e-06,2.539275784921373e-06,2.332129999326065e-06,2.139974776305948e-06,1.9619031647417644e-06,1.7970472474205685e-06,1.6445778548463115e-06],[1.6379966272333465e-06,1.7898558718759715e-06,1.9540520732025507e-06,2.1314110825608504e-06,2.322797343955959e-06,2.529114179094436e-06,2.7513039173832315e-06,2.9903478562427905e-06,3.247266036890641e-06,3.523116820641034e-06,3.818996250756694e-06,4.136037184989652e-06,4.475408184167868e-06,4.838312142531468e-06,5.225984646004595e-06,5.639692045213466e-06,6.0807292308347175e-06,6.5504170997863035e-06,7.050099701860502e-06,7.58114105764923e-06,8.144921640027524e-06,8.742834513043311e-06,9.376281123810064e-06,1.0046666744911223e-05,1.0755395566898398e-05,1.1503865442693409e-05,1.2293462288080448e-05,1.3125554144989699e-05,1.4001484916916643e-05,1.492256778857956e-05,1.5890078344775503e-05,1.690524740633669e-05,1.7969253604094952e-05,1.908321571481183e-05,2.024818478610311e-05,2.146513608045585e-05,2.2734960871476687e-05,2.4058458128496824e-05,2.5436326128562373e-05,2.6869154037630737e-05,2.8357413505444007e-05,2.990145032102918e-05,3.1501476178052096e-05,3.3157560601296905e-05,3.4869623087325883e-05,3.66374255138667e-05,3.8460564873647655e-05,4.033846638922922e-05,4.2270377065838155e-05,4.425535973927537e-05,4.629228767562046e-05,4.837983977867719e-05,5.051649645988024e-05,5.270053622370388e-05,5.493003301946932e-05,5.7202854407837706e-05,5.951666058719802e-05,6.186890432162091e-05,6.42568318080578e-05,6.667748451603501e-05,6.912770202824136e-05,7.160412590516012e-05,7.410320459127645e-05,7.66211993744349e-05,7.91541914036604e-05,8.169808976423426e-05,8.424864060207426e-05,8.680143728255551e-05,8.935193156187468e-05,9.189544574195877e-05,9.442718577280675e-05,9.69422552590842e-05,9.9435670320828e-05,0.00010190237525131906,0.00010433725890860453,0.00010673517177085987,0.00010909094357982895,0.00011139940149102895,0.00011365538864430751,0.00011585378306374541,0.00011798951679185814,0.00012005759515960742,0.00012205311609093139,0.00012397128933837122,0.00012580745554494844,0.0001275571050267479,0.000129215896170711,0.0001307796733429501,0.00013224448420446299,0.00013360659633345805,0.00013486251305658232,0.00013600898839516456,0.00013704304103712047,0.00013796196725038794,0.00013876335265963156,0.00013944508281443714,0.00014000535248425976,0.0001404426736229426,0.00014075588195362786,0.0001409441421332773,0.00014100695146473957,0.0001409441421332773,0.00014075588195362786,0.0001404426736229426,0.00014000535248425976,0.00013944508281443714,0.00013876335265963156,0.00013796196725038794,0.00013704304103712047,0.00013600898839516456,0.00013486251305658232,0.00013360659633345805,0.00013224448420446299,0.0001307796733429501,0.000129215896170711,0.0001275571050267479,0.00012580745554494844,0.00012397128933837122,0.00012205311609093139,0.00012005759515960742,0.00011798951679185814,0.00011585378306374541,0.00011365538864430751,0.00011139940149102895,0.00010909094357982895,0.00010673517177085987,0.00010433725890860453,0.00010190237525131906,9.9435670320828e-05,9.69422552590842e-05,9.442718577280675e-05,9.189544574195877e-05,8.935193156187468e-05,8.680143728255551e-05,8.424864060207426e-05,8.169808976423426e-05,7.91541914036604e-05,7.66211993744349e-05,7.410320459127645e-05,7.160412590516012e-05,6.912770202824136e-05,6.667748451603501e-05,6.42568318080578e-05,6.186890432162091e-05,5.951666058719802e-05,5.7202854407837706e-05,5.493003301946932e-05,5.270053622370388e-05,5.051649645988024e-05,4.837983977867719e-05,4.629228767562046e-05,4.425535973927537e-05,4.2270377065838155e-05,4.033846638922922e-05,3.8460564873647655e-05,3.66374255138667e-05,3.4869623087325883e-05,3.3157560601296905e-05,3.1501476178052096e-05,2.990145032102918e-05,2.8357413505444007e-05,2.6869154037630737e-05,2.5436326128562373e-05,2.4058458128496824e-05,2.2734960871476687e-05,2.146513608045585e-05,2.024818478610311e-05,1.908321571481183e-05,1.7969253604094952e-05,1.690524740633669e-05,1.5890078344775503e-05,1.492256778857956e-05,1.4001484916916643e-05,1.3125554144989699e-05,1.2293462288080448e-05,1.1503865442693409e-05,1.0755395566898398e-05,1.0046666744911223e-05,9.376281123810064e-06,8.742834513043311e-06,8.144921640027524e-06,7.58114105764923e-06,7.050099701860502e-06,6.5504170997863035e-06,6.0807292308347175e-06,5.639692045213466e-06,5.225984646004595e-06,4.838312142531468e-06,4.475408184167868e-06,4.136037184989652e-06,3.818996250756694e-06,3.523116820641034e-06,3.247266036890641e-06,2.9903478562427905e-06,2.7513039173832315e-06,2.529114179094436e-06,2.322797343955959e-06,2.1314110825608504e-06,1.9540520732025507e-06,1.7898558718759715e-06,1.6379966272333465e-06],[1.6299886597115317e-06,1.781105482862704e-06,1.9444989488078007e-06,2.1209908714071727e-06,2.3114414685036548e-06,2.5167496455731685e-06,2.737853125088097e-06,2.9757284070244076e-06,3.2313905457414105e-06,3.5058927283528185e-06,3.800325639698327e-06,4.115816599125347e-06,4.453528454509198e-06,4.814658219285463e-06,5.20043543874805e-06,5.612120272488031e-06,6.051001280618043e-06,6.5183929023506666e-06,7.0156326165812035e-06,7.544077775369772e-06,8.105102102626378e-06,8.70009185187721e-06,9.330441618730192e-06,9.997549805560967e-06,1.0702813738003264e-05,1.1447624435044927e-05,1.2233361036895407e-05,1.3061384897293241e-05,1.3933033349552166e-05,1.4849613158389105e-05,1.5812393672421214e-05,1.682259969514644e-05,1.788140409521294e-05,1.8989920179817892e-05,2.0149193858132343e-05,2.1360195624702925e-05,2.2623812395807344e-05,2.3940839234712318e-05,2.5311971004671876e-05,2.673779399128228e-05,2.821877753844704e-05,2.975526574467239e-05,3.134746926867943e-05,3.299545729535404e-05,3.469914971483008e-05,3.645830956898622e-05,3.827253582080459e-05,4.0141256502863106e-05,4.206372230168895e-05,4.403900063476554e-05,4.606597027663838e-05,4.814331658979088e-05,5.0269527414742545e-05,5.2442889672151166e-05,5.4661486727566926e-05,5.6923196566889166e-05,5.92256908275141e-05,6.156643472664094e-05,6.394268792423139e-05,6.635150635370961e-05,6.878974504866268e-05,7.12540619885787e-05,7.374092298106847e-05,7.624660759208835e-05,7.876721612945201e-05,8.129867767842835e-05,8.38367591815136e-05,8.637707554758688e-05,8.891510076865903e-05,9.144618001535758e-05,9.396554267521246e-05,9.646831629077418e-05,9.894954134766643e-05,0.00010140418685590908,0.00010382716666130453,0.00010621335641741801,0.00010855761114276103,0.00011085478328226223,0.00011309974118703519,0.00011528738792188187,0.00011741268030594929,0.00011947064808853243,0.00012145641315922674,0.0001233652086895142,0.00012519239810144947,0.00012693349375841688,0.0001285841752729794,0.00013014030732764104,0.0001315979569059073,0.0001329534098333456,0.0001342031865314163,0.00013534405689064554,0.00013637305417422345,0.00013728748786830716,0.00013808495540115043,0.00013876335265963156,0.0001393208832387596,0.00013975606636725554,0.00014006774346027036,0.00014025508325865699,0.00014031758552288963,0.00014025508325865699,0.00014006774346027036,0.00013975606636725554,0.0001393208832387596,0.00013876335265963156,0.00013808495540115043,0.00013728748786830716,0.00013637305417422345,0.00013534405689064554,0.0001342031865314163,0.0001329534098333456,0.0001315979569059073,0.00013014030732764104,0.0001285841752729794,0.00012693349375841688,0.00012519239810144947,0.0001233652086895142,0.00012145641315922674,0.00011947064808853243,0.00011741268030594929,0.00011528738792188187,0.00011309974118703519,0.00011085478328226223,0.00010855761114276103,0.00010621335641741801,0.00010382716666130453,0.00010140418685590908,9.894954134766643e-05,9.646831629077418e-05,9.396554267521246e-05,9.144618001535758e-05,8.891510076865903e-05,8.637707554758688e-05,8.38367591815136e-05,8.129867767842835e-05,7.876721612945201e-05,7.624660759208835e-05,7.374092298106847e-05,7.12540619885787e-05,6.878974504866268e-05,6.635150635370961e-05,6.394268792423139e-05,6.156643472664094e-05,5.92256908275141e-05,5.6923196566889166e-05,5.4661486727566926e-05,5.2442889672151166e-05,5.0269527414742545e-05,4.814331658979088e-05,4.606597027663838e-05,4.403900063476554e-05,4.206372230168895e-05,4.0141256502863106e-05,3.827253582080459e-05,3.645830956898622e-05,3.469914971483008e-05,3.299545729535404e-05,3.134746926867943e-05,2.975526574467239e-05,2.821877753844704e-05,2.673779399128228e-05,2.5311971004671876e-05,2.3940839234712318e-05,2.2623812395807344e-05,2.1360195624702925e-05,2.0149193858132343e-05,1.8989920179817892e-05,1.788140409521294e-05,1.682259969514644e-05,1.5812393672421214e-05,1.4849613158389105e-05,1.3933033349552166e-05,1.3061384897293241e-05,1.2233361036895407e-05,1.1447624435044927e-05,1.0702813738003264e-05,9.997549805560967e-06,9.330441618730192e-06,8.70009185187721e-06,8.105102102626378e-06,7.544077775369772e-06,7.0156326165812035e-06,6.5183929023506666e-06,6.051001280618043e-06,5.612120272488031e-06,5.20043543874805e-06,4.814658219285463e-06,4.453528454509198e-06,4.115816599125347e-06,3.800325639698327e-06,3.5058927283528185e-06,3.2313905457414105e-06,2.9757284070244076e-06,2.737853125088097e-06,2.5167496455731685e-06,2.3114414685036548e-06,2.1209908714071727e-06,1.9444989488078007e-06,1.781105482862704e-06,1.6299886597115317e-06],[1.6205751574856993e-06,1.7708192515276114e-06,1.9332690883583604e-06,2.1087417357030663e-06,2.298092443478848e-06,2.502214925807291e-06,2.7220414896307194e-06,2.9585429954474006e-06,3.212728635479867e-06,3.485645514480963e-06,3.778378018372839e-06,4.092046956013939e-06,4.427808459606442e-06,4.786852629600019e-06,5.170401910424844e-06,5.579709184004719e-06,6.01605556876647e-06,6.480747912780011e-06,6.975115970739326e-06,7.500509255731811e-06,8.058293558144129e-06,8.649847125618142e-06,9.27655649970031e-06,9.939812006719979e-06,1.0641002902482976e-05,1.1381512172571361e-05,1.2162710992391045e-05,1.2985952853597379e-05,1.3852567366143535e-05,1.4763853747925485e-05,1.5721074016824707e-05,1.6725445902860198e-05,1.777813550113506e-05,1.8880249689280416e-05,2.003282833613796e-05,2.1236836331459166e-05,2.2493155469407354e-05,2.3802576221603903e-05,2.5165789438332115e-05,2.6583378019274645e-05,2.805580859778248e-05,2.9583423285125908e-05,3.116643152343085e-05,3.2804902098027e-05,3.4498755361698294e-05,3.624775572480274e-05,3.805150446638943e-05,3.990943292225962e-05,4.182079610637186e-05,4.378466682205535e-05,4.579993031915118e-05,4.7865279552430666e-05,4.997921109542904e-05,5.2140021762171206e-05,5.43458059871449e-05,5.65944540112945e-05,5.888365091876411e-05,6.12108765656177e-05,6.357340643781481e-05,6.596831347133797e-05,6.839247086256827e-05,7.084255589181372e-05,7.331505477733504e-05,7.580626857132039e-05,7.83123201030659e-05,8.082916196816658e-05,8.335258555585082e-05,8.587823109975372e-05,8.840159873046448e-05,9.091806050115754e-05,9.342287335057974e-05,9.591119296067311e-05,9.837808845922352e-05,0.00010081855791119865,0.0001032275445359328,0.00010559995358109065,0.0001079306697784547,0.00011021457530108743,0.00011244656813637506,0.00011462158078491376,0.00011673459919120301,0.00011878068180870442,0.00012075497869905183,0.0001226527505630911,0.0001244693876000182,0.00012620042809019375,0.00012784157659726024,0.0001293887216859863,0.00013083795305381427,0.00013218557797639287,0.0001334281369704268,0.000134562418580954,0.000135585473204648,0.00013649462586590774,0.00013728748786830716,0.00013796196725038794,0.00013851627798174815,0.00013894894784285147,0.0001392588249399023,0.00013944508281443712,0.00013950722411591095,0.00013944508281443712,0.0001392588249399023,0.00013894894784285147,0.00013851627798174815,0.00013796196725038794,0.00013728748786830716,0.00013649462586590774,0.000135585473204648,0.000134562418580954,0.0001334281369704268,0.00013218557797639287,0.00013083795305381427,0.0001293887216859863,0.00012784157659726024,0.00012620042809019375,0.0001244693876000182,0.0001226527505630911,0.00012075497869905183,0.00011878068180870442,0.00011673459919120301,0.00011462158078491376,0.00011244656813637506,0.00011021457530108743,0.0001079306697784547,0.00010559995358109065,0.0001032275445359328,0.00010081855791119865,9.837808845922352e-05,9.591119296067311e-05,9.342287335057974e-05,9.091806050115754e-05,8.840159873046448e-05,8.587823109975372e-05,8.335258555585082e-05,8.082916196816658e-05,7.83123201030659e-05,7.580626857132039e-05,7.331505477733504e-05,7.084255589181372e-05,6.839247086256827e-05,6.596831347133797e-05,6.357340643781481e-05,6.12108765656177e-05,5.888365091876411e-05,5.65944540112945e-05,5.43458059871449e-05,5.2140021762171206e-05,4.997921109542904e-05,4.7865279552430666e-05,4.579993031915118e-05,4.378466682205535e-05,4.182079610637186e-05,3.990943292225962e-05,3.805150446638943e-05,3.624775572480274e-05,3.4498755361698294e-05,3.2804902098027e-05,3.116643152343085e-05,2.9583423285125908e-05,2.805580859778248e-05,2.6583378019274645e-05,2.5165789438332115e-05,2.3802576221603903e-05,2.2493155469407354e-05,2.1236836331459166e-05,2.003282833613796e-05,1.8880249689280416e-05,1.777813550113506e-05,1.6725445902860198e-05,1.5721074016824707e-05,1.4763853747925485e-05,1.3852567366143535e-05,1.2985952853597379e-05,1.2162710992391045e-05,1.1381512172571361e-05,1.0641002902482976e-05,9.939812006719979e-06,9.27655649970031e-06,8.649847125618142e-06,8.058293558144129e-06,7.500509255731811e-06,6.975115970739326e-06,6.480747912780011e-06,6.01605556876647e-06,5.579709184004719e-06,5.170401910424844e-06,4.786852629600019e-06,4.427808459606442e-06,4.092046956013939e-06,3.778378018372839e-06,3.485645514480963e-06,3.212728635479867e-06,2.9585429954474006e-06,2.7220414896307194e-06,2.502214925807291e-06,2.298092443478848e-06,2.1087417357030663e-06,1.9332690883583604e-06,1.7708192515276114e-06,1.6205751574856993e-06],[1.6097809580228796e-06,1.759024318028047e-06,1.9203921217711273e-06,2.0946959947168433e-06,2.2827854902009785e-06,2.4855483695644367e-06,2.7039107299128355e-06,2.938836965113248e-06,3.191329545440078e-06,3.4624286011732436e-06,3.7532112954424903e-06,4.06479097171083e-06,4.398316061506064e-06,4.7549687383504515e-06,5.135963304312519e-06,5.542544296218758e-06,5.975984299323203e-06,6.437581457145005e-06,6.928656667252735e-06,7.450550454003229e-06,8.004619510634037e-06,8.592232904663603e-06,9.214767942271578e-06,9.87360568921112e-06,1.0570126147842327e-05,1.1305703092065738e-05,1.208169856427004e-05,1.2899457040879887e-05,1.3760299275687127e-05,1.4665515832859421e-05,1.5616360324328864e-05,1.6614042369154193e-05,1.765972029540402e-05,1.875449360810605e-05,1.9899395249825454e-05,2.1095383683451974e-05,2.2343334829763778e-05,2.3644033895271084e-05,2.499816712869599e-05,2.6406313547188838e-05,2.7868936675985894e-05,2.938637634764964e-05,3.0958840609270374e-05,3.258639778801785e-05,3.426896876718394e-05,3.60063195263236e-05,3.779805400025504e-05,3.9643607312493236e-05,4.154223943914115e-05,4.349302935932661e-05,4.5494869747930796e-05,4.754646226558902e-05,4.96463134997412e-05,5.179273160885933e-05,5.398382371987192e-05,5.6217494126240434e-05,5.8491443331118316e-05,6.0803167976545895e-05,6.314996169571143e-05,6.552891692095507e-05,6.793692767542538e-05,7.037069337114015e-05,7.282672363068097e-05,7.530134414389645e-05,7.779070356483625e-05,8.029078144772802e-05,8.279739721418358e-05,8.530622013702672e-05,8.78127803192226e-05,9.031248063940969e-05,9.280060962854387e-05,9.527235523521968e-05,9.772281943038853e-05,0.00010014703359551328,0.0001025399746317349,0.00010489658172144344,0.00010721177366779736,0.00010948046673227803,0.0001116975928853557,0.00011385811838082778,0.00011595706256041995,0.00011798951679185813,0.00011995066344086387,0.00012183579477543386,0.00012364033169936248,0.00012535984221128134,0.0001269900594855373,0.0001285268994720233,0.0001299664779136171,0.00013130512668217518,0.00013253940933705637,0.00013366613581390497,0.0001346823761558802,0.000135585473204648,0.00013637305417422345,0.00013704304103712047,0.00013759365965918782,0.0001380234476269333,0.00013833126071900474,0.00013851627798174815,0.0001385780053773319,0.00013851627798174815,0.00013833126071900474,0.0001380234476269333,0.00013759365965918782,0.00013704304103712047,0.00013637305417422345,0.000135585473204648,0.0001346823761558802,0.00013366613581390497,0.00013253940933705637,0.00013130512668217518,0.0001299664779136171,0.0001285268994720233,0.0001269900594855373,0.00012535984221128134,0.00012364033169936248,0.00012183579477543386,0.00011995066344086387,0.00011798951679185813,0.00011595706256041995,0.00011385811838082778,0.0001116975928853557,0.00010948046673227803,0.00010721177366779736,0.00010489658172144344,0.0001025399746317349,0.00010014703359551328,9.772281943038853e-05,9.527235523521968e-05,9.280060962854387e-05,9.031248063940969e-05,8.78127803192226e-05,8.530622013702672e-05,8.279739721418358e-05,8.029078144772802e-05,7.779070356483625e-05,7.530134414389645e-05,7.282672363068097e-05,7.037069337114015e-05,6.793692767542538e-05,6.552891692095507e-05,6.314996169571143e-05,6.0803167976545895e-05,5.8491443331118316e-05,5.6217494126240434e-05,5.398382371987192e-05,5.179273160885933e-05,4.96463134997412e-05,4.754646226558902e-05,4.5494869747930796e-05,4.349302935932661e-05,4.154223943914115e-05,3.9643607312493236e-05,3.779805400025504e-05,3.60063195263236e-05,3.426896876718394e-05,3.258639778801785e-05,3.0958840609270374e-05,2.938637634764964e-05,2.7868936675985894e-05,2.6406313547188838e-05,2.499816712869599e-05,2.3644033895271084e-05,2.2343334829763778e-05,2.1095383683451974e-05,1.9899395249825454e-05,1.875449360810605e-05,1.765972029540402e-05,1.6614042369154193e-05,1.5616360324328864e-05,1.4665515832859421e-05,1.3760299275687127e-05,1.2899457040879887e-05,1.208169856427004e-05,1.1305703092065738e-05,1.0570126147842327e-05,9.87360568921112e-06,9.214767942271578e-06,8.592232904663603e-06,8.004619510634037e-06,7.450550454003229e-06,6.928656667252735e-06,6.437581457145005e-06,5.975984299323203e-06,5.542544296218758e-06,5.135963304312519e-06,4.7549687383504515e-06,4.398316061506064e-06,4.06479097171083e-06,3.7532112954424903e-06,3.4624286011732436e-06,3.191329545440078e-06,2.938836965113248e-06,2.7039107299128355e-06,2.4855483695644367e-06,2.2827854902009785e-06,2.0946959947168433e-06,1.9203921217711273e-06,1.759024318028047e-06,1.6097809580228796e-06],[1.5976344218688622e-06,1.7457516722259963e-06,1.9059018818284012e-06,2.078890552054164e-06,2.2655608259692387e-06,2.4667937663477645e-06,2.6835084824676557e-06,2.9166620914016387e-06,3.1672494993258036e-06,3.4363029882597273e-06,3.724891593642967e-06,4.034120258251125e-06,4.36512874816904e-06,4.719090316877177e-06,5.097210103977636e-06,5.500723255695362e-06,5.930892755044583e-06,6.389006950455795e-06,6.876376772719181e-06,7.394332631320055e-06,7.94422098262282e-06,8.527400563903146e-06,9.14523828893343e-06,9.799104802691869e-06,1.0490369694787385e-05,1.122039637336593e-05,1.1990536603581248e-05,1.2802124717166304e-05,1.3656471502219417e-05,1.4554857785009279e-05,1.5498527718390606e-05,1.648868179429116e-05,1.752646960066266e-05,1.8612982346262742e-05,1.9749245179630837e-05,2.09362093316143e-05,2.217474411376701e-05,2.3465628807855682e-05,2.4809544484540848e-05,2.62070657920227e-05,2.765865275802687e-05,2.9164642650923173e-05,3.072524194799113e-05,3.2340518460840644e-05,3.4010393669735456e-05,3.573463532002218e-05,3.75128503350126e-05,3.9344478100474054e-05,4.122878417632942e-05,4.3164854491231735e-05,4.515159007533841e-05,4.718770238585115e-05,4.927170927869306e-05,5.140193167805695e-05,5.357649099346741e-05,5.579330733145357e-05,5.805009854592798e-05,6.034438016791572e-05,6.267346625138472e-05,6.503447116760763e-05,6.742431237575384e-05,6.983971419229234e-05,7.227721257630426e-05,7.473316094199468e-05,7.720373700358605e-05,7.968495065141464e-05,8.217265285147488e-05,8.466254555391474e-05,8.715019258912408e-05,8.963103152313184e-05,9.210038643709031e-05,9.455348158873035e-05,9.698545590688059e-05,9.939137826351116e-05,0.00010176626346134925,0.00010410508886897658,0.0001064028116295138,0.00010865438636358267,0.00011085478328226225,0.00011299900662127529,0.00011508211330370016,0.0001170992317351461,0.00011904558063259642,0.00012091648778604641,0.00012270740865067298,0.00012441394466659213,0.00012603186120330867,0.0001275571050267479,0.00012898582118829035,0.00013031436923750288,0.0001315393386632661,0.00013265756347172403,0.00013366613581390497,0.000134562418580954,0.00013534405689064554,0.00013600898839516456,0.00013655545234701627,0.00013698199736728942,0.00013728748786830716,0.00013747110909088757,0.00013753237072494122,0.00013747110909088757,0.00013728748786830716,0.00013698199736728942,0.00013655545234701627,0.00013600898839516456,0.00013534405689064554,0.000134562418580954,0.00013366613581390497,0.00013265756347172403,0.0001315393386632661,0.00013031436923750288,0.00012898582118829035,0.0001275571050267479,0.00012603186120330867,0.00012441394466659213,0.00012270740865067298,0.00012091648778604641,0.00011904558063259642,0.0001170992317351461,0.00011508211330370016,0.00011299900662127529,0.00011085478328226225,0.00010865438636358267,0.0001064028116295138,0.00010410508886897658,0.00010176626346134925,9.939137826351116e-05,9.698545590688059e-05,9.455348158873035e-05,9.210038643709031e-05,8.963103152313184e-05,8.715019258912408e-05,8.466254555391474e-05,8.217265285147488e-05,7.968495065141464e-05,7.720373700358605e-05,7.473316094199468e-05,7.227721257630426e-05,6.983971419229234e-05,6.742431237575384e-05,6.503447116760763e-05,6.267346625138472e-05,6.034438016791572e-05,5.805009854592798e-05,5.579330733145357e-05,5.357649099346741e-05,5.140193167805695e-05,4.927170927869306e-05,4.718770238585115e-05,4.515159007533841e-05,4.3164854491231735e-05,4.122878417632942e-05,3.9344478100474054e-05,3.75128503350126e-05,3.573463532002218e-05,3.4010393669735456e-05,3.2340518460840644e-05,3.072524194799113e-05,2.9164642650923173e-05,2.765865275802687e-05,2.62070657920227e-05,2.4809544484540848e-05,2.3465628807855682e-05,2.217474411376701e-05,2.09362093316143e-05,1.9749245179630837e-05,1.8612982346262742e-05,1.752646960066266e-05,1.648868179429116e-05,1.5498527718390606e-05,1.4554857785009279e-05,1.3656471502219417e-05,1.2802124717166304e-05,1.1990536603581248e-05,1.122039637336593e-05,1.0490369694787385e-05,9.799104802691869e-06,9.14523828893343e-06,8.527400563903146e-06,7.94422098262282e-06,7.394332631320055e-06,6.876376772719181e-06,6.389006950455795e-06,5.930892755044583e-06,5.500723255695362e-06,5.097210103977636e-06,4.719090316877177e-06,4.36512874816904e-06,4.034120258251125e-06,3.724891593642967e-06,3.4363029882597273e-06,3.1672494993258036e-06,2.9166620914016387e-06,2.6835084824676557e-06,2.4667937663477645e-06,2.2655608259692387e-06,2.078890552054164e-06,1.9059018818284012e-06,1.7457516722259963e-06,1.5976344218688622e-06],[1.584167308508523e-06,1.7310360180393722e-06,1.8898362560851585e-06,2.061366734123713e-06,2.2464634880235646e-06,2.4460001537207132e-06,2.6608880929454084e-06,2.8920763548394768e-06,3.1405514591083154e-06,3.4073369862445525e-06,3.6934929603512e-06,4.000115010189708e-06,4.3283332942908605e-06,4.679311176302125e-06,5.054243637211457e-06,5.454355411691571e-06,5.8808988365567915e-06,6.33515140022226e-06,6.8184129831068574e-06,7.3320027801307215e-06,7.877255897827375e-06,8.455519620120796e-06,9.068149338508645e-06,9.71650414424253e-06,1.040194208210093e-05,1.1125815067505421e-05,1.1889463471028914e-05,1.2694210376776967e-05,1.3541355523679411e-05,1.4432168941396954e-05,1.5367884295311517e-05,1.6349691957913872e-05,1.737873182680914e-05,1.845608591251046e-05,1.9582770722161334e-05,2.0759729468295616e-05,2.198782413468488e-05,2.326782743421141e-05,2.4600414696512835e-05,2.5986155725844863e-05,2.7425506672171452e-05,2.8918801960889515e-05,3.0466246328797206e-05,3.206790701589268e-05,3.372370616431459e-05,3.5433413477178946e-05,3.7196639191201556e-05,3.901282741779618e-05,4.088124990778125e-05,4.280100029489064e-05,4.477098887294765e-05,4.678993796080775e-05,4.885637790799209e-05,5.096864379230956e-05,5.3124872858691495e-05,5.532300274593895e-05,5.756077054510638e-05,5.983571272982303e-05,6.214516599499349e-05,6.448626903603402e-05,6.685596529611028e-05,6.925100670376622e-05,7.166795841789934e-05,7.410320459127646e-05,7.655295515772868e-05,7.9013253641857e-05,8.147998598355894e-05,8.394889036300083e-05,8.64155680048589e-05,8.887549493378234e-05,9.132403464615402e-05,9.375645165638787e-05,9.616792586926768e-05,9.85535677232567e-05,0.000100908434043347,0.00010322754453593279,0.000105505898852436,0.00010773849414304276,0.00010992034301697819,0.00011204649182130351,0.00011411203914631227,0.0001161121544622734,0.00011804209678955852,0.00011989723330213019,0.00012167305776299054,0.00012336520868951422,0.00012496948714663678,0.00012648187406664974,0.0001278985469958708,0.000129215896170711,0.00013043053982864282,0.0001315393386632661,0.00013253940933705637,0.0001334281369704268,0.0001342031865314163,0.00013486251305658232,0.00013540437064049016,0.00013582732013849448,0.00013613023553525093,0.0001363123089395157,0.00013637305417422345,0.0001363123089395157,0.00013613023553525093,0.00013582732013849448,0.00013540437064049016,0.00013486251305658232,0.0001342031865314163,0.0001334281369704268,0.00013253940933705637,0.0001315393386632661,0.00013043053982864282,0.000129215896170711,0.0001278985469958708,0.00012648187406664974,0.00012496948714663678,0.00012336520868951422,0.00012167305776299054,0.00011989723330213019,0.00011804209678955852,0.0001161121544622734,0.00011411203914631227,0.00011204649182130351,0.00010992034301697819,0.00010773849414304276,0.000105505898852436,0.00010322754453593279,0.000100908434043347,9.85535677232567e-05,9.616792586926768e-05,9.375645165638787e-05,9.132403464615402e-05,8.887549493378234e-05,8.64155680048589e-05,8.394889036300083e-05,8.147998598355894e-05,7.9013253641857e-05,7.655295515772868e-05,7.410320459127646e-05,7.166795841789934e-05,6.925100670376622e-05,6.685596529611028e-05,6.448626903603402e-05,6.214516599499349e-05,5.983571272982303e-05,5.756077054510638e-05,5.532300274593895e-05,5.3124872858691495e-05,5.096864379230956e-05,4.885637790799209e-05,4.678993796080775e-05,4.477098887294765e-05,4.280100029489064e-05,4.088124990778125e-05,3.901282741779618e-05,3.7196639191201556e-05,3.5433413477178946e-05,3.372370616431459e-05,3.206790701589268e-05,3.0466246328797206e-05,2.8918801960889515e-05,2.7425506672171452e-05,2.5986155725844863e-05,2.4600414696512835e-05,2.326782743421141e-05,2.198782413468488e-05,2.0759729468295616e-05,1.9582770722161334e-05,1.845608591251046e-05,1.737873182680914e-05,1.6349691957913872e-05,1.5367884295311517e-05,1.4432168941396954e-05,1.3541355523679411e-05,1.2694210376776967e-05,1.1889463471028914e-05,1.1125815067505421e-05,1.040194208210093e-05,9.71650414424253e-06,9.068149338508645e-06,8.455519620120796e-06,7.877255897827375e-06,7.3320027801307215e-06,6.8184129831068574e-06,6.33515140022226e-06,5.8808988365567915e-06,5.454355411691571e-06,5.054243637211457e-06,4.679311176302125e-06,4.3283332942908605e-06,4.000115010189708e-06,3.6934929603512e-06,3.4073369862445525e-06,3.1405514591083154e-06,2.8920763548394768e-06,2.6608880929454084e-06,2.4460001537207132e-06,2.2464634880235646e-06,2.061366734123713e-06,1.8898362560851585e-06,1.7310360180393722e-06,1.584167308508523e-06],[1.5694146380303457e-06,1.7149156222814053e-06,1.8722370218414057e-06,2.0421701101308627e-06,2.225543137374951e-06,2.423221603713021e-06,2.6361083837545353e-06,2.86514368855384e-06,3.1113048507815698e-06,3.375605918764377e-06,3.6590970450555933e-06,3.962863655296078e-06,4.288025383335094e-06,4.635734758913591e-06,5.007175634674272e-06,5.403561339861299e-06,5.826132548813547e-06,6.276154853244635e-06,6.754916028344797e-06,7.263722983937864e-06,7.803898393283026e-06,8.376776993627102e-06,8.983701554288257e-06,9.62601850988437e-06,1.0305073258305545e-05,1.1022205125165064e-05,1.1778741998739757e-05,1.2575994641820559e-05,1.3415250689426284e-05,1.4297768343976302e-05,1.5224769782256115e-05,1.61974342913282e-05,1.7216891153420347e-05,1.8284212302746007e-05,1.940040478015377e-05,2.0566403014443835e-05,2.178306096210274e-05,2.3051144140069204e-05,2.43713215889257e-05,2.5744157806585358e-05,2.7170104695083233e-05,2.8649493565455995e-05,3.0182527247875835e-05,3.176927235616365e-05,3.3409651757514954e-05,3.510343729970184e-05,3.685024284913835e-05,3.864951769399018e-05,4.050054036694788e-05,4.2402412942345545e-05,4.435405586197258e-05,4.635420334318075e-05,4.8401399421715605e-05,5.049399468009207e-05,5.263014371028025e-05,5.480780335696624e-05,5.70247317847046e-05,5.927848840888874e-05,6.156643472664094e-05,6.388573607947946e-05,6.623336437497236e-05,6.860610178955954e-05,7.100054546934e-05,7.341311323991451e-05,7.584005033037433e-05,7.82774371102784e-05,8.072119783200084e-05,8.316711036420767e-05,8.561081689548243e-05,8.804783558031579e-05,9.047357309285963e-05,9.28833380470734e-05,9.527235523521968e-05,9.763578063015047e-05,9.996871709052593e-05,0.00010226623070207786,0.00010452336768232917,0.00010673517177085988,0.00010889670202232566,0.00011100305091503223,0.00011304936268399885,0.00011503085178414538,0.00011694282138655263,0.00011878068180870441,0.0001205399687782547,0.00012221636142919454,0.00012380569992934031,0.00012530400263883676,0.0001267074827008727,0.0001280125639680388,0.000129215896170711,0.00013031436923750288,0.00013130512668217518,0.00013218557797639287,0.0001329534098333456,0.00013360659633345805,0.00013414340783016374,0.000134562418580954,0.0001348625130565823,0.00013504289088934934,0.00013510307042974819,0.00013504289088934934,0.0001348625130565823,0.000134562418580954,0.00013414340783016374,0.00013360659633345805,0.0001329534098333456,0.00013218557797639287,0.00013130512668217518,0.00013031436923750288,0.000129215896170711,0.0001280125639680388,0.0001267074827008727,0.00012530400263883676,0.00012380569992934031,0.00012221636142919454,0.0001205399687782547,0.00011878068180870441,0.00011694282138655263,0.00011503085178414538,0.00011304936268399885,0.00011100305091503223,0.00010889670202232566,0.00010673517177085988,0.00010452336768232917,0.00010226623070207786,9.996871709052593e-05,9.763578063015047e-05,9.527235523521968e-05,9.28833380470734e-05,9.047357309285963e-05,8.804783558031579e-05,8.561081689548243e-05,8.316711036420767e-05,8.072119783200084e-05,7.82774371102784e-05,7.584005033037433e-05,7.341311323991451e-05,7.100054546934e-05,6.860610178955954e-05,6.623336437497236e-05,6.388573607947946e-05,6.156643472664094e-05,5.927848840888874e-05,5.70247317847046e-05,5.480780335696624e-05,5.263014371028025e-05,5.049399468009207e-05,4.8401399421715605e-05,4.635420334318075e-05,4.435405586197258e-05,4.2402412942345545e-05,4.050054036694788e-05,3.864951769399018e-05,3.685024284913835e-05,3.510343729970184e-05,3.3409651757514954e-05,3.176927235616365e-05,3.0182527247875835e-05,2.8649493565455995e-05,2.7170104695083233e-05,2.5744157806585358e-05,2.43713215889257e-05,2.3051144140069204e-05,2.178306096210274e-05,2.0566403014443835e-05,1.940040478015377e-05,1.8284212302746007e-05,1.7216891153420347e-05,1.61974342913282e-05,1.5224769782256115e-05,1.4297768343976302e-05,1.3415250689426284e-05,1.2575994641820559e-05,1.1778741998739757e-05,1.1022205125165064e-05,1.0305073258305545e-05,9.62601850988437e-06,8.983701554288257e-06,8.376776993627102e-06,7.803898393283026e-06,7.263722983937864e-06,6.754916028344797e-06,6.276154853244635e-06,5.826132548813547e-06,5.403561339861299e-06,5.007175634674272e-06,4.635734758913591e-06,4.288025383335094e-06,3.962863655296078e-06,3.6590970450555933e-06,3.375605918764377e-06,3.1113048507815698e-06,2.86514368855384e-06,2.6361083837545353e-06,2.423221603713021e-06,2.225543137374951e-06,2.0421701101308627e-06,1.8722370218414057e-06,1.7149156222814053e-06,1.5694146380303457e-06],[1.553414539438296e-06,1.6974321489094574e-06,1.8531496651854597e-06,2.021350294696467e-06,2.2028538437007513e-06,2.3985169886098686e-06,2.6092333992747577e-06,2.835933701348175e-06,3.0795852636462643e-06,3.341191796327033e-06,3.621792745694499e-06,3.922462471532962e-06,4.2443091930842645e-06,4.588473690110067e-06,4.9561277459384795e-06,5.348472319986682e-06,5.766735437984788e-06,6.212169789006345e-06,6.686050019442156e-06,7.189669715240051e-06,7.724338065075833e-06,8.291376198621228e-06,8.892113195732764e-06,9.52788176419915e-06,1.0200013585650705e-05,1.090983433134746e-05,1.1658658351816037e-05,1.2447783046690575e-05,1.3278482923619494e-05,1.4152003357715555e-05,1.5069554065737071e-05,1.6032302311977767e-05,1.7041365865693303e-05,1.8097805732784955e-05,1.9202618687373533e-05,2.0356729631807422e-05,2.1560983816532283e-05,2.281613895408245e-05,2.4122857264207318e-05,2.5481697489793866e-05,2.689310692576e-05,2.8357413505444014e-05,2.987481799117531e-05,3.144538631765044e-05,3.3069042138429734e-05,3.47455596272851e-05,3.647455658724191e-05,3.825548792094364e-05,4.008763951640163e-05,4.197012260225429e-05,4.3901868626329426e-05,4.588162471056546e-05,4.79079497341859e-05,4.997921109542904e-05,5.209358220010149e-05,5.424904072274888e-05,5.6443367683318655e-05,5.867414737883422e-05,6.093876820581409e-05,6.323442440496865e-05,6.555811875510692e-05,6.79066662382085e-05,7.027669869228658e-05,7.266467046301897e-05,7.506686505918626e-05,7.747940281077086e-05,7.989824952217668e-05,8.231922610647368e-05,8.473801917990055e-05,8.715019258912408e-05,8.955119983700832e-05,9.193639736594341e-05,9.430105865118028e-05,9.66403890501696e-05,9.894954134766645e-05,0.00010122363193039563,0.00010345775751942842,0.00010564701238315567,0.0001077865059489075,0.00010987138072691177,0.00011189683045645287,0.00011385811838082778,0.00011575059555503779,0.00011756971908813535,0.00011931107022079306,0.0001209703721380007,0.000122543507416842,0.00012402653501006783,0.00012541570666767043,0.0001267074827008727,0.0001278985469958708,0.00012898582118829035,0.0001299664779136171,0.00013083795305381427,0.0001315979569059073,0.00013224448420446299,0.0001327758229365694,0.00013319056189508674,0.00013348759692352968,0.00013366613581390497,0.00013372570182709675,0.00013366613581390497,0.00013348759692352968,0.00013319056189508674,0.0001327758229365694,0.00013224448420446299,0.0001315979569059073,0.00013083795305381427,0.0001299664779136171,0.00012898582118829035,0.0001278985469958708,0.0001267074827008727,0.00012541570666767043,0.00012402653501006783,0.000122543507416842,0.0001209703721380007,0.00011931107022079306,0.00011756971908813535,0.00011575059555503779,0.00011385811838082778,0.00011189683045645287,0.00010987138072691177,0.0001077865059489075,0.00010564701238315567,0.00010345775751942842,0.00010122363193039563,9.894954134766645e-05,9.66403890501696e-05,9.430105865118028e-05,9.193639736594341e-05,8.955119983700832e-05,8.715019258912408e-05,8.473801917990055e-05,8.231922610647368e-05,7.989824952217668e-05,7.747940281077086e-05,7.506686505918626e-05,7.266467046301897e-05,7.027669869228658e-05,6.79066662382085e-05,6.555811875510692e-05,6.323442440496865e-05,6.093876820581409e-05,5.867414737883422e-05,5.6443367683318655e-05,5.424904072274888e-05,5.209358220010149e-05,4.997921109542904e-05,4.79079497341859e-05,4.588162471056546e-05,4.3901868626329426e-05,4.197012260225429e-05,4.008763951640163e-05,3.825548792094364e-05,3.647455658724191e-05,3.47455596272851e-05,3.3069042138429734e-05,3.144538631765044e-05,2.987481799117531e-05,2.8357413505444014e-05,2.689310692576e-05,2.5481697489793866e-05,2.4122857264207318e-05,2.281613895408245e-05,2.1560983816532283e-05,2.0356729631807422e-05,1.9202618687373533e-05,1.8097805732784955e-05,1.7041365865693303e-05,1.6032302311977767e-05,1.5069554065737071e-05,1.4152003357715555e-05,1.3278482923619494e-05,1.2447783046690575e-05,1.1658658351816037e-05,1.090983433134746e-05,1.0200013585650705e-05,9.52788176419915e-06,8.892113195732764e-06,8.291376198621228e-06,7.724338065075833e-06,7.189669715240051e-06,6.686050019442156e-06,6.212169789006345e-06,5.766735437984788e-06,5.348472319986682e-06,4.9561277459384795e-06,4.588473690110067e-06,4.2443091930842645e-06,3.922462471532962e-06,3.621792745694499e-06,3.341191796327033e-06,3.0795852636462643e-06,2.835933701348175e-06,2.6092333992747577e-06,2.3985169886098686e-06,2.2028538437007513e-06,2.021350294696467e-06,1.8531496651854597e-06,1.6974321489094574e-06,1.553414539438296e-06],[1.5362080865303387e-06,1.6786304796877798e-06,1.8326231852048225e-06,1.998960734296989e-06,2.1784538526085757e-06,2.3719497275435632e-06,2.5803321301861312e-06,2.804521378079988e-06,3.045474124945239e-06,3.304182963307649e-06,3.581675826006269e-06,3.879015172639991e-06,4.19729694721973e-06,4.537649293618433e-06,4.901231015863358e-06,5.28922977090082e-06,5.7028599821890586e-06,6.143360463345323e-06,6.611991742093098e-06,7.110033075928192e-06,7.638779152250201e-06,8.199536467189769e-06,8.79361937900183e-06,9.422345833688573e-06,1.0087032762460078e-05,1.0788991152730228e-05,1.1529520796574004e-05,1.2309904722931097e-05,1.3131403322319385e-05,1.3995248175408686e-05,1.490263559948544e-05,1.5854719929597766e-05,1.6852606553989324e-05,1.789734472629075e-05,1.8989920179817892e-05,2.013124757220447e-05,2.1322162791448697e-05,2.2563415157254342e-05,2.3855659554269535e-05,2.5199448536445267e-05,2.659522444422092e-05,2.804331157856921e-05,2.9543908478068247e-05,3.10970803470865e-05,3.270275168483845e-05,3.436069916646845e-05,3.607054482842063e-05,3.7831749611129263e-05,3.964360731249323e-05,4.150523900565939e-05,4.3415587974312735e-05,4.5373415217941295e-05,4.737729557839556e-05,4.9425614537486866e-05,5.1516565733359145e-05,5.364814924091983e-05,5.581817065873001e-05,5.802424104143537e-05,6.02637777130758e-05,6.2534005992457e-05,6.483196185721801e-05,6.715449556830695e-05,6.949827627130628e-05,7.185979758546353e-05,7.423538418541002e-05,7.66211993744349e-05,7.9013253641857e-05,8.14074141905554e-05,8.37994154141216e-05,8.618487029643689e-05,8.855928269980697e-05,9.091806050115754e-05,9.325652952926362e-05,9.556994824960924e-05,9.785352313730627e-05,0.00010010242467260046,0.00010231180388791122,0.0001044768093901449,0.00010659260477723842,0.00010865438636358265,0.00011065740112518444,0.00011259696477219942,0.00011446847985383805,0.00011626745379865037,0.00011798951679185813,0.0001196304393907488,0.00012118614977919153,0.0001226527505630911,0.00012402653501006783,0.00012530400263883676,0.00012648187406664974,0.0001275571050267479,0.0001285268994720233,0.0001293887216859863,0.00013014030732764104,0.0001307796733429501,0.0001313051266821752,0.00013171527176946392,0.00013200901667856062,0.00013218557797639287,0.00013224448420446299,0.00013218557797639287,0.00013200901667856062,0.00013171527176946392,0.0001313051266821752,0.0001307796733429501,0.00013014030732764104,0.0001293887216859863,0.0001285268994720233,0.0001275571050267479,0.00012648187406664974,0.00012530400263883676,0.00012402653501006783,0.0001226527505630911,0.00012118614977919153,0.0001196304393907488,0.00011798951679185813,0.00011626745379865037,0.00011446847985383805,0.00011259696477219942,0.00011065740112518444,0.00010865438636358265,0.00010659260477723842,0.0001044768093901449,0.00010231180388791122,0.00010010242467260046,9.785352313730627e-05,9.556994824960924e-05,9.325652952926362e-05,9.091806050115754e-05,8.855928269980697e-05,8.618487029643689e-05,8.37994154141216e-05,8.14074141905554e-05,7.9013253641857e-05,7.66211993744349e-05,7.423538418541002e-05,7.185979758546353e-05,6.949827627130628e-05,6.715449556830695e-05,6.483196185721801e-05,6.2534005992457e-05,6.02637777130758e-05,5.802424104143537e-05,5.581817065873001e-05,5.364814924091983e-05,5.1516565733359145e-05,4.9425614537486866e-05,4.737729557839556e-05,4.5373415217941295e-05,4.3415587974312735e-05,4.150523900565939e-05,3.964360731249323e-05,3.7831749611129263e-05,3.607054482842063e-05,3.436069916646845e-05,3.270275168483845e-05,3.10970803470865e-05,2.9543908478068247e-05,2.804331157856921e-05,2.659522444422092e-05,2.5199448536445267e-05,2.3855659554269535e-05,2.2563415157254342e-05,2.1322162791448697e-05,2.013124757220447e-05,1.8989920179817892e-05,1.789734472629075e-05,1.6852606553989324e-05,1.5854719929597766e-05,1.490263559948544e-05,1.3995248175408686e-05,1.3131403322319385e-05,1.2309904722931097e-05,1.1529520796574004e-05,1.0788991152730228e-05,1.0087032762460078e-05,9.422345833688573e-06,8.79361937900183e-06,8.199536467189769e-06,7.638779152250201e-06,7.110033075928192e-06,6.611991742093098e-06,6.143360463345323e-06,5.7028599821890586e-06,5.28922977090082e-06,4.901231015863358e-06,4.537649293618433e-06,4.19729694721973e-06,3.879015172639991e-06,3.581675826006269e-06,3.304182963307649e-06,3.045474124945239e-06,2.804521378079988e-06,2.5803321301861312e-06,2.3719497275435632e-06,2.1784538526085757e-06,1.998960734296989e-06,1.8326231852048225e-06,1.6786304796877798e-06,1.5362080865303387e-06],[1.5178391223318609e-06,1.6585585223440965e-06,1.8107098845436085e-06,1.975058478811929e-06,2.152405336670229e-06,2.343587515413666e-06,2.5494782185740506e-06,2.7709867591442355e-06,3.009058351809413e-06,3.264673720327877e-06,3.53884850619502e-06,3.832632464817831e-06,4.1471084356307844e-06,4.483391072905651e-06,4.842625324454583e-06,5.225984646004598e-06,5.634668939738317e-06,6.069902206355927e-06,6.532929901020867e-06,7.0250159847106226e-06,7.547439663805846e-06,8.10149181221721e-06,8.688471071969576e-06,9.30967962993514e-06,9.966418670328206e-06,1.0659983504638877e-05,1.139165838288485e-05,1.2162710992391049e-05,1.2974386652755921e-05,1.3827902218219042e-05,1.4724439701292906e-05,1.5665139634247643e-05,1.665109418782255e-05,1.7683340069364636e-05,1.8762851225440186e-05,1.9890531376809536e-05,2.106720641647293e-05,2.2293616704262793e-05,2.357040929414809e-05,2.4898130133003702e-05,2.627721627205347e-05,2.770798813449273e-05,2.9190641884906088e-05,3.0725241947991123e-05,3.2311713725750975e-05,3.394983656370148e-05,3.5639237017725964e-05,3.737938247397784e-05,3.9169575174655426e-05,4.1008946702533855e-05,4.28964529768156e-05,4.4830869812140536e-05,4.6810789091461336e-05,4.883461560193418e-05,5.090056458098798e-05,5.300666001731681e-05,5.5150733748688415e-05,5.733042539518313e-05,5.954318316277844e-05,6.17862655480897e-05,6.405674397058258e-05,6.635150635370961e-05,6.866726167121596e-05,7.100054546934002e-05,7.33477263698325e-05,7.570501355267407e-05,7.806846521112391e-05,8.043399796532619e-05,8.279739721418358e-05,8.515432839862582e-05,8.750034914281096e-05,8.983092223324698e-05,9.214142938936893e-05,9.442718577280675e-05,9.668345517648477e-05,9.890546582886408e-05,0.00010108842674312389,0.0001032275445359328,0.00010531804063573734,0.000107355168796236,0.00010933423282696514,0.00011125060444973216,0.00011309974118703519,0.00011487720418663377,0.00011657867588511583,0.00011819997741265831,0.000119737085641225,0.00012118614977919153,0.000122543507416842,0.00012380569992934031,0.00012496948714663678,0.00012603186120330867,0.0001269900594855373,0.00012784157659726024,0.0001285841752729794,0.000129215896170711,0.00012973506648509016,0.00013014030732764104,0.0001304305398286428,0.00013060498992279945,0.0001306631917890035,0.00013060498992279945,0.0001304305398286428,0.00013014030732764104,0.00012973506648509016,0.000129215896170711,0.0001285841752729794,0.00012784157659726024,0.0001269900594855373,0.00012603186120330867,0.00012496948714663678,0.00012380569992934031,0.000122543507416842,0.00012118614977919153,0.000119737085641225,0.00011819997741265831,0.00011657867588511583,0.00011487720418663377,0.00011309974118703519,0.00011125060444973216,0.00010933423282696514,0.000107355168796236,0.00010531804063573734,0.0001032275445359328,0.00010108842674312389,9.890546582886408e-05,9.668345517648477e-05,9.442718577280675e-05,9.214142938936893e-05,8.983092223324698e-05,8.750034914281096e-05,8.515432839862582e-05,8.279739721418358e-05,8.043399796532619e-05,7.806846521112391e-05,7.570501355267407e-05,7.33477263698325e-05,7.100054546934002e-05,6.866726167121596e-05,6.635150635370961e-05,6.405674397058258e-05,6.17862655480897e-05,5.954318316277844e-05,5.733042539518313e-05,5.5150733748688415e-05,5.300666001731681e-05,5.090056458098798e-05,4.883461560193418e-05,4.6810789091461336e-05,4.4830869812140536e-05,4.28964529768156e-05,4.1008946702533855e-05,3.9169575174655426e-05,3.737938247397784e-05,3.5639237017725964e-05,3.394983656370148e-05,3.2311713725750975e-05,3.0725241947991123e-05,2.9190641884906088e-05,2.770798813449273e-05,2.627721627205347e-05,2.4898130133003702e-05,2.357040929414809e-05,2.2293616704262793e-05,2.106720641647293e-05,1.9890531376809536e-05,1.8762851225440186e-05,1.7683340069364636e-05,1.665109418782255e-05,1.5665139634247643e-05,1.4724439701292906e-05,1.3827902218219042e-05,1.2974386652755921e-05,1.2162710992391049e-05,1.139165838288485e-05,1.0659983504638877e-05,9.966418670328206e-06,9.30967962993514e-06,8.688471071969576e-06,8.10149181221721e-06,7.547439663805846e-06,7.0250159847106226e-06,6.532929901020867e-06,6.069902206355927e-06,5.634668939738317e-06,5.225984646004598e-06,4.842625324454583e-06,4.483391072905651e-06,4.1471084356307844e-06,3.832632464817831e-06,3.53884850619502e-06,3.264673720327877e-06,3.009058351809413e-06,2.7709867591442355e-06,2.5494782185740506e-06,2.343587515413666e-06,2.152405336670229e-06,1.975058478811929e-06,1.8107098845436085e-06,1.6585585223440965e-06,1.5178391223318609e-06],[1.498354073133591e-06,1.6372670073669123e-06,1.7874651475586224e-06,1.9497039395442967e-06,2.124774131714063e-06,2.313502035756157e-06,2.5167496455731685e-06,2.7354146009785332e-06,2.970429982595029e-06,3.2227639242757366e-06,3.4934190293592277e-06,3.7834315771630625e-06,4.0938705063206725e-06,4.425836161884223e-06,4.780458793557144e-06,5.158896792991319e-06,5.562334658791537e-06,5.991980678718775e-06,6.44906431957856e-06,6.9348333164246526e-06,7.450550454003229e-06,7.997490034810185e-06,8.576934029733515e-06,9.19016790900207e-06,9.838476153058286e-06,1.0523137445010679e-05,1.124541954849548e-05,1.2006573877077412e-05,1.2807829763737313e-05,1.3650388441517246e-05,1.4535416749008028e-05,1.546404057705497e-05,1.6437338075807e-05,1.7456332644024356e-05,1.8521985725369362e-05,1.9635189439212453e-05,2.0796759076267048e-05,2.20074254920989e-05,2.3267827434211405e-05,2.4578503840962167e-05,2.5939886152990563e-05,2.73522906801036e-05,2.8815911068650238e-05,3.033081091628494e-05,3.189691658265228e-05,3.351401024588944e-05,3.518172325591678e-05,3.689952983624409e-05,3.866674118643871e-05,4.04825000374614e-05,4.234577571175708e-05,4.425535973927537e-05,4.620986207947624e-05,4.820770799783946e-05,5.024713564343591e-05,5.2326194371730706e-05,5.444274385397351e-05,5.6594454011294496e-05,5.877880580797293e-05,6.099309293429361e-05,6.323442440496863e-05,6.549972809430152e-05,6.778575522413046e-05,7.008908581513852e-05,7.240613510639097e-05,7.473316094199468e-05,7.706627211760605e-05,7.940143767319185e-05,8.173449711201166e-05,8.406117151929609e-05,8.637707554758688e-05,8.867773022924084e-05,9.095857657022923e-05,9.32149898731447e-05,9.544229473131298e-05,9.763578063015046e-05,9.979071808646506e-05,0.00010190237525131906,0.00010396603489740845,0.00010597701170771033,0.0001079306697784547,0.0001098224402463283,0.0001116478389472541,0.0001134024840121416,0.00011508211330370014,0.00011668260159776842,0.00011819997741265831,0.0001196304393907488,0.0001209703721380007,0.00012221636142919454,0.00012336520868951422,0.00012441394466659213,0.00012535984221128134,0.00012620042809019375,0.00012693349375841688,0.0001275571050267479,0.00012806961056422868,0.00012846964918367297,0.00012875615586520033,0.0001289283664804707,0.00012898582118829035,0.0001289283664804707,0.00012875615586520033,0.00012846964918367297,0.00012806961056422868,0.0001275571050267479,0.00012693349375841688,0.00012620042809019375,0.00012535984221128134,0.00012441394466659213,0.00012336520868951422,0.00012221636142919454,0.0001209703721380007,0.0001196304393907488,0.00011819997741265831,0.00011668260159776842,0.00011508211330370014,0.0001134024840121416,0.0001116478389472541,0.0001098224402463283,0.0001079306697784547,0.00010597701170771033,0.00010396603489740845,0.00010190237525131906,9.979071808646506e-05,9.763578063015046e-05,9.544229473131298e-05,9.32149898731447e-05,9.095857657022923e-05,8.867773022924084e-05,8.637707554758688e-05,8.406117151929609e-05,8.173449711201166e-05,7.940143767319185e-05,7.706627211760605e-05,7.473316094199468e-05,7.240613510639097e-05,7.008908581513852e-05,6.778575522413046e-05,6.549972809430152e-05,6.323442440496863e-05,6.099309293429361e-05,5.877880580797293e-05,5.6594454011294496e-05,5.444274385397351e-05,5.2326194371730706e-05,5.024713564343591e-05,4.820770799783946e-05,4.620986207947624e-05,4.425535973927537e-05,4.234577571175708e-05,4.04825000374614e-05,3.866674118643871e-05,3.689952983624409e-05,3.518172325591678e-05,3.351401024588944e-05,3.189691658265228e-05,3.033081091628494e-05,2.8815911068650238e-05,2.73522906801036e-05,2.5939886152990563e-05,2.4578503840962167e-05,2.3267827434211405e-05,2.20074254920989e-05,2.0796759076267048e-05,1.9635189439212453e-05,1.8521985725369362e-05,1.7456332644024356e-05,1.6437338075807e-05,1.546404057705497e-05,1.4535416749008028e-05,1.3650388441517246e-05,1.2807829763737313e-05,1.2006573877077412e-05,1.124541954849548e-05,1.0523137445010679e-05,9.838476153058286e-06,9.19016790900207e-06,8.576934029733515e-06,7.997490034810185e-06,7.450550454003229e-06,6.9348333164246526e-06,6.44906431957856e-06,5.991980678718775e-06,5.562334658791537e-06,5.158896792991319e-06,4.780458793557144e-06,4.425836161884223e-06,4.0938705063206725e-06,3.7834315771630625e-06,3.4934190293592277e-06,3.2227639242757366e-06,2.970429982595029e-06,2.7354146009785332e-06,2.5167496455731685e-06,2.313502035756157e-06,2.124774131714063e-06,1.9497039395442967e-06,1.7874651475586224e-06,1.6372670073669123e-06,1.498354073133591e-06],[1.4778017532368626e-06,1.6148092746486434e-06,1.762947207389749e-06,1.922960635149213e-06,2.0956294599396854e-06,2.2817686592644757e-06,2.48222840340267e-06,2.6978940196035864e-06,2.929685789798563e-06,3.1785585683381855e-06,3.4455012062544705e-06,3.731535768638567e-06,4.037716531922805e-06,4.3651287481690394e-06,4.714887163900317e-06,5.0881342815763625e-06,5.486038352511233e-06,5.9097910908688926e-06,6.360605099353424e-06,6.839710998338932e-06,7.3483542514613644e-06,7.887791682122047e-06,8.459287676930161e-06,9.064110073836686e-06,9.703525734582694e-06,1.0378795803095033e-05,1.109117065360627e-05,1.1841884534544824e-05,1.2632149916625704e-05,1.3463151556060702e-05,1.4336040286385208e-05,1.5251926555052855e-05,1.621187372366082e-05,1.721689115342035e-05,1.8267927100257936e-05,1.936586144670159e-05,2.0511498300450064e-05,2.170555849221742e-05,2.294867200806458e-05,2.4241370393948555e-05,2.5584079172611075e-05,2.697711031516481e-05,2.842065481178967e-05,2.9914775387796686e-05,3.1459399412925556e-05,3.30543120530883e-05,3.469914971483008e-05,3.6393393833525235e-05,3.813636505673947e-05,3.992721787424801e-05,4.176493574588504e-05,4.364832677769762e-05,4.557601999577243e-05,4.7546462265589016e-05,4.955791590281849e-05,5.160845701913213e-05,5.369597464380783e-05,5.5818170658730006e-05,5.797256058077727e-05,6.0156475221595804e-05,6.236706325037956e-05,6.460129468054406e-05,6.685596529611027e-05,6.912770202824136e-05,7.141296928672587e-05,7.370807624531725e-05,7.600918507375608e-05,7.83123201030659e-05,8.061337790436593e-05,8.290813825503887e-05,8.519227595967294e-05,8.746137348682177e-05,8.971093437634323e-05,9.193639736594341e-05,9.413315117962e-05,9.629654991502248e-05,9.842192896137661e-05,0.0001005046213746125,0.0001025399746317349,0.00010452336768232917,0.00010645022821145188,0.0001083160500250494,0.00011011641046651892,0.00011184698777110502,0.00011350357826353925,0.00011508211330370014,0.00011657867588511583,0.00011798951679185813,0.00011931107022079306,0.0001205399687782547,0.00012167305776299054,0.00012270740865067298,0.00012364033169936248,0.0001244693876000182,0.00012519239810144947,0.00012580745554494844,0.0001263129312501993,0.0001267074827008727,0.0001269900594855373,0.00012715990795709404,0.00012721657458180578,0.00012715990795709404,0.0001269900594855373,0.0001267074827008727,0.0001263129312501993,0.00012580745554494844,0.00012519239810144947,0.0001244693876000182,0.00012364033169936248,0.00012270740865067298,0.00012167305776299054,0.0001205399687782547,0.00011931107022079306,0.00011798951679185813,0.00011657867588511583,0.00011508211330370014,0.00011350357826353925,0.00011184698777110502,0.00011011641046651892,0.0001083160500250494,0.00010645022821145188,0.00010452336768232917,0.0001025399746317349,0.0001005046213746125,9.842192896137661e-05,9.629654991502248e-05,9.413315117962e-05,9.193639736594341e-05,8.971093437634323e-05,8.746137348682177e-05,8.519227595967294e-05,8.290813825503887e-05,8.061337790436593e-05,7.83123201030659e-05,7.600918507375608e-05,7.370807624531725e-05,7.141296928672587e-05,6.912770202824136e-05,6.685596529611027e-05,6.460129468054406e-05,6.236706325037956e-05,6.0156475221595804e-05,5.797256058077727e-05,5.5818170658730006e-05,5.369597464380783e-05,5.160845701913213e-05,4.955791590281849e-05,4.7546462265589016e-05,4.557601999577243e-05,4.364832677769762e-05,4.176493574588504e-05,3.992721787424801e-05,3.813636505673947e-05,3.6393393833525235e-05,3.469914971483008e-05,3.30543120530883e-05,3.1459399412925556e-05,2.9914775387796686e-05,2.842065481178967e-05,2.697711031516481e-05,2.5584079172611075e-05,2.4241370393948555e-05,2.294867200806458e-05,2.170555849221742e-05,2.0511498300450064e-05,1.936586144670159e-05,1.8267927100257936e-05,1.721689115342035e-05,1.621187372366082e-05,1.5251926555052855e-05,1.4336040286385208e-05,1.3463151556060702e-05,1.2632149916625704e-05,1.1841884534544824e-05,1.109117065360627e-05,1.0378795803095033e-05,9.703525734582694e-06,9.064110073836686e-06,8.459287676930161e-06,7.887791682122047e-06,7.3483542514613644e-06,6.839710998338932e-06,6.360605099353424e-06,5.9097910908688926e-06,5.486038352511233e-06,5.0881342815763625e-06,4.714887163900317e-06,4.3651287481690394e-06,4.037716531922805e-06,3.731535768638567e-06,3.4455012062544705e-06,3.1785585683381855e-06,2.929685789798563e-06,2.6978940196035864e-06,2.48222840340267e-06,2.2817686592644757e-06,2.0956294599396854e-06,1.922960635149213e-06,1.762947207389749e-06,1.6148092746486434e-06,1.4778017532368626e-06],[1.4562331615539585e-06,1.5912410512287049e-06,1.7372169033138334e-06,1.8948949269640748e-06,2.065043641482574e-06,2.248466129734566e-06,2.446000153720713e-06,2.658518119294141e-06,2.8869268768246356e-06,3.1321673445150163e-06,3.3952139410662386e-06,3.6770738144775093e-06,3.978785853963056e-06,4.301419472275743e-06,4.646073146156469e-06,5.013872703183501e-06,5.405969343983605e-06,5.823537389591963e-06,6.267771744714574e-06,6.73988506875865e-06,7.241104647755082e-06,7.772668961703792e-06,8.335823943427142e-06,8.931818926716803e-06,9.56190228340235e-06,1.0227316750950944e-05,1.0929294454319681e-05,1.1669051628018453e-05,1.2447783046690573e-05,1.3266656174970714e-05,1.4126805049920341e-05,1.5029323911956078e-05,1.597526060285855e-05,1.6965609752160836e-05,1.8001305775945995e-05,1.908321571481183e-05,2.0212131940464375e-05,2.1388764763056785e-05,2.2613734973971415e-05,2.3887566361225015e-05,2.5210678237033285e-05,2.6583378019274648e-05,2.800585391061764e-05,2.9478167720894185e-05,3.1000247879886316e-05,3.2571882689020485e-05,3.4192713861506813e-05,3.5862230401196694e-05,3.757976287083914e-05,3.9344478100474054e-05,4.115537438639102e-05,4.301127723038988e-05,4.491083566799127e-05,4.6852519232751966e-05,4.8834615601934175e-05,5.0855228966457095e-05,5.291227916532356e-05,5.500350162156868e-05,5.7126448113228465e-05,5.927848840888874e-05,6.14568127930615e-05,6.36584355019704e-05,6.588019908533146e-05,6.811877970441892e-05,7.037069337114013e-05,7.263230312704512e-05,7.48998271552022e-05,7.716934781172555e-05,7.94368215574875e-05,8.169808976423424e-05,8.394889036300083e-05,8.618487029643689e-05,8.840159873046448e-05,9.059458097464465e-05,9.275927305478272e-05,9.489109687570902e-05,9.698545590688059e-05,9.903775131851339e-05,0.00010104339849142175,0.00010299784381965658,0.00010489658172144344,0.00010673517177085987,0.00010850925586020093,0.00011021457530108741,0.00011184698777110502,0.0001134024840121416,0.00011487720418663377,0.00011626745379865037,0.00011756971908813535,0.00011878068180870441,0.00011989723330213019,0.00012091648778604641,0.00012183579477543386,0.0001226527505630911,0.0001233652086895142,0.00012397128933837122,0.0001244693876000182,0.00012485818055221992,0.00012513663311435324,0.00012530400263883676,0.00012535984221128134,0.00012530400263883676,0.00012513663311435324,0.00012485818055221992,0.0001244693876000182,0.00012397128933837122,0.0001233652086895142,0.0001226527505630911,0.00012183579477543386,0.00012091648778604641,0.00011989723330213019,0.00011878068180870441,0.00011756971908813535,0.00011626745379865037,0.00011487720418663377,0.0001134024840121416,0.00011184698777110502,0.00011021457530108741,0.00010850925586020093,0.00010673517177085987,0.00010489658172144344,0.00010299784381965658,0.00010104339849142175,9.903775131851339e-05,9.698545590688059e-05,9.489109687570902e-05,9.275927305478272e-05,9.059458097464465e-05,8.840159873046448e-05,8.618487029643689e-05,8.394889036300083e-05,8.169808976423424e-05,7.94368215574875e-05,7.716934781172555e-05,7.48998271552022e-05,7.263230312704512e-05,7.037069337114013e-05,6.811877970441892e-05,6.588019908533146e-05,6.36584355019704e-05,6.14568127930615e-05,5.927848840888874e-05,5.7126448113228465e-05,5.500350162156868e-05,5.291227916532356e-05,5.0855228966457095e-05,4.8834615601934175e-05,4.6852519232751966e-05,4.491083566799127e-05,4.301127723038988e-05,4.115537438639102e-05,3.9344478100474054e-05,3.757976287083914e-05,3.5862230401196694e-05,3.4192713861506813e-05,3.2571882689020485e-05,3.1000247879886316e-05,2.9478167720894185e-05,2.800585391061764e-05,2.6583378019274648e-05,2.5210678237033285e-05,2.3887566361225015e-05,2.2613734973971415e-05,2.1388764763056785e-05,2.0212131940464375e-05,1.908321571481183e-05,1.8001305775945995e-05,1.6965609752160836e-05,1.597526060285855e-05,1.5029323911956078e-05,1.4126805049920341e-05,1.3266656174970714e-05,1.2447783046690573e-05,1.1669051628018453e-05,1.0929294454319681e-05,1.0227316750950944e-05,9.56190228340235e-06,8.931818926716803e-06,8.335823943427142e-06,7.772668961703792e-06,7.241104647755082e-06,6.73988506875865e-06,6.267771744714574e-06,5.823537389591963e-06,5.405969343983605e-06,5.013872703183501e-06,4.646073146156469e-06,4.301419472275743e-06,3.978785853963056e-06,3.6770738144775093e-06,3.3952139410662386e-06,3.1321673445150163e-06,2.8869268768246356e-06,2.658518119294141e-06,2.446000153720713e-06,2.248466129734566e-06,2.065043641482574e-06,1.8948949269640748e-06,1.7372169033138334e-06,1.5912410512287049e-06,1.4562331615539585e-06],[1.4337012712474588e-06,1.566620221430251e-06,1.7103374297944317e-06,1.8655757452808774e-06,2.033091796107505e-06,2.213676239261946e-06,2.4081538742866523e-06,2.6173836085418537e-06,2.842258260954025e-06,3.083704191160575e-06,3.342680740953168e-06,3.620179475010402e-06,3.917223208102909e-06,4.234864806257743e-06,4.5741857497909975e-06,4.936294446664242e-06,5.322324285297427e-06,5.733431416783278e-06,6.17079225739993e-06,6.635600703413179e-06,7.129065051398824e-06,7.652404618700531e-06,8.206846060168965e-06,8.79361937900183e-06,9.413953631318927e-06,1.0069072326056546e-05,1.0760188523845344e-05,1.1488499640737223e-05,1.2255181964960058e-05,1.3061384897293241e-05,1.3908224928158489e-05,1.4796779367095085e-05,1.5728079842919496e-05,1.670310559553893e-05,1.772277658307653e-05,1.8787946430652295e-05,1.989939524982545e-05,2.1057822360317896e-05,2.226383894817974e-05,2.3517960697001574e-05,2.4820600431097917e-05,2.617206081175594e-05,2.7572527129636686e-05,2.902206023820575e-05,3.052058967463123e-05,3.206790701589268e-05,3.3663659518871955e-05,3.5307344093921616e-05,3.699830166180688e-05,3.873571194397452e-05,4.051858873579675e-05,4.2345775711757085e-05,4.421594281047346e-05,4.612758324598388e-05,4.8079011189843545e-05,5.0068360166297796e-05,5.2093582200101494e-05,5.415244775345866e-05,5.624254648506223e-05,5.8361288860336433e-05,6.050590863773881e-05,6.267346625138475e-05,6.486085310533948e-05,6.706479678970852e-05,6.928186722317708e-05,7.150848372094078e-05,7.374092298106848e-05,7.597532797628761e-05,7.82077177320257e-05,8.04339979653262e-05,8.264997255303075e-05,8.485135579143344e-05,8.703378540351861e-05,8.919283624394111e-05,9.132403464615404e-05,9.342287335057974e-05,9.548482694751271e-05,9.750536776358193e-05,9.947998211613801e-05,0.00010140418685590908,0.00010327354611473317,0.00010508368817216193,0.00010683032235227768,0.00010850925586020093,0.00011011641046651892,0.0001116478389472541,0.00011309974118703519,0.00011446847985383805,0.00011575059555503779,0.00011694282138655263,0.00011804209678955852,0.00011904558063259642,0.00011995066344086387,0.00012075497869905183,0.00012145641315922674,0.00012205311609093139,0.00012254350741684202,0.00012292628468393076,0.00012320042882708887,0.00012336520868951422,0.0001234201842717996,0.00012336520868951422,0.00012320042882708887,0.00012292628468393076,0.00012254350741684202,0.00012205311609093139,0.00012145641315922674,0.00012075497869905183,0.00011995066344086387,0.00011904558063259642,0.00011804209678955852,0.00011694282138655263,0.00011575059555503779,0.00011446847985383805,0.00011309974118703519,0.0001116478389472541,0.00011011641046651892,0.00010850925586020093,0.00010683032235227768,0.00010508368817216193,0.00010327354611473317,0.00010140418685590908,9.947998211613801e-05,9.750536776358193e-05,9.548482694751271e-05,9.342287335057974e-05,9.132403464615404e-05,8.919283624394111e-05,8.703378540351861e-05,8.485135579143344e-05,8.264997255303075e-05,8.04339979653262e-05,7.82077177320257e-05,7.597532797628761e-05,7.374092298106848e-05,7.150848372094078e-05,6.928186722317708e-05,6.706479678970852e-05,6.486085310533948e-05,6.267346625138475e-05,6.050590863773881e-05,5.8361288860336433e-05,5.624254648506223e-05,5.415244775345866e-05,5.2093582200101494e-05,5.0068360166297796e-05,4.8079011189843545e-05,4.612758324598388e-05,4.421594281047346e-05,4.2345775711757085e-05,4.051858873579675e-05,3.873571194397452e-05,3.699830166180688e-05,3.5307344093921616e-05,3.3663659518871955e-05,3.206790701589268e-05,3.052058967463123e-05,2.902206023820575e-05,2.7572527129636686e-05,2.617206081175594e-05,2.4820600431097917e-05,2.3517960697001574e-05,2.226383894817974e-05,2.1057822360317896e-05,1.989939524982545e-05,1.8787946430652295e-05,1.772277658307653e-05,1.670310559553893e-05,1.5728079842919496e-05,1.4796779367095085e-05,1.3908224928158489e-05,1.3061384897293241e-05,1.2255181964960058e-05,1.1488499640737223e-05,1.0760188523845344e-05,1.0069072326056546e-05,9.413953631318927e-06,8.79361937900183e-06,8.206846060168965e-06,7.652404618700531e-06,7.129065051398824e-06,6.635600703413179e-06,6.17079225739993e-06,5.733431416783278e-06,5.322324285297427e-06,4.936294446664242e-06,4.5741857497909975e-06,4.234864806257743e-06,3.917223208102909e-06,3.620179475010402e-06,3.342680740953168e-06,3.083704191160575e-06,2.842258260954025e-06,2.6173836085418537e-06,2.4081538742866523e-06,2.213676239261946e-06,2.033091796107505e-06,1.8655757452808774e-06,1.7103374297944317e-06,1.566620221430251e-06,1.4337012712474588e-06],[1.4102608136199075e-06,1.5410065907141753e-06,1.682374078672459e-06,1.8350743081368657e-06,1.999851536748514e-06,2.177483494561101e-06,2.368781495965662e-06,2.5745904055214717e-06,2.7957884449131413e-06,3.0332868281586513e-06,3.2880292121848567e-06,3.5609909499738884e-06,3.853178133673071e-06,4.165626415359812e-06,4.499399593568069e-06,4.855587954220756e-06,5.2353063552784e-06,5.639692045213464e-06,6.069902206355929e-06,6.527111215232442e-06,7.012507613240197e-06,7.527290782358981e-06,8.072667322110202e-06,8.64984712561814e-06,9.260039154413525e-06,9.90444691353786e-06,1.0584263630552754e-05,1.1300667144223827e-05,1.2054814510924375e-05,1.2847836339178519e-05,1.3680830865224245e-05,1.455485778500928e-05,1.5470931860620565e-05,1.6430016321774058e-05,1.7433016085635733e-05,1.8480770820887214e-05,1.9574047884567435e-05,2.071353516279309e-05,2.189983384896032e-05,2.313345119543377e-05,2.4414793277011137e-05,2.5744157806585368e-05,2.7121727045387334e-05,2.854756085195217e-05,3.0021589915487833e-05,3.154360922060911e-05,3.3113271791410544e-05,3.473008276356454e-05,3.6393393833525235e-05,3.8102398133974386e-05,3.9856125584345934e-05,4.165343876459544e-05,4.349302935932661e-05,4.5373415217941295e-05,4.7292938074633496e-05,4.924976196980048e-05,5.124187241179506e-05,5.3267076314896246e-05,5.5323002745938946e-05,5.74071045082296e-05,5.951666058719802e-05,6.164877947771739e-05,6.380040340818626e-05,6.596831347133796e-05,6.81491356663518e-05,7.033934785122595e-05,7.253528759856632e-05,7.473316094199468e-05,7.692905199432292e-05,7.911893341252693e-05,8.129867767842837e-05,8.346406915790846e-05,8.561081689548243e-05,8.773456809520878e-05,8.983092223324699e-05,9.189544574195877e-05,9.392368720032551e-05,9.591119296067311e-05,9.785352313730629e-05,9.974626787869841e-05,0.00010158506384140502,0.00010336561078090514,0.00010508368817216193,0.00010673517177085987,0.0001083160500250494,0.0001098224402463283,0.00011125060444973216,0.00011259696477219942,0.00011385811838082778,0.00011503085178414538,0.0001161121544622734,0.0001170992317351461,0.00011798951679185813,0.00011878068180870442,0.00011947064808853243,0.00012005759515960742,0.00012053996877825471,0.00012091648778604642,0.00012118614977919155,0.00012134823555501704,0.00012140231230793472,0.00012134823555501704,0.00012118614977919155,0.00012091648778604642,0.00012053996877825471,0.00012005759515960742,0.00011947064808853243,0.00011878068180870442,0.00011798951679185813,0.0001170992317351461,0.0001161121544622734,0.00011503085178414538,0.00011385811838082778,0.00011259696477219942,0.00011125060444973216,0.0001098224402463283,0.0001083160500250494,0.00010673517177085987,0.00010508368817216193,0.00010336561078090514,0.00010158506384140502,9.974626787869841e-05,9.785352313730629e-05,9.591119296067311e-05,9.392368720032551e-05,9.189544574195877e-05,8.983092223324699e-05,8.773456809520878e-05,8.561081689548243e-05,8.346406915790846e-05,8.129867767842837e-05,7.911893341252693e-05,7.692905199432292e-05,7.473316094199468e-05,7.253528759856632e-05,7.033934785122595e-05,6.81491356663518e-05,6.596831347133796e-05,6.380040340818626e-05,6.164877947771739e-05,5.951666058719802e-05,5.74071045082296e-05,5.5323002745938946e-05,5.3267076314896246e-05,5.124187241179506e-05,4.924976196980048e-05,4.7292938074633496e-05,4.5373415217941295e-05,4.349302935932661e-05,4.165343876459544e-05,3.9856125584345934e-05,3.8102398133974386e-05,3.6393393833525235e-05,3.473008276356454e-05,3.3113271791410544e-05,3.154360922060911e-05,3.0021589915487833e-05,2.854756085195217e-05,2.7121727045387334e-05,2.5744157806585368e-05,2.4414793277011137e-05,2.313345119543377e-05,2.189983384896032e-05,2.071353516279309e-05,1.9574047884567435e-05,1.8480770820887214e-05,1.7433016085635733e-05,1.6430016321774058e-05,1.5470931860620565e-05,1.455485778500928e-05,1.3680830865224245e-05,1.2847836339178519e-05,1.2054814510924375e-05,1.1300667144223827e-05,1.0584263630552754e-05,9.90444691353786e-06,9.260039154413525e-06,8.64984712561814e-06,8.072667322110202e-06,7.527290782358981e-06,7.012507613240197e-06,6.527111215232442e-06,6.069902206355929e-06,5.639692045213464e-06,5.2353063552784e-06,4.855587954220756e-06,4.499399593568069e-06,4.165626415359812e-06,3.853178133673071e-06,3.5609909499738884e-06,3.2880292121848567e-06,3.0332868281586513e-06,2.7957884449131413e-06,2.5745904055214717e-06,2.368781495965662e-06,2.177483494561101e-06,1.999851536748514e-06,1.8350743081368657e-06,1.682374078672459e-06,1.5410065907141753e-06,1.4102608136199075e-06],[1.3859680574835336e-06,1.5144616445941208e-06,1.653393975964761e-06,1.8034638342236985e-06,1.965402656639251e-06,2.1399747763059477e-06,2.3279775321413095e-06,2.5302412353053318e-06,2.7476289794828896e-06,2.9810362823755698e-06,3.2313905457414113e-06,3.499650321406394e-06,3.786804370857482e-06,4.0938705063206725e-06,4.421894201635574e-06,4.77194696176644e-06,5.145124440444125e-06,5.542544296218757e-06,5.9653437781229626e-06,6.414677033203637e-06,6.891712129378143e-06,7.397627788409618e-06,7.93360982527547e-06,8.500847291821304e-06,9.100528324346546e-06,9.733835696653346e-06,1.0401942082100931e-05,1.1106005030335613e-05,1.184716166660303e-05,1.262652312388285e-05,1.3445168720504506e-05,1.4304139898391373e-05,1.520443393962408e-05,1.6146997481594417e-05,1.7132719853619765e-05,1.816242626048519e-05,1.92368708409531e-05,2.035672963180742e-05,2.152259347045592e-05,2.2734960871476687e-05,2.3994230914737155e-05,2.5300696184811722e-05,2.6654535803350546e-05,2.805580859778248e-05,2.9504446451243685e-05,3.1000247879886316e-05,3.254287188471427e-05,3.413183212579368e-05,3.576649146707323e-05,3.744605694010417e-05,3.916957517465543e-05,4.093592834356036e-05,4.2743830668095697e-05,4.459182552877267e-05,4.647828322460563e-05,4.840139942171561e-05,5.035919432952195e-05,5.23495126397815e-05,5.437002426035701e-05,5.641822587184878e-05,5.849144333111831e-05,6.058683494129285e-05,6.270139560308456e-05,6.483196185721802e-05,6.697521782246172e-05,6.912770202824136e-05,7.128581513510708e-05,7.344582853047835e-05,7.560389378113854e-05,7.775605291794167e-05,7.989824952217668e-05,8.20263405770525e-05,8.413610904187667e-05,8.622327710074638e-05,8.828352003200708e-05,9.031248063940969e-05,9.23057841808621e-05,9.425905372597244e-05,9.616792586926768e-05,9.802806672208332e-05,9.983518810270187e-05,0.00010158506384140502,0.00010327354611473317,0.00010489658172144344,0.00010645022821145188,0.0001079306697784547,0.00010933423282696514,0.00011065740112518444,0.00011189683045645287,0.00011304936268399885,0.00011411203914631227,0.00011508211330370016,0.00011595706256041995,0.00011673459919120301,0.00011741268030594929,0.00011798951679185814,0.00011846358117821927,0.00011883361437547957,0.00011909863124697383,0.00011925792497881196,0.00011931107022079307,0.00011925792497881196,0.00011909863124697383,0.00011883361437547957,0.00011846358117821927,0.00011798951679185814,0.00011741268030594929,0.00011673459919120301,0.00011595706256041995,0.00011508211330370016,0.00011411203914631227,0.00011304936268399885,0.00011189683045645287,0.00011065740112518444,0.00010933423282696514,0.0001079306697784547,0.00010645022821145188,0.00010489658172144344,0.00010327354611473317,0.00010158506384140502,9.983518810270187e-05,9.802806672208332e-05,9.616792586926768e-05,9.425905372597244e-05,9.23057841808621e-05,9.031248063940969e-05,8.828352003200708e-05,8.622327710074638e-05,8.413610904187667e-05,8.20263405770525e-05,7.989824952217668e-05,7.775605291794167e-05,7.560389378113854e-05,7.344582853047835e-05,7.128581513510708e-05,6.912770202824136e-05,6.697521782246172e-05,6.483196185721802e-05,6.270139560308456e-05,6.058683494129285e-05,5.849144333111831e-05,5.641822587184878e-05,5.437002426035701e-05,5.23495126397815e-05,5.035919432952195e-05,4.840139942171561e-05,4.647828322460563e-05,4.459182552877267e-05,4.2743830668095697e-05,4.093592834356036e-05,3.916957517465543e-05,3.744605694010417e-05,3.576649146707323e-05,3.413183212579368e-05,3.254287188471427e-05,3.1000247879886316e-05,2.9504446451243685e-05,2.805580859778248e-05,2.6654535803350546e-05,2.5300696184811722e-05,2.3994230914737155e-05,2.2734960871476687e-05,2.152259347045592e-05,2.035672963180742e-05,1.92368708409531e-05,1.816242626048519e-05,1.7132719853619765e-05,1.6146997481594417e-05,1.520443393962408e-05,1.4304139898391373e-05,1.3445168720504506e-05,1.262652312388285e-05,1.184716166660303e-05,1.1106005030335613e-05,1.0401942082100931e-05,9.733835696653346e-06,9.100528324346546e-06,8.500847291821304e-06,7.93360982527547e-06,7.397627788409618e-06,6.891712129378143e-06,6.414677033203637e-06,5.9653437781229626e-06,5.542544296218757e-06,5.145124440444125e-06,4.77194696176644e-06,4.421894201635574e-06,4.0938705063206725e-06,3.786804370857482e-06,3.499650321406394e-06,3.2313905457414113e-06,2.9810362823755698e-06,2.7476289794828896e-06,2.5302412353053318e-06,2.3279775321413095e-06,2.1399747763059477e-06,1.965402656639251e-06,1.8034638342236985e-06,1.653393975964761e-06,1.5144616445941208e-06,1.3859680574835336e-06],[1.3608805852492316e-06,1.4870483039665922e-06,1.6234658147489161e-06,1.7708192515276127e-06,1.929826811791004e-06,2.101238993404746e-06,2.2858387026175503e-06,2.484441221088509e-06,2.697894019603585e-06,2.9270764060568237e-06,3.172898995263931e-06,3.4363029882597273e-06,3.7182592489135373e-06,4.019767165984946e-06,4.341853289142992e-06,4.685569727990762e-06,5.051992303779998e-06,5.442218444271459e-06,5.857364813100167e-06,6.298564666043673e-06,6.7669649277676695e-06,7.263722983937866e-06,7.790003185039644e-06,8.34697305983588e-06,8.935799238115614e-06,9.557643084237424e-06,1.0213656044945543e-05,1.0904974717026338e-05,1.163271564256851e-05,1.2397969841882015e-05,1.3201797096505035e-05,1.404521999717227e-05,1.4929217774115066e-05,1.5854719929597766e-05,1.682259969514644e-05,1.7833667338475987e-05,1.8888663347648013e-05,1.9988251522473194e-05,2.113301200558392e-05,2.232343428792273e-05,2.355991022559382e-05,2.4842727107084608e-05,2.617206081175594e-05,2.7547969102198635e-05,2.8970385094535387e-05,3.0439110951986833e-05,3.195381184799555e-05,3.351401024588944e-05,3.511908054244645e-05,3.6768244122776584e-05,3.846056487364765e-05,4.019494520173449e-05,4.197012260225429e-05,4.378466682205535e-05,4.5636977659445325e-05,4.752528344087665e-05,4.9447640212050016e-05,5.140193167805695e-05,5.33858699238663e-05,5.539699694277919e-05,5.743268699644635e-05,5.949014982568225e-05,6.156643472664094e-05,6.365843550197039e-05,6.576289629135941e-05,6.787641828047346e-05,6.999546728167335e-05,7.211638217416826e-05,7.423538418541002e-05,7.63485869896362e-05,7.84520075935594e-05,8.054157797332802e-05,8.261315742109926e-05,8.466254555391474e-05,8.668549593210769e-05,8.867773022924084e-05,9.063495289063205e-05,9.255286621290993e-05,9.442718577280675e-05,9.625365612957819e-05,9.802806672208332e-05,9.974626787869841e-05,0.00010140418685590908,0.00010299784381965658,0.00010452336768232917,0.00010597701170771033,0.000107355168796236,0.00010865438636358265,0.00010987138072691177,0.00011100305091503223,0.00011204649182130351,0.00011299900662127529,0.00011385811838082778,0.00011462158078491376,0.00011528738792188187,0.00011585378306374541,0.00011631926638861247,0.00011668260159776843,0.00011694282138655263,0.00011709923173514609,0.00011715141499263169,0.00011709923173514609,0.00011694282138655263,0.00011668260159776843,0.00011631926638861247,0.00011585378306374541,0.00011528738792188187,0.00011462158078491376,0.00011385811838082778,0.00011299900662127529,0.00011204649182130351,0.00011100305091503223,0.00010987138072691177,0.00010865438636358265,0.000107355168796236,0.00010597701170771033,0.00010452336768232917,0.00010299784381965658,0.00010140418685590908,9.974626787869841e-05,9.802806672208332e-05,9.625365612957819e-05,9.442718577280675e-05,9.255286621290993e-05,9.063495289063205e-05,8.867773022924084e-05,8.668549593210769e-05,8.466254555391474e-05,8.261315742109926e-05,8.054157797332802e-05,7.84520075935594e-05,7.63485869896362e-05,7.423538418541002e-05,7.211638217416826e-05,6.999546728167335e-05,6.787641828047346e-05,6.576289629135941e-05,6.365843550197039e-05,6.156643472664094e-05,5.949014982568225e-05,5.743268699644635e-05,5.539699694277919e-05,5.33858699238663e-05,5.140193167805695e-05,4.9447640212050016e-05,4.752528344087665e-05,4.5636977659445325e-05,4.378466682205535e-05,4.197012260225429e-05,4.019494520173449e-05,3.846056487364765e-05,3.6768244122776584e-05,3.511908054244645e-05,3.351401024588944e-05,3.195381184799555e-05,3.0439110951986833e-05,2.8970385094535387e-05,2.7547969102198635e-05,2.617206081175594e-05,2.4842727107084608e-05,2.355991022559382e-05,2.232343428792273e-05,2.113301200558392e-05,1.9988251522473194e-05,1.8888663347648013e-05,1.7833667338475987e-05,1.682259969514644e-05,1.5854719929597766e-05,1.4929217774115066e-05,1.404521999717227e-05,1.3201797096505035e-05,1.2397969841882015e-05,1.163271564256851e-05,1.0904974717026338e-05,1.0213656044945543e-05,9.557643084237424e-06,8.935799238115614e-06,8.34697305983588e-06,7.790003185039644e-06,7.263722983937866e-06,6.7669649277676695e-06,6.298564666043673e-06,5.857364813100167e-06,5.442218444271459e-06,5.051992303779998e-06,4.685569727990762e-06,4.341853289142992e-06,4.019767165984946e-06,3.7182592489135373e-06,3.4363029882597273e-06,3.172898995263931e-06,2.9270764060568237e-06,2.697894019603585e-06,2.484441221088509e-06,2.2858387026175503e-06,2.101238993404746e-06,1.929826811791004e-06,1.7708192515276127e-06,1.6234658147489161e-06,1.4870483039665922e-06,1.3608805852492316e-06],[1.3350570669745875e-06,1.458830678210893e-06,1.5926595856132782e-06,1.7372169033138345e-06,1.8932072005765074e-06,2.0613667341237122e-06,2.2424635540925805e-06,2.4372974716879625e-06,2.6466998764337588e-06,2.8715333908338935e-06,3.1126913502465006e-06,3.3710970958571333e-06,3.6477030688159286e-06,3.943489693886528e-06,4.259464041347621e-06,4.596658256397e-06,4.9561277459384795e-06,5.338949113388535e-06,5.746217833025756e-06,6.179045656425485e-06,6.638557744675935e-06,7.1258895213616325e-06,7.642183242725185e-06,8.188584282976992e-06,8.766237134412172e-06,9.376281123810064e-06,1.0019845848528289e-05,1.0698046337753377e-05,1.141197794652401e-05,1.2162710992391049e-05,1.295128514690785e-05,1.3778703596541902e-05,1.4645926990048661e-05,1.555386719183433e-05,1.6503380863337563e-05,1.7495262896961583e-05,1.8530239729566738e-05,1.9608962564967605e-05,2.0732000537245186e-05,2.189983384896032e-05,2.3112846920514647e-05,2.4371321588925707e-05,2.5675430396138905e-05,2.7025230008665546e-05,2.842065481178967e-05,2.9861510722802436e-05,3.134746926867943e-05,3.2878061974290845e-05,3.4452675107607745e-05,3.607054482842063e-05,3.7730752786802505e-05,3.9432222216914166e-05,4.1173714570751745e-05,4.29538267350675e-05,4.477098887294765e-05,4.6623462929403663e-05,4.8509341837824885e-05,5.042654946125706e-05,5.237284129921716e-05,5.4345805987144913e-05,5.6342867611637486e-05,5.8361288860336433e-05,6.039817502075578e-05,6.245047883748515e-05,6.451500623209867e-05,6.658842288478472e-05,6.866726167121597e-05,7.074793094254546e-05,7.282672363068098e-05,7.48998271552022e-05,7.69633341024876e-05,7.9013253641857e-05,8.104552363786093e-05,8.305602341230522e-05,8.504058710424062e-05,8.699501757101786e-05,8.891510076865904e-05,9.07966205452696e-05,9.263537377706083e-05,9.442718577280675e-05,9.616792586926768e-05,9.785352313730629e-05,9.947998211613801e-05,0.00010104339849142175,0.0001025399746317349,0.00010396603489740845,0.00010531804063573734,0.00010659260477723842,0.0001077865059489075,0.00010889670202232566,0.00010992034301697819,0.00011085478328226225,0.0001116975928853557,0.00011244656813637506,0.00011309974118703519,0.00011365538864430751,0.00011411203914631227,0.00011446847985383806,0.00011472376181740531,0.00011487720418663378,0.00011492839723578082,0.00011487720418663378,0.00011472376181740531,0.00011446847985383806,0.00011411203914631227,0.00011365538864430751,0.00011309974118703519,0.00011244656813637506,0.0001116975928853557,0.00011085478328226225,0.00010992034301697819,0.00010889670202232566,0.0001077865059489075,0.00010659260477723842,0.00010531804063573734,0.00010396603489740845,0.0001025399746317349,0.00010104339849142175,9.947998211613801e-05,9.785352313730629e-05,9.616792586926768e-05,9.442718577280675e-05,9.263537377706083e-05,9.07966205452696e-05,8.891510076865904e-05,8.699501757101786e-05,8.504058710424062e-05,8.305602341230522e-05,8.104552363786093e-05,7.9013253641857e-05,7.69633341024876e-05,7.48998271552022e-05,7.282672363068098e-05,7.074793094254546e-05,6.866726167121597e-05,6.658842288478472e-05,6.451500623209867e-05,6.245047883748515e-05,6.039817502075578e-05,5.8361288860336433e-05,5.6342867611637486e-05,5.4345805987144913e-05,5.237284129921716e-05,5.042654946125706e-05,4.8509341837824885e-05,4.6623462929403663e-05,4.477098887294765e-05,4.29538267350675e-05,4.1173714570751745e-05,3.9432222216914166e-05,3.7730752786802505e-05,3.607054482842063e-05,3.4452675107607745e-05,3.2878061974290845e-05,3.134746926867943e-05,2.9861510722802436e-05,2.842065481178967e-05,2.7025230008665546e-05,2.5675430396138905e-05,2.4371321588925707e-05,2.3112846920514647e-05,2.189983384896032e-05,2.0732000537245186e-05,1.9608962564967605e-05,1.8530239729566738e-05,1.7495262896961583e-05,1.6503380863337563e-05,1.555386719183433e-05,1.4645926990048661e-05,1.3778703596541902e-05,1.295128514690785e-05,1.2162710992391049e-05,1.141197794652401e-05,1.0698046337753377e-05,1.0019845848528289e-05,9.376281123810064e-06,8.766237134412172e-06,8.188584282976992e-06,7.642183242725185e-06,7.1258895213616325e-06,6.638557744675935e-06,6.179045656425485e-06,5.746217833025756e-06,5.338949113388535e-06,4.9561277459384795e-06,4.596658256397e-06,4.259464041347621e-06,3.943489693886528e-06,3.6477030688159286e-06,3.3710970958571333e-06,3.1126913502465006e-06,2.8715333908338935e-06,2.6466998764337588e-06,2.4372974716879625e-06,2.2424635540925805e-06,2.0613667341237122e-06,1.8932072005765074e-06,1.7372169033138345e-06,1.5926595856132782e-06,1.458830678210893e-06,1.3350570669745875e-06],[1.3085570336025288e-06,1.4298738174046518e-06,1.5610463061414698e-06,1.7027342530578084e-06,1.855628242165995e-06,2.0204499159609352e-06,2.1979520792731976e-06,2.388918667564083e-06,2.5941645678043992e-06,2.8145352799901964e-06,3.0509064073411196e-06,3.304182963307649e-06,3.5752984836890655e-06,3.86521393244123e-06,4.174916390138534e-06,4.505417514553275e-06,4.857751763433715e-06,5.2329743703034814e-06,5.632159064973708e-06,6.056395531458306e-06,6.506786597113747e-06,6.984445148088801e-06,7.4904907675664005e-06,8.026046094807591e-06,8.5922329046636e-06,9.190167909002071e-06,9.820958283391767e-06,1.0485696924399281e-05,1.118545744496268e-05,1.1921288917510408e-05,1.2694210376776965e-05,1.350520509661672e-05,1.4355214657518527e-05,1.5245132823960286e-05,1.6175799253196128e-05,1.7147993059520812e-05,1.816242626048519e-05,1.9219737133922437e-05,2.032048351696414e-05,2.146513608045585e-05,2.2654071614298784e-05,2.3887566361225022e-05,2.516578943833212e-05,2.6488796387337188e-05,2.7856522895934633e-05,2.92687787338339e-05,3.0725241947991123e-05,3.222545336220977e-05,3.37688114266512e-05,3.535456746284809e-05,3.6981821349535196e-05,3.864951769399018e-05,4.035644253259901e-05,4.2101220603019226e-05,4.388231322860102e-05,4.569801685364153e-05,4.754646226558902e-05,4.9425614537486866e-05,5.133327372075859e-05,5.326707631489625e-05,5.522449753673919e-05,5.720285440783771e-05,5.9199309673906954e-05,6.12108765656177e-05,6.323442440496863e-05,6.526668505627501e-05,6.730426021542148e-05,6.934362952550557e-05,7.138115950137814e-05,7.341311323991451e-05,7.543566088716755e-05,7.744489082790698e-05,7.943682155748752e-05,8.140741419055542e-05,8.335258555585082e-05,8.526822182133574e-05,8.715019258912408e-05,8.899436539525393e-05,9.07966205452696e-05,9.255286621290993e-05,9.425905372597244e-05,9.591119296067311e-05,9.750536776358193e-05,9.903775131851339e-05,0.0001005046213746125,0.00010190237525131906,0.0001032275445359328,0.0001044768093901449,0.00010564701238315567,0.00010673517177085988,0.00010773849414304276,0.00010865438636358267,0.00010948046673227803,0.00011021457530108743,0.00011085478328226223,0.00011139940149102895,0.00011184698777110504,0.0001121963533573658,0.00011244656813637505,0.00011259696477219942,0.0001126471416718916,0.00011259696477219942,0.00011244656813637505,0.0001121963533573658,0.00011184698777110504,0.00011139940149102895,0.00011085478328226223,0.00011021457530108743,0.00010948046673227803,0.00010865438636358267,0.00010773849414304276,0.00010673517177085988,0.00010564701238315567,0.0001044768093901449,0.0001032275445359328,0.00010190237525131906,0.0001005046213746125,9.903775131851339e-05,9.750536776358193e-05,9.591119296067311e-05,9.425905372597244e-05,9.255286621290993e-05,9.07966205452696e-05,8.899436539525393e-05,8.715019258912408e-05,8.526822182133574e-05,8.335258555585082e-05,8.140741419055542e-05,7.943682155748752e-05,7.744489082790698e-05,7.543566088716755e-05,7.341311323991451e-05,7.138115950137814e-05,6.934362952550557e-05,6.730426021542148e-05,6.526668505627501e-05,6.323442440496863e-05,6.12108765656177e-05,5.9199309673906954e-05,5.720285440783771e-05,5.522449753673919e-05,5.326707631489625e-05,5.133327372075859e-05,4.9425614537486866e-05,4.754646226558902e-05,4.569801685364153e-05,4.388231322860102e-05,4.2101220603019226e-05,4.035644253259901e-05,3.864951769399018e-05,3.6981821349535196e-05,3.535456746284809e-05,3.37688114266512e-05,3.222545336220977e-05,3.0725241947991123e-05,2.92687787338339e-05,2.7856522895934633e-05,2.6488796387337188e-05,2.516578943833212e-05,2.3887566361225022e-05,2.2654071614298784e-05,2.146513608045585e-05,2.032048351696414e-05,1.9219737133922437e-05,1.816242626048519e-05,1.7147993059520812e-05,1.6175799253196128e-05,1.5245132823960286e-05,1.4355214657518527e-05,1.350520509661672e-05,1.2694210376776965e-05,1.1921288917510408e-05,1.118545744496268e-05,1.0485696924399281e-05,9.820958283391767e-06,9.190167909002071e-06,8.5922329046636e-06,8.026046094807591e-06,7.4904907675664005e-06,6.984445148088801e-06,6.506786597113747e-06,6.056395531458306e-06,5.632159064973708e-06,5.2329743703034814e-06,4.857751763433715e-06,4.505417514553275e-06,4.174916390138534e-06,3.86521393244123e-06,3.5752984836890655e-06,3.304182963307649e-06,3.0509064073411196e-06,2.8145352799901964e-06,2.5941645678043992e-06,2.388918667564083e-06,2.1979520792731976e-06,2.0204499159609352e-06,1.855628242165995e-06,1.7027342530578084e-06,1.5610463061414698e-06,1.4298738174046518e-06,1.3085570336025288e-06],[1.2814406506054494e-06,1.4002434649824145e-06,1.528697750880587e-06,1.6674495899040384e-06,1.8171752555382416e-06,1.978581436146356e-06,2.152405336670229e-06,2.3394146475824697e-06,2.540407369477036e-06,2.7562114815991606e-06,2.9876844426079917e-06,3.235712511944281e-06,3.5012098803473495e-06,3.7851175983371107e-06,4.088402291854173e-06,4.412054654739642e-06,4.757087708341396e-06,5.1245348192596935e-06,5.515447467095667e-06,5.930892755044583e-06,6.371950657283254e-06,6.839710998338935e-06,7.335270160994724e-06,7.8597275207827e-06,8.414181606737723e-06,8.999725989828021e-06,9.617444902337501e-06,1.0268408593442457e-05,1.0953668428292832e-05,1.1674251740066113e-05,1.2431156446697568e-05,1.3225345446291992e-05,1.4057740807573367e-05,1.492921777411507e-05,1.5840598603495776e-05,1.6792646264927472e-05,1.778605802128078e-05,1.882145892376921e-05,1.989939524982545e-05,2.1020327916886823e-05,2.2184625906880595e-05,2.3392559738138942e-05,2.4644295023254948e-05,2.5939886152990566e-05,2.72792701477426e-05,2.866226071924006e-05,3.008854258606425e-05,3.155766608723064e-05,3.3069042138429734e-05,3.4621937575574964e-05,3.6215470930033215e-05,3.7848608679304476e-05,3.952016201595935e-05,4.122878417632942e-05,4.29729683687682e-05,4.475104633925834e-05,4.6561187609733626e-05,4.840139942171561e-05,5.0269527414742545e-05,5.216325706560236e-05,5.408011591058659e-05,5.601747656887662e-05,5.797256058077727e-05,5.9942443069852776e-05,6.19240582331218e-05,6.391420565836649e-05,6.590955746233474e-05,6.790666623820849e-05,6.990197379520667e-05,7.189182066763666e-05,7.387245636514321e-05,7.584005033037433e-05,7.779070356483625e-05,7.972046087839013e-05,8.162532371269923e-05,8.350126348401228e-05,8.534423538601317e-05,8.715019258912408e-05,8.891510076865904e-05,9.063495289063205e-05,9.23057841808621e-05,9.392368720032551e-05,9.548482694751271e-05,9.698545590688059e-05,9.842192896137661e-05,9.979071808646506e-05,0.00010108842674312389,0.00010231180388791122,0.00010345775751942842,0.00010452336768232917,0.000105505898852436,0.0001064028116295138,0.00010721177366779736,0.0001079306697784547,0.00010855761114276103,0.00010909094357982895,0.0001095292548182499,0.00010987138072691177,0.00011011641046651892,0.00011026369052990986,0.00011031282764608881,0.00011026369052990986,0.00011011641046651892,0.00010987138072691177,0.0001095292548182499,0.00010909094357982895,0.00010855761114276103,0.0001079306697784547,0.00010721177366779736,0.0001064028116295138,0.000105505898852436,0.00010452336768232917,0.00010345775751942842,0.00010231180388791122,0.00010108842674312389,9.979071808646506e-05,9.842192896137661e-05,9.698545590688059e-05,9.548482694751271e-05,9.392368720032551e-05,9.23057841808621e-05,9.063495289063205e-05,8.891510076865904e-05,8.715019258912408e-05,8.534423538601317e-05,8.350126348401228e-05,8.162532371269923e-05,7.972046087839013e-05,7.779070356483625e-05,7.584005033037433e-05,7.387245636514321e-05,7.189182066763666e-05,6.990197379520667e-05,6.790666623820849e-05,6.590955746233474e-05,6.391420565836649e-05,6.19240582331218e-05,5.9942443069852776e-05,5.797256058077727e-05,5.601747656887662e-05,5.408011591058659e-05,5.216325706560236e-05,5.0269527414742545e-05,4.840139942171561e-05,4.6561187609733626e-05,4.475104633925834e-05,4.29729683687682e-05,4.122878417632942e-05,3.952016201595935e-05,3.7848608679304476e-05,3.6215470930033215e-05,3.4621937575574964e-05,3.3069042138429734e-05,3.155766608723064e-05,3.008854258606425e-05,2.866226071924006e-05,2.72792701477426e-05,2.5939886152990566e-05,2.4644295023254948e-05,2.3392559738138942e-05,2.2184625906880595e-05,2.1020327916886823e-05,1.989939524982545e-05,1.882145892376921e-05,1.778605802128078e-05,1.6792646264927472e-05,1.5840598603495776e-05,1.492921777411507e-05,1.4057740807573367e-05,1.3225345446291992e-05,1.2431156446697568e-05,1.1674251740066113e-05,1.0953668428292832e-05,1.0268408593442457e-05,9.617444902337501e-06,8.999725989828021e-06,8.414181606737723e-06,7.8597275207827e-06,7.335270160994724e-06,6.839710998338935e-06,6.371950657283254e-06,5.930892755044583e-06,5.515447467095667e-06,5.1245348192596935e-06,4.757087708341396e-06,4.412054654739642e-06,4.088402291854173e-06,3.7851175983371107e-06,3.5012098803473495e-06,3.235712511944281e-06,2.9876844426079917e-06,2.7562114815991606e-06,2.540407369477036e-06,2.3394146475824697e-06,2.152405336670229e-06,1.978581436146356e-06,1.8171752555382416e-06,1.6674495899040384e-06,1.528697750880587e-06,1.4002434649824145e-06,1.2814406506054494e-06],[1.2537684932246284e-06,1.3700058121374291e-06,1.495686183212519e-06,1.6314417362007794e-06,1.7779341407538546e-06,1.935854824604928e-06,2.1059250730735367e-06,2.288895998688107e-06,2.4855483695644363e-06,2.6966922850935694e-06,2.9231666874852578e-06,3.165838697790415e-06,3.425602765194196e-06,3.7033796186369878e-06,4.0001150101897075e-06,4.316778240087856e-06,4.654360453920836e-06,5.0138727031835005e-06,5.39634376122914e-06,5.802817687620412e-06,6.234351134958237e-06,6.692010393479909e-06,7.176868170055866e-06,7.690000099678406e-06,8.232480989122348e-06,8.805380794163188e-06,9.409760333556953e-06,1.0046666744911225e-05,1.0717128689599637e-05,1.142215131598342e-05,1.2162710992391047e-05,1.293974982355862e-05,1.3754169966534286e-05,1.4606827764384478e-05,1.5498527718390602e-05,1.6430016321774055e-05,1.7401975780314915e-05,1.8415017647515704e-05,1.9469676404183894e-05,2.056640301444383e-05,2.170555849221742e-05,2.288740751411031e-05,2.4112112116383145e-05,2.537972551525288e-05,2.6690186091133646e-05,2.8043311578569205e-05,2.9438793504506922e-05,3.087619191819702e-05,3.235493045635123e-05,3.3874291787244765e-05,3.543341347717894e-05,3.7031284322125724e-05,3.866674118643871e-05,4.033846638922921e-05,4.204498567736555e-05,4.378466682205535e-05,4.555571887361562e-05,4.735619210632657e-05,4.918397868221013e-05,5.1036814059183314e-05,5.291227916532355e-05,5.480780335696624e-05,5.672066817405325e-05,5.864801190159214e-05,6.058683494129283e-05,6.253400599245699e-05,6.448626903603402e-05,6.64402511104671e-05,6.839247086256826e-05,7.033934785122595e-05,7.227721257630426e-05,7.420231719968276e-05,7.61108469200561e-05,7.799893195790823e-05,7.986266010204268e-05,8.169808976423424e-05,8.350126348401228e-05,8.526822182133574e-05,8.699501757101786e-05,8.867773022924084e-05,9.031248063940969e-05,9.189544574195877e-05,9.342287335057974e-05,9.489109687570902e-05,9.629654991502248e-05,9.763578063015046e-05,9.890546582886408e-05,0.00010010242467260046,0.00010122363193039563,0.00010226623070207786,0.00010322754453593279,0.00010410508886897658,0.00010489658172144344,0.00010559995358109065,0.00010621335641741801,0.00010673517177085987,0.00010716401786739881,0.00010749875571483124,0.00010773849414304275,0.00010788259375707673,0.00010793066977845468,0.00010788259375707673,0.00010773849414304275,0.00010749875571483124,0.00010716401786739881,0.00010673517177085987,0.00010621335641741801,0.00010559995358109065,0.00010489658172144344,0.00010410508886897658,0.00010322754453593279,0.00010226623070207786,0.00010122363193039563,0.00010010242467260046,9.890546582886408e-05,9.763578063015046e-05,9.629654991502248e-05,9.489109687570902e-05,9.342287335057974e-05,9.189544574195877e-05,9.031248063940969e-05,8.867773022924084e-05,8.699501757101786e-05,8.526822182133574e-05,8.350126348401228e-05,8.169808976423424e-05,7.986266010204268e-05,7.799893195790823e-05,7.61108469200561e-05,7.420231719968276e-05,7.227721257630426e-05,7.033934785122595e-05,6.839247086256826e-05,6.64402511104671e-05,6.448626903603402e-05,6.253400599245699e-05,6.058683494129283e-05,5.864801190159214e-05,5.672066817405325e-05,5.480780335696624e-05,5.291227916532355e-05,5.1036814059183314e-05,4.918397868221013e-05,4.735619210632657e-05,4.555571887361562e-05,4.378466682205535e-05,4.204498567736555e-05,4.033846638922921e-05,3.866674118643871e-05,3.7031284322125724e-05,3.543341347717894e-05,3.3874291787244765e-05,3.235493045635123e-05,3.087619191819702e-05,2.9438793504506922e-05,2.8043311578569205e-05,2.6690186091133646e-05,2.537972551525288e-05,2.4112112116383145e-05,2.288740751411031e-05,2.170555849221742e-05,2.056640301444383e-05,1.9469676404183894e-05,1.8415017647515704e-05,1.7401975780314915e-05,1.6430016321774055e-05,1.5498527718390602e-05,1.4606827764384478e-05,1.3754169966534286e-05,1.293974982355862e-05,1.2162710992391047e-05,1.142215131598342e-05,1.0717128689599637e-05,1.0046666744911225e-05,9.409760333556953e-06,8.805380794163188e-06,8.232480989122348e-06,7.690000099678406e-06,7.176868170055866e-06,6.692010393479909e-06,6.234351134958237e-06,5.802817687620412e-06,5.39634376122914e-06,5.0138727031835005e-06,4.654360453920836e-06,4.316778240087856e-06,4.0001150101897075e-06,3.7033796186369878e-06,3.425602765194196e-06,3.165838697790415e-06,2.9231666874852578e-06,2.6966922850935694e-06,2.4855483695644363e-06,2.288895998688107e-06,2.1059250730735367e-06,1.935854824604928e-06,1.7779341407538546e-06,1.6314417362007794e-06,1.495686183212519e-06,1.3700058121374291e-06,1.2537684932246284e-06],[1.225601324461851e-06,1.3392272552307937e-06,1.4620840905085086e-06,1.5947897586159728e-06,1.737991064131379e-06,1.8923639011692614e-06,2.0586133506498352e-06,2.2374736506039913e-06,2.429708028407431e-06,2.6361083837545353e-06,2.8574948111754947e-06,3.094714950975686e-06,3.3486431576407353e-06,3.6201794750104014e-06,3.910248407885206e-06,4.219797480197079e-06,4.5497955704540315e-06,4.9012310158633605e-06,5.2751094773514484e-06,5.672451558633991e-06,6.094290173549695e-06,6.541667657054456e-06,7.0156326165812035e-06,7.5172365219015256e-06,8.047530033176274e-06,8.607559068549545e-06,9.198360614418293e-06,9.82095828339177e-06,1.0476357626932433e-05,1.1165541211733782e-05,1.1889463471028914e-05,1.264904534422458e-05,1.3445168720504504e-05,1.4278670704327839e-05,1.5150337723046483e-05,1.606089949916167e-05,1.701102291201527e-05,1.8001305775945995e-05,1.903227056411302e-05,2.01043581092786e-05,2.1217921314824196e-05,2.2373218911129598e-05,2.3570409294148093e-05,2.4809544484540848e-05,2.6090564247067895e-05,2.7413290411049582e-05,2.8777421433590295e-05,3.0182527247875835e-05,3.162804443919823e-05,3.3113271791410544e-05,3.463736624625355e-05,3.619933931741358e-05,3.779805400025504e-05,3.9432222216914166e-05,4.1100402834836956e-05,4.280100029489064e-05,4.453226388287606e-05,4.629228767562047e-05,4.8079011189843545e-05,4.989022075867521e-05,5.172355165707389e-05,5.357649099346742e-05,5.5446381380733896e-05,5.733042539518314e-05,5.92256908275141e-05,6.112911672484442e-05,6.303752021786252e-05,6.494760412198154e-05,6.685596529611028e-05,6.875910373734374e-05,7.065343238455306e-05,7.253528759856632e-05,7.440094028142196e-05,7.624660759208836e-05,7.806846521112391e-05,7.986266010204268e-05,8.162532371269923e-05,8.335258555585082e-05,8.504058710424062e-05,8.668549593210769e-05,8.828352003200708e-05,8.983092223324699e-05,9.132403464615404e-05,9.275927305478272e-05,9.413315117962e-05,9.544229473131298e-05,9.668345517648477e-05,9.785352313730627e-05,9.894954134766645e-05,9.996871709052593e-05,0.000100908434043347,0.00010176626346134925,0.0001025399746317349,0.0001032275445359328,0.00010382716666130453,0.00010433725890860453,0.00010475647054675682,0.00010508368817216193,0.00010531804063573734,0.00010545890290717652,0.000105505898852436,0.00010545890290717652,0.00010531804063573734,0.00010508368817216193,0.00010475647054675682,0.00010433725890860453,0.00010382716666130453,0.0001032275445359328,0.0001025399746317349,0.00010176626346134925,0.000100908434043347,9.996871709052593e-05,9.894954134766645e-05,9.785352313730627e-05,9.668345517648477e-05,9.544229473131298e-05,9.413315117962e-05,9.275927305478272e-05,9.132403464615404e-05,8.983092223324699e-05,8.828352003200708e-05,8.668549593210769e-05,8.504058710424062e-05,8.335258555585082e-05,8.162532371269923e-05,7.986266010204268e-05,7.806846521112391e-05,7.624660759208836e-05,7.440094028142196e-05,7.253528759856632e-05,7.065343238455306e-05,6.875910373734374e-05,6.685596529611028e-05,6.494760412198154e-05,6.303752021786252e-05,6.112911672484442e-05,5.92256908275141e-05,5.733042539518314e-05,5.5446381380733896e-05,5.357649099346742e-05,5.172355165707389e-05,4.989022075867521e-05,4.8079011189843545e-05,4.629228767562047e-05,4.453226388287606e-05,4.280100029489064e-05,4.1100402834836956e-05,3.9432222216914166e-05,3.779805400025504e-05,3.619933931741358e-05,3.463736624625355e-05,3.3113271791410544e-05,3.162804443919823e-05,3.0182527247875835e-05,2.8777421433590295e-05,2.7413290411049582e-05,2.6090564247067895e-05,2.4809544484540848e-05,2.3570409294148093e-05,2.2373218911129598e-05,2.1217921314824196e-05,2.01043581092786e-05,1.903227056411302e-05,1.8001305775945995e-05,1.701102291201527e-05,1.606089949916167e-05,1.5150337723046483e-05,1.4278670704327839e-05,1.3445168720504504e-05,1.264904534422458e-05,1.1889463471028914e-05,1.1165541211733782e-05,1.0476357626932433e-05,9.82095828339177e-06,9.198360614418293e-06,8.607559068549545e-06,8.047530033176274e-06,7.5172365219015256e-06,7.0156326165812035e-06,6.541667657054456e-06,6.094290173549695e-06,5.672451558633991e-06,5.2751094773514484e-06,4.9012310158633605e-06,4.5497955704540315e-06,4.219797480197079e-06,3.910248407885206e-06,3.6201794750104014e-06,3.3486431576407353e-06,3.094714950975686e-06,2.8574948111754947e-06,2.6361083837545353e-06,2.429708028407431e-06,2.2374736506039913e-06,2.0586133506498352e-06,1.8923639011692614e-06,1.737991064131379e-06,1.5947897586159728e-06,1.4620840905085086e-06,1.3392272552307937e-06,1.225601324461851e-06],[1.1969998769396995e-06,1.3079741574279356e-06,1.427963923898854e-06,1.5575726842872159e-06,1.697432148909458e-06,1.8482024387655944e-06,2.010572180538612e-06,2.1852584775924526e-06,2.3730067461212363e-06,2.574590405521471e-06,2.790810412052034e-06,3.0224946249204617e-06,3.270496994094667e-06,3.535696559392842e-06,3.818996250756694e-06,4.121321480069583e-06,4.443618515446361e-06,4.78685262960002e-06,5.15200601468481e-06,5.540075456929422e-06,5.952069765408342e-06,6.389006950455795e-06,6.85191114850434e-06,7.3418092915277546e-06,7.8597275207827e-06,8.406687346171928e-06,8.983701554288255e-06,9.591769870036386e-06,1.0231874378661165e-05,1.0904974717026338e-05,1.1612003045076383e-05,1.2353858810563634e-05,1.3131403322319383e-05,1.394545414957645e-05,1.4796779367095083e-05,1.5686091668086972e-05,1.661404236915419e-05,1.75812153336425e-05,1.8588120841930005e-05,1.9635189439212453e-05,2.0722765793283328e-05,2.185110259661822e-05,2.3020354548737127e-05,2.423057245631246e-05,2.548169748979387e-05,2.6773555636411172e-05,2.810585239027429e-05,2.9478167720894188e-05,3.0889951361783184e-05,3.2340518460840644e-05,3.382904563397552e-05,3.535456746284809e-05,3.6915973476719016e-05,3.8512005657166155e-05,4.0141256502863106e-05,4.180216768970605e-05,4.349302935932661e-05,4.52119800664426e-05,4.6957007412581756e-05,4.8725949390476125e-05,5.051649645988024e-05,5.232619437173071e-05,5.415244775345865e-05,5.599252446391338e-05,5.7843560721780004e-05,5.97025670066081e-05,6.156643472664096e-05,6.343194364258381e-05,6.529577003130905e-05,6.715449556830695e-05,6.900461690249246e-05,7.084255589181372e-05,7.266467046301897e-05,7.446726605397054e-05,7.624660759208836e-05,7.799893195790823e-05,7.972046087839013e-05,8.140741419055542e-05,8.305602341230522e-05,8.466254555391474e-05,8.622327710074638e-05,8.773456809520878e-05,8.919283624394111e-05,9.059458097464465e-05,9.193639736594341e-05,9.32149898731447e-05,9.442718577280675e-05,9.556994824960924e-05,9.66403890501696e-05,9.763578063015047e-05,9.85535677232567e-05,9.939137826351116e-05,0.00010014703359551328,0.00010081855791119865,0.00010140418685590908,0.00010190237525131906,0.00010231180388791122,0.00010263138534521292,0.00010286026880385592,0.0001029978438196566,0.00010304374303628561,0.0001029978438196566,0.00010286026880385592,0.00010263138534521292,0.00010231180388791122,0.00010190237525131906,0.00010140418685590908,0.00010081855791119865,0.00010014703359551328,9.939137826351116e-05,9.85535677232567e-05,9.763578063015047e-05,9.66403890501696e-05,9.556994824960924e-05,9.442718577280675e-05,9.32149898731447e-05,9.193639736594341e-05,9.059458097464465e-05,8.919283624394111e-05,8.773456809520878e-05,8.622327710074638e-05,8.466254555391474e-05,8.305602341230522e-05,8.140741419055542e-05,7.972046087839013e-05,7.799893195790823e-05,7.624660759208836e-05,7.446726605397054e-05,7.266467046301897e-05,7.084255589181372e-05,6.900461690249246e-05,6.715449556830695e-05,6.529577003130905e-05,6.343194364258381e-05,6.156643472664096e-05,5.97025670066081e-05,5.7843560721780004e-05,5.599252446391338e-05,5.415244775345865e-05,5.232619437173071e-05,5.051649645988024e-05,4.8725949390476125e-05,4.6957007412581756e-05,4.52119800664426e-05,4.349302935932661e-05,4.180216768970605e-05,4.0141256502863106e-05,3.8512005657166155e-05,3.6915973476719016e-05,3.535456746284809e-05,3.382904563397552e-05,3.2340518460840644e-05,3.0889951361783184e-05,2.9478167720894188e-05,2.810585239027429e-05,2.6773555636411172e-05,2.548169748979387e-05,2.423057245631246e-05,2.3020354548737127e-05,2.185110259661822e-05,2.0722765793283328e-05,1.9635189439212453e-05,1.8588120841930005e-05,1.75812153336425e-05,1.661404236915419e-05,1.5686091668086972e-05,1.4796779367095083e-05,1.394545414957645e-05,1.3131403322319383e-05,1.2353858810563634e-05,1.1612003045076383e-05,1.0904974717026338e-05,1.0231874378661165e-05,9.591769870036386e-06,8.983701554288255e-06,8.406687346171928e-06,7.8597275207827e-06,7.3418092915277546e-06,6.85191114850434e-06,6.389006950455795e-06,5.952069765408342e-06,5.540075456929422e-06,5.15200601468481e-06,4.78685262960002e-06,4.443618515446361e-06,4.121321480069583e-06,3.818996250756694e-06,3.535696559392842e-06,3.270496994094667e-06,3.0224946249204617e-06,2.790810412052034e-06,2.574590405521471e-06,2.3730067461212363e-06,2.1852584775924526e-06,2.010572180538612e-06,1.8482024387655944e-06,1.697432148909458e-06,1.5575726842872159e-06,1.427963923898854e-06,1.3079741574279356e-06,1.1969998769396995e-06],[1.1680246396995243e-06,1.276312615730549e-06,1.3933978439330286e-06,1.5198692233967916e-06,1.6563431729109838e-06,1.803463834223698e-06,1.9619031647417644e-06,2.1323609092307683e-06,2.315564439930537e-06,2.5122684544223715e-06,2.7232545205775084e-06,2.9493304579882733e-06,3.191329545440078e-06,3.4501095442298984e-06,3.726551527480762e-06,4.021558506047103e-06,4.336053842157443e-06,4.670979442602688e-06,5.027293724053703e-06,5.405969343983605e-06,5.807990691679691e-06,6.234351134958238e-06,6.686050019442155e-06,7.164089418625164e-06,7.669470634424399e-06,8.203190449512195e-06,8.766237134412172e-06,9.359586214138256e-06,9.984196001039815e-06,1.0641002902482977e-05,1.1330916514036014e-05,1.2054814510924375e-05,1.2813537352664151e-05,1.3607882817957741e-05,1.443860038912539e-05,1.5306385507535e-05,1.6211873723660822e-05,1.7155634767531416e-05,1.813816656739744e-05,1.91598892464409e-05,2.0221139129237125e-05,2.13221627914487e-05,2.2463111187853966e-05,2.3644033895271084e-05,2.486487350821016e-05,2.61254602261498e-05,2.7425506672171452e-05,2.876460298327507e-05,3.0142212213026164e-05,3.155766608723064e-05,3.3010161153085516e-05,3.4498755361698294e-05,3.6022365122994985e-05,3.757976287083914e-05,3.9169575174655426e-05,4.0790281431990214e-05,4.244021317424701e-05,4.411755401531173e-05,4.5820340269936114e-05,4.754646226558902e-05,4.929366636802615e-05,5.105955773708651e-05,5.284160382521679e-05,5.463713862697737e-05,5.644336768331865e-05,5.825737383976613e-05,6.0076123752844546e-05,6.189647513414228e-05,6.371518471640144e-05,6.552891692095507e-05,6.733425320076098e-05,6.912770202824136e-05,7.090570949217236e-05,7.266467046301897e-05,7.440094028142196e-05,7.61108469200561e-05,7.779070356483625e-05,7.943682155748752e-05,8.104552363786093e-05,8.261315742109926e-05,8.413610904187667e-05,8.561081689548243e-05,8.703378540351861e-05,8.840159873046448e-05,8.971093437634323e-05,9.095857657022923e-05,9.214142938936893e-05,9.325652952926362e-05,9.430105865118028e-05,9.527235523521968e-05,9.616792586926768e-05,9.698545590688059e-05,9.772281943038853e-05,9.837808845922352e-05,9.894954134766643e-05,9.9435670320828e-05,9.983518810270187e-05,0.00010014703359551328,0.00010037037657529553,0.0001005046213746125,0.00010054940952956425,0.0001005046213746125,0.00010037037657529553,0.00010014703359551328,9.983518810270187e-05,9.9435670320828e-05,9.894954134766643e-05,9.837808845922352e-05,9.772281943038853e-05,9.698545590688059e-05,9.616792586926768e-05,9.527235523521968e-05,9.430105865118028e-05,9.325652952926362e-05,9.214142938936893e-05,9.095857657022923e-05,8.971093437634323e-05,8.840159873046448e-05,8.703378540351861e-05,8.561081689548243e-05,8.413610904187667e-05,8.261315742109926e-05,8.104552363786093e-05,7.943682155748752e-05,7.779070356483625e-05,7.61108469200561e-05,7.440094028142196e-05,7.266467046301897e-05,7.090570949217236e-05,6.912770202824136e-05,6.733425320076098e-05,6.552891692095507e-05,6.371518471640144e-05,6.189647513414228e-05,6.0076123752844546e-05,5.825737383976613e-05,5.644336768331865e-05,5.463713862697737e-05,5.284160382521679e-05,5.105955773708651e-05,4.929366636802615e-05,4.754646226558902e-05,4.5820340269936114e-05,4.411755401531173e-05,4.244021317424701e-05,4.0790281431990214e-05,3.9169575174655426e-05,3.757976287083914e-05,3.6022365122994985e-05,3.4498755361698294e-05,3.3010161153085516e-05,3.155766608723064e-05,3.0142212213026164e-05,2.876460298327507e-05,2.7425506672171452e-05,2.61254602261498e-05,2.486487350821016e-05,2.3644033895271084e-05,2.2463111187853966e-05,2.13221627914487e-05,2.0221139129237125e-05,1.91598892464409e-05,1.813816656739744e-05,1.7155634767531416e-05,1.6211873723660822e-05,1.5306385507535e-05,1.443860038912539e-05,1.3607882817957741e-05,1.2813537352664151e-05,1.2054814510924375e-05,1.1330916514036014e-05,1.0641002902482977e-05,9.984196001039815e-06,9.359586214138256e-06,8.766237134412172e-06,8.203190449512195e-06,7.669470634424399e-06,7.164089418625164e-06,6.686050019442155e-06,6.234351134958238e-06,5.807990691679691e-06,5.405969343983605e-06,5.027293724053703e-06,4.670979442602688e-06,4.336053842157443e-06,4.021558506047103e-06,3.726551527480762e-06,3.4501095442298984e-06,3.191329545440078e-06,2.9493304579882733e-06,2.7232545205775084e-06,2.5122684544223715e-06,2.315564439930537e-06,2.1323609092307683e-06,1.9619031647417644e-06,1.803463834223698e-06,1.6563431729109838e-06,1.5198692233967916e-06,1.3933978439330286e-06,1.276312615730549e-06,1.1680246396995243e-06],[1.1387356509521463e-06,1.2443082345131418e-06,1.358457473341126e-06,1.4817574994925713e-06,1.6148092746486442e-06,1.7582407882779643e-06,1.9127071480118873e-06,2.0788905520541637e-06,2.2575001333056353e-06,2.449271664807644e-06,2.654967116101213e-06,2.8753740501692233e-06,3.1113048507815698e-06,3.3635957703045765e-06,3.633105788371195e-06,3.920715272242689e-06,4.227324430230274e-06,4.553851550190404e-06,4.9012310158633605e-06,5.270411094694158e-06,5.66235149175901e-06,6.078020665520567e-06,6.5183929023506666e-06,6.9844451480888e-06,7.47715359634566e-06,7.997490034810185e-06,8.546417952470348e-06,9.124888412406497e-06,9.733835696653346e-06,1.0374172731544279e-05,1.1046786303938348e-05,1.1752532080775454e-05,1.2492229446494612e-05,1.3266656174970714e-05,1.4076542954760163e-05,1.492256778857956e-05,1.580535029005555e-05,1.672544590286019e-05,1.7683340069364633e-05,1.867944237788479e-05,1.9714080719435305e-05,2.0787495486631267e-05,2.1899833848960324e-05,2.3051144140069208e-05,2.424137039394856e-05,2.5470347067937132e-05,2.6737793991282286e-05,2.804331157856921e-05,2.9386376347649638e-05,3.0766336781745974e-05,3.218240957516455e-05,3.363367630151061e-05,3.511908054244645e-05,3.66374255138667e-05,3.8187372224874186e-05,3.97674382031254e-05,4.13759968179751e-05,4.301127723038988e-05,4.46713649958251e-05,4.635420334318076e-05,4.805759514957864e-05,4.9779205627055394e-05,5.1516565733359145e-05,5.3267076314896246e-05,5.502801298552212e-05,5.679653174033607e-05,5.856967529895253e-05,6.034438016791571e-05,6.21174844070348e-05,6.388573607947946e-05,6.564580236053083e-05,6.739427927496956e-05,6.912770202824136e-05,7.084255589181372e-05,7.253528759856632e-05,7.420231719968276e-05,7.584005033037433e-05,7.744489082790698e-05,7.9013253641857e-05,8.054157797332802e-05,8.20263405770525e-05,8.346406915790846e-05,8.485135579143344e-05,8.618487029643689e-05,8.746137348682177e-05,8.867773022924084e-05,8.983092223324698e-05,9.091806050115754e-05,9.193639736594341e-05,9.28833380470734e-05,9.375645165638787e-05,9.455348158873035e-05,9.527235523521968e-05,9.591119296067311e-05,9.646831629077418e-05,9.69422552590842e-05,9.733175486889219e-05,9.763578063015047e-05,9.785352313730627e-05,9.79844016596776e-05,9.802806672208332e-05,9.79844016596776e-05,9.785352313730627e-05,9.763578063015047e-05,9.733175486889219e-05,9.69422552590842e-05,9.646831629077418e-05,9.591119296067311e-05,9.527235523521968e-05,9.455348158873035e-05,9.375645165638787e-05,9.28833380470734e-05,9.193639736594341e-05,9.091806050115754e-05,8.983092223324698e-05,8.867773022924084e-05,8.746137348682177e-05,8.618487029643689e-05,8.485135579143344e-05,8.346406915790846e-05,8.20263405770525e-05,8.054157797332802e-05,7.9013253641857e-05,7.744489082790698e-05,7.584005033037433e-05,7.420231719968276e-05,7.253528759856632e-05,7.084255589181372e-05,6.912770202824136e-05,6.739427927496956e-05,6.564580236053083e-05,6.388573607947946e-05,6.21174844070348e-05,6.034438016791571e-05,5.856967529895253e-05,5.679653174033607e-05,5.502801298552212e-05,5.3267076314896246e-05,5.1516565733359145e-05,4.9779205627055394e-05,4.805759514957864e-05,4.635420334318076e-05,4.46713649958251e-05,4.301127723038988e-05,4.13759968179751e-05,3.97674382031254e-05,3.8187372224874186e-05,3.66374255138667e-05,3.511908054244645e-05,3.363367630151061e-05,3.218240957516455e-05,3.0766336781745974e-05,2.9386376347649638e-05,2.804331157856921e-05,2.6737793991282286e-05,2.5470347067937132e-05,2.424137039394856e-05,2.3051144140069208e-05,2.1899833848960324e-05,2.0787495486631267e-05,1.9714080719435305e-05,1.867944237788479e-05,1.7683340069364633e-05,1.672544590286019e-05,1.580535029005555e-05,1.492256778857956e-05,1.4076542954760163e-05,1.3266656174970714e-05,1.2492229446494612e-05,1.1752532080775454e-05,1.1046786303938348e-05,1.0374172731544279e-05,9.733835696653346e-06,9.124888412406497e-06,8.546417952470348e-06,7.997490034810185e-06,7.47715359634566e-06,6.9844451480888e-06,6.5183929023506666e-06,6.078020665520567e-06,5.66235149175901e-06,5.270411094694158e-06,4.9012310158633605e-06,4.553851550190404e-06,4.227324430230274e-06,3.920715272242689e-06,3.633105788371195e-06,3.3635957703045765e-06,3.1113048507815698e-06,2.8753740501692233e-06,2.654967116101213e-06,2.449271664807644e-06,2.2575001333056353e-06,2.0788905520541637e-06,1.9127071480118873e-06,1.7582407882779643e-06,1.6148092746486442e-06,1.4817574994925713e-06,1.358457473341126e-06,1.2443082345131418e-06,1.1387356509521463e-06],[1.1091922977364429e-06,1.2120259066078964e-06,1.3232136580360795e-06,1.4433147887976673e-06,1.5729146692263505e-06,1.712624996234464e-06,1.8630838813435719e-06,2.0249558238099296e-06,2.19893155879321e-06,2.3857277704418857e-06,2.5860866597622273e-06,2.8007753572062087e-06,3.0305851700624187e-06,3.276330654969103e-06,3.53884850619502e-06,3.818996250756695e-06,4.117650741964485e-06,4.435706443618336e-06,4.774073497810474e-06,5.133675570139078e-06,5.5154474670956665e-06,5.920332521460374e-06,6.349279742723268e-06,6.803240730844849e-06,7.283166353072646e-06,7.790003185039644e-06,8.324689718979333e-06,8.888152343595269e-06,9.481301101912764e-06,1.0105025235308022e-05,1.0760188523845346e-05,1.144762443504493e-05,1.2168131095239154e-05,1.2922466099740583e-05,1.3711341180124605e-05,1.453541674900803e-05,1.5395296344764033e-05,1.6291521000636243e-05,1.7224563564680847e-05,1.819482299885613e-05,1.9202618687373533e-05,2.024818478610311e-05,2.1331664646367897e-05,2.2453105347846677e-05,2.361245237651203e-05,2.480954448454085e-05,2.6044108769929397e-05,2.731575601410527e-05,2.8623976316138998e-05,2.9968135062201666e-05,3.1347469268679426e-05,3.2761084336828266e-05,3.420795125602365e-05,3.568690429152229e-05,3.719663919120155e-05,3.873571194397452e-05,4.030253812049499e-05,4.189539282437039e-05,4.351241127939778e-05,4.515159007533842e-05,4.6810789091461336e-05,4.848773411353287e-05,5.018002015612351e-05,5.1885115498070155e-05,5.360036643469158e-05,5.532300274593895e-05,5.705014387509729e-05,5.877880580797293e-05,6.050590863773881e-05,6.222828479580081e-05,6.39426879242314e-05,6.564580236053083e-05,6.733425320076098e-05,6.900461690249246e-05,7.065343238455306e-05,7.227721257630426e-05,7.387245636514321e-05,7.543566088716755e-05,7.69633341024876e-05,7.84520075935594e-05,7.989824952217668e-05,8.129867767842837e-05,8.264997255303075e-05,8.394889036300083e-05,8.519227595967294e-05,8.637707554758688e-05,8.750034914281096e-05,8.855928269980697e-05,8.955119983700832e-05,9.047357309285963e-05,9.132403464615402e-05,9.210038643709031e-05,9.280060962854387e-05,9.342287335057974e-05,9.396554267521246e-05,9.442718577280675e-05,9.48065802062814e-05,9.510271832439442e-05,9.531481172080742e-05,9.544229473131299e-05,9.548482694751271e-05,9.544229473131299e-05,9.531481172080742e-05,9.510271832439442e-05,9.48065802062814e-05,9.442718577280675e-05,9.396554267521246e-05,9.342287335057974e-05,9.280060962854387e-05,9.210038643709031e-05,9.132403464615402e-05,9.047357309285963e-05,8.955119983700832e-05,8.855928269980697e-05,8.750034914281096e-05,8.637707554758688e-05,8.519227595967294e-05,8.394889036300083e-05,8.264997255303075e-05,8.129867767842837e-05,7.989824952217668e-05,7.84520075935594e-05,7.69633341024876e-05,7.543566088716755e-05,7.387245636514321e-05,7.227721257630426e-05,7.065343238455306e-05,6.900461690249246e-05,6.733425320076098e-05,6.564580236053083e-05,6.39426879242314e-05,6.222828479580081e-05,6.050590863773881e-05,5.877880580797293e-05,5.705014387509729e-05,5.532300274593895e-05,5.360036643469158e-05,5.1885115498070155e-05,5.018002015612351e-05,4.848773411353287e-05,4.6810789091461336e-05,4.515159007533842e-05,4.351241127939778e-05,4.189539282437039e-05,4.030253812049499e-05,3.873571194397452e-05,3.719663919120155e-05,3.568690429152229e-05,3.420795125602365e-05,3.2761084336828266e-05,3.1347469268679426e-05,2.9968135062201666e-05,2.8623976316138998e-05,2.731575601410527e-05,2.6044108769929397e-05,2.480954448454085e-05,2.361245237651203e-05,2.2453105347846677e-05,2.1331664646367897e-05,2.024818478610311e-05,1.9202618687373533e-05,1.819482299885613e-05,1.7224563564680847e-05,1.6291521000636243e-05,1.5395296344764033e-05,1.453541674900803e-05,1.3711341180124605e-05,1.2922466099740583e-05,1.2168131095239154e-05,1.144762443504493e-05,1.0760188523845346e-05,1.0105025235308022e-05,9.481301101912764e-06,8.888152343595269e-06,8.324689718979333e-06,7.790003185039644e-06,7.283166353072646e-06,6.803240730844849e-06,6.349279742723268e-06,5.920332521460374e-06,5.5154474670956665e-06,5.133675570139078e-06,4.774073497810474e-06,4.435706443618336e-06,4.117650741964485e-06,3.818996250756695e-06,3.53884850619502e-06,3.276330654969103e-06,3.0305851700624187e-06,2.8007753572062087e-06,2.5860866597622273e-06,2.3857277704418857e-06,2.19893155879321e-06,2.0249558238099296e-06,1.8630838813435719e-06,1.712624996234464e-06,1.5729146692263505e-06,1.4433147887976673e-06,1.3232136580360795e-06,1.2120259066078964e-06,1.1091922977364429e-06],[1.079453123375744e-06,1.1795296029102836e-06,1.2877362374183039e-06,1.404617269666834e-06,1.5307423752985233e-06,1.6667068506780568e-06,1.8131316985625036e-06,1.9706636019473276e-06,2.1399747763059473e-06,2.321762690367744e-06,2.5167496455731685e-06,2.725682204411079e-06,2.9493304579882733e-06,3.1884871234099064e-06,3.4439664618672658e-06,3.716603008740968e-06,4.007250107537397e-06,4.316778240087856e-06,4.64607314615647e-06,4.996033726427049e-06,5.367569723772022e-06,5.761599178749351e-06,6.179045656425486e-06,6.620835242882762e-06,7.0878933111357204e-06,7.581141057649232e-06,8.10149181221721e-06,8.649847125618142e-06,9.22709264120538e-06,9.834093758407799e-06,1.0471691097999837e-05,1.114069578093838e-05,1.184188453454482e-05,1.2575994641820559e-05,1.3343718751708098e-05,1.4145699570132628e-05,1.4982524453662822e-05,1.5854719929597763e-05,1.6762746168200242e-05,1.7706991434636587e-05,1.868776654992973e-05,1.9705299391865857e-05,2.0759729468295616e-05,2.1851102596618218e-05,2.2979365724412283e-05,2.4144361927160176e-05,2.534582561978623e-05,2.6583378019274648e-05,2.785652289593463e-05,2.9164642650923173e-05,3.050699475740634e-05,3.188270860222683e-05,3.329078276413884e-05,3.473008276356454e-05,3.619933931741357e-05,3.7697147130787014e-05,3.922196425535902e-05,4.077211204189783e-05,4.234577571175708e-05,4.394100556924915e-05,4.5555718873615624e-05,4.7187702385851156e-05,4.8834615601934175e-05,5.0493994680092076e-05,5.2163257065602354e-05,5.3839706812333547e-05,5.552054059578602e-05,5.720285440783769e-05,5.888365091876411e-05,6.055984748742232e-05,6.222828479580081e-05,6.388573607947946e-05,6.552891692095507e-05,6.715449556830695e-05,6.875910373734374e-05,7.033934785122595e-05,7.189182066763666e-05,7.341311323991451e-05,7.48998271552022e-05,7.63485869896362e-05,7.775605291794167e-05,7.911893341252693e-05,8.04339979653262e-05,8.169808976423424e-05,8.290813825503887e-05,8.406117151929609e-05,8.515432839862582e-05,8.618487029643689e-05,8.715019258912408e-05,8.804783558031579e-05,8.887549493378234e-05,8.963103152313184e-05,9.031248063940969e-05,9.091806050115754e-05,9.144618001535758e-05,9.189544574195877e-05,9.226466801932342e-05,9.255286621290993e-05,9.275927305478272e-05,9.28833380470734e-05,9.292472990826337e-05,9.28833380470734e-05,9.275927305478272e-05,9.255286621290993e-05,9.226466801932342e-05,9.189544574195877e-05,9.144618001535758e-05,9.091806050115754e-05,9.031248063940969e-05,8.963103152313184e-05,8.887549493378234e-05,8.804783558031579e-05,8.715019258912408e-05,8.618487029643689e-05,8.515432839862582e-05,8.406117151929609e-05,8.290813825503887e-05,8.169808976423424e-05,8.04339979653262e-05,7.911893341252693e-05,7.775605291794167e-05,7.63485869896362e-05,7.48998271552022e-05,7.341311323991451e-05,7.189182066763666e-05,7.033934785122595e-05,6.875910373734374e-05,6.715449556830695e-05,6.552891692095507e-05,6.388573607947946e-05,6.222828479580081e-05,6.055984748742232e-05,5.888365091876411e-05,5.720285440783769e-05,5.552054059578602e-05,5.3839706812333547e-05,5.2163257065602354e-05,5.0493994680092076e-05,4.8834615601934175e-05,4.7187702385851156e-05,4.5555718873615624e-05,4.394100556924915e-05,4.234577571175708e-05,4.077211204189783e-05,3.922196425535902e-05,3.7697147130787014e-05,3.619933931741357e-05,3.473008276356454e-05,3.329078276413884e-05,3.188270860222683e-05,3.050699475740634e-05,2.9164642650923173e-05,2.785652289593463e-05,2.6583378019274648e-05,2.534582561978623e-05,2.4144361927160176e-05,2.2979365724412283e-05,2.1851102596618218e-05,2.0759729468295616e-05,1.9705299391865857e-05,1.868776654992973e-05,1.7706991434636587e-05,1.6762746168200242e-05,1.5854719929597763e-05,1.4982524453662822e-05,1.4145699570132628e-05,1.3343718751708098e-05,1.2575994641820559e-05,1.184188453454482e-05,1.114069578093838e-05,1.0471691097999837e-05,9.834093758407799e-06,9.22709264120538e-06,8.649847125618142e-06,8.10149181221721e-06,7.581141057649232e-06,7.0878933111357204e-06,6.620835242882762e-06,6.179045656425486e-06,5.761599178749351e-06,5.367569723772022e-06,4.996033726427049e-06,4.64607314615647e-06,4.316778240087856e-06,4.007250107537397e-06,3.716603008740968e-06,3.4439664618672658e-06,3.1884871234099064e-06,2.9493304579882733e-06,2.725682204411079e-06,2.5167496455731685e-06,2.321762690367744e-06,2.1399747763059473e-06,1.9706636019473276e-06,1.8131316985625036e-06,1.6667068506780568e-06,1.5307423752985233e-06,1.404617269666834e-06,1.2877362374183039e-06,1.1795296029102836e-06,1.079453123375744e-06],[1.049575643552077e-06,1.1468821714014837e-06,1.2520938249610117e-06,1.3657397832566742e-06,1.4883739542501049e-06,1.6205751574856999e-06,1.762947207389749e-06,1.916118887840348e-06,2.0807438084967212e-06,2.2575001333056353e-06,2.447090171596493e-06,2.65023982224135e-06,2.8676978614969126e-06,3.100235065367974e-06,3.348643157640735e-06,3.6137335751346454e-06,3.896336042217063e-06,4.19729694721973e-06,4.517477514092833e-06,4.857751763433715e-06,5.2190042579344645e-06,5.60212762830647e-06,6.0080198768603386e-06,6.4375814571450035e-06,6.8917121293781425e-06,7.371307592827763e-06,7.877255897827375e-06,8.410433641718756e-06,8.971701954709805e-06,9.561902283402351e-06,1.0181851981576012e-05,1.0832339719699084e-05,1.1514120726563412e-05,1.2227911878394481e-05,1.2974386652755921e-05,1.3754169966534288e-05,1.4567832919238412e-05,1.5415887464761253e-05,1.629878103661266e-05,1.7216891153420347e-05,1.8170520033194628e-05,1.91598892464409e-05,2.0185134439662874e-05,2.1246300162109824e-05,2.2343334829763778e-05,2.347608586151861e-05,2.4644295023254944e-05,2.5847594016045335e-05,2.7085500345017336e-05,2.8357413505444007e-05,2.9662611522407956e-05,3.1000247879886316e-05,3.2369348874319605e-05,3.376881142665119e-05,3.519740138545057e-05,3.6653752352060856e-05,3.813636505673947e-05,3.964360731249323e-05,4.117371457075174e-05,4.272479110018425e-05,4.429481180685704e-05,4.588162471056546e-05,4.74829540885741e-05,4.9096404294181757e-05,5.0719464253515785e-05,5.23495126397815e-05,5.398382371987193e-05,5.561957386381409e-05,5.725384870302042e-05,5.888365091876411e-05,6.050590863773881e-05,6.21174844070348e-05,6.371518471640144e-05,6.529577003130905e-05,6.685596529611028e-05,6.839247086256826e-05,6.990197379520667e-05,7.138115950137814e-05,7.282672363068098e-05,7.423538418541002e-05,7.560389378113854e-05,7.692905199432292e-05,7.82077177320257e-05,7.94368215574875e-05,8.061337790436593e-05,8.173449711201166e-05,8.279739721418358e-05,8.37994154141216e-05,8.473801917990055e-05,8.561081689548243e-05,8.64155680048589e-05,8.715019258912408e-05,8.78127803192226e-05,8.840159873046448e-05,8.891510076865903e-05,8.935193156187468e-05,8.971093437634325e-05,8.999115571986777e-05,9.019184956122209e-05,9.031248063940969e-05,9.035272684223728e-05,9.031248063940969e-05,9.019184956122209e-05,8.999115571986777e-05,8.971093437634325e-05,8.935193156187468e-05,8.891510076865903e-05,8.840159873046448e-05,8.78127803192226e-05,8.715019258912408e-05,8.64155680048589e-05,8.561081689548243e-05,8.473801917990055e-05,8.37994154141216e-05,8.279739721418358e-05,8.173449711201166e-05,8.061337790436593e-05,7.94368215574875e-05,7.82077177320257e-05,7.692905199432292e-05,7.560389378113854e-05,7.423538418541002e-05,7.282672363068098e-05,7.138115950137814e-05,6.990197379520667e-05,6.839247086256826e-05,6.685596529611028e-05,6.529577003130905e-05,6.371518471640144e-05,6.21174844070348e-05,6.050590863773881e-05,5.888365091876411e-05,5.725384870302042e-05,5.561957386381409e-05,5.398382371987193e-05,5.23495126397815e-05,5.0719464253515785e-05,4.9096404294181757e-05,4.74829540885741e-05,4.588162471056546e-05,4.429481180685704e-05,4.272479110018425e-05,4.117371457075174e-05,3.964360731249323e-05,3.813636505673947e-05,3.6653752352060856e-05,3.519740138545057e-05,3.376881142665119e-05,3.2369348874319605e-05,3.1000247879886316e-05,2.9662611522407956e-05,2.8357413505444007e-05,2.7085500345017336e-05,2.5847594016045335e-05,2.4644295023254944e-05,2.347608586151861e-05,2.2343334829763778e-05,2.1246300162109824e-05,2.0185134439662874e-05,1.91598892464409e-05,1.8170520033194628e-05,1.7216891153420347e-05,1.629878103661266e-05,1.5415887464761253e-05,1.4567832919238412e-05,1.3754169966534288e-05,1.2974386652755921e-05,1.2227911878394481e-05,1.1514120726563412e-05,1.0832339719699084e-05,1.0181851981576012e-05,9.561902283402351e-06,8.971701954709805e-06,8.410433641718756e-06,7.877255897827375e-06,7.371307592827763e-06,6.8917121293781425e-06,6.4375814571450035e-06,6.0080198768603386e-06,5.60212762830647e-06,5.2190042579344645e-06,4.857751763433715e-06,4.517477514092833e-06,4.19729694721973e-06,3.896336042217063e-06,3.6137335751346454e-06,3.348643157640735e-06,3.100235065367974e-06,2.8676978614969126e-06,2.65023982224135e-06,2.447090171596493e-06,2.2575001333056353e-06,2.0807438084967212e-06,1.916118887840348e-06,1.762947207389749e-06,1.6205751574856999e-06,1.4883739542501049e-06,1.3657397832566742e-06,1.2520938249610117e-06,1.1468821714014837e-06,1.049575643552077e-06],[1.0196161717443682e-06,1.1141451464029024e-06,1.2163535999662952e-06,1.3267556063805133e-06,1.4458892626553428e-06,1.5743168662979842e-06,1.7126249962344638e-06,1.86142448810543e-06,2.021350294696466e-06,2.1930612221941153e-06,2.3772395329529067e-06,2.574590405521471e-06,2.785841242812639e-06,3.0117408195184577e-06,3.2530582601712307e-06,3.510581839640467e-06,3.7851175983371107e-06,4.07748776497419e-06,4.388528980409841e-06,4.7190903168771774e-06,5.070031087786637e-06,5.442218444271459e-06,5.836524755735208e-06,6.253824772850725e-06,6.694992572750298e-06,7.160898287533785e-06,7.65240461870053e-06,8.170363141676541e-06,8.715610406253484e-06,9.288963840473018e-06,9.891217467268942e-06,1.052313744501068e-05,1.1185457444962678e-05,1.1878873880572718e-05,1.2604041005414054e-05,1.3361565898516613e-05,1.4152003357715552e-05,1.49758507235043e-05,1.5833542657686628e-05,1.672544590286019e-05,1.7651854050413663e-05,1.8612982346262736e-05,1.9608962564967612e-05,2.063983798414746e-05,2.170555849221742e-05,2.2805975863402387e-05,2.3940839234712318e-05,2.510979082007932e-05,2.6312361897141406e-05,2.7547969102198638e-05,2.881591106865023e-05,3.011536544373692e-05,3.144538631765044e-05,3.2804902098027e-05,3.419271386150681e-05,3.5607494212416996e-05,3.704778667671995e-05,3.851200565716615e-05,3.999843697310627e-05,4.150523900565939e-05,4.303044446591517e-05,4.4571962800580545e-05,4.6127583245983866e-05,4.7694978537641305e-05,4.927170927869305e-05,5.085522896645709e-05,5.244288967215117e-05,5.403194836453103e-05,5.561957386381409e-05,5.720285440783769e-05,5.877880580797293e-05,6.034438016791571e-05,6.189647513414228e-05,6.343194364258381e-05,6.494760412198154e-05,6.64402511104671e-05,6.790666623820849e-05,6.934362952550557e-05,7.074793094254546e-05,7.211638217416826e-05,7.344582853047835e-05,7.473316094199468e-05,7.597532797628761e-05,7.716934781172555e-05,7.83123201030659e-05,7.940143767319185e-05,8.043399796532619e-05,8.14074141905554e-05,8.231922610647368e-05,8.316711036420767e-05,8.394889036300083e-05,8.466254555391474e-05,8.530622013702672e-05,8.587823109975372e-05,8.637707554758688e-05,8.680143728255551e-05,8.715019258912408e-05,8.742241519192628e-05,8.761738035472467e-05,8.773456809520878e-05,8.777366549567384e-05,8.773456809520878e-05,8.761738035472467e-05,8.742241519192628e-05,8.715019258912408e-05,8.680143728255551e-05,8.637707554758688e-05,8.587823109975372e-05,8.530622013702672e-05,8.466254555391474e-05,8.394889036300083e-05,8.316711036420767e-05,8.231922610647368e-05,8.14074141905554e-05,8.043399796532619e-05,7.940143767319185e-05,7.83123201030659e-05,7.716934781172555e-05,7.597532797628761e-05,7.473316094199468e-05,7.344582853047835e-05,7.211638217416826e-05,7.074793094254546e-05,6.934362952550557e-05,6.790666623820849e-05,6.64402511104671e-05,6.494760412198154e-05,6.343194364258381e-05,6.189647513414228e-05,6.034438016791571e-05,5.877880580797293e-05,5.720285440783769e-05,5.561957386381409e-05,5.403194836453103e-05,5.244288967215117e-05,5.085522896645709e-05,4.927170927869305e-05,4.7694978537641305e-05,4.6127583245983866e-05,4.4571962800580545e-05,4.303044446591517e-05,4.150523900565939e-05,3.999843697310627e-05,3.851200565716615e-05,3.704778667671995e-05,3.5607494212416996e-05,3.419271386150681e-05,3.2804902098027e-05,3.144538631765044e-05,3.011536544373692e-05,2.881591106865023e-05,2.7547969102198638e-05,2.6312361897141406e-05,2.510979082007932e-05,2.3940839234712318e-05,2.2805975863402387e-05,2.170555849221742e-05,2.063983798414746e-05,1.9608962564967612e-05,1.8612982346262736e-05,1.7651854050413663e-05,1.672544590286019e-05,1.5833542657686628e-05,1.49758507235043e-05,1.4152003357715552e-05,1.3361565898516613e-05,1.2604041005414054e-05,1.1878873880572718e-05,1.1185457444962678e-05,1.052313744501068e-05,9.891217467268942e-06,9.288963840473018e-06,8.715610406253484e-06,8.170363141676541e-06,7.65240461870053e-06,7.160898287533785e-06,6.694992572750298e-06,6.253824772850725e-06,5.836524755735208e-06,5.442218444271459e-06,5.070031087786637e-06,4.7190903168771774e-06,4.388528980409841e-06,4.07748776497419e-06,3.7851175983371107e-06,3.510581839640467e-06,3.2530582601712307e-06,3.0117408195184577e-06,2.785841242812639e-06,2.574590405521471e-06,2.3772395329529067e-06,2.1930612221941153e-06,2.021350294696466e-06,1.86142448810543e-06,1.7126249962344638e-06,1.5743168662979842e-06,1.4458892626553428e-06,1.3267556063805133e-06,1.2163535999662952e-06,1.1141451464029024e-06,1.0196161717443682e-06],[9.896296546994813e-07,1.0813785687936715e-06,1.1805811112898961e-06,1.2877362374183043e-06,1.4033662189638551e-06,1.5280168164816569e-06,1.6622573578385128e-06,1.8066807142352589e-06,1.9619031647417644e-06,2.1285641403095687e-06,2.3073258382213723e-06,2.4988726979975777e-06,2.703910729912836e-06,2.9231666874852578e-06,3.157387075592284e-06,3.4073369862445533e-06,3.6737987545164447e-06,3.957570427692715e-06,4.259464041347623e-06,4.580303696828475e-06,4.920923435470842e-06,5.282164905828702e-06,5.664874821259044e-06,6.069902206355927e-06,6.498095431981428e-06,6.950299039987063e-06,7.427350360154927e-06,7.930075923407288e-06,8.459287676930161e-06,9.015779008522829e-06,9.600320589211866e-06,1.0213656044945545e-05,1.0856497470000331e-05,1.1529520796574009e-05,1.223336103689541e-05,1.2968607416035127e-05,1.3735798415438676e-05,1.4535416749008028e-05,1.5367884295311517e-05,1.623355701118891e-05,1.7132719853619765e-05,1.806558173822068e-05,1.9032270564113025e-05,2.003282833613796e-05,2.1067206416472934e-05,2.213526093860552e-05,2.323674841732914e-05,2.4371321588925707e-05,2.5538525515976514e-05,2.6737793991282286e-05,2.7968446275162567e-05,2.92296841999345e-05,3.052058967463124e-05,3.184012262200574e-05,3.318711937857027e-05,3.4560291586845016e-05,3.59582256071302e-05,3.737938247397784e-05,3.882209842012813e-05,4.028458598799879e-05,4.176493574588505e-05,4.32611186228572e-05,4.477098887294765e-05,4.629228767562047e-05,4.782264737573349e-05,4.935959636226315e-05,5.090056458098799e-05,5.244288967215117e-05,5.398382371987193e-05,5.552054059578602e-05,5.705014387509729e-05,5.856967529895253e-05,6.0076123752844546e-05,6.156643472664096e-05,6.303752021786252e-05,6.448626903603402e-05,6.590955746233474e-05,6.730426021542148e-05,6.866726167121597e-05,6.999546728167335e-05,7.128581513510708e-05,7.253528759856632e-05,7.374092298106848e-05,7.48998271552022e-05,7.600918507375608e-05,7.706627211760605e-05,7.806846521112391e-05,7.9013253641857e-05,7.989824952217668e-05,8.072119783200084e-05,8.147998598355894e-05,8.217265285147488e-05,8.279739721418358e-05,8.335258555585082e-05,8.38367591815136e-05,8.424864060207426e-05,8.458713915003627e-05,8.485135579143344e-05,8.504058710424059e-05,8.515432839862582e-05,8.519227595967294e-05,8.515432839862582e-05,8.504058710424059e-05,8.485135579143344e-05,8.458713915003627e-05,8.424864060207426e-05,8.38367591815136e-05,8.335258555585082e-05,8.279739721418358e-05,8.217265285147488e-05,8.147998598355894e-05,8.072119783200084e-05,7.989824952217668e-05,7.9013253641857e-05,7.806846521112391e-05,7.706627211760605e-05,7.600918507375608e-05,7.48998271552022e-05,7.374092298106848e-05,7.253528759856632e-05,7.128581513510708e-05,6.999546728167335e-05,6.866726167121597e-05,6.730426021542148e-05,6.590955746233474e-05,6.448626903603402e-05,6.303752021786252e-05,6.156643472664096e-05,6.0076123752844546e-05,5.856967529895253e-05,5.705014387509729e-05,5.552054059578602e-05,5.398382371987193e-05,5.244288967215117e-05,5.090056458098799e-05,4.935959636226315e-05,4.782264737573349e-05,4.629228767562047e-05,4.477098887294765e-05,4.32611186228572e-05,4.176493574588505e-05,4.028458598799879e-05,3.882209842012813e-05,3.737938247397784e-05,3.59582256071302e-05,3.4560291586845016e-05,3.318711937857027e-05,3.184012262200574e-05,3.052058967463124e-05,2.92296841999345e-05,2.7968446275162567e-05,2.6737793991282286e-05,2.5538525515976514e-05,2.4371321588925707e-05,2.323674841732914e-05,2.213526093860552e-05,2.1067206416472934e-05,2.003282833613796e-05,1.9032270564113025e-05,1.806558173822068e-05,1.7132719853619765e-05,1.623355701118891e-05,1.5367884295311517e-05,1.4535416749008028e-05,1.3735798415438676e-05,1.2968607416035127e-05,1.223336103689541e-05,1.1529520796574009e-05,1.0856497470000331e-05,1.0213656044945545e-05,9.600320589211866e-06,9.015779008522829e-06,8.459287676930161e-06,7.930075923407288e-06,7.427350360154927e-06,6.950299039987063e-06,6.498095431981428e-06,6.069902206355927e-06,5.664874821259044e-06,5.282164905828702e-06,4.920923435470842e-06,4.580303696828475e-06,4.259464041347623e-06,3.957570427692715e-06,3.6737987545164447e-06,3.4073369862445533e-06,3.157387075592284e-06,2.9231666874852578e-06,2.703910729912836e-06,2.4988726979975777e-06,2.3073258382213723e-06,2.1285641403095687e-06,1.9619031647417644e-06,1.8066807142352589e-06,1.6622573578385128e-06,1.5280168164816569e-06,1.4033662189638551e-06,1.2877362374183043e-06,1.1805811112898961e-06,1.0813785687936715e-06,9.896296546994813e-07],[9.59669518525095e-07,1.0486408178347437e-06,1.1448400937373306e-06,1.2487511960479948e-06,1.3608805852492324e-06,1.481757499492571e-06,1.6119340307623447e-06,1.7519851016239302e-06,1.9025083338598302e-06,2.0641238002320923e-06,2.237473650603991e-06,2.423221603713021e-06,2.622052296015993e-06,2.8346704792303797e-06,3.0618000584785754e-06,3.3041829633076506e-06,3.5625778443103657e-06,3.837758588617011e-06,4.130512648164656e-06,4.4416391753831285e-06,4.771946961766439e-06,5.1222521757253905e-06,5.493375897141504e-06,5.886141447162777e-06,6.301371512996361e-06,6.739885068758652e-06,7.20249409483546e-06,7.690000099678408e-06,8.203190449512195e-06,8.742834513043311e-06,9.30967962993514e-06,9.904446913537861e-06,1.0527826900122488e-05,1.118047505865534e-05,1.1863007176948561e-05,1.2575994641820559e-05,1.3319959632681677e-05,1.4095370249710292e-05,1.4902635599485438e-05,1.5742100862577868e-05,1.661404236915419e-05,1.7518662710101054e-05,1.8456085912510458e-05,1.9426352709565256e-05,2.0429415935908664e-05,2.146513608045585e-05,2.2533277029293036e-05,2.363350203179481e-05,2.4765369923358344e-05,2.5928331638191457e-05,2.712172704538733e-05,2.8344782141062506e-05,2.9596606628617733e-05,3.087619191819702e-05,3.218240957516455e-05,3.351401024588944e-05,3.4869623087325883e-05,3.624775572480274e-05,3.7646794760098185e-05,3.906500684927975e-05,4.050054036694788e-05,4.1951427670446656e-05,4.341558797431273e-05,4.489083084174394e-05,4.637486029620047e-05,4.7865279552430666e-05,4.935959636226315e-05,5.085522896645709e-05,5.23495126397815e-05,5.3839706812333547e-05,5.532300274593895e-05,5.679653174033607e-05,5.825737383976613e-05,5.97025670066081e-05,6.112911672484442e-05,6.253400599245699e-05,6.391420565836649e-05,6.526668505627501e-05,6.658842288478472e-05,6.787641828047346e-05,6.912770202824136e-05,7.033934785122595e-05,7.150848372094078e-05,7.263230312704512e-05,7.370807624531725e-05,7.473316094199468e-05,7.570501355267407e-05,7.66211993744349e-05,7.747940281077086e-05,7.82774371102784e-05,7.9013253641857e-05,7.968495065141464e-05,8.029078144772802e-05,8.082916196816658e-05,8.129867767842835e-05,8.169808976423426e-05,8.20263405770525e-05,8.228255830035115e-05,8.246606080756602e-05,8.257635868788997e-05,8.261315742109926e-05,8.257635868788997e-05,8.246606080756602e-05,8.228255830035115e-05,8.20263405770525e-05,8.169808976423426e-05,8.129867767842835e-05,8.082916196816658e-05,8.029078144772802e-05,7.968495065141464e-05,7.9013253641857e-05,7.82774371102784e-05,7.747940281077086e-05,7.66211993744349e-05,7.570501355267407e-05,7.473316094199468e-05,7.370807624531725e-05,7.263230312704512e-05,7.150848372094078e-05,7.033934785122595e-05,6.912770202824136e-05,6.787641828047346e-05,6.658842288478472e-05,6.526668505627501e-05,6.391420565836649e-05,6.253400599245699e-05,6.112911672484442e-05,5.97025670066081e-05,5.825737383976613e-05,5.679653174033607e-05,5.532300274593895e-05,5.3839706812333547e-05,5.23495126397815e-05,5.085522896645709e-05,4.935959636226315e-05,4.7865279552430666e-05,4.637486029620047e-05,4.489083084174394e-05,4.341558797431273e-05,4.1951427670446656e-05,4.050054036694788e-05,3.906500684927975e-05,3.7646794760098185e-05,3.624775572480274e-05,3.4869623087325883e-05,3.351401024588944e-05,3.218240957516455e-05,3.087619191819702e-05,2.9596606628617733e-05,2.8344782141062506e-05,2.712172704538733e-05,2.5928331638191457e-05,2.4765369923358344e-05,2.363350203179481e-05,2.2533277029293036e-05,2.146513608045585e-05,2.0429415935908664e-05,1.9426352709565256e-05,1.8456085912510458e-05,1.7518662710101054e-05,1.661404236915419e-05,1.5742100862577868e-05,1.4902635599485438e-05,1.4095370249710292e-05,1.3319959632681677e-05,1.2575994641820559e-05,1.1863007176948561e-05,1.118047505865534e-05,1.0527826900122488e-05,9.904446913537861e-06,9.30967962993514e-06,8.742834513043311e-06,8.203190449512195e-06,7.690000099678408e-06,7.20249409483546e-06,6.739885068758652e-06,6.301371512996361e-06,5.886141447162777e-06,5.493375897141504e-06,5.1222521757253905e-06,4.771946961766439e-06,4.4416391753831285e-06,4.130512648164656e-06,3.837758588617011e-06,3.5625778443103657e-06,3.3041829633076506e-06,3.0618000584785754e-06,2.8346704792303797e-06,2.622052296015993e-06,2.423221603713021e-06,2.237473650603991e-06,2.0641238002320923e-06,1.9025083338598302e-06,1.7519851016239302e-06,1.6119340307623447e-06,1.481757499492571e-06,1.3608805852492324e-06,1.2487511960479948e-06,1.1448400937373306e-06,1.0486408178347437e-06,9.59669518525095e-07],[9.297875259116344e-07,1.0159884551538174e-06,1.109192297736443e-06,1.209867837458357e-06,1.31850576473944e-06,1.4356188384222192e-06,1.5617419595640692e-06,1.6974321489094582e-06,1.8432684196164141e-06,1.9998515367485138e-06,2.1678036550383113e-06,2.3477678264853996e-06,2.5404073694770356e-06,2.7464050913162775e-06,2.96646235631631e-06,3.2012979919741567e-06,3.451647026176042e-06,3.7182592489135378e-06,4.001897592606825e-06,4.303336325841299e-06,4.6233590561273355e-06,4.9627565381911786e-06,5.322324285297428e-06,5.7028599821890586e-06,6.105160699407719e-06,6.530019910021765e-06,6.978224311138314e-06,7.45055045400323e-06,7.947761187993222e-06,8.470601925369811e-06,9.019796735287243e-06,9.596044277216124e-06,1.0200013585650705e-05,1.0832339719699084e-05,1.1493619292898831e-05,1.2184405900342806e-05,1.2905205461925986e-05,1.3656471502219414e-05,1.4438600389125387e-05,1.525192655505285e-05,1.6096717725856367e-05,1.6973170184189113e-05,1.788140409521294e-05,1.882145892376921e-05,1.9793288973126347e-05,2.0796759076267048e-05,2.1831640471344164e-05,2.289760689340417e-05,2.399423091473715e-05,2.5120980566248943e-05,2.627721627205347e-05,2.7462188129041444e-05,2.8675033562486495e-05,2.9914775387796686e-05,3.11803203073024e-05,3.247045786948985e-05,3.378385991634279e-05,3.511908054244645e-05,3.64745565872419e-05,3.7848608679304476e-05,3.923944284876651e-05,4.064515272102548e-05,4.206372230168895e-05,4.34930293593266e-05,4.4930849409045154e-05,4.637486029620047e-05,4.782264737573349e-05,4.927170927869305e-05,5.0719464253515785e-05,5.2163257065602354e-05,5.360036643469158e-05,5.502801298552212e-05,5.644336768331865e-05,5.7843560721780004e-05,5.92256908275141e-05,6.058683494129283e-05,6.19240582331218e-05,6.323442440496863e-05,6.451500623209867e-05,6.576289629135941e-05,6.697521782246172e-05,6.81491356663518e-05,6.928186722317708e-05,7.037069337114013e-05,7.141296928672587e-05,7.240613510639097e-05,7.33477263698325e-05,7.423538418541002e-05,7.506686505918626e-05,7.584005033037433e-05,7.655295515772868e-05,7.720373700358605e-05,7.779070356483625e-05,7.83123201030659e-05,7.876721612945201e-05,7.91541914036604e-05,7.947222121000229e-05,7.972046087839011e-05,7.989824952217667e-05,8.000511296972821e-05,8.004076587153125e-05,8.000511296972821e-05,7.989824952217667e-05,7.972046087839011e-05,7.947222121000229e-05,7.91541914036604e-05,7.876721612945201e-05,7.83123201030659e-05,7.779070356483625e-05,7.720373700358605e-05,7.655295515772868e-05,7.584005033037433e-05,7.506686505918626e-05,7.423538418541002e-05,7.33477263698325e-05,7.240613510639097e-05,7.141296928672587e-05,7.037069337114013e-05,6.928186722317708e-05,6.81491356663518e-05,6.697521782246172e-05,6.576289629135941e-05,6.451500623209867e-05,6.323442440496863e-05,6.19240582331218e-05,6.058683494129283e-05,5.92256908275141e-05,5.7843560721780004e-05,5.644336768331865e-05,5.502801298552212e-05,5.360036643469158e-05,5.2163257065602354e-05,5.0719464253515785e-05,4.927170927869305e-05,4.782264737573349e-05,4.637486029620047e-05,4.4930849409045154e-05,4.34930293593266e-05,4.206372230168895e-05,4.064515272102548e-05,3.923944284876651e-05,3.7848608679304476e-05,3.64745565872419e-05,3.511908054244645e-05,3.378385991634279e-05,3.247045786948985e-05,3.11803203073024e-05,2.9914775387796686e-05,2.8675033562486495e-05,2.7462188129041444e-05,2.627721627205347e-05,2.5120980566248943e-05,2.399423091473715e-05,2.289760689340417e-05,2.1831640471344164e-05,2.0796759076267048e-05,1.9793288973126347e-05,1.882145892376921e-05,1.788140409521294e-05,1.6973170184189113e-05,1.6096717725856367e-05,1.525192655505285e-05,1.4438600389125387e-05,1.3656471502219414e-05,1.2905205461925986e-05,1.2184405900342806e-05,1.1493619292898831e-05,1.0832339719699084e-05,1.0200013585650705e-05,9.596044277216124e-06,9.019796735287243e-06,8.470601925369811e-06,7.947761187993222e-06,7.45055045400323e-06,6.978224311138314e-06,6.530019910021765e-06,6.105160699407719e-06,5.7028599821890586e-06,5.322324285297428e-06,4.9627565381911786e-06,4.6233590561273355e-06,4.303336325841299e-06,4.001897592606825e-06,3.7182592489135378e-06,3.451647026176042e-06,3.2012979919741567e-06,2.96646235631631e-06,2.7464050913162775e-06,2.5404073694770356e-06,2.3477678264853996e-06,2.1678036550383113e-06,1.9998515367485138e-06,1.8432684196164141e-06,1.6974321489094582e-06,1.5617419595640692e-06,1.4356188384222192e-06,1.31850576473944e-06,1.209867837458357e-06,1.109192297736443e-06,1.0159884551538174e-06,9.297875259116344e-07],[9.000336449074435e-07,9.83476081354611e-07,1.0736973327924288e-06,1.1711511815952464e-06,1.2763126157305495e-06,1.3896779853828022e-06,1.5117650743842421e-06,1.6431130784080325e-06,1.7842824817675748e-06,1.935854824604928e-06,2.0984323522460755e-06,2.272637538556205e-06,2.45911247524894e-06,2.658518119294139e-06,2.871533390833893e-06,3.0988541143594696e-06,3.341191796327033e-06,3.5992722328999243e-06,3.873833942102765e-06,4.165626415359812e-06,4.475408184167869e-06,4.803944698523473e-06,5.152006014684809e-06,5.520364290899538e-06,5.909791090868892e-06,6.321054495942581e-06,6.7549160283447945e-06,7.212127389113456e-06,7.69342701588716e-06,8.199536467189769e-06,8.731156641432906e-06,9.288963840473018e-06,9.87360568921112e-06,1.0485696924399281e-05,1.1125815067505421e-05,1.1794495998174452e-05,1.2492229446494612e-05,1.3219454423918906e-05,1.3976554614286791e-05,1.4763853747925484e-05,1.558161098326634e-05,1.6430016321774058e-05,1.7309186083237394e-05,1.821915846959392e-05,1.91598892464409e-05,2.0131247572204468e-05,2.1133012005583924e-05,2.216486672234294e-05,2.3226397972770994e-05,2.4317090811174083e-05,2.5436326128562373e-05,2.6583378019274648e-05,2.775741151160679e-05,2.895748069158865e-05,3.018252724787583e-05,3.1431379464288474e-05,3.270275168483845e-05,3.399524427414201e-05,3.530734409392161e-05,3.6637425513866704e-05,3.798375197245773e-05,3.9344478100474054e-05,4.071765241681858e-05,4.2101220603019226e-05,4.34930293593266e-05,4.489083084174394e-05,4.629228767562047e-05,4.7694978537641305e-05,4.9096404294181757e-05,5.0493994680092076e-05,5.1885115498070155e-05,5.3267076314896246e-05,5.463713862697737e-05,5.599252446391338e-05,5.733042539518314e-05,5.864801190159214e-05,5.9942443069852776e-05,6.12108765656177e-05,6.245047883748515e-05,6.365843550197039e-05,6.483196185721802e-05,6.596831347133796e-05,6.706479678970852e-05,6.811877970441892e-05,6.912770202824136e-05,7.008908581513852e-05,7.100054546934002e-05,7.185979758546353e-05,7.266467046301897e-05,7.341311323991451e-05,7.410320459127646e-05,7.473316094199468e-05,7.530134414389645e-05,7.580626857132039e-05,7.624660759208835e-05,7.66211993744349e-05,7.692905199432292e-05,7.716934781172555e-05,7.734144708885177e-05,7.744489082790698e-05,7.747940281077086e-05,7.744489082790698e-05,7.734144708885177e-05,7.716934781172555e-05,7.692905199432292e-05,7.66211993744349e-05,7.624660759208835e-05,7.580626857132039e-05,7.530134414389645e-05,7.473316094199468e-05,7.410320459127646e-05,7.341311323991451e-05,7.266467046301897e-05,7.185979758546353e-05,7.100054546934002e-05,7.008908581513852e-05,6.912770202824136e-05,6.811877970441892e-05,6.706479678970852e-05,6.596831347133796e-05,6.483196185721802e-05,6.365843550197039e-05,6.245047883748515e-05,6.12108765656177e-05,5.9942443069852776e-05,5.864801190159214e-05,5.733042539518314e-05,5.599252446391338e-05,5.463713862697737e-05,5.3267076314896246e-05,5.1885115498070155e-05,5.0493994680092076e-05,4.9096404294181757e-05,4.7694978537641305e-05,4.629228767562047e-05,4.489083084174394e-05,4.34930293593266e-05,4.2101220603019226e-05,4.071765241681858e-05,3.9344478100474054e-05,3.798375197245773e-05,3.6637425513866704e-05,3.530734409392161e-05,3.399524427414201e-05,3.270275168483845e-05,3.1431379464288474e-05,3.018252724787583e-05,2.895748069158865e-05,2.775741151160679e-05,2.6583378019274648e-05,2.5436326128562373e-05,2.4317090811174083e-05,2.3226397972770994e-05,2.216486672234294e-05,2.1133012005583924e-05,2.0131247572204468e-05,1.91598892464409e-05,1.821915846959392e-05,1.7309186083237394e-05,1.6430016321774058e-05,1.558161098326634e-05,1.4763853747925484e-05,1.3976554614286791e-05,1.3219454423918906e-05,1.2492229446494612e-05,1.1794495998174452e-05,1.1125815067505421e-05,1.0485696924399281e-05,9.87360568921112e-06,9.288963840473018e-06,8.731156641432906e-06,8.199536467189769e-06,7.69342701588716e-06,7.212127389113456e-06,6.7549160283447945e-06,6.321054495942581e-06,5.909791090868892e-06,5.520364290899538e-06,5.152006014684809e-06,4.803944698523473e-06,4.475408184167869e-06,4.165626415359812e-06,3.873833942102765e-06,3.5992722328999243e-06,3.341191796327033e-06,3.0988541143594696e-06,2.871533390833893e-06,2.658518119294139e-06,2.45911247524894e-06,2.272637538556205e-06,2.0984323522460755e-06,1.935854824604928e-06,1.7842824817675748e-06,1.6431130784080325e-06,1.5117650743842421e-06,1.3896779853828022e-06,1.2763126157305495e-06,1.1711511815952464e-06,1.0736973327924288e-06,9.83476081354611e-07,9.000336449074435e-07],[8.704559295878346e-07,9.511562056226958e-07,1.0384125251316845e-06,1.1326637578845363e-06,1.2343692823668446e-06,1.3440091372567892e-06,1.4620840905085086e-06,1.589115618261888e-06,1.7256457856906033e-06,1.8722370218414057e-06,2.0294717805125883e-06,2.1979520792731976e-06,2.378298908841329e-06,2.5711515052242954e-06,2.777166477279711e-06,2.997016782688442e-06,3.23139054574141e-06,3.4809897108355022e-06,3.7465285261516354e-06,4.028731852652631e-06,4.32833329429086e-06,4.646073146156469e-06,4.982696158226131e-06,5.3389491133885344e-06,5.715578219524447e-06,6.113326316603297e-06,6.532929901020864e-06,6.9751159707393256e-06,7.44059869619529e-06,7.930075923407286e-06,8.444225517232798e-06,8.983701554288257e-06,9.549130376642567e-06,1.014110651901563e-05,1.0760188523845344e-05,1.1406894660217641e-05,1.2081698564270039e-05,1.2785024820266228e-05,1.3517244503082168e-05,1.4278670704327832e-05,1.5069554065737066e-05,1.5890078344775503e-05,1.6740356038626362e-05,1.762042409380077e-05,1.8530239729566738e-05,1.9469676404183894e-05,2.0438519953554787e-05,2.1436464932343248e-05,2.246311118785396e-05,2.3517960697001574e-05,2.4600414696512835e-05,2.5709771136091398e-05,2.684522248362443e-05,2.8005853910617637e-05,2.9190641884906077e-05,3.0398453196301094e-05,3.162804443919823e-05,3.287806197429084e-05,3.414704238941269e-05,3.543341347717894e-05,3.673549574451693e-05,3.805150446638943e-05,3.9379552293026766e-05,4.071765241681858e-05,4.206372230168895e-05,4.341558797431273e-05,4.477098887294765e-05,4.6127583245983866e-05,4.74829540885741e-05,4.8834615601934175e-05,5.018002015612351e-05,5.1516565733359145e-05,5.284160382521679e-05,5.415244775345865e-05,5.5446381380733896e-05,5.672066817405325e-05,5.797256058077727e-05,5.9199309673906954e-05,6.039817502075578e-05,6.156643472664094e-05,6.270139560308456e-05,6.380040340818626e-05,6.486085310533948e-05,6.588019908533146e-05,6.685596529611027e-05,6.778575522413046e-05,6.866726167121596e-05,6.949827627130628e-05,7.027669869228658e-05,7.100054546934e-05,7.166795841789934e-05,7.227721257630426e-05,7.282672363068097e-05,7.331505477733504e-05,7.374092298106847e-05,7.410320459127645e-05,7.440094028142194e-05,7.46333392815002e-05,7.4799782877359e-05,7.489982715520219e-05,7.493320497423781e-05,7.489982715520219e-05,7.4799782877359e-05,7.46333392815002e-05,7.440094028142194e-05,7.410320459127645e-05,7.374092298106847e-05,7.331505477733504e-05,7.282672363068097e-05,7.227721257630426e-05,7.166795841789934e-05,7.100054546934e-05,7.027669869228658e-05,6.949827627130628e-05,6.866726167121596e-05,6.778575522413046e-05,6.685596529611027e-05,6.588019908533146e-05,6.486085310533948e-05,6.380040340818626e-05,6.270139560308456e-05,6.156643472664094e-05,6.039817502075578e-05,5.9199309673906954e-05,5.797256058077727e-05,5.672066817405325e-05,5.5446381380733896e-05,5.415244775345865e-05,5.284160382521679e-05,5.1516565733359145e-05,5.018002015612351e-05,4.8834615601934175e-05,4.74829540885741e-05,4.6127583245983866e-05,4.477098887294765e-05,4.341558797431273e-05,4.206372230168895e-05,4.071765241681858e-05,3.9379552293026766e-05,3.805150446638943e-05,3.673549574451693e-05,3.543341347717894e-05,3.414704238941269e-05,3.287806197429084e-05,3.162804443919823e-05,3.0398453196301094e-05,2.9190641884906077e-05,2.8005853910617637e-05,2.684522248362443e-05,2.5709771136091398e-05,2.4600414696512835e-05,2.3517960697001574e-05,2.246311118785396e-05,2.1436464932343248e-05,2.0438519953554787e-05,1.9469676404183894e-05,1.8530239729566738e-05,1.762042409380077e-05,1.6740356038626362e-05,1.5890078344775503e-05,1.5069554065737066e-05,1.4278670704327832e-05,1.3517244503082168e-05,1.2785024820266228e-05,1.2081698564270039e-05,1.1406894660217641e-05,1.0760188523845344e-05,1.014110651901563e-05,9.549130376642567e-06,8.983701554288257e-06,8.444225517232798e-06,7.930075923407286e-06,7.44059869619529e-06,6.9751159707393256e-06,6.532929901020864e-06,6.113326316603297e-06,5.715578219524447e-06,5.3389491133885344e-06,4.982696158226131e-06,4.646073146156469e-06,4.32833329429086e-06,4.028731852652631e-06,3.7465285261516354e-06,3.4809897108355022e-06,3.23139054574141e-06,2.997016782688442e-06,2.777166477279711e-06,2.5711515052242954e-06,2.378298908841329e-06,2.1979520792731976e-06,2.0294717805125883e-06,1.8722370218414057e-06,1.7256457856906033e-06,1.589115618261888e-06,1.4620840905085086e-06,1.3440091372567892e-06,1.2343692823668446e-06,1.1326637578845363e-06,1.0384125251316845e-06,9.511562056226958e-07,8.704559295878346e-07],[8.411004128752333e-07,9.190791286089606e-07,1.0033927898413388e-06,1.094465465766426e-06,1.1927410426520557e-06,1.2986833702081204e-06,1.4127763283401538e-06,1.5355238067703732e-06,1.667449589904038e-06,1.8090971392621229e-06,1.9610292657964216e-06,2.1238276844550095e-06,2.298092443478848e-06,2.4844412210885084e-06,2.6835084824676557e-06,2.895944490270587e-06,3.1224141622783552e-06,3.3635957703045778e-06,3.6201794750104035e-06,3.892865691930247e-06,4.18236328473687e-06,4.489387582586876e-06,4.814658219285465e-06,5.158896792991318e-06,5.522824346246939e-06,5.907158667263935e-06,6.3126114146128525e-06,6.739885068758654e-06,7.189669715240052e-06,7.662639665707246e-06,8.159449924500059e-06,8.680732509959034e-06,9.22709264120538e-06,9.79910480269187e-06,1.0397308700403795e-05,1.1022205125165066e-05,1.1674251740066112e-05,1.2353858810563633e-05,1.306138489729324e-05,1.3797132533069582e-05,1.4561343906909544e-05,1.5354196579186894e-05,1.617579925319613e-05,1.702618762945316e-05,1.790532036997621e-05,1.8813075200556517e-05,1.9749245179630837e-05,2.0713535162793095e-05,2.1705558492217425e-05,2.27248339402983e-05,2.377078293663459e-05,2.4842727107084608e-05,2.593988615299057e-05,2.706137609780856e-05,2.820620792727922e-05,2.937328664793398e-05,3.056141078715175e-05,3.176927235616365e-05,3.299545729535404e-05,3.423844641893125e-05,3.549661687355044e-05,3.67682441227766e-05,3.805150446638943e-05,3.9344478100474054e-05,4.064515272102548e-05,4.1951427670446656e-05,4.32611186228572e-05,4.4571962800580545e-05,4.588162471056546e-05,4.7187702385851156e-05,4.848773411353287e-05,4.9779205627055394e-05,5.105955773708651e-05,5.232619437173071e-05,5.357649099346742e-05,5.480780335696624e-05,5.601747656887662e-05,5.720285440783771e-05,5.8361288860336433e-05,5.949014982568225e-05,6.058683494129285e-05,6.164877947771739e-05,6.267346625138475e-05,6.36584355019704e-05,6.460129468054406e-05,6.549972809430152e-05,6.635150635370961e-05,6.715449556830695e-05,6.79066662382085e-05,6.860610178955954e-05,6.925100670376622e-05,6.983971419229234e-05,7.037069337114015e-05,7.084255589181372e-05,7.12540619885787e-05,7.160412590516012e-05,7.189182066763666e-05,7.211638217416827e-05,7.227721257630426e-05,7.237388293093044e-05,7.240613510639098e-05,7.237388293093044e-05,7.227721257630426e-05,7.211638217416827e-05,7.189182066763666e-05,7.160412590516012e-05,7.12540619885787e-05,7.084255589181372e-05,7.037069337114015e-05,6.983971419229234e-05,6.925100670376622e-05,6.860610178955954e-05,6.79066662382085e-05,6.715449556830695e-05,6.635150635370961e-05,6.549972809430152e-05,6.460129468054406e-05,6.36584355019704e-05,6.267346625138475e-05,6.164877947771739e-05,6.058683494129285e-05,5.949014982568225e-05,5.8361288860336433e-05,5.720285440783771e-05,5.601747656887662e-05,5.480780335696624e-05,5.357649099346742e-05,5.232619437173071e-05,5.105955773708651e-05,4.9779205627055394e-05,4.848773411353287e-05,4.7187702385851156e-05,4.588162471056546e-05,4.4571962800580545e-05,4.32611186228572e-05,4.1951427670446656e-05,4.064515272102548e-05,3.9344478100474054e-05,3.805150446638943e-05,3.67682441227766e-05,3.549661687355044e-05,3.423844641893125e-05,3.299545729535404e-05,3.176927235616365e-05,3.056141078715175e-05,2.937328664793398e-05,2.820620792727922e-05,2.706137609780856e-05,2.593988615299057e-05,2.4842727107084608e-05,2.377078293663459e-05,2.27248339402983e-05,2.1705558492217425e-05,2.0713535162793095e-05,1.9749245179630837e-05,1.8813075200556517e-05,1.790532036997621e-05,1.702618762945316e-05,1.617579925319613e-05,1.5354196579186894e-05,1.4561343906909544e-05,1.3797132533069582e-05,1.306138489729324e-05,1.2353858810563633e-05,1.1674251740066112e-05,1.1022205125165066e-05,1.0397308700403795e-05,9.79910480269187e-06,9.22709264120538e-06,8.680732509959034e-06,8.159449924500059e-06,7.662639665707246e-06,7.189669715240052e-06,6.739885068758654e-06,6.3126114146128525e-06,5.907158667263935e-06,5.522824346246939e-06,5.158896792991318e-06,4.814658219285465e-06,4.489387582586876e-06,4.18236328473687e-06,3.892865691930247e-06,3.6201794750104035e-06,3.3635957703045778e-06,3.1224141622783552e-06,2.895944490270587e-06,2.6835084824676557e-06,2.4844412210885084e-06,2.298092443478848e-06,2.1238276844550095e-06,1.9610292657964216e-06,1.8090971392621229e-06,1.667449589904038e-06,1.5355238067703732e-06,1.4127763283401538e-06,1.2986833702081204e-06,1.1927410426520557e-06,1.094465465766426e-06,1.0033927898413388e-06,9.190791286089606e-07,8.411004128752333e-07],[8.120110116850101e-07,8.872928387814787e-07,9.686905177127413e-07,1.0566134512683108e-06,1.1514901739393123e-06,1.2537684932246288e-06,1.3639155540758171e-06,1.4824178192229528e-06,1.60978095802288e-06,1.7465296364164343e-06,1.893207200576507e-06,2.0503752468788328e-06,2.2186130709363297e-06,2.398516988609868e-06,2.5906995221474233e-06,2.795788444913142e-06,3.014425678551356e-06,3.2472660368906414e-06,3.494975811432116e-06,3.75823119388606e-06,4.037716531922805e-06,4.334122415088203e-06,4.6481435887007145e-06,4.980476694495252e-06,5.3318178378065e-06,5.702859982189059e-06,6.094290173549694e-06,6.506786597113748e-06,6.941015471858009e-06,7.397627788409617e-06,7.877255897827375e-06,8.380509960140038e-06,8.907974263006228e-06,9.460203422372574e-06,1.003771847852917e-05,1.0641002902482977e-05,1.1270498529077236e-05,1.1926601434765427e-05,1.2609657779387703e-05,1.3319959632681674e-05,1.4057740807573367e-05,1.4823172723522976e-05,1.5616360324328864e-05,1.6437338075807002e-05,1.728606606964694e-05,1.816242626048519e-05,1.906621886381855e-05,1.9997158942790382e-05,2.09548732121097e-05,2.1938897087395344e-05,2.2948672008064583e-05,2.3983543061499775e-05,2.504275693561972e-05,2.6125460226149794e-05,2.7230698123822266e-05,2.8357413505444007e-05,2.9504446451243685e-05,3.067053420915599e-05,3.185431162472196e-05,3.30543120530883e-05,3.426896876718394e-05,3.549661687355044e-05,3.673549574451693e-05,3.798375197245773e-05,3.923944284876651e-05,4.050054036694788e-05,4.176493574588505e-05,4.303044446591517e-05,4.429481180685704e-05,4.5555718873615624e-05,4.6810789091461336e-05,4.805759514957864e-05,4.929366636802615e-05,5.051649645988024e-05,5.172355165707389e-05,5.291227916532355e-05,5.408011591058659e-05,5.522449753673919e-05,5.6342867611637486e-05,5.743268699644635e-05,5.849144333111831e-05,5.951666058719802e-05,6.050590863773881e-05,6.14568127930615e-05,6.236706325037956e-05,6.323442440496863e-05,6.405674397058258e-05,6.483196185721801e-05,6.555811875510692e-05,6.623336437497236e-05,6.685596529611028e-05,6.742431237575384e-05,6.793692767542538e-05,6.839247086256827e-05,6.878974504866268e-05,6.912770202824136e-05,6.94054468867137e-05,6.962224194865036e-05,6.977751004214912e-05,6.98708370590645e-05,6.990197379520667e-05,6.98708370590645e-05,6.977751004214912e-05,6.962224194865036e-05,6.94054468867137e-05,6.912770202824136e-05,6.878974504866268e-05,6.839247086256827e-05,6.793692767542538e-05,6.742431237575384e-05,6.685596529611028e-05,6.623336437497236e-05,6.555811875510692e-05,6.483196185721801e-05,6.405674397058258e-05,6.323442440496863e-05,6.236706325037956e-05,6.14568127930615e-05,6.050590863773881e-05,5.951666058719802e-05,5.849144333111831e-05,5.743268699644635e-05,5.6342867611637486e-05,5.522449753673919e-05,5.408011591058659e-05,5.291227916532355e-05,5.172355165707389e-05,5.051649645988024e-05,4.929366636802615e-05,4.805759514957864e-05,4.6810789091461336e-05,4.5555718873615624e-05,4.429481180685704e-05,4.303044446591517e-05,4.176493574588505e-05,4.050054036694788e-05,3.923944284876651e-05,3.798375197245773e-05,3.673549574451693e-05,3.549661687355044e-05,3.426896876718394e-05,3.30543120530883e-05,3.185431162472196e-05,3.067053420915599e-05,2.9504446451243685e-05,2.8357413505444007e-05,2.7230698123822266e-05,2.6125460226149794e-05,2.504275693561972e-05,2.3983543061499775e-05,2.2948672008064583e-05,2.1938897087395344e-05,2.09548732121097e-05,1.9997158942790382e-05,1.906621886381855e-05,1.816242626048519e-05,1.728606606964694e-05,1.6437338075807002e-05,1.5616360324328864e-05,1.4823172723522976e-05,1.4057740807573367e-05,1.3319959632681674e-05,1.2609657779387703e-05,1.1926601434765427e-05,1.1270498529077236e-05,1.0641002902482977e-05,1.003771847852917e-05,9.460203422372574e-06,8.907974263006228e-06,8.380509960140038e-06,7.877255897827375e-06,7.397627788409617e-06,6.941015471858009e-06,6.506786597113748e-06,6.094290173549694e-06,5.702859982189059e-06,5.3318178378065e-06,4.980476694495252e-06,4.6481435887007145e-06,4.334122415088203e-06,4.037716531922805e-06,3.75823119388606e-06,3.494975811432116e-06,3.2472660368906414e-06,3.014425678551356e-06,2.795788444913142e-06,2.5906995221474233e-06,2.398516988609868e-06,2.2186130709363297e-06,2.0503752468788328e-06,1.893207200576507e-06,1.7465296364164343e-06,1.60978095802288e-06,1.4824178192229528e-06,1.3639155540758171e-06,1.2537684932246288e-06,1.1514901739393123e-06,1.0566134512683108e-06,9.686905177127413e-07,8.872928387814787e-07,8.120110116850101e-07],[7.832294444903971e-07,8.5584292234784e-07,9.343554769003282e-07,1.01916199973774e-06,1.1106758360322457e-06,1.2093289208358848e-06,1.3155718412412445e-06,1.4298738174046527e-06,1.5527225953341772e-06,1.6846242442917743e-06,1.8261028516543832e-06,1.9777001081270127e-06,2.1399747763059473e-06,2.3135020357561567e-06,2.4988726979975777e-06,2.6966922850935707e-06,2.90757996590473e-06,3.132167344515017e-06,3.3710970958571346e-06,3.6250214441620237e-06,3.894600480534312e-06,4.1805003167121175e-06,4.483391072905653e-06,4.803944698523473e-06,5.142832625586506e-06,5.500723255695361e-06,5.878279282552651e-06,6.276154853244636e-06,6.694992572750301e-06,7.135420357464777e-06,7.598048144890613e-06,8.08346446805691e-06,8.5922329046636e-06,9.124888412406497e-06,9.681933563407275e-06,1.0263834692140172e-05,1.0871017972701167e-05,1.1503865442693407e-05,1.2162710992391047e-05,1.2847836339178515e-05,1.3559467008529648e-05,1.4297768343976303e-05,1.5062841569604993e-05,1.5854719929597766e-05,1.6673364930186216e-05,1.7518662710101054e-05,1.8390420566160665e-05,1.9288363661038046e-05,2.021213194046438e-05,2.1161277287158562e-05,2.2135260938605515e-05,2.3133451195433778e-05,2.415512144655754e-05,2.519944853644527e-05,2.6265511498851924e-05,2.73522906801036e-05,2.8458667273552264e-05,2.9583423285125908e-05,3.0725241947991123e-05,3.188270860222684e-05,3.30543120530883e-05,3.423844641893125e-05,3.543341347717894e-05,3.6637425513866704e-05,3.7848608679304476e-05,3.906500684927975e-05,4.028458598799879e-05,4.150523900565939e-05,4.272479110018425e-05,4.394100556924915e-05,4.515159007533842e-05,4.635420334318076e-05,4.754646226558902e-05,4.8725949390476125e-05,4.989022075867521e-05,5.1036814059183314e-05,5.216325706560236e-05,5.326707631489625e-05,5.4345805987144913e-05,5.539699694277919e-05,5.641822587184878e-05,5.74071045082296e-05,5.8361288860336433e-05,5.927848840888874e-05,6.0156475221595804e-05,6.099309293429361e-05,6.17862655480897e-05,6.2534005992457e-05,6.323442440496865e-05,6.388573607947946e-05,6.448626903603402e-05,6.503447116760763e-05,6.552891692095507e-05,6.596831347133797e-05,6.635150635370961e-05,6.667748451603501e-05,6.694538476379143e-05,6.715449556830695e-05,6.730426021542147e-05,6.739427927496958e-05,6.742431237575384e-05,6.739427927496958e-05,6.730426021542147e-05,6.715449556830695e-05,6.694538476379143e-05,6.667748451603501e-05,6.635150635370961e-05,6.596831347133797e-05,6.552891692095507e-05,6.503447116760763e-05,6.448626903603402e-05,6.388573607947946e-05,6.323442440496865e-05,6.2534005992457e-05,6.17862655480897e-05,6.099309293429361e-05,6.0156475221595804e-05,5.927848840888874e-05,5.8361288860336433e-05,5.74071045082296e-05,5.641822587184878e-05,5.539699694277919e-05,5.4345805987144913e-05,5.326707631489625e-05,5.216325706560236e-05,5.1036814059183314e-05,4.989022075867521e-05,4.8725949390476125e-05,4.754646226558902e-05,4.635420334318076e-05,4.515159007533842e-05,4.394100556924915e-05,4.272479110018425e-05,4.150523900565939e-05,4.028458598799879e-05,3.906500684927975e-05,3.7848608679304476e-05,3.6637425513866704e-05,3.543341347717894e-05,3.423844641893125e-05,3.30543120530883e-05,3.188270860222684e-05,3.0725241947991123e-05,2.9583423285125908e-05,2.8458667273552264e-05,2.73522906801036e-05,2.6265511498851924e-05,2.519944853644527e-05,2.415512144655754e-05,2.3133451195433778e-05,2.2135260938605515e-05,2.1161277287158562e-05,2.021213194046438e-05,1.9288363661038046e-05,1.8390420566160665e-05,1.7518662710101054e-05,1.6673364930186216e-05,1.5854719929597766e-05,1.5062841569604993e-05,1.4297768343976303e-05,1.3559467008529648e-05,1.2847836339178515e-05,1.2162710992391047e-05,1.1503865442693407e-05,1.0871017972701167e-05,1.0263834692140172e-05,9.681933563407275e-06,9.124888412406497e-06,8.5922329046636e-06,8.08346446805691e-06,7.598048144890613e-06,7.135420357464777e-06,6.694992572750301e-06,6.276154853244636e-06,5.878279282552651e-06,5.500723255695361e-06,5.142832625586506e-06,4.803944698523473e-06,4.483391072905653e-06,4.1805003167121175e-06,3.894600480534312e-06,3.6250214441620237e-06,3.3710970958571346e-06,3.132167344515017e-06,2.90757996590473e-06,2.6966922850935707e-06,2.4988726979975777e-06,2.3135020357561567e-06,2.1399747763059473e-06,1.9777001081270127e-06,1.8261028516543832e-06,1.6846242442917743e-06,1.5527225953341772e-06,1.4298738174046527e-06,1.3155718412412445e-06,1.2093289208358848e-06,1.1106758360322457e-06,1.01916199973774e-06,9.343554769003282e-07,8.5584292234784e-07,7.832294444903971e-07],[7.54795161320683e-07,8.247724867634531e-07,9.004347294127983e-07,9.821624447539383e-07,1.070353971917385e-06,1.1654255650283851e-06,1.2678114531109254e-06,1.3779638217998559e-06,1.4963527100211044e-06,1.6234658147489161e-06,1.7598081969446805e-06,1.905901881828401e-06,2.0622853467351278e-06,2.2295128899686136e-06,2.408153874286652e-06,2.598791838940369e-06,2.802023474546167e-06,3.0184574554967127e-06,3.2487131251184326e-06,3.4934190293592273e-06,3.75321129544249e-06,4.028731852652632e-06,4.3206264932229866e-06,4.6295427721782005e-06,4.9561277459384795e-06,5.3010255505197855e-06,5.664874821259042e-06,6.0483059571523224e-06,6.4519382341119265e-06,6.876376772719179e-06,7.322209367366731e-06,7.790003185039644e-06,8.280301343369578e-06,8.79361937900183e-06,9.330441618730192e-06,9.891217467268942e-06,1.047635762693243e-05,1.1086230265868996e-05,1.1721157152833778e-05,1.2381409777771549e-05,1.3067205478701967e-05,1.3778703596541898e-05,1.4516001680548778e-05,1.5279131768011203e-05,1.6068056762634675e-05,1.6882666936757996e-05,1.7722776583076525e-05,1.8588120841930005e-05,1.9478352730423668e-05,2.0393040399681223e-05,2.1331664646367887e-05,2.2293616704262796e-05,2.3278196341096098e-05,2.4284610285092088e-05,2.5311971004671876e-05,2.6359295863566244e-05,2.742550667217145e-05,2.850942965435007e-05,2.9609795847039712e-05,3.0725241947991123e-05,3.185431162472196e-05,3.299545729535404e-05,3.414704238941269e-05,3.530734409392161e-05,3.64745565872419e-05,3.7646794760098185e-05,3.882209842012813e-05,3.999843697310627e-05,4.117371457075174e-05,4.234577571175708e-05,4.351241127939778e-05,4.46713649958251e-05,4.5820340269936114e-05,4.6957007412581756e-05,4.8079011189843545e-05,4.918397868221013e-05,5.0269527414742545e-05,5.133327372075859e-05,5.237284129921716e-05,5.33858699238663e-05,5.437002426035701e-05,5.5323002745938946e-05,5.624254648506223e-05,5.7126448113228465e-05,5.797256058077727e-05,5.877880580797293e-05,5.954318316277844e-05,6.02637777130758e-05,6.093876820581409e-05,6.156643472664094e-05,6.214516599499349e-05,6.267346625138472e-05,6.314996169571143e-05,6.357340643781481e-05,6.394268792423139e-05,6.42568318080578e-05,6.451500623209867e-05,6.471652549894759e-05,6.486085310533948e-05,6.494760412198154e-05,6.497654690408822e-05,6.494760412198154e-05,6.486085310533948e-05,6.471652549894759e-05,6.451500623209867e-05,6.42568318080578e-05,6.394268792423139e-05,6.357340643781481e-05,6.314996169571143e-05,6.267346625138472e-05,6.214516599499349e-05,6.156643472664094e-05,6.093876820581409e-05,6.02637777130758e-05,5.954318316277844e-05,5.877880580797293e-05,5.797256058077727e-05,5.7126448113228465e-05,5.624254648506223e-05,5.5323002745938946e-05,5.437002426035701e-05,5.33858699238663e-05,5.237284129921716e-05,5.133327372075859e-05,5.0269527414742545e-05,4.918397868221013e-05,4.8079011189843545e-05,4.6957007412581756e-05,4.5820340269936114e-05,4.46713649958251e-05,4.351241127939778e-05,4.234577571175708e-05,4.117371457075174e-05,3.999843697310627e-05,3.882209842012813e-05,3.7646794760098185e-05,3.64745565872419e-05,3.530734409392161e-05,3.414704238941269e-05,3.299545729535404e-05,3.185431162472196e-05,3.0725241947991123e-05,2.9609795847039712e-05,2.850942965435007e-05,2.742550667217145e-05,2.6359295863566244e-05,2.5311971004671876e-05,2.4284610285092088e-05,2.3278196341096098e-05,2.2293616704262796e-05,2.1331664646367887e-05,2.0393040399681223e-05,1.9478352730423668e-05,1.8588120841930005e-05,1.7722776583076525e-05,1.6882666936757996e-05,1.6068056762634675e-05,1.5279131768011203e-05,1.4516001680548778e-05,1.3778703596541898e-05,1.3067205478701967e-05,1.2381409777771549e-05,1.1721157152833778e-05,1.1086230265868996e-05,1.047635762693243e-05,9.891217467268942e-06,9.330441618730192e-06,8.79361937900183e-06,8.280301343369578e-06,7.790003185039644e-06,7.322209367366731e-06,6.876376772719179e-06,6.4519382341119265e-06,6.0483059571523224e-06,5.664874821259042e-06,5.3010255505197855e-06,4.9561277459384795e-06,4.6295427721782005e-06,4.3206264932229866e-06,4.028731852652632e-06,3.75321129544249e-06,3.4934190293592273e-06,3.2487131251184326e-06,3.0184574554967127e-06,2.802023474546167e-06,2.598791838940369e-06,2.408153874286652e-06,2.2295128899686136e-06,2.0622853467351278e-06,1.905901881828401e-06,1.7598081969446805e-06,1.6234658147489161e-06,1.4963527100211044e-06,1.3779638217998559e-06,1.2678114531109254e-06,1.1654255650283851e-06,1.070353971917385e-06,9.821624447539383e-07,9.004347294127983e-07,8.247724867634531e-07,7.54795161320683e-07],[7.267452861302724e-07,7.9412209775762e-07,8.669725623621415e-07,9.456630931366698e-07,1.0305772260393238e-06,1.1221157462617126e-06,1.2206967459067733e-06,1.326755606380513e-06,1.440744898911817e-06,1.5631341965653465e-06,1.694409791108335e-06,1.835074308136865e-06,1.9856462139646993e-06,2.1466592079317444e-06,2.3186614940031677e-06,2.5022149258072916e-06,2.697894019603585e-06,2.9062848300838756e-06,3.127983684392322e-06,3.363595770304577e-06,3.613733575134645e-06,3.879015172639992e-06,4.1600623559711895e-06,4.457498615560861e-06,4.771946961766438e-06,5.104027593069865e-06,5.454355411691569e-06,5.823537389591964e-06,6.2121697890063434e-06,6.620835242882763e-06,7.050099701860501e-06,7.5005092557318126e-06,7.972586838663278e-06,8.46682882880621e-06,8.983701554288257e-06,9.523637718940074e-06,1.008703276246008e-05,1.0674241171045348e-05,1.1285572755804911e-05,1.1921288917510406e-05,1.258159891741492e-05,1.3266656174970714e-05,1.3976554614286796e-05,1.4711325082074505e-05,1.5470931860620565e-05,1.6255269299988914e-05,1.7064158594173413e-05,1.789734472629075e-05,1.8754493608106046e-05,1.9635189439212453e-05,2.053893231103155e-05,2.146513608045585e-05,2.2413126537411697e-05,2.3382139889875566e-05,2.4371321588925704e-05,2.5379725515252885e-05,2.6406313547188838e-05,2.744995552874084e-05,2.850942965435007e-05,2.9583423285125908e-05,3.067053420915599e-05,3.176927235616365e-05,3.287806197429084e-05,3.399524427414201e-05,3.511908054244645e-05,3.624775572480274e-05,3.737938247397784e-05,3.851200565716615e-05,3.964360731249323e-05,4.077211204189783e-05,4.189539282437039e-05,4.301127723038988e-05,4.411755401531173e-05,4.52119800664426e-05,4.629228767562047e-05,4.735619210632657e-05,4.840139942171561e-05,4.9425614537486866e-05,5.042654946125706e-05,5.140193167805695e-05,5.23495126397815e-05,5.3267076314896246e-05,5.415244775345866e-05,5.500350162156868e-05,5.5818170658730006e-05,5.6594454011294496e-05,5.733042539518313e-05,5.802424104143537e-05,5.867414737883422e-05,5.927848840888874e-05,5.983571272982303e-05,6.034438016791572e-05,6.0803167976545895e-05,6.12108765656177e-05,6.156643472664094e-05,6.186890432162091e-05,6.211748440703482e-05,6.231151476752444e-05,6.245047883748514e-05,6.2534005992457e-05,6.256187319609238e-05,6.2534005992457e-05,6.245047883748514e-05,6.231151476752444e-05,6.211748440703482e-05,6.186890432162091e-05,6.156643472664094e-05,6.12108765656177e-05,6.0803167976545895e-05,6.034438016791572e-05,5.983571272982303e-05,5.927848840888874e-05,5.867414737883422e-05,5.802424104143537e-05,5.733042539518313e-05,5.6594454011294496e-05,5.5818170658730006e-05,5.500350162156868e-05,5.415244775345866e-05,5.3267076314896246e-05,5.23495126397815e-05,5.140193167805695e-05,5.042654946125706e-05,4.9425614537486866e-05,4.840139942171561e-05,4.735619210632657e-05,4.629228767562047e-05,4.52119800664426e-05,4.411755401531173e-05,4.301127723038988e-05,4.189539282437039e-05,4.077211204189783e-05,3.964360731249323e-05,3.851200565716615e-05,3.737938247397784e-05,3.624775572480274e-05,3.511908054244645e-05,3.399524427414201e-05,3.287806197429084e-05,3.176927235616365e-05,3.067053420915599e-05,2.9583423285125908e-05,2.850942965435007e-05,2.744995552874084e-05,2.6406313547188838e-05,2.5379725515252885e-05,2.4371321588925704e-05,2.3382139889875566e-05,2.2413126537411697e-05,2.146513608045585e-05,2.053893231103155e-05,1.9635189439212453e-05,1.8754493608106046e-05,1.789734472629075e-05,1.7064158594173413e-05,1.6255269299988914e-05,1.5470931860620565e-05,1.4711325082074505e-05,1.3976554614286796e-05,1.3266656174970714e-05,1.258159891741492e-05,1.1921288917510406e-05,1.1285572755804911e-05,1.0674241171045348e-05,1.008703276246008e-05,9.523637718940074e-06,8.983701554288257e-06,8.46682882880621e-06,7.972586838663278e-06,7.5005092557318126e-06,7.050099701860501e-06,6.620835242882763e-06,6.2121697890063434e-06,5.823537389591964e-06,5.454355411691569e-06,5.104027593069865e-06,4.771946961766438e-06,4.457498615560861e-06,4.1600623559711895e-06,3.879015172639992e-06,3.613733575134645e-06,3.363595770304577e-06,3.127983684392322e-06,2.9062848300838756e-06,2.697894019603585e-06,2.5022149258072916e-06,2.3186614940031677e-06,2.1466592079317444e-06,1.9856462139646993e-06,1.835074308136865e-06,1.694409791108335e-06,1.5631341965653465e-06,1.440744898911817e-06,1.326755606380513e-06,1.2206967459067733e-06,1.1221157462617126e-06,1.0305772260393238e-06,9.456630931366698e-07,8.669725623621415e-07,7.9412209775762e-07,7.267452861302724e-07],[6.991145714026495e-07,7.63929729728818e-07,8.340104338083272e-07,9.097091658755345e-07,9.913948799258698e-07,1.0794531233757443e-06,1.174286092547487e-06,1.2763126157305497e-06,1.3859680574835338e-06,1.5037041377943193e-06,1.6299886597115321e-06,1.7653051391036438e-06,1.9101523302957954e-06,2.0650436414825737e-06,2.2305064340207886e-06,2.407081199972862e-06,2.5953206126015837e-06,2.795788444913142e-06,3.009058351809414e-06,3.235712511944281e-06,3.476340125982944e-06,3.7315357686385687e-06,4.001897592606825e-06,4.288025383335095e-06,4.590518464447943e-06,4.909973454601399e-06,5.246981877552813e-06,5.60212762830647e-06,5.975984299323204e-06,6.369112371959466e-06,6.78205627952107e-06,7.215341349572362e-06,7.669470634424399e-06,8.144921640027524e-06,8.642142964804477e-06,9.161550861270259e-06,9.703525734582694e-06,1.0268408593442454e-05,1.0856497470000331e-05,1.1468043826621358e-05,1.2103248968486395e-05,1.276226048206991e-05,1.3445168720504508e-05,1.4152003357715552e-05,1.4882730033970298e-05,1.563724711612274e-05,1.6415382596336392e-05,1.721689115342035e-05,1.8041451401109585e-05,1.8888663347648017e-05,1.9758046090884344e-05,2.064903577275827e-05,2.1560983816532286e-05,2.2493155469407357e-05,2.344472867224588e-05,2.4414793277011137e-05,2.5402350631219197e-05,2.6406313547188838e-05,2.742550667217145e-05,2.8458667273552264e-05,2.9504446451243685e-05,3.056141078715175e-05,3.162804443919823e-05,3.270275168483845e-05,3.378385991634279e-05,3.4869623087325883e-05,3.59582256071302e-05,3.704778667671995e-05,3.813636505673947e-05,3.922196425535902e-05,4.030253812049499e-05,4.13759968179751e-05,4.244021317424701e-05,4.349302935932661e-05,4.453226388287606e-05,4.555571887361562e-05,4.6561187609733626e-05,4.754646226558902e-05,4.8509341837824885e-05,4.9447640212050016e-05,5.035919432952195e-05,5.124187241179506e-05,5.2093582200101494e-05,5.291227916532356e-05,5.369597464380783e-05,5.444274385397351e-05,5.5150733748688415e-05,5.581817065873001e-05,5.6443367683318655e-05,5.70247317847046e-05,5.756077054510638e-05,5.805009854592798e-05,5.8491443331118316e-05,5.888365091876411e-05,5.92256908275141e-05,5.951666058719802e-05,5.975578970601039e-05,5.9942443069852776e-05,6.0076123752844546e-05,6.0156475221595804e-05,6.018328291955761e-05,6.0156475221595804e-05,6.0076123752844546e-05,5.9942443069852776e-05,5.975578970601039e-05,5.951666058719802e-05,5.92256908275141e-05,5.888365091876411e-05,5.8491443331118316e-05,5.805009854592798e-05,5.756077054510638e-05,5.70247317847046e-05,5.6443367683318655e-05,5.581817065873001e-05,5.5150733748688415e-05,5.444274385397351e-05,5.369597464380783e-05,5.291227916532356e-05,5.2093582200101494e-05,5.124187241179506e-05,5.035919432952195e-05,4.9447640212050016e-05,4.8509341837824885e-05,4.754646226558902e-05,4.6561187609733626e-05,4.555571887361562e-05,4.453226388287606e-05,4.349302935932661e-05,4.244021317424701e-05,4.13759968179751e-05,4.030253812049499e-05,3.922196425535902e-05,3.813636505673947e-05,3.704778667671995e-05,3.59582256071302e-05,3.4869623087325883e-05,3.378385991634279e-05,3.270275168483845e-05,3.162804443919823e-05,3.056141078715175e-05,2.9504446451243685e-05,2.8458667273552264e-05,2.742550667217145e-05,2.6406313547188838e-05,2.5402350631219197e-05,2.4414793277011137e-05,2.344472867224588e-05,2.2493155469407357e-05,2.1560983816532286e-05,2.064903577275827e-05,1.9758046090884344e-05,1.8888663347648017e-05,1.8041451401109585e-05,1.721689115342035e-05,1.6415382596336392e-05,1.563724711612274e-05,1.4882730033970298e-05,1.4152003357715552e-05,1.3445168720504508e-05,1.276226048206991e-05,1.2103248968486395e-05,1.1468043826621358e-05,1.0856497470000331e-05,1.0268408593442454e-05,9.703525734582694e-06,9.161550861270259e-06,8.642142964804477e-06,8.144921640027524e-06,7.669470634424399e-06,7.215341349572362e-06,6.78205627952107e-06,6.369112371959466e-06,5.975984299323204e-06,5.60212762830647e-06,5.246981877552813e-06,4.909973454601399e-06,4.590518464447943e-06,4.288025383335095e-06,4.001897592606825e-06,3.7315357686385687e-06,3.476340125982944e-06,3.235712511944281e-06,3.009058351809414e-06,2.795788444913142e-06,2.5953206126015837e-06,2.407081199972862e-06,2.2305064340207886e-06,2.0650436414825737e-06,1.9101523302957954e-06,1.7653051391036438e-06,1.6299886597115321e-06,1.5037041377943193e-06,1.3859680574835338e-06,1.2763126157305497e-06,1.174286092547487e-06,1.0794531233757443e-06,9.913948799258698e-07,9.097091658755345e-07,8.340104338083272e-07,7.63929729728818e-07,6.991145714026495e-07],[6.719353647833146e-07,7.342307292841626e-07,8.015869329539837e-07,8.743427547117285e-07,9.528528048711401e-07,1.0374876420709374e-06,1.1286338266026853e-06,1.2266939041305229e-06,1.3320863137136019e-06,1.4452452139966596e-06,1.5666202214302514e-06,1.6966760544235613e-06,1.8358920774228611e-06,1.984761739051057e-06,2.1437918986415916e-06,2.3135020357561576e-06,2.4944233375930053e-06,2.687097659573353e-06,2.8920763548394768e-06,3.109918968911045e-06,3.3411917963270333e-06,3.586466296749597e-06,3.846317368723554e-06,4.121321480069582e-06,4.4120546547396416e-06,4.7190903168771774e-06,5.0429969937993605e-06,5.384335880650372e-06,5.743658270558941e-06,6.121502855264742e-06,6.5183929023506666e-06,6.934833316424655e-06,7.371307592827762e-06,7.828274673696303e-06,8.306165717465754e-06,8.80538079416319e-06,9.326285520082343e-06,9.8692076466606e-06,1.0434433619568177e-05,1.1022205125165062e-05,1.163271564256851e-05,1.2266107020590738e-05,1.2922466099740583e-05,1.36018214003217e-05,1.4304139898391371e-05,1.5029323911956078e-05,1.577720812026142e-05,1.654755673937349e-05,1.73400608774367e-05,1.815433609301966e-05,1.8989920179817892e-05,1.9846271200662682e-05,2.0722765793283328e-05,2.1618697769581002e-05,2.2533277029293032e-05,2.3465628807855686e-05,2.4414793277011137e-05,2.5379725515252885e-05,2.6359295863566244e-05,2.73522906801036e-05,2.8357413505444007e-05,2.937328664793398e-05,3.0398453196301094e-05,3.1431379464288474e-05,3.247045786948985e-05,3.351401024588944e-05,3.4560291586845016e-05,3.5607494212416996e-05,3.6653752352060856e-05,3.7697147130787014e-05,3.873571194397452e-05,3.97674382031254e-05,4.0790281431990214e-05,4.180216768970605e-05,4.280100029489064e-05,4.378466682205535e-05,4.475104633925834e-05,4.569801685364153e-05,4.6623462929403663e-05,4.752528344087665e-05,4.840139942171561e-05,4.924976196980048e-05,5.0068360166297796e-05,5.0855228966457095e-05,5.160845701913213e-05,5.2326194371730706e-05,5.300666001731681e-05,5.364814924091983e-05,5.424904072274888e-05,5.480780335696624e-05,5.532300274593895e-05,5.579330733145357e-05,5.6217494126240434e-05,5.65944540112945e-05,5.6923196566889166e-05,5.7202854407837706e-05,5.743268699644636e-05,5.76120839097017e-05,5.774056754051823e-05,5.7817795216316684e-05,5.7843560721780004e-05,5.7817795216316684e-05,5.774056754051823e-05,5.76120839097017e-05,5.743268699644636e-05,5.7202854407837706e-05,5.6923196566889166e-05,5.65944540112945e-05,5.6217494126240434e-05,5.579330733145357e-05,5.532300274593895e-05,5.480780335696624e-05,5.424904072274888e-05,5.364814924091983e-05,5.300666001731681e-05,5.2326194371730706e-05,5.160845701913213e-05,5.0855228966457095e-05,5.0068360166297796e-05,4.924976196980048e-05,4.840139942171561e-05,4.752528344087665e-05,4.6623462929403663e-05,4.569801685364153e-05,4.475104633925834e-05,4.378466682205535e-05,4.280100029489064e-05,4.180216768970605e-05,4.0790281431990214e-05,3.97674382031254e-05,3.873571194397452e-05,3.7697147130787014e-05,3.6653752352060856e-05,3.5607494212416996e-05,3.4560291586845016e-05,3.351401024588944e-05,3.247045786948985e-05,3.1431379464288474e-05,3.0398453196301094e-05,2.937328664793398e-05,2.8357413505444007e-05,2.73522906801036e-05,2.6359295863566244e-05,2.5379725515252885e-05,2.4414793277011137e-05,2.3465628807855686e-05,2.2533277029293032e-05,2.1618697769581002e-05,2.0722765793283328e-05,1.9846271200662682e-05,1.8989920179817892e-05,1.815433609301966e-05,1.73400608774367e-05,1.654755673937349e-05,1.577720812026142e-05,1.5029323911956078e-05,1.4304139898391371e-05,1.36018214003217e-05,1.2922466099740583e-05,1.2266107020590738e-05,1.163271564256851e-05,1.1022205125165062e-05,1.0434433619568177e-05,9.8692076466606e-06,9.326285520082343e-06,8.80538079416319e-06,8.306165717465754e-06,7.828274673696303e-06,7.371307592827762e-06,6.934833316424655e-06,6.5183929023506666e-06,6.121502855264742e-06,5.743658270558941e-06,5.384335880650372e-06,5.0429969937993605e-06,4.7190903168771774e-06,4.4120546547396416e-06,4.121321480069582e-06,3.846317368723554e-06,3.586466296749597e-06,3.3411917963270333e-06,3.109918968911045e-06,2.8920763548394768e-06,2.687097659573353e-06,2.4944233375930053e-06,2.3135020357561576e-06,2.1437918986415916e-06,1.984761739051057e-06,1.8358920774228611e-06,1.6966760544235613e-06,1.5666202214302514e-06,1.4452452139966596e-06,1.3320863137136019e-06,1.2266939041305229e-06,1.1286338266026853e-06,1.0374876420709374e-06,9.528528048711401e-07,8.743427547117285e-07,8.015869329539837e-07,7.342307292841626e-07,6.719353647833146e-07],[6.452375874697512e-07,7.050577916259027e-07,7.697377543646578e-07,8.396027940184126e-07,9.149934312909783e-07,9.96265501541817e-07,1.083790205995054e-06,1.1779540961060656e-06,1.2791589852384296e-06,1.3878217817604077e-06,1.5043742376663847e-06,1.629262606868434e-06,1.762947207389749e-06,1.9059018818284007e-06,2.0586133506498344e-06,2.2215804531125484e-06,2.3953132709360894e-06,2.5803321301861316e-06,2.777166477279713e-06,2.986353625506344e-06,3.2084373690183747e-06,3.443966461867266e-06,3.6934929603512e-06,3.957570427692713e-06,4.236752000881714e-06,4.531588320396893e-06,4.842625324454583e-06,5.1704019104248455e-06,5.5154474670956665e-06,5.878279282552651e-06,6.259399833567348e-06,6.659293963546137e-06,7.078425957275574e-06,7.5172365219015256e-06,7.976139684789283e-06,8.455519620120792e-06,8.955727417283031e-06,9.477077805277968e-06,1.0019845848528287e-05,1.0584263630552753e-05,1.1170516943029232e-05,1.1778741998739757e-05,1.240902218778902e-05,1.306138489729324e-05,1.3735798415438676e-05,1.4432168941396952e-05,1.5150337723046481e-05,1.5890078344775503e-05,1.665109418782255e-05,1.7433016085635733e-05,1.823540019659508e-05,1.9057726116135474e-05,1.989939524982545e-05,2.0759729468295612e-05,2.1637970064065957e-05,2.2533277029293032e-05,2.344472867224588e-05,2.4371321588925704e-05,2.5311971004671876e-05,2.6265511498851924e-05,2.7230698123822266e-05,2.820620792727922e-05,2.9190641884906077e-05,3.018252724787583e-05,3.11803203073024e-05,3.218240957516455e-05,3.318711937857027e-05,3.419271386150681e-05,3.519740138545057e-05,3.619933931741357e-05,3.719663919120155e-05,3.8187372224874186e-05,3.9169575174655426e-05,4.0141256502863106e-05,4.1100402834836956e-05,4.204498567736555e-05,4.29729683687682e-05,4.388231322860102e-05,4.477098887294765e-05,4.5636977659445325e-05,4.647828322460563e-05,4.7292938074633496e-05,4.8079011189843545e-05,4.8834615601934175e-05,4.955791590281849e-05,5.024713564343591e-05,5.090056458098798e-05,5.1516565733359145e-05,5.209358220010149e-05,5.263014371028025e-05,5.3124872858691495e-05,5.357649099346741e-05,5.398382371987192e-05,5.43458059871449e-05,5.4661486727566926e-05,5.493003301946932e-05,5.5150733748688415e-05,5.5323002745938946e-05,5.5446381380733896e-05,5.552054059578601e-05,5.554528236926069e-05,5.552054059578601e-05,5.5446381380733896e-05,5.5323002745938946e-05,5.5150733748688415e-05,5.493003301946932e-05,5.4661486727566926e-05,5.43458059871449e-05,5.398382371987192e-05,5.357649099346741e-05,5.3124872858691495e-05,5.263014371028025e-05,5.209358220010149e-05,5.1516565733359145e-05,5.090056458098798e-05,5.024713564343591e-05,4.955791590281849e-05,4.8834615601934175e-05,4.8079011189843545e-05,4.7292938074633496e-05,4.647828322460563e-05,4.5636977659445325e-05,4.477098887294765e-05,4.388231322860102e-05,4.29729683687682e-05,4.204498567736555e-05,4.1100402834836956e-05,4.0141256502863106e-05,3.9169575174655426e-05,3.8187372224874186e-05,3.719663919120155e-05,3.619933931741357e-05,3.519740138545057e-05,3.419271386150681e-05,3.318711937857027e-05,3.218240957516455e-05,3.11803203073024e-05,3.018252724787583e-05,2.9190641884906077e-05,2.820620792727922e-05,2.7230698123822266e-05,2.6265511498851924e-05,2.5311971004671876e-05,2.4371321588925704e-05,2.344472867224588e-05,2.2533277029293032e-05,2.1637970064065957e-05,2.0759729468295612e-05,1.989939524982545e-05,1.9057726116135474e-05,1.823540019659508e-05,1.7433016085635733e-05,1.665109418782255e-05,1.5890078344775503e-05,1.5150337723046481e-05,1.4432168941396952e-05,1.3735798415438676e-05,1.306138489729324e-05,1.240902218778902e-05,1.1778741998739757e-05,1.1170516943029232e-05,1.0584263630552753e-05,1.0019845848528287e-05,9.477077805277968e-06,8.955727417283031e-06,8.455519620120792e-06,7.976139684789283e-06,7.5172365219015256e-06,7.078425957275574e-06,6.659293963546137e-06,6.259399833567348e-06,5.878279282552651e-06,5.5154474670956665e-06,5.1704019104248455e-06,4.842625324454583e-06,4.531588320396893e-06,4.236752000881714e-06,3.957570427692713e-06,3.6934929603512e-06,3.443966461867266e-06,3.2084373690183747e-06,2.986353625506344e-06,2.777166477279713e-06,2.5803321301861316e-06,2.3953132709360894e-06,2.2215804531125484e-06,2.0586133506498344e-06,1.9059018818284007e-06,1.762947207389749e-06,1.629262606868434e-06,1.5043742376663847e-06,1.3878217817604077e-06,1.2791589852384296e-06,1.1779540961060656e-06,1.083790205995054e-06,9.96265501541817e-07,9.149934312909783e-07,8.396027940184126e-07,7.697377543646578e-07,7.050577916259027e-07,6.452375874697512e-07],[6.190487240248422e-07,6.764409494204328e-07,7.384956858167028e-07,8.055250475456172e-07,8.778557342776411e-07,9.55829138748591e-07,1.0398013958901794e-06,1.1301433678311274e-06,1.227240559158969e-06,1.3314929567908028e-06,1.4433147887976669e-06,1.5631341965653465e-06,1.6913928147574717e-06,1.8285452536779377e-06,1.9750584788119276e-06,2.13141108256085e-06,2.2980924434788475e-06,2.475601768669299e-06,2.664447015410689e-06,2.8651436885538392e-06,3.0782135107675488e-06,3.3041829633076498e-06,3.5435816956453053e-06,3.7969408030130853e-06,4.06479097171083e-06,4.347660492855409e-06,4.646073146156469e-06,4.960545956250815e-06,5.291586825126928e-06,5.639692045213464e-06,6.005343698785728e-06,6.389006950455795e-06,6.791127240647909e-06,7.212127389113454e-06,7.652404618700531e-06,8.112327510753057e-06,8.5922329046636e-06,9.092422755232795e-06,9.613160962585482e-06,1.0154670190448864e-05,1.0717128689599637e-05,1.1300667144223825e-05,1.1905365559793694e-05,1.2531250211838872e-05,1.3178290675662764e-05,1.3846396957619237e-05,1.453541674900803e-05,1.5245132823960286e-05,1.597526060285855e-05,1.6725445902860195e-05,1.749526289696158e-05,1.8284212302746007e-05,1.9091719821495908e-05,1.991713484771496e-05,2.0759729468295612e-05,2.1618697769581002e-05,2.2493155469407357e-05,2.3382139889875566e-05,2.4284610285092088e-05,2.519944853644527e-05,2.6125460226149794e-05,2.706137609780856e-05,2.8005853910617637e-05,2.895748069158865e-05,2.9914775387796686e-05,3.087619191819702e-05,3.184012262200574e-05,3.2804902098027e-05,3.376881142665119e-05,3.473008276356454e-05,3.568690429152229e-05,3.66374255138667e-05,3.757976287083914e-05,3.8512005657166155e-05,3.9432222216914166e-05,4.033846638922921e-05,4.122878417632942e-05,4.2101220603019226e-05,4.29538267350675e-05,4.378466682205535e-05,4.459182552877267e-05,4.5373415217941295e-05,4.612758324598388e-05,4.6852519232751966e-05,4.7546462265589016e-05,4.820770799783946e-05,4.883461560193418e-05,4.9425614537486866e-05,4.997921109542904e-05,5.049399468009207e-05,5.096864379230956e-05,5.140193167805695e-05,5.179273160885933e-05,5.2140021762171206e-05,5.2442889672151166e-05,5.270053622370388e-05,5.291227916532356e-05,5.307755611912778e-05,5.319592706949546e-05,5.3267076314896246e-05,5.329081387079356e-05,5.3267076314896246e-05,5.319592706949546e-05,5.307755611912778e-05,5.291227916532356e-05,5.270053622370388e-05,5.2442889672151166e-05,5.2140021762171206e-05,5.179273160885933e-05,5.140193167805695e-05,5.096864379230956e-05,5.049399468009207e-05,4.997921109542904e-05,4.9425614537486866e-05,4.883461560193418e-05,4.820770799783946e-05,4.7546462265589016e-05,4.6852519232751966e-05,4.612758324598388e-05,4.5373415217941295e-05,4.459182552877267e-05,4.378466682205535e-05,4.29538267350675e-05,4.2101220603019226e-05,4.122878417632942e-05,4.033846638922921e-05,3.9432222216914166e-05,3.8512005657166155e-05,3.757976287083914e-05,3.66374255138667e-05,3.568690429152229e-05,3.473008276356454e-05,3.376881142665119e-05,3.2804902098027e-05,3.184012262200574e-05,3.087619191819702e-05,2.9914775387796686e-05,2.895748069158865e-05,2.8005853910617637e-05,2.706137609780856e-05,2.6125460226149794e-05,2.519944853644527e-05,2.4284610285092088e-05,2.3382139889875566e-05,2.2493155469407357e-05,2.1618697769581002e-05,2.0759729468295612e-05,1.991713484771496e-05,1.9091719821495908e-05,1.8284212302746007e-05,1.749526289696158e-05,1.6725445902860195e-05,1.597526060285855e-05,1.5245132823960286e-05,1.453541674900803e-05,1.3846396957619237e-05,1.3178290675662764e-05,1.2531250211838872e-05,1.1905365559793694e-05,1.1300667144223825e-05,1.0717128689599637e-05,1.0154670190448864e-05,9.613160962585482e-06,9.092422755232795e-06,8.5922329046636e-06,8.112327510753057e-06,7.652404618700531e-06,7.212127389113454e-06,6.791127240647909e-06,6.389006950455795e-06,6.005343698785728e-06,5.639692045213464e-06,5.291586825126928e-06,4.960545956250815e-06,4.646073146156469e-06,4.347660492855409e-06,4.06479097171083e-06,3.7969408030130853e-06,3.5435816956453053e-06,3.3041829633076498e-06,3.0782135107675488e-06,2.8651436885538392e-06,2.664447015410689e-06,2.475601768669299e-06,2.2980924434788475e-06,2.13141108256085e-06,1.9750584788119276e-06,1.8285452536779377e-06,1.6913928147574717e-06,1.5631341965653465e-06,1.4433147887976669e-06,1.3314929567908028e-06,1.227240559158969e-06,1.1301433678311274e-06,1.0398013958901794e-06,9.55829138748591e-07,8.778557342776411e-07,8.055250475456172e-07,7.384956858167028e-07,6.764409494204328e-07,6.190487240248422e-07],[5.933938232231608e-07,6.484075737230459e-07,7.078906093068661e-07,7.721421095214639e-07,8.414752347999033e-07,9.162172297238542e-07,9.96709470118046e-07,1.0833074486729736e-06,1.1763806937184585e-06,1.2763126157305495e-06,1.3835002761508112e-06,1.4983540731335911e-06,1.6212973389164807e-06,1.7527658436349082e-06,1.893207200576507e-06,2.043080168097147e-06,2.202853843700751e-06,2.3730067461212368e-06,2.5540257816388634e-06,2.746405091316278e-06,2.9506447763524406e-06,3.167249499325804e-06,3.3967269597315198e-06,3.639586242910239e-06,3.896336042217063e-06,4.16748275508639e-06,4.453528454509198e-06,4.754968738350453e-06,5.072290459891762e-06,5.405969343983607e-06,5.7564674942268e-06,6.124230797668477e-06,6.509686234586766e-06,6.913239102043228e-06,7.335270160994723e-06,7.776132717868276e-06,8.23614965260404e-06,8.715610406253482e-06,9.214767942271577e-06,9.733835696653346e-06,1.0272984533025141e-05,1.0832339719699084e-05,1.141197794652401e-05,1.2011924400107009e-05,1.2632149916625704e-05,1.3272568231991868e-05,1.3933033349552168e-05,1.4613337045811712e-05,1.5313206534831915e-05,1.6032302311977763e-05,1.677021619756337e-05,1.752646960066266e-05,1.830051202290861e-05,1.9091719821495908e-05,1.989939524982545e-05,2.0722765793283328e-05,2.1560983816532286e-05,2.2413126537411697e-05,2.3278196341096098e-05,2.415512144655754e-05,2.504275693561972e-05,2.593988615299057e-05,2.684522248362443e-05,2.775741151160679e-05,2.8675033562486495e-05,2.9596606628617733e-05,3.052058967463124e-05,3.144538631765044e-05,3.2369348874319605e-05,3.329078276413884e-05,3.420795125602365e-05,3.511908054244645e-05,3.6022365122994985e-05,3.6915973476719016e-05,3.779805400025504e-05,3.866674118643871e-05,3.952016201595935e-05,4.035644253259901e-05,4.1173714570751745e-05,4.197012260225429e-05,4.2743830668095697e-05,4.349302935932661e-05,4.421594281047346e-05,4.491083566799127e-05,4.557601999577243e-05,4.620986207947624e-05,4.6810789091461336e-05,4.737729557839556e-05,4.79079497341859e-05,4.8401399421715605e-05,4.885637790799209e-05,4.927170927869306e-05,4.96463134997412e-05,4.997921109542904e-05,5.0269527414742545e-05,5.051649645988024e-05,5.071946425351579e-05,5.087789172408857e-05,5.099135709130645e-05,5.105955773708651e-05,5.1082311550318364e-05,5.105955773708651e-05,5.099135709130645e-05,5.087789172408857e-05,5.071946425351579e-05,5.051649645988024e-05,5.0269527414742545e-05,4.997921109542904e-05,4.96463134997412e-05,4.927170927869306e-05,4.885637790799209e-05,4.8401399421715605e-05,4.79079497341859e-05,4.737729557839556e-05,4.6810789091461336e-05,4.620986207947624e-05,4.557601999577243e-05,4.491083566799127e-05,4.421594281047346e-05,4.349302935932661e-05,4.2743830668095697e-05,4.197012260225429e-05,4.1173714570751745e-05,4.035644253259901e-05,3.952016201595935e-05,3.866674118643871e-05,3.779805400025504e-05,3.6915973476719016e-05,3.6022365122994985e-05,3.511908054244645e-05,3.420795125602365e-05,3.329078276413884e-05,3.2369348874319605e-05,3.144538631765044e-05,3.052058967463124e-05,2.9596606628617733e-05,2.8675033562486495e-05,2.775741151160679e-05,2.684522248362443e-05,2.593988615299057e-05,2.504275693561972e-05,2.415512144655754e-05,2.3278196341096098e-05,2.2413126537411697e-05,2.1560983816532286e-05,2.0722765793283328e-05,1.989939524982545e-05,1.9091719821495908e-05,1.830051202290861e-05,1.752646960066266e-05,1.677021619756337e-05,1.6032302311977763e-05,1.5313206534831915e-05,1.4613337045811712e-05,1.3933033349552168e-05,1.3272568231991868e-05,1.2632149916625704e-05,1.2011924400107009e-05,1.141197794652401e-05,1.0832339719699084e-05,1.0272984533025141e-05,9.733835696653346e-06,9.214767942271577e-06,8.715610406253482e-06,8.23614965260404e-06,7.776132717868276e-06,7.335270160994723e-06,6.913239102043228e-06,6.509686234586766e-06,6.124230797668477e-06,5.7564674942268e-06,5.405969343983607e-06,5.072290459891762e-06,4.754968738350453e-06,4.453528454509198e-06,4.16748275508639e-06,3.896336042217063e-06,3.639586242910239e-06,3.3967269597315198e-06,3.167249499325804e-06,2.9506447763524406e-06,2.746405091316278e-06,2.5540257816388634e-06,2.3730067461212368e-06,2.202853843700751e-06,2.043080168097147e-06,1.893207200576507e-06,1.7527658436349082e-06,1.6212973389164807e-06,1.4983540731335911e-06,1.3835002761508112e-06,1.2763126157305495e-06,1.1763806937184585e-06,1.0833074486729736e-06,9.96709470118046e-07,9.162172297238542e-07,8.414752347999033e-07,7.721421095214639e-07,7.078906093068661e-07,6.484075737230459e-07,5.933938232231608e-07],[5.682955094875411e-07,6.209823864747912e-07,6.779495146955711e-07,7.394834195337781e-07,8.058840159209369e-07,8.774647072309775e-07,9.545524303827703e-07,1.0374876420709376e-06,1.1266242409749857e-06,1.2223294207583837e-06,1.3249834486659203e-06,1.4349793645626735e-06,1.552722595334177e-06,1.67863047968778e-06,1.8131316985625034e-06,1.9566656065713854e-06,2.109681460168668e-06,2.272637538556206e-06,2.4460001537207136e-06,2.6302425464273732e-06,2.8258436654864616e-06,3.033286828158652e-06,3.2530582601712316e-06,3.4856455144809634e-06,3.7315357686385675e-06,3.99121400138282e-06,4.265161049916675e-06,4.553851550190404e-06,4.857751763433715e-06,5.177317293135723e-06,5.512990697663203e-06,5.865199004728122e-06,6.234351134958236e-06,6.620835242882763e-06,7.025015984710623e-06,7.447231723343637e-06,7.887791682122047e-06,8.34697305983588e-06,8.825018120543006e-06,9.322131272703345e-06,9.838476153058288e-06,1.0374172731544279e-05,1.0929294454319683e-05,1.1503865442693407e-05,1.2097857766362423e-05,1.2711188809883066e-05,1.3343718751708098e-05,1.3995248175408686e-05,1.466551583285942e-05,1.5354196579186894e-05,1.6060899499161667e-05,1.678516624444319e-05,1.752646960066266e-05,1.8284212302746007e-05,1.9057726116135474e-05,1.9846271200662682e-05,2.064903577275827e-05,2.146513608045585e-05,2.2293616704262796e-05,2.3133451195433778e-05,2.3983543061499775e-05,2.4842727107084608e-05,2.5709771136091398e-05,2.6583378019274648e-05,2.7462188129041444e-05,2.8344782141062506e-05,2.92296841999345e-05,3.011536544373692e-05,3.1000247879886316e-05,3.188270860222683e-05,3.2761084336828266e-05,3.363367630151061e-05,3.4498755361698294e-05,3.535456746284809e-05,3.619933931741358e-05,3.7031284322125724e-05,3.7848608679304476e-05,3.864951769399018e-05,3.9432222216914166e-05,4.019494520173449e-05,4.093592834356036e-05,4.165343876459544e-05,4.2345775711757085e-05,4.301127723038988e-05,4.364832677769762e-05,4.425535973927537e-05,4.4830869812140536e-05,4.5373415217941295e-05,4.588162471056546e-05,4.635420334318075e-05,4.678993796080775e-05,4.718770238585115e-05,4.754646226558902e-05,4.7865279552430666e-05,4.814331658979088e-05,4.837983977867719e-05,4.857422280252996e-05,4.8725949390476125e-05,4.883461560193418e-05,4.8899931618421236e-05,4.892172303143788e-05,4.8899931618421236e-05,4.883461560193418e-05,4.8725949390476125e-05,4.857422280252996e-05,4.837983977867719e-05,4.814331658979088e-05,4.7865279552430666e-05,4.754646226558902e-05,4.718770238585115e-05,4.678993796080775e-05,4.635420334318075e-05,4.588162471056546e-05,4.5373415217941295e-05,4.4830869812140536e-05,4.425535973927537e-05,4.364832677769762e-05,4.301127723038988e-05,4.2345775711757085e-05,4.165343876459544e-05,4.093592834356036e-05,4.019494520173449e-05,3.9432222216914166e-05,3.864951769399018e-05,3.7848608679304476e-05,3.7031284322125724e-05,3.619933931741358e-05,3.535456746284809e-05,3.4498755361698294e-05,3.363367630151061e-05,3.2761084336828266e-05,3.188270860222683e-05,3.1000247879886316e-05,3.011536544373692e-05,2.92296841999345e-05,2.8344782141062506e-05,2.7462188129041444e-05,2.6583378019274648e-05,2.5709771136091398e-05,2.4842727107084608e-05,2.3983543061499775e-05,2.3133451195433778e-05,2.2293616704262796e-05,2.146513608045585e-05,2.064903577275827e-05,1.9846271200662682e-05,1.9057726116135474e-05,1.8284212302746007e-05,1.752646960066266e-05,1.678516624444319e-05,1.6060899499161667e-05,1.5354196579186894e-05,1.466551583285942e-05,1.3995248175408686e-05,1.3343718751708098e-05,1.2711188809883066e-05,1.2097857766362423e-05,1.1503865442693407e-05,1.0929294454319683e-05,1.0374172731544279e-05,9.838476153058288e-06,9.322131272703345e-06,8.825018120543006e-06,8.34697305983588e-06,7.887791682122047e-06,7.447231723343637e-06,7.025015984710623e-06,6.620835242882763e-06,6.234351134958236e-06,5.865199004728122e-06,5.512990697663203e-06,5.177317293135723e-06,4.857751763433715e-06,4.553851550190404e-06,4.265161049916675e-06,3.99121400138282e-06,3.7315357686385675e-06,3.4856455144809634e-06,3.2530582601712316e-06,3.033286828158652e-06,2.8258436654864616e-06,2.6302425464273732e-06,2.4460001537207136e-06,2.272637538556206e-06,2.109681460168668e-06,1.9566656065713854e-06,1.8131316985625034e-06,1.67863047968778e-06,1.552722595334177e-06,1.4349793645626735e-06,1.3249834486659203e-06,1.2223294207583837e-06,1.1266242409749857e-06,1.0374876420709376e-06,9.545524303827703e-07,8.774647072309775e-07,8.058840159209369e-07,7.394834195337781e-07,6.779495146955711e-07,6.209823864747912e-07,5.682955094875411e-07],[5.437740044264335e-07,5.941874840365658e-07,6.4869652539996e-07,7.075752905551515e-07,7.711107533398357e-07,8.396027940184124e-07,9.133642424383838e-07,9.927208648552944e-07,1.0780112894984788e-06,1.1695868659131135e-06,1.2678114531109256e-06,1.3730611315953936e-06,1.4857238344002445e-06,1.6061988923952607e-06,1.734896489273506e-06,1.8722370218414065e-06,2.018650361489918e-06,2.1745750130331336e-06,2.340457167461648e-06,2.5167496455731685e-06,2.7039107299128355e-06,2.902402882980982e-06,3.1126913502465006e-06,3.335242647138852e-06,3.5705229298799304e-06,3.818996250756694e-06,4.081122699224299e-06,4.357356431064402e-06,4.648143588700714e-06,4.953920116689494e-06,5.275109477351447e-06,5.612120272488031e-06,5.965343778122959e-06,6.3351514002222596e-06,6.721892060365731e-06,7.125889521361631e-06,7.5474396638058455e-06,7.986807725578243e-06,8.444225517232797e-06,8.91988862716487e-06,9.413953631318927e-06,9.926535323022848e-06,1.0457703979290931e-05,1.1007482680616537e-05,1.1575844701867284e-05,1.2162710992391045e-05,1.2767947763830565e-05,1.3391364204419354e-05,1.4032710338683504e-05,1.4691675051495626e-05,1.5367884295311513e-05,1.6060899499161667e-05,1.677021619756337e-05,1.749526289696158e-05,1.823540019659508e-05,1.8989920179817892e-05,1.9758046090884344e-05,2.053893231103155e-05,2.1331664646367887e-05,2.2135260938605515e-05,2.2948672008064583e-05,2.377078293663459e-05,2.4600414696512835e-05,2.5436326128562373e-05,2.627721627205347e-05,2.712172704538733e-05,2.7968446275162567e-05,2.881591106865023e-05,2.9662611522407956e-05,3.050699475740634e-05,3.1347469268679426e-05,3.218240957516455e-05,3.3010161153085516e-05,3.382904563397552e-05,3.463736624625355e-05,3.543341347717894e-05,3.6215470930033215e-05,3.6981821349535196e-05,3.7730752786802505e-05,3.846056487364765e-05,3.916957517465543e-05,3.9856125584345934e-05,4.051858873579675e-05,4.115537438639102e-05,4.176493574588504e-05,4.234577571175708e-05,4.28964529768156e-05,4.3415587974312735e-05,4.3901868626329426e-05,4.435405586197258e-05,4.477098887294765e-05,4.515159007533841e-05,4.5494869747930796e-05,4.579993031915118e-05,4.606597027663838e-05,4.629228767562046e-05,4.647828322460563e-05,4.662346292940366e-05,4.6727440279152e-05,4.678993796080775e-05,4.6810789091461336e-05,4.678993796080775e-05,4.6727440279152e-05,4.662346292940366e-05,4.647828322460563e-05,4.629228767562046e-05,4.606597027663838e-05,4.579993031915118e-05,4.5494869747930796e-05,4.515159007533841e-05,4.477098887294765e-05,4.435405586197258e-05,4.3901868626329426e-05,4.3415587974312735e-05,4.28964529768156e-05,4.234577571175708e-05,4.176493574588504e-05,4.115537438639102e-05,4.051858873579675e-05,3.9856125584345934e-05,3.916957517465543e-05,3.846056487364765e-05,3.7730752786802505e-05,3.6981821349535196e-05,3.6215470930033215e-05,3.543341347717894e-05,3.463736624625355e-05,3.382904563397552e-05,3.3010161153085516e-05,3.218240957516455e-05,3.1347469268679426e-05,3.050699475740634e-05,2.9662611522407956e-05,2.881591106865023e-05,2.7968446275162567e-05,2.712172704538733e-05,2.627721627205347e-05,2.5436326128562373e-05,2.4600414696512835e-05,2.377078293663459e-05,2.2948672008064583e-05,2.2135260938605515e-05,2.1331664646367887e-05,2.053893231103155e-05,1.9758046090884344e-05,1.8989920179817892e-05,1.823540019659508e-05,1.749526289696158e-05,1.677021619756337e-05,1.6060899499161667e-05,1.5367884295311513e-05,1.4691675051495626e-05,1.4032710338683504e-05,1.3391364204419354e-05,1.2767947763830565e-05,1.2162710992391045e-05,1.1575844701867284e-05,1.1007482680616537e-05,1.0457703979290931e-05,9.926535323022848e-06,9.413953631318927e-06,8.91988862716487e-06,8.444225517232797e-06,7.986807725578243e-06,7.5474396638058455e-06,7.125889521361631e-06,6.721892060365731e-06,6.3351514002222596e-06,5.965343778122959e-06,5.612120272488031e-06,5.275109477351447e-06,4.953920116689494e-06,4.648143588700714e-06,4.357356431064402e-06,4.081122699224299e-06,3.818996250756694e-06,3.5705229298799304e-06,3.335242647138852e-06,3.1126913502465006e-06,2.902402882980982e-06,2.7039107299128355e-06,2.5167496455731685e-06,2.340457167461648e-06,2.1745750130331336e-06,2.018650361489918e-06,1.8722370218414065e-06,1.734896489273506e-06,1.6061988923952607e-06,1.4857238344002445e-06,1.3730611315953936e-06,1.2678114531109256e-06,1.1695868659131135e-06,1.0780112894984788e-06,9.927208648552944e-07,9.133642424383838e-07,8.396027940184124e-07,7.711107533398357e-07,7.075752905551515e-07,6.4869652539996e-07,5.941874840365658e-07,5.437740044264335e-07],[5.198471579409927e-07,5.680423711801517e-07,6.201529355031693e-07,6.764409494204334e-07,7.371807595037088e-07,8.026590508499329e-07,8.731748883386683e-07,9.490397040367652e-07,1.0305772260393236e-06,1.1181233440009014e-06,1.2120259066078969e-06,1.3126444462750613e-06,1.4203498264188376e-06,1.5355238067703726e-06,1.6585585223440967e-06,1.7898558718759728e-06,1.9298268117910035e-06,2.0788905520541637e-06,2.2374736506039913e-06,2.406009003464993e-06,2.584934728084279e-06,2.7746929379400507e-06,2.9757284070244076e-06,3.1884871234099072e-06,3.413414731767195e-06,3.650954865408175e-06,3.901547369183307e-06,4.165626415359814e-06,4.443618515446363e-06,4.735940431805158e-06,5.042996993799361e-06,5.365178824157322e-06,5.7028599821890586e-06,6.056395531458308e-06,6.426119040488253e-06,6.812340026053055e-06,7.2153413495723615e-06,7.635376578073844e-06,8.0726673221102e-06,8.527400563903142e-06,8.999725989828021e-06,9.489753342139454e-06,9.997549805560968e-06,1.052313744501068e-05,1.106649071130087e-05,1.1627534032122994e-05,1.2206139506001953e-05,1.2802124717166304e-05,1.3415250689426284e-05,1.404521999717227e-05,1.4691675051495626e-05,1.5354196579186894e-05,1.6032302311977763e-05,1.6725445902860195e-05,1.7433016085635733e-05,1.815433609301966e-05,1.8888663347648017e-05,1.9635189439212453e-05,2.0393040399681223e-05,2.1161277287158562e-05,2.1938897087395344e-05,2.27248339402983e-05,2.3517960697001574e-05,2.4317090811174083e-05,2.5120980566248943e-05,2.5928331638191457e-05,2.6737793991282286e-05,2.7547969102198638e-05,2.8357413505444007e-05,2.9164642650923173e-05,2.9968135062201666e-05,3.0766336781745974e-05,3.155766608723064e-05,3.2340518460840644e-05,3.3113271791410544e-05,3.3874291787244765e-05,3.4621937575574964e-05,3.535456746284809e-05,3.607054482842063e-05,3.6768244122776584e-05,3.744605694010417e-05,3.8102398133974386e-05,3.873571194397452e-05,3.9344478100474054e-05,3.992721787424801e-05,4.04825000374614e-05,4.1008946702533855e-05,4.150523900565939e-05,4.197012260225429e-05,4.2402412942345545e-05,4.280100029489064e-05,4.3164854491231735e-05,4.349302935932661e-05,4.378466682205535e-05,4.403900063476554e-05,4.425535973927537e-05,4.443317121378969e-05,4.4571962800580545e-05,4.46713649958251e-05,4.473111268865738e-05,4.475104633925834e-05,4.473111268865738e-05,4.46713649958251e-05,4.4571962800580545e-05,4.443317121378969e-05,4.425535973927537e-05,4.403900063476554e-05,4.378466682205535e-05,4.349302935932661e-05,4.3164854491231735e-05,4.280100029489064e-05,4.2402412942345545e-05,4.197012260225429e-05,4.150523900565939e-05,4.1008946702533855e-05,4.04825000374614e-05,3.992721787424801e-05,3.9344478100474054e-05,3.873571194397452e-05,3.8102398133974386e-05,3.744605694010417e-05,3.6768244122776584e-05,3.607054482842063e-05,3.535456746284809e-05,3.4621937575574964e-05,3.3874291787244765e-05,3.3113271791410544e-05,3.2340518460840644e-05,3.155766608723064e-05,3.0766336781745974e-05,2.9968135062201666e-05,2.9164642650923173e-05,2.8357413505444007e-05,2.7547969102198638e-05,2.6737793991282286e-05,2.5928331638191457e-05,2.5120980566248943e-05,2.4317090811174083e-05,2.3517960697001574e-05,2.27248339402983e-05,2.1938897087395344e-05,2.1161277287158562e-05,2.0393040399681223e-05,1.9635189439212453e-05,1.8888663347648017e-05,1.815433609301966e-05,1.7433016085635733e-05,1.6725445902860195e-05,1.6032302311977763e-05,1.5354196579186894e-05,1.4691675051495626e-05,1.404521999717227e-05,1.3415250689426284e-05,1.2802124717166304e-05,1.2206139506001953e-05,1.1627534032122994e-05,1.106649071130087e-05,1.052313744501068e-05,9.997549805560968e-06,9.489753342139454e-06,8.999725989828021e-06,8.527400563903142e-06,8.0726673221102e-06,7.635376578073844e-06,7.2153413495723615e-06,6.812340026053055e-06,6.426119040488253e-06,6.056395531458308e-06,5.7028599821890586e-06,5.365178824157322e-06,5.042996993799361e-06,4.735940431805158e-06,4.443618515446363e-06,4.165626415359814e-06,3.901547369183307e-06,3.650954865408175e-06,3.413414731767195e-06,3.1884871234099072e-06,2.9757284070244076e-06,2.7746929379400507e-06,2.584934728084279e-06,2.406009003464993e-06,2.2374736506039913e-06,2.0788905520541637e-06,1.9298268117910035e-06,1.7898558718759728e-06,1.6585585223440967e-06,1.5355238067703726e-06,1.4203498264188376e-06,1.3126444462750613e-06,1.2120259066078969e-06,1.1181233440009014e-06,1.0305772260393236e-06,9.490397040367652e-07,8.731748883386683e-07,8.026590508499329e-07,7.371807595037088e-07,6.764409494204334e-07,6.201529355031693e-07,5.680423711801517e-07,5.198471579409927e-07],[4.965304883346967e-07,5.425640049164125e-07,5.923372576031985e-07,6.461005890185867e-07,7.041160404860137e-07,7.666574384350482e-07,8.340104338083272e-07,9.064724900311556e-07,9.843528150441608e-07,1.0679722328658185e-06,1.1576629901487953e-06,1.2537684932246286e-06,1.3566429711978902e-06,1.4666510607561861e-06,1.584167308508523e-06,1.7095755868538933e-06,1.8432684196164141e-06,1.9856462139646993e-06,2.1371163954627647e-06,2.2980924434788475e-06,2.468992824607675e-06,2.6502398222413505e-06,2.842258260954025e-06,3.045474124945239e-06,3.2603130704152e-06,3.487198832420718e-06,3.726551527480762e-06,3.978785853963057e-06,4.2443091930842645e-06,4.523519614192391e-06,4.816803788866403e-06,5.124534819259692e-06,5.447069987025206e-06,5.784748430084543e-06,6.137888755434354e-06,6.506786597113747e-06,6.8917121293781425e-06,7.292907546030379e-06,7.71058451773994e-06,8.144921640027522e-06,8.596061885395555e-06,9.064110073836688e-06,9.549130376642568e-06,1.0051143869055022e-05,1.0570126147842327e-05,1.1106005030335611e-05,1.1658658351816037e-05,1.2227911878394481e-05,1.2813537352664153e-05,1.3415250689426284e-05,1.4032710338683504e-05,1.466551583285942e-05,1.5313206534831915e-05,1.597526060285855e-05,1.665109418782255e-05,1.73400608774367e-05,1.8041451401109585e-05,1.8754493608106046e-05,1.9478352730423668e-05,2.021213194046438e-05,2.09548732121097e-05,2.1705558492217425e-05,2.246311118785396e-05,2.3226397972770994e-05,2.399423091473715e-05,2.4765369923358344e-05,2.5538525515976514e-05,2.6312361897141406e-05,2.7085500345017336e-05,2.785652289593463e-05,2.8623976316138998e-05,2.9386376347649638e-05,3.0142212213026164e-05,3.0889951361783184e-05,3.162804443919823e-05,3.235493045635123e-05,3.3069042138429734e-05,3.37688114266512e-05,3.4452675107607745e-05,3.511908054244645e-05,3.576649146707323e-05,3.6393393833525235e-05,3.699830166180688e-05,3.757976287083914e-05,3.813636505673947e-05,3.866674118643871e-05,3.9169575174655426e-05,3.964360731249323e-05,4.008763951640163e-05,4.050054036694788e-05,4.088124990778125e-05,4.122878417632942e-05,4.154223943914115e-05,4.182079610637186e-05,4.206372230168895e-05,4.2270377065838155e-05,4.2440213174247006e-05,4.257277955133171e-05,4.26677232665995e-05,4.272479110018425e-05,4.274383066809569e-05,4.272479110018425e-05,4.26677232665995e-05,4.257277955133171e-05,4.2440213174247006e-05,4.2270377065838155e-05,4.206372230168895e-05,4.182079610637186e-05,4.154223943914115e-05,4.122878417632942e-05,4.088124990778125e-05,4.050054036694788e-05,4.008763951640163e-05,3.964360731249323e-05,3.9169575174655426e-05,3.866674118643871e-05,3.813636505673947e-05,3.757976287083914e-05,3.699830166180688e-05,3.6393393833525235e-05,3.576649146707323e-05,3.511908054244645e-05,3.4452675107607745e-05,3.37688114266512e-05,3.3069042138429734e-05,3.235493045635123e-05,3.162804443919823e-05,3.0889951361783184e-05,3.0142212213026164e-05,2.9386376347649638e-05,2.8623976316138998e-05,2.785652289593463e-05,2.7085500345017336e-05,2.6312361897141406e-05,2.5538525515976514e-05,2.4765369923358344e-05,2.399423091473715e-05,2.3226397972770994e-05,2.246311118785396e-05,2.1705558492217425e-05,2.09548732121097e-05,2.021213194046438e-05,1.9478352730423668e-05,1.8754493608106046e-05,1.8041451401109585e-05,1.73400608774367e-05,1.665109418782255e-05,1.597526060285855e-05,1.5313206534831915e-05,1.466551583285942e-05,1.4032710338683504e-05,1.3415250689426284e-05,1.2813537352664153e-05,1.2227911878394481e-05,1.1658658351816037e-05,1.1106005030335611e-05,1.0570126147842327e-05,1.0051143869055022e-05,9.549130376642568e-06,9.064110073836688e-06,8.596061885395555e-06,8.144921640027522e-06,7.71058451773994e-06,7.292907546030379e-06,6.8917121293781425e-06,6.506786597113747e-06,6.137888755434354e-06,5.784748430084543e-06,5.447069987025206e-06,5.124534819259692e-06,4.816803788866403e-06,4.523519614192391e-06,4.2443091930842645e-06,3.978785853963057e-06,3.726551527480762e-06,3.487198832420718e-06,3.2603130704152e-06,3.045474124945239e-06,2.842258260954025e-06,2.6502398222413505e-06,2.468992824607675e-06,2.2980924434788475e-06,2.1371163954627647e-06,1.9856462139646993e-06,1.8432684196164141e-06,1.7095755868538933e-06,1.584167308508523e-06,1.4666510607561861e-06,1.3566429711978902e-06,1.2537684932246286e-06,1.1576629901487953e-06,1.0679722328658185e-06,9.843528150441608e-07,9.064724900311556e-07,8.340104338083272e-07,7.666574384350482e-07,7.041160404860137e-07,6.461005890185867e-07,5.923372576031985e-07,5.425640049164125e-07,4.965304883346967e-07],[4.7383723082763523e-07,5.17766847507357e-07,5.652652806881473e-07,6.16571431420958e-07,6.719353647833148e-07,7.316183923364667e-07,7.958931097312795e-07,8.650433852276698e-07,9.393642948336144e-07,1.0191619997377397e-06,1.1047535617067444e-06,1.196466692148099e-06,1.2946394306020381e-06,1.3996197485272585e-06,1.5117650743842421e-06,1.6314417362007794e-06,1.7590243180280477e-06,1.8948949269640746e-06,2.039442367735975e-06,2.1930612221941153e-06,2.3561508314808784e-06,2.529114179094436e-06,2.712356673573706e-06,2.9062848300838747e-06,3.1113048507815698e-06,3.3278211044832865e-06,3.556234506848084e-06,3.796940803013086e-06,4.050328755384889e-06,4.316778240087856e-06,4.596658256396999e-06,4.890324854334088e-06,5.198118986475114e-06,5.520364290899539e-06,5.857364813100165e-06,6.2094026755603435e-06,6.576735704584877e-06,6.9595950248349026e-06,7.3581826328569185e-06,7.77266896170379e-06,8.203190449512195e-06,8.649847125618142e-06,9.112700228450781e-06,9.591769870036384e-06,1.008703276246008e-05,1.0598420022064701e-05,1.1125815067505421e-05,1.1669051628018453e-05,1.2227911878394481e-05,1.2802124717166304e-05,1.3391364204419354e-05,1.3995248175408686e-05,1.4613337045811712e-05,1.5245132823960286e-05,1.5890078344775503e-05,1.654755673937349e-05,1.721689115342035e-05,1.789734472629075e-05,1.8588120841930005e-05,1.9288363661038046e-05,1.9997158942790382e-05,2.0713535162793095e-05,2.1436464932343248e-05,2.216486672234294e-05,2.289760689340417e-05,2.363350203179481e-05,2.4371321588925707e-05,2.510979082007932e-05,2.5847594016045335e-05,2.6583378019274648e-05,2.731575601410527e-05,2.804331157856921e-05,2.876460298327507e-05,2.9478167720894188e-05,3.0182527247875835e-05,3.087619191819702e-05,3.155766608723064e-05,3.222545336220977e-05,3.2878061974290845e-05,3.351401024588944e-05,3.413183212579368e-05,3.473008276356454e-05,3.5307344093921616e-05,3.5862230401196694e-05,3.6393393833525235e-05,3.689952983624409e-05,3.737938247397784e-05,3.7831749611129263e-05,3.825548792094364e-05,3.864951769399018e-05,3.901282741779618e-05,3.9344478100474054e-05,3.9643607312493236e-05,3.990943292225962e-05,4.0141256502863106e-05,4.033846638922922e-05,4.050054036694788e-05,4.062704797623757e-05,4.0717652416818584e-05,4.0772112041897836e-05,4.0790281431990214e-05,4.0772112041897836e-05,4.0717652416818584e-05,4.062704797623757e-05,4.050054036694788e-05,4.033846638922922e-05,4.0141256502863106e-05,3.990943292225962e-05,3.9643607312493236e-05,3.9344478100474054e-05,3.901282741779618e-05,3.864951769399018e-05,3.825548792094364e-05,3.7831749611129263e-05,3.737938247397784e-05,3.689952983624409e-05,3.6393393833525235e-05,3.5862230401196694e-05,3.5307344093921616e-05,3.473008276356454e-05,3.413183212579368e-05,3.351401024588944e-05,3.2878061974290845e-05,3.222545336220977e-05,3.155766608723064e-05,3.087619191819702e-05,3.0182527247875835e-05,2.9478167720894188e-05,2.876460298327507e-05,2.804331157856921e-05,2.731575601410527e-05,2.6583378019274648e-05,2.5847594016045335e-05,2.510979082007932e-05,2.4371321588925707e-05,2.363350203179481e-05,2.289760689340417e-05,2.216486672234294e-05,2.1436464932343248e-05,2.0713535162793095e-05,1.9997158942790382e-05,1.9288363661038046e-05,1.8588120841930005e-05,1.789734472629075e-05,1.721689115342035e-05,1.654755673937349e-05,1.5890078344775503e-05,1.5245132823960286e-05,1.4613337045811712e-05,1.3995248175408686e-05,1.3391364204419354e-05,1.2802124717166304e-05,1.2227911878394481e-05,1.1669051628018453e-05,1.1125815067505421e-05,1.0598420022064701e-05,1.008703276246008e-05,9.591769870036384e-06,9.112700228450781e-06,8.649847125618142e-06,8.203190449512195e-06,7.77266896170379e-06,7.3581826328569185e-06,6.9595950248349026e-06,6.576735704584877e-06,6.2094026755603435e-06,5.857364813100165e-06,5.520364290899539e-06,5.198118986475114e-06,4.890324854334088e-06,4.596658256396999e-06,4.316778240087856e-06,4.050328755384889e-06,3.796940803013086e-06,3.556234506848084e-06,3.3278211044832865e-06,3.1113048507815698e-06,2.9062848300838747e-06,2.712356673573706e-06,2.529114179094436e-06,2.3561508314808784e-06,2.1930612221941153e-06,2.039442367735975e-06,1.8948949269640746e-06,1.7590243180280477e-06,1.6314417362007794e-06,1.5117650743842421e-06,1.3996197485272585e-06,1.2946394306020381e-06,1.196466692148099e-06,1.1047535617067444e-06,1.0191619997377397e-06,9.393642948336144e-07,8.650433852276698e-07,7.958931097312795e-07,7.316183923364667e-07,6.719353647833148e-07,6.16571431420958e-07,5.652652806881473e-07,5.17766847507357e-07,4.7383723082763523e-07],[4.517783938524205e-07,4.936629279812649e-07,5.389501372945615e-07,5.878678011352297e-07,6.406543431469454e-07,6.975589098926114e-07,7.58841406709561e-07,8.247724867634536e-07,8.956334892067979e-07,9.717163223174977e-07,1.0533232874901922e-06,1.1407668399809946e-06,1.2343692823668444e-06,1.3344623867764156e-06,1.4413869420825274e-06,1.55549222241826e-06,1.677135373592329e-06,1.8066807142352584e-06,1.9444989488078015e-06,2.0909662899479772e-06,2.246463488023564e-06,2.4113747661932947e-06,2.5860866597622273e-06,2.770986759144235e-06,2.96646235631631e-06,3.172898995263931e-06,3.390678927572105e-06,3.6201794750104027e-06,3.861771301689232e-06,4.1158165991253476e-06,4.3826671883428285e-06,4.66266254394709e-06,4.9561277459384795e-06,5.2633713658732525e-06,5.584683294826781e-06,5.920332521460374e-06,6.27056486933178e-06,6.635600703413179e-06,7.015632616581202e-06,7.410823107613642e-06,7.82130226295842e-06,8.24716545522414e-06,8.688471071969576e-06,9.145238288933429e-06,9.617444902337501e-06,1.0105025235308022e-05,1.0607868133783436e-05,1.1125815067505421e-05,1.1658658351816037e-05,1.2206139506001953e-05,1.2767947763830565e-05,1.3343718751708098e-05,1.3933033349552168e-05,1.453541674900803e-05,1.5150337723046481e-05,1.577720812026142e-05,1.6415382596336392e-05,1.7064158594173413e-05,1.7722776583076525e-05,1.8390420566160665e-05,1.906621886381855e-05,1.9749245179630837e-05,2.0438519953554787e-05,2.1133012005583924e-05,2.1831640471344164e-05,2.2533277029293036e-05,2.323674841732914e-05,2.3940839234712318e-05,2.4644295023254944e-05,2.534582561978623e-05,2.6044108769929397e-05,2.6737793991282286e-05,2.7425506672171452e-05,2.810585239027429e-05,2.8777421433590295e-05,2.9438793504506922e-05,3.008854258606425e-05,3.0725241947991123e-05,3.134746926867943e-05,3.195381184799555e-05,3.254287188471427e-05,3.3113271791410544e-05,3.3663659518871955e-05,3.4192713861506813e-05,3.469914971483008e-05,3.518172325591678e-05,3.5639237017725964e-05,3.607054482842063e-05,3.647455658724191e-05,3.685024284913835e-05,3.7196639191201556e-05,3.75128503350126e-05,3.779805400025504e-05,3.805150446638943e-05,3.827253582080459e-05,3.8460564873647655e-05,3.8615093721478205e-05,3.873571194397452e-05,3.882209842012813e-05,3.887402275267822e-05,3.88913462919427e-05,3.887402275267822e-05,3.882209842012813e-05,3.873571194397452e-05,3.8615093721478205e-05,3.8460564873647655e-05,3.827253582080459e-05,3.805150446638943e-05,3.779805400025504e-05,3.75128503350126e-05,3.7196639191201556e-05,3.685024284913835e-05,3.647455658724191e-05,3.607054482842063e-05,3.5639237017725964e-05,3.518172325591678e-05,3.469914971483008e-05,3.4192713861506813e-05,3.3663659518871955e-05,3.3113271791410544e-05,3.254287188471427e-05,3.195381184799555e-05,3.134746926867943e-05,3.0725241947991123e-05,3.008854258606425e-05,2.9438793504506922e-05,2.8777421433590295e-05,2.810585239027429e-05,2.7425506672171452e-05,2.6737793991282286e-05,2.6044108769929397e-05,2.534582561978623e-05,2.4644295023254944e-05,2.3940839234712318e-05,2.323674841732914e-05,2.2533277029293036e-05,2.1831640471344164e-05,2.1133012005583924e-05,2.0438519953554787e-05,1.9749245179630837e-05,1.906621886381855e-05,1.8390420566160665e-05,1.7722776583076525e-05,1.7064158594173413e-05,1.6415382596336392e-05,1.577720812026142e-05,1.5150337723046481e-05,1.453541674900803e-05,1.3933033349552168e-05,1.3343718751708098e-05,1.2767947763830565e-05,1.2206139506001953e-05,1.1658658351816037e-05,1.1125815067505421e-05,1.0607868133783436e-05,1.0105025235308022e-05,9.617444902337501e-06,9.145238288933429e-06,8.688471071969576e-06,8.24716545522414e-06,7.82130226295842e-06,7.410823107613642e-06,7.015632616581202e-06,6.635600703413179e-06,6.27056486933178e-06,5.920332521460374e-06,5.584683294826781e-06,5.2633713658732525e-06,4.9561277459384795e-06,4.66266254394709e-06,4.3826671883428285e-06,4.1158165991253476e-06,3.861771301689232e-06,3.6201794750104027e-06,3.390678927572105e-06,3.172898995263931e-06,2.96646235631631e-06,2.770986759144235e-06,2.5860866597622273e-06,2.4113747661932947e-06,2.246463488023564e-06,2.0909662899479772e-06,1.9444989488078015e-06,1.8066807142352584e-06,1.677135373592329e-06,1.55549222241826e-06,1.4413869420825274e-06,1.3344623867764156e-06,1.2343692823668444e-06,1.1407668399809946e-06,1.0533232874901922e-06,9.717163223174977e-07,8.956334892067979e-07,8.247724867634536e-07,7.58841406709561e-07,6.975589098926114e-07,6.406543431469454e-07,5.878678011352297e-07,5.389501372945615e-07,4.936629279812649e-07,4.517783938524205e-07],[4.303628224889505e-07,4.7026191144850916e-07,5.134023791820876e-07,5.600012076486669e-07,6.10285518538077e-07,6.6449264816273e-07,7.228701816131852e-07,7.856759423309211e-07,8.531779331983196e-07,9.256542252167744e-07,1.0033927898413388e-06,1.0866912710668388e-06,1.1758566934181183e-06,1.2712051020882677e-06,1.3730611315953936e-06,1.4817574994925713e-06,1.5976344218688627e-06,1.7210389476231325e-06,1.8523242087780935e-06,1.9918485844305708e-06,2.1399747763059473e-06,2.2970687943004634e-06,2.463498850854422e-06,2.6396341635018044e-06,2.825843665486461e-06,3.022494624920462e-06,3.229951173584484e-06,3.4485727471309367e-06,3.678712439144907e-06,3.920715272242689e-06,4.174916390138534e-06,4.44163917538313e-06,4.721193298267016e-06,5.0138727031835005e-06,5.319953539552538e-06,5.6396920452134636e-06,5.973322390993363e-06,6.321054495942581e-06,6.683071823491656e-06,7.059529169517532e-06,7.450550454003229e-06,7.856226528626443e-06,8.276613013210814e-06,8.711728174510893e-06,9.161550861270257e-06,9.626018509884371e-06,1.0105025235308022e-05,1.0598420022064701e-05,1.1106005030335611e-05,1.1627534032122994e-05,1.2162710992391045e-05,1.2711188809883066e-05,1.3272568231991868e-05,1.3846396957619237e-05,1.4432168941396952e-05,1.5029323911956078e-05,1.563724711612274e-05,1.6255269299988914e-05,1.6882666936757996e-05,1.7518662710101054e-05,1.816242626048519e-05,1.8813075200556517e-05,1.9469676404183894e-05,2.0131247572204468e-05,2.0796759076267048e-05,2.146513608045585e-05,2.213526093860552e-05,2.2805975863402387e-05,2.347608586151861e-05,2.4144361927160176e-05,2.480954448454085e-05,2.5470347067937132e-05,2.61254602261498e-05,2.6773555636411172e-05,2.7413290411049582e-05,2.8043311578569205e-05,2.866226071924006e-05,2.92687787338339e-05,2.9861510722802436e-05,3.0439110951986833e-05,3.1000247879886316e-05,3.154360922060911e-05,3.206790701589268e-05,3.2571882689020485e-05,3.30543120530883e-05,3.351401024588944e-05,3.394983656370148e-05,3.436069916646845e-05,3.47455596272851e-05,3.510343729970184e-05,3.5433413477178946e-05,3.573463532002218e-05,3.60063195263236e-05,3.624775572480274e-05,3.645830956898622e-05,3.66374255138667e-05,3.678462925803257e-05,3.689952983624409e-05,3.6981821349535196e-05,3.7031284322125724e-05,3.704778667671995e-05,3.7031284322125724e-05,3.6981821349535196e-05,3.689952983624409e-05,3.678462925803257e-05,3.66374255138667e-05,3.645830956898622e-05,3.624775572480274e-05,3.60063195263236e-05,3.573463532002218e-05,3.5433413477178946e-05,3.510343729970184e-05,3.47455596272851e-05,3.436069916646845e-05,3.394983656370148e-05,3.351401024588944e-05,3.30543120530883e-05,3.2571882689020485e-05,3.206790701589268e-05,3.154360922060911e-05,3.1000247879886316e-05,3.0439110951986833e-05,2.9861510722802436e-05,2.92687787338339e-05,2.866226071924006e-05,2.8043311578569205e-05,2.7413290411049582e-05,2.6773555636411172e-05,2.61254602261498e-05,2.5470347067937132e-05,2.480954448454085e-05,2.4144361927160176e-05,2.347608586151861e-05,2.2805975863402387e-05,2.213526093860552e-05,2.146513608045585e-05,2.0796759076267048e-05,2.0131247572204468e-05,1.9469676404183894e-05,1.8813075200556517e-05,1.816242626048519e-05,1.7518662710101054e-05,1.6882666936757996e-05,1.6255269299988914e-05,1.563724711612274e-05,1.5029323911956078e-05,1.4432168941396952e-05,1.3846396957619237e-05,1.3272568231991868e-05,1.2711188809883066e-05,1.2162710992391045e-05,1.1627534032122994e-05,1.1106005030335611e-05,1.0598420022064701e-05,1.0105025235308022e-05,9.626018509884371e-06,9.161550861270257e-06,8.711728174510893e-06,8.276613013210814e-06,7.856226528626443e-06,7.450550454003229e-06,7.059529169517532e-06,6.683071823491656e-06,6.321054495942581e-06,5.973322390993363e-06,5.6396920452134636e-06,5.319953539552538e-06,5.0138727031835005e-06,4.721193298267016e-06,4.44163917538313e-06,4.174916390138534e-06,3.920715272242689e-06,3.678712439144907e-06,3.4485727471309367e-06,3.229951173584484e-06,3.022494624920462e-06,2.825843665486461e-06,2.6396341635018044e-06,2.463498850854422e-06,2.2970687943004634e-06,2.1399747763059473e-06,1.9918485844305708e-06,1.8523242087780935e-06,1.7210389476231325e-06,1.5976344218688627e-06,1.4817574994925713e-06,1.3730611315953936e-06,1.2712051020882677e-06,1.1758566934181183e-06,1.0866912710668388e-06,1.0033927898413388e-06,9.256542252167744e-07,8.531779331983196e-07,7.856759423309211e-07,7.228701816131852e-07,6.6449264816273e-07,6.10285518538077e-07,5.600012076486669e-07,5.134023791820876e-07,4.7026191144850916e-07,4.303628224889505e-07],[4.0959726838087123e-07,4.475711754999979e-07,4.886300607404871e-07,5.329804364055452e-07,5.808384652743045e-07,6.324300318799346e-07,6.879907750171587e-07,7.477660778181522e-07,8.120110116850102e-07,8.809902303392788e-07,9.549778102466693e-07,1.0342570337003079e-06,1.1191201109008213e-06,1.2098678374583564e-06,1.306809183862207e-06,1.4102608136199082e-06,1.5205465269610733e-06,1.637996627233347e-06,1.7629472073897496e-06,1.8957393542794094e-06,2.03671826880768e-06,2.1862323004273173e-06,2.3446318948595837e-06,2.5122684544223715e-06,2.689493110860803e-06,2.876655411132947e-06,3.074101917197463e-06,3.28217472147891e-06,3.50120988034735e-06,3.7315357686385683e-06,3.973471358955911e-06,4.2273244302302744e-06,4.49338971076642e-06,4.771946961766439e-06,5.063259008089189e-06,5.367569723772023e-06,5.6851019806014815e-06,6.01605556876647e-06,6.3606050993534225e-06,6.718897899141142e-06,7.091051908815696e-06,7.4771535963456606e-06,7.877255897827377e-06,8.291376198621226e-06,8.71949436804584e-06,9.161550861270257e-06,9.617444902337501e-06,1.008703276246008e-05,1.0570126147842327e-05,1.106649071130087e-05,1.1575844701867284e-05,1.2097857766362423e-05,1.2632149916625704e-05,1.3178290675662764e-05,1.3735798415438676e-05,1.4304139898391371e-05,1.4882730033970298e-05,1.5470931860620565e-05,1.6068056762634675e-05,1.6673364930186216e-05,1.728606606964694e-05,1.790532036997621e-05,1.8530239729566738e-05,1.91598892464409e-05,1.9793288973126347e-05,2.0429415935908664e-05,2.1067206416472934e-05,2.170555849221742e-05,2.2343334829763778e-05,2.2979365724412283e-05,2.361245237651203e-05,2.424137039394856e-05,2.486487350821016e-05,2.548169748979387e-05,2.6090564247067895e-05,2.6690186091133646e-05,2.72792701477426e-05,2.7856522895934633e-05,2.842065481178967e-05,2.8970385094535387e-05,2.9504446451243685e-05,3.0021589915487833e-05,3.052058967463123e-05,3.1000247879886316e-05,3.1459399412925556e-05,3.189691658265228e-05,3.2311713725750975e-05,3.270275168483845e-05,3.3069042138429734e-05,3.3409651757514954e-05,3.372370616431459e-05,3.4010393669735456e-05,3.426896876718394e-05,3.4498755361698294e-05,3.469914971483008e-05,3.4869623087325883e-05,3.500972406342106e-05,3.511908054244645e-05,3.519740138545057e-05,3.524447770663907e-05,3.526018380161389e-05,3.524447770663907e-05,3.519740138545057e-05,3.511908054244645e-05,3.500972406342106e-05,3.4869623087325883e-05,3.469914971483008e-05,3.4498755361698294e-05,3.426896876718394e-05,3.4010393669735456e-05,3.372370616431459e-05,3.3409651757514954e-05,3.3069042138429734e-05,3.270275168483845e-05,3.2311713725750975e-05,3.189691658265228e-05,3.1459399412925556e-05,3.1000247879886316e-05,3.052058967463123e-05,3.0021589915487833e-05,2.9504446451243685e-05,2.8970385094535387e-05,2.842065481178967e-05,2.7856522895934633e-05,2.72792701477426e-05,2.6690186091133646e-05,2.6090564247067895e-05,2.548169748979387e-05,2.486487350821016e-05,2.424137039394856e-05,2.361245237651203e-05,2.2979365724412283e-05,2.2343334829763778e-05,2.170555849221742e-05,2.1067206416472934e-05,2.0429415935908664e-05,1.9793288973126347e-05,1.91598892464409e-05,1.8530239729566738e-05,1.790532036997621e-05,1.728606606964694e-05,1.6673364930186216e-05,1.6068056762634675e-05,1.5470931860620565e-05,1.4882730033970298e-05,1.4304139898391371e-05,1.3735798415438676e-05,1.3178290675662764e-05,1.2632149916625704e-05,1.2097857766362423e-05,1.1575844701867284e-05,1.106649071130087e-05,1.0570126147842327e-05,1.008703276246008e-05,9.617444902337501e-06,9.161550861270257e-06,8.71949436804584e-06,8.291376198621226e-06,7.877255897827377e-06,7.4771535963456606e-06,7.091051908815696e-06,6.718897899141142e-06,6.3606050993534225e-06,6.01605556876647e-06,5.6851019806014815e-06,5.367569723772023e-06,5.063259008089189e-06,4.771946961766439e-06,4.49338971076642e-06,4.2273244302302744e-06,3.973471358955911e-06,3.7315357686385683e-06,3.50120988034735e-06,3.28217472147891e-06,3.074101917197463e-06,2.876655411132947e-06,2.689493110860803e-06,2.5122684544223715e-06,2.3446318948595837e-06,2.1862323004273173e-06,2.03671826880768e-06,1.8957393542794094e-06,1.7629472073897496e-06,1.637996627233347e-06,1.5205465269610733e-06,1.4102608136199082e-06,1.306809183862207e-06,1.2098678374583564e-06,1.1191201109008213e-06,1.0342570337003079e-06,9.549778102466693e-07,8.809902303392788e-07,8.120110116850102e-07,7.477660778181522e-07,6.879907750171587e-07,6.324300318799346e-07,5.808384652743045e-07,5.329804364055452e-07,4.886300607404871e-07,4.475711754999979e-07,4.0959726838087123e-07],[3.894864654674403e-07,4.2559589296016587e-07,4.6463882933414835e-07,5.068116473517583e-07,5.523198964228898e-07,6.013783703833898e-07,6.542111384064893e-07,7.110515355659647e-07,7.721421095214636e-07,8.377345197700947e-07,9.080893859061238e-07,9.834760813546111e-07,1.0641724690970792e-06,1.1504645759898278e-06,1.2426462023901807e-06,1.3410184639544502e-06,1.4458892626553424e-06,1.5575726842872157e-06,1.6763883199861575e-06,1.802660509589222e-06,1.9367175049937763e-06,2.0788905520541633e-06,2.229512889968614e-06,2.3889186675640818e-06,2.557441776379594e-06,2.7354146009785324e-06,2.9231666874852578e-06,3.1210233319395407e-06,3.3293040906906942e-06,3.5483212157091592e-06,3.778378018372839e-06,4.019767165984947e-06,4.272768915994826e-06,4.537649293618435e-06,4.8146582192854645e-06,5.104027593069865e-06,5.405969343983605e-06,5.720673452723624e-06,6.04830595715232e-06,6.389006950455794e-06,6.742888582554215e-06,7.110033075928192e-06,7.4904907675664e-06,7.884278189225978e-06,8.291376198621226e-06,8.711728174510893e-06,9.145238288933429e-06,9.591769870036384e-06,1.0051143869055022e-05,1.052313744501068e-05,1.1007482680616537e-05,1.1503865442693407e-05,1.2011924400107009e-05,1.2531250211838872e-05,1.306138489729324e-05,1.36018214003217e-05,1.4152003357715552e-05,1.4711325082074505e-05,1.5279131768011203e-05,1.5854719929597766e-05,1.6437338075807002e-05,1.702618762945316e-05,1.762042409380077e-05,1.821915846959392e-05,1.882145892376921e-05,1.9426352709565256e-05,2.003282833613796e-05,2.063983798414746e-05,2.1246300162109824e-05,2.1851102596618218e-05,2.2453105347846677e-05,2.3051144140069208e-05,2.3644033895271084e-05,2.423057245631246e-05,2.4809544484540848e-05,2.537972551525288e-05,2.5939886152990566e-05,2.6488796387337188e-05,2.7025230008665546e-05,2.7547969102198635e-05,2.805580859778248e-05,2.854756085195217e-05,2.902206023820575e-05,2.9478167720894185e-05,2.9914775387796686e-05,3.033081091628494e-05,3.0725241947991123e-05,3.10970803470865e-05,3.144538631765044e-05,3.176927235616365e-05,3.206790701589268e-05,3.2340518460840644e-05,3.258639778801785e-05,3.2804902098027e-05,3.299545729535404e-05,3.3157560601296905e-05,3.329078276413884e-05,3.339476995296931e-05,3.346924532345869e-05,3.351401024588944e-05,3.352894518781965e-05,3.351401024588944e-05,3.346924532345869e-05,3.339476995296931e-05,3.329078276413884e-05,3.3157560601296905e-05,3.299545729535404e-05,3.2804902098027e-05,3.258639778801785e-05,3.2340518460840644e-05,3.206790701589268e-05,3.176927235616365e-05,3.144538631765044e-05,3.10970803470865e-05,3.0725241947991123e-05,3.033081091628494e-05,2.9914775387796686e-05,2.9478167720894185e-05,2.902206023820575e-05,2.854756085195217e-05,2.805580859778248e-05,2.7547969102198635e-05,2.7025230008665546e-05,2.6488796387337188e-05,2.5939886152990566e-05,2.537972551525288e-05,2.4809544484540848e-05,2.423057245631246e-05,2.3644033895271084e-05,2.3051144140069208e-05,2.2453105347846677e-05,2.1851102596618218e-05,2.1246300162109824e-05,2.063983798414746e-05,2.003282833613796e-05,1.9426352709565256e-05,1.882145892376921e-05,1.821915846959392e-05,1.762042409380077e-05,1.702618762945316e-05,1.6437338075807002e-05,1.5854719929597766e-05,1.5279131768011203e-05,1.4711325082074505e-05,1.4152003357715552e-05,1.36018214003217e-05,1.306138489729324e-05,1.2531250211838872e-05,1.2011924400107009e-05,1.1503865442693407e-05,1.1007482680616537e-05,1.052313744501068e-05,1.0051143869055022e-05,9.591769870036384e-06,9.145238288933429e-06,8.711728174510893e-06,8.291376198621226e-06,7.884278189225978e-06,7.4904907675664e-06,7.110033075928192e-06,6.742888582554215e-06,6.389006950455794e-06,6.04830595715232e-06,5.720673452723624e-06,5.405969343983605e-06,5.104027593069865e-06,4.8146582192854645e-06,4.537649293618435e-06,4.272768915994826e-06,4.019767165984947e-06,3.778378018372839e-06,3.5483212157091592e-06,3.3293040906906942e-06,3.1210233319395407e-06,2.9231666874852578e-06,2.7354146009785324e-06,2.557441776379594e-06,2.3889186675640818e-06,2.229512889968614e-06,2.0788905520541633e-06,1.9367175049937763e-06,1.802660509589222e-06,1.6763883199861575e-06,1.5575726842872157e-06,1.4458892626553424e-06,1.3410184639544502e-06,1.2426462023901807e-06,1.1504645759898278e-06,1.0641724690970792e-06,9.834760813546111e-07,9.080893859061238e-07,8.377345197700947e-07,7.721421095214636e-07,7.110515355659647e-07,6.542111384064893e-07,6.013783703833898e-07,5.523198964228898e-07,5.068116473517583e-07,4.6463882933414835e-07,4.2559589296016587e-07,3.894864654674403e-07],[3.7003321086040276e-07,4.0433912026197375e-07,4.414320217843526e-07,4.814984801742712e-07,5.247337784900054e-07,5.713419824945496e-07,6.215359700231472e-07,6.755374220177852e-07,7.335767718753683e-07,7.958931097312796e-07,8.627340382978845e-07,9.343554769003282e-07,1.0110214104016242e-06,1.093003579787436e-06,1.1805811112898961e-06,1.2740400810708859e-06,1.3736730126599558e-06,1.47977830455173e-06,1.5926595856132788e-06,1.712624996234464e-06,1.8399863934740617e-06,1.9750584788119284e-06,2.1181578475124414e-06,2.269601959036469e-06,2.429708028407431e-06,2.598791838940369e-06,2.777166477279712e-06,2.965140992259627e-06,3.163018979697866e-06,3.371097095857134e-06,3.5896635029535987e-06,3.818996250756695e-06,4.059361599003392e-06,4.311012286039072e-06,4.574185749790998e-06,4.849102307873701e-06,5.135963304312519e-06,5.434949231046256e-06,5.746217833025753e-06,6.069902206355927e-06,6.406108899527517e-06,6.754916028344797e-06,7.116371415669909e-06,7.4904907675664e-06,7.877255897827377e-06,8.276613013210814e-06,8.688471071969576e-06,9.112700228450781e-06,9.549130376642568e-06,9.997549805560968e-06,1.0457703979290931e-05,1.0929294454319683e-05,1.141197794652401e-05,1.1905365559793694e-05,1.240902218778902e-05,1.2922466099740583e-05,1.3445168720504508e-05,1.3976554614286796e-05,1.4516001680548778e-05,1.5062841569604993e-05,1.5616360324328864e-05,1.617579925319613e-05,1.6740356038626362e-05,1.7309186083237394e-05,1.788140409521294e-05,1.8456085912510458e-05,1.9032270564113025e-05,1.9608962564967612e-05,2.0185134439662874e-05,2.0759729468295616e-05,2.1331664646367897e-05,2.1899833848960324e-05,2.2463111187853966e-05,2.3020354548737127e-05,2.3570409294148093e-05,2.4112112116383145e-05,2.4644295023254948e-05,2.516578943833212e-05,2.5675430396138905e-05,2.617206081175594e-05,2.6654535803350546e-05,2.7121727045387334e-05,2.7572527129636686e-05,2.800585391061764e-05,2.842065481178967e-05,2.8815911068650238e-05,2.9190641884906088e-05,2.9543908478068247e-05,2.987481799117531e-05,3.0182527247875835e-05,3.0466246328797206e-05,3.072524194799113e-05,3.0958840609270374e-05,3.116643152343085e-05,3.134746926867943e-05,3.1501476178052096e-05,3.1628044439198235e-05,3.172683789361289e-05,3.179759352420748e-05,3.184012262200574e-05,3.185431162472197e-05,3.184012262200574e-05,3.179759352420748e-05,3.172683789361289e-05,3.1628044439198235e-05,3.1501476178052096e-05,3.134746926867943e-05,3.116643152343085e-05,3.0958840609270374e-05,3.072524194799113e-05,3.0466246328797206e-05,3.0182527247875835e-05,2.987481799117531e-05,2.9543908478068247e-05,2.9190641884906088e-05,2.8815911068650238e-05,2.842065481178967e-05,2.800585391061764e-05,2.7572527129636686e-05,2.7121727045387334e-05,2.6654535803350546e-05,2.617206081175594e-05,2.5675430396138905e-05,2.516578943833212e-05,2.4644295023254948e-05,2.4112112116383145e-05,2.3570409294148093e-05,2.3020354548737127e-05,2.2463111187853966e-05,2.1899833848960324e-05,2.1331664646367897e-05,2.0759729468295616e-05,2.0185134439662874e-05,1.9608962564967612e-05,1.9032270564113025e-05,1.8456085912510458e-05,1.788140409521294e-05,1.7309186083237394e-05,1.6740356038626362e-05,1.617579925319613e-05,1.5616360324328864e-05,1.5062841569604993e-05,1.4516001680548778e-05,1.3976554614286796e-05,1.3445168720504508e-05,1.2922466099740583e-05,1.240902218778902e-05,1.1905365559793694e-05,1.141197794652401e-05,1.0929294454319683e-05,1.0457703979290931e-05,9.997549805560968e-06,9.549130376642568e-06,9.112700228450781e-06,8.688471071969576e-06,8.276613013210814e-06,7.877255897827377e-06,7.4904907675664e-06,7.116371415669909e-06,6.754916028344797e-06,6.406108899527517e-06,6.069902206355927e-06,5.746217833025753e-06,5.434949231046256e-06,5.135963304312519e-06,4.849102307873701e-06,4.574185749790998e-06,4.311012286039072e-06,4.059361599003392e-06,3.818996250756695e-06,3.5896635029535987e-06,3.371097095857134e-06,3.163018979697866e-06,2.965140992259627e-06,2.777166477279712e-06,2.598791838940369e-06,2.429708028407431e-06,2.269601959036469e-06,2.1181578475124414e-06,1.9750584788119284e-06,1.8399863934740617e-06,1.712624996234464e-06,1.5926595856132788e-06,1.47977830455173e-06,1.3736730126599558e-06,1.2740400810708859e-06,1.1805811112898961e-06,1.093003579787436e-06,1.0110214104016242e-06,9.343554769003282e-07,8.627340382978845e-07,7.958931097312796e-07,7.335767718753683e-07,6.755374220177852e-07,6.215359700231472e-07,5.713419824945496e-07,5.247337784900054e-07,4.814984801742712e-07,4.414320217843526e-07,4.0433912026197375e-07,3.7003321086040276e-07],[3.5123845019625447e-07,3.8380189071221046e-07,4.1901076619046496e-07,4.570421653640835e-07,4.980814524563986e-07,5.423223283035205e-07,5.899668582302296e-07,6.412254635398477e-07,6.96316873435124e-07,7.554680341634345e-07,8.189139721775491e-07,8.86897608124861e-07,9.596695185250953e-07,1.0374876420709374e-06,1.1206169275894265e-06,1.209328920835885e-06,1.3039012874580162e-06,1.4046172696668338e-06,1.5117650743842425e-06,1.625637190905261e-06,1.7465296364164345e-06,1.8747411280512937e-06,2.0105721805386123e-06,2.15432412890931e-06,2.3062980761723463e-06,2.4667937663477645e-06,2.6361083837545358e-06,2.8145352799901977e-06,3.0023626306059814e-06,3.1998720240725837e-06,3.407336986244553e-06,3.625021444162024e-06,3.853178133673072e-06,4.09204695601394e-06,4.341853289142994e-06,4.602806260282347e-06,4.875096986773204e-06,5.158896792991318e-06,5.454355411691569e-06,5.76159917874935e-06,6.080729230834718e-06,6.411819716086882e-06,6.754916028344797e-06,7.110033075928192e-06,7.4771535963456606e-06,7.856226528626443e-06,8.24716545522414e-06,8.649847125618142e-06,9.064110073836688e-06,9.489753342139454e-06,9.926535323022848e-06,1.0374172731544279e-05,1.0832339719699084e-05,1.1300667144223825e-05,1.1778741998739757e-05,1.2266107020590738e-05,1.276226048206991e-05,1.3266656174970714e-05,1.3778703596541898e-05,1.4297768343976303e-05,1.4823172723522976e-05,1.5354196579186894e-05,1.5890078344775503e-05,1.6430016321774058e-05,1.6973170184189113e-05,1.7518662710101054e-05,1.806558173822068e-05,1.8612982346262736e-05,1.91598892464409e-05,1.9705299391865857e-05,2.024818478610311e-05,2.0787495486631267e-05,2.13221627914487e-05,2.185110259661822e-05,2.2373218911129598e-05,2.288740751411031e-05,2.3392559738138942e-05,2.3887566361225022e-05,2.4371321588925707e-05,2.4842727107084608e-05,2.5300696184811722e-05,2.5744157806585368e-05,2.617206081175594e-05,2.6583378019274648e-05,2.697711031516481e-05,2.73522906801036e-05,2.770798813449273e-05,2.804331157856921e-05,2.8357413505444014e-05,2.8649493565455995e-05,2.8918801960889515e-05,2.9164642650923173e-05,2.938637634764964e-05,2.9583423285125908e-05,2.975526574467239e-05,2.990145032102918e-05,3.0021589915487837e-05,3.0115365443736923e-05,3.0182527247875835e-05,3.022289620385191e-05,3.0236364517445406e-05,3.022289620385191e-05,3.0182527247875835e-05,3.0115365443736923e-05,3.0021589915487837e-05,2.990145032102918e-05,2.975526574467239e-05,2.9583423285125908e-05,2.938637634764964e-05,2.9164642650923173e-05,2.8918801960889515e-05,2.8649493565455995e-05,2.8357413505444014e-05,2.804331157856921e-05,2.770798813449273e-05,2.73522906801036e-05,2.697711031516481e-05,2.6583378019274648e-05,2.617206081175594e-05,2.5744157806585368e-05,2.5300696184811722e-05,2.4842727107084608e-05,2.4371321588925707e-05,2.3887566361225022e-05,2.3392559738138942e-05,2.288740751411031e-05,2.2373218911129598e-05,2.185110259661822e-05,2.13221627914487e-05,2.0787495486631267e-05,2.024818478610311e-05,1.9705299391865857e-05,1.91598892464409e-05,1.8612982346262736e-05,1.806558173822068e-05,1.7518662710101054e-05,1.6973170184189113e-05,1.6430016321774058e-05,1.5890078344775503e-05,1.5354196579186894e-05,1.4823172723522976e-05,1.4297768343976303e-05,1.3778703596541898e-05,1.3266656174970714e-05,1.276226048206991e-05,1.2266107020590738e-05,1.1778741998739757e-05,1.1300667144223825e-05,1.0832339719699084e-05,1.0374172731544279e-05,9.926535323022848e-06,9.489753342139454e-06,9.064110073836688e-06,8.649847125618142e-06,8.24716545522414e-06,7.856226528626443e-06,7.4771535963456606e-06,7.110033075928192e-06,6.754916028344797e-06,6.411819716086882e-06,6.080729230834718e-06,5.76159917874935e-06,5.454355411691569e-06,5.158896792991318e-06,4.875096986773204e-06,4.602806260282347e-06,4.341853289142994e-06,4.09204695601394e-06,3.853178133673072e-06,3.625021444162024e-06,3.407336986244553e-06,3.1998720240725837e-06,3.0023626306059814e-06,2.8145352799901977e-06,2.6361083837545358e-06,2.4667937663477645e-06,2.3062980761723463e-06,2.15432412890931e-06,2.0105721805386123e-06,1.8747411280512937e-06,1.7465296364164345e-06,1.625637190905261e-06,1.5117650743842425e-06,1.4046172696668338e-06,1.3039012874580162e-06,1.209328920835885e-06,1.1206169275894265e-06,1.0374876420709374e-06,9.596695185250953e-07,8.86897608124861e-07,8.189139721775491e-07,7.554680341634345e-07,6.96316873435124e-07,6.412254635398477e-07,5.899668582302296e-07,5.423223283035205e-07,4.980814524563986e-07,4.570421653640835e-07,4.1901076619046496e-07,3.8380189071221046e-07,3.5123845019625447e-07],[3.3310136679964454e-07,3.639833119212652e-07,3.973740882976329e-07,4.3344164023836366e-07,4.723617602175258e-07,5.143181468399345e-07,5.595024312776028e-07,6.081141691990549e-07,6.603607951728979e-07,7.164575365045387e-07,7.766272834629896e-07,8.411004128752333e-07,9.101145621103042e-07,9.839143505458242e-07,1.0627510457077994e-06,1.146882171401484e-06,1.2365710553084346e-06,1.3320863137136019e-06,1.4337012712474594e-06,1.5416933137824543e-06,1.6563431729109836e-06,1.7779341407538548e-06,1.9067512142037554e-06,2.0430801680971462e-06,2.1872065572295696e-06,2.3394146475824693e-06,2.4999862776128418e-06,2.6691996509684877e-06,2.84732806252911e-06,3.0346385602343967e-06,3.2313905457414113e-06,3.4378343175517977e-06,3.6542095608605732e-06,3.880743788998485e-06,4.117650741964486e-06,4.36512874816904e-06,4.623359056127335e-06,4.892504143448803e-06,5.172706011059816e-06,5.4640844711641525e-06,5.766735437984788e-06,6.080729230834718e-06,6.406108899527517e-06,6.742888582554215e-06,7.091051908815696e-06,7.450550454003229e-06,7.82130226295842e-06,8.203190449512195e-06,8.596061885395555e-06,8.999725989828021e-06,9.413953631318927e-06,9.838476153058288e-06,1.0272984533025141e-05,1.0717128689599637e-05,1.1170516943029232e-05,1.163271564256851e-05,1.2103248968486395e-05,1.258159891741492e-05,1.3067205478701967e-05,1.3559467008529648e-05,1.4057740807573367e-05,1.4561343906909544e-05,1.5069554065737066e-05,1.558161098326634e-05,1.6096717725856367e-05,1.661404236915419e-05,1.7132719853619765e-05,1.7651854050413663e-05,1.8170520033194628e-05,1.868776654992973e-05,1.9202618687373533e-05,1.9714080719435305e-05,2.0221139129237125e-05,2.0722765793283328e-05,2.1217921314824196e-05,2.170555849221742e-05,2.2184625906880595e-05,2.2654071614298784e-05,2.3112846920514647e-05,2.355991022559382e-05,2.3994230914737155e-05,2.4414793277011137e-05,2.4820600431097917e-05,2.5210678237033285e-05,2.5584079172611075e-05,2.5939886152990563e-05,2.627721627205347e-05,2.659522444422092e-05,2.689310692576e-05,2.7170104695083233e-05,2.7425506672171452e-05,2.765865275802687e-05,2.7868936675985894e-05,2.805580859778248e-05,2.821877753844704e-05,2.8357413505444007e-05,2.847134938888323e-05,2.8560282581176602e-05,2.8623976316138998e-05,2.8662260719240055e-05,2.8675033562486495e-05,2.8662260719240055e-05,2.8623976316138998e-05,2.8560282581176602e-05,2.847134938888323e-05,2.8357413505444007e-05,2.821877753844704e-05,2.805580859778248e-05,2.7868936675985894e-05,2.765865275802687e-05,2.7425506672171452e-05,2.7170104695083233e-05,2.689310692576e-05,2.659522444422092e-05,2.627721627205347e-05,2.5939886152990563e-05,2.5584079172611075e-05,2.5210678237033285e-05,2.4820600431097917e-05,2.4414793277011137e-05,2.3994230914737155e-05,2.355991022559382e-05,2.3112846920514647e-05,2.2654071614298784e-05,2.2184625906880595e-05,2.170555849221742e-05,2.1217921314824196e-05,2.0722765793283328e-05,2.0221139129237125e-05,1.9714080719435305e-05,1.9202618687373533e-05,1.868776654992973e-05,1.8170520033194628e-05,1.7651854050413663e-05,1.7132719853619765e-05,1.661404236915419e-05,1.6096717725856367e-05,1.558161098326634e-05,1.5069554065737066e-05,1.4561343906909544e-05,1.4057740807573367e-05,1.3559467008529648e-05,1.3067205478701967e-05,1.258159891741492e-05,1.2103248968486395e-05,1.163271564256851e-05,1.1170516943029232e-05,1.0717128689599637e-05,1.0272984533025141e-05,9.838476153058288e-06,9.413953631318927e-06,8.999725989828021e-06,8.596061885395555e-06,8.203190449512195e-06,7.82130226295842e-06,7.450550454003229e-06,7.091051908815696e-06,6.742888582554215e-06,6.406108899527517e-06,6.080729230834718e-06,5.766735437984788e-06,5.4640844711641525e-06,5.172706011059816e-06,4.892504143448803e-06,4.623359056127335e-06,4.36512874816904e-06,4.117650741964486e-06,3.880743788998485e-06,3.6542095608605732e-06,3.4378343175517977e-06,3.2313905457414113e-06,3.0346385602343967e-06,2.84732806252911e-06,2.6691996509684877e-06,2.4999862776128418e-06,2.3394146475824693e-06,2.1872065572295696e-06,2.0430801680971462e-06,1.9067512142037554e-06,1.7779341407538548e-06,1.6563431729109836e-06,1.5416933137824543e-06,1.4337012712474594e-06,1.3320863137136019e-06,1.2365710553084346e-06,1.146882171401484e-06,1.0627510457077994e-06,9.839143505458242e-07,9.101145621103042e-07,8.411004128752333e-07,7.766272834629896e-07,7.164575365045387e-07,6.603607951728979e-07,6.081141691990549e-07,5.595024312776028e-07,5.143181468399345e-07,4.723617602175258e-07,4.3344164023836366e-07,3.973740882976329e-07,3.639833119212652e-07,3.3310136679964454e-07],[3.156194740033942e-07,3.44880666682169e-07,3.7651902163017804e-07,4.106936690700687e-07,4.4757117549999805e-07,4.873255986177292e-07,5.301385123696397e-07,5.761989993036006e-07,6.25703607365551e-07,6.788562682582528e-07,7.358681744788784e-07,7.969576121715336e-07,8.623497469731493e-07,9.322763600980688e-07,1.0069755319995606e-06,1.086691271066839e-06,1.171673084965218e-06,1.2621754924058635e-06,1.3584574733411262e-06,1.460781855822416e-06,1.5694146380303461e-06,1.6846242442917745e-06,1.8066807142352582e-06,1.9358548246049276e-06,2.072417143652225e-06,2.2166370184542954e-06,2.368781495965662e-06,2.529114179094436e-06,2.697894019603585e-06,2.8753740501692238e-06,3.0618000584785762e-06,3.2574092068170824e-06,3.4624286011732428e-06,3.6770738144775097e-06,3.901547369183307e-06,4.136037184989652e-06,4.380714998090773e-06,4.635734758913591e-06,4.901231015863358e-06,5.17731729313572e-06,5.4640844711641525e-06,5.76159917874935e-06,6.069902206355927e-06,6.389006950455794e-06,6.718897899141142e-06,7.059529169517532e-06,7.410823107613642e-06,7.77266896170379e-06,8.144921640027522e-06,8.527400563903142e-06,8.91988862716487e-06,9.322131272703345e-06,9.733835696653346e-06,1.0154670190448864e-05,1.0584263630552753e-05,1.1022205125165062e-05,1.1468043826621358e-05,1.1921288917510406e-05,1.2381409777771549e-05,1.2847836339178515e-05,1.3319959632681674e-05,1.3797132533069582e-05,1.4278670704327832e-05,1.4763853747925484e-05,1.525192655505285e-05,1.5742100862577868e-05,1.623355701118891e-05,1.672544590286019e-05,1.7216891153420347e-05,1.7706991434636587e-05,1.819482299885613e-05,1.867944237788479e-05,1.91598892464409e-05,1.9635189439212453e-05,2.01043581092786e-05,2.056640301444383e-05,2.1020327916886823e-05,2.146513608045585e-05,2.189983384896032e-05,2.232343428792273e-05,2.2734960871476687e-05,2.313345119543377e-05,2.3517960697001574e-05,2.3887566361225015e-05,2.4241370393948555e-05,2.4578503840962167e-05,2.4898130133003702e-05,2.5199448536445267e-05,2.5481697489793866e-05,2.5744157806585358e-05,2.5986155725844863e-05,2.62070657920227e-05,2.6406313547188838e-05,2.6583378019274645e-05,2.673779399128228e-05,2.6869154037630737e-05,2.6977110315164802e-05,2.7061376097808557e-05,2.712172704538733e-05,2.7158002198759963e-05,2.7170104695083233e-05,2.7158002198759963e-05,2.712172704538733e-05,2.7061376097808557e-05,2.6977110315164802e-05,2.6869154037630737e-05,2.673779399128228e-05,2.6583378019274645e-05,2.6406313547188838e-05,2.62070657920227e-05,2.5986155725844863e-05,2.5744157806585358e-05,2.5481697489793866e-05,2.5199448536445267e-05,2.4898130133003702e-05,2.4578503840962167e-05,2.4241370393948555e-05,2.3887566361225015e-05,2.3517960697001574e-05,2.313345119543377e-05,2.2734960871476687e-05,2.232343428792273e-05,2.189983384896032e-05,2.146513608045585e-05,2.1020327916886823e-05,2.056640301444383e-05,2.01043581092786e-05,1.9635189439212453e-05,1.91598892464409e-05,1.867944237788479e-05,1.819482299885613e-05,1.7706991434636587e-05,1.7216891153420347e-05,1.672544590286019e-05,1.623355701118891e-05,1.5742100862577868e-05,1.525192655505285e-05,1.4763853747925484e-05,1.4278670704327832e-05,1.3797132533069582e-05,1.3319959632681674e-05,1.2847836339178515e-05,1.2381409777771549e-05,1.1921288917510406e-05,1.1468043826621358e-05,1.1022205125165062e-05,1.0584263630552753e-05,1.0154670190448864e-05,9.733835696653346e-06,9.322131272703345e-06,8.91988862716487e-06,8.527400563903142e-06,8.144921640027522e-06,7.77266896170379e-06,7.410823107613642e-06,7.059529169517532e-06,6.718897899141142e-06,6.389006950455794e-06,6.069902206355927e-06,5.76159917874935e-06,5.4640844711641525e-06,5.17731729313572e-06,4.901231015863358e-06,4.635734758913591e-06,4.380714998090773e-06,4.136037184989652e-06,3.901547369183307e-06,3.6770738144775097e-06,3.4624286011732428e-06,3.2574092068170824e-06,3.0618000584785762e-06,2.8753740501692238e-06,2.697894019603585e-06,2.529114179094436e-06,2.368781495965662e-06,2.2166370184542954e-06,2.072417143652225e-06,1.9358548246049276e-06,1.8066807142352582e-06,1.6846242442917745e-06,1.5694146380303461e-06,1.460781855822416e-06,1.3584574733411262e-06,1.2621754924058635e-06,1.171673084965218e-06,1.086691271066839e-06,1.0069755319995606e-06,9.322763600980688e-07,8.623497469731493e-07,7.969576121715336e-07,7.358681744788784e-07,6.788562682582528e-07,6.25703607365551e-07,5.761989993036006e-07,5.301385123696397e-07,4.873255986177292e-07,4.4757117549999805e-07,4.106936690700687e-07,3.7651902163017804e-07,3.44880666682169e-07,3.156194740033942e-07],[2.987887099843936e-07,3.264895165987595e-07,3.564407206263104e-07,3.887929664912997e-07,4.23703938345721e-07,4.613384120645161e-07,5.018682789588157e-07,5.45472538536611e-07,5.923372576031985e-07,6.426554929735465e-07,6.96627175066993e-07,7.54458949673094e-07,8.163639752175261e-07,8.825616729202597e-07,9.53277427326178e-07,1.028742234802248e-06,1.1091922977364429e-06,1.1948685623429214e-06,1.2860161981763166e-06,1.3828840176861023e-06,1.4857238344002445e-06,1.5947897586159724e-06,1.7103374297944317e-06,1.8326231852048225e-06,1.961903164741764e-06,2.098432352246075e-06,2.2424635540925805e-06,2.3942463162673496e-06,2.5540257816388626e-06,2.7220414896307194e-06,2.8985261210248274e-06,3.083704191160575e-06,3.2777906953437734e-06,3.4809897108355022e-06,3.6934929603511995e-06,3.915478342560228e-06,4.1471084356307844e-06,4.38852898040984e-06,4.639867350357358e-06,4.901231015863358e-06,5.172706011059816e-06,5.454355411691569e-06,5.746217833025753e-06,6.04830595715232e-06,6.3606050993534225e-06,6.683071823491656e-06,7.015632616581202e-06,7.3581826328569185e-06,7.71058451773994e-06,8.0726673221102e-06,8.444225517232797e-06,8.825018120543006e-06,9.214767942271577e-06,9.613160962585482e-06,1.0019845848528287e-05,1.0434433619568177e-05,1.0856497470000331e-05,1.1285572755804911e-05,1.1721157152833778e-05,1.2162710992391047e-05,1.2609657779387703e-05,1.306138489729324e-05,1.3517244503082168e-05,1.3976554614286791e-05,1.4438600389125387e-05,1.4902635599485438e-05,1.5367884295311517e-05,1.5833542657686628e-05,1.629878103661266e-05,1.6762746168200242e-05,1.7224563564680847e-05,1.7683340069364633e-05,1.813816656739744e-05,1.8588120841930005e-05,1.903227056411302e-05,1.9469676404183894e-05,1.989939524982545e-05,2.032048351696414e-05,2.0732000537245186e-05,2.113301200558392e-05,2.152259347045592e-05,2.189983384896032e-05,2.226383894817974e-05,2.2613734973971415e-05,2.294867200806458e-05,2.3267827434211405e-05,2.357040929414809e-05,2.3855659554269535e-05,2.4122857264207318e-05,2.43713215889257e-05,2.4600414696512835e-05,2.4809544484540848e-05,2.499816712869599e-05,2.5165789438332115e-05,2.5311971004671876e-05,2.5436326128562373e-05,2.5538525515976514e-05,2.56182977308294e-05,2.5675430396138895e-05,2.5709771136091398e-05,2.5721228253163908e-05,2.5709771136091398e-05,2.5675430396138895e-05,2.56182977308294e-05,2.5538525515976514e-05,2.5436326128562373e-05,2.5311971004671876e-05,2.5165789438332115e-05,2.499816712869599e-05,2.4809544484540848e-05,2.4600414696512835e-05,2.43713215889257e-05,2.4122857264207318e-05,2.3855659554269535e-05,2.357040929414809e-05,2.3267827434211405e-05,2.294867200806458e-05,2.2613734973971415e-05,2.226383894817974e-05,2.189983384896032e-05,2.152259347045592e-05,2.113301200558392e-05,2.0732000537245186e-05,2.032048351696414e-05,1.989939524982545e-05,1.9469676404183894e-05,1.903227056411302e-05,1.8588120841930005e-05,1.813816656739744e-05,1.7683340069364633e-05,1.7224563564680847e-05,1.6762746168200242e-05,1.629878103661266e-05,1.5833542657686628e-05,1.5367884295311517e-05,1.4902635599485438e-05,1.4438600389125387e-05,1.3976554614286791e-05,1.3517244503082168e-05,1.306138489729324e-05,1.2609657779387703e-05,1.2162710992391047e-05,1.1721157152833778e-05,1.1285572755804911e-05,1.0856497470000331e-05,1.0434433619568177e-05,1.0019845848528287e-05,9.613160962585482e-06,9.214767942271577e-06,8.825018120543006e-06,8.444225517232797e-06,8.0726673221102e-06,7.71058451773994e-06,7.3581826328569185e-06,7.015632616581202e-06,6.683071823491656e-06,6.3606050993534225e-06,6.04830595715232e-06,5.746217833025753e-06,5.454355411691569e-06,5.172706011059816e-06,4.901231015863358e-06,4.639867350357358e-06,4.38852898040984e-06,4.1471084356307844e-06,3.915478342560228e-06,3.6934929603511995e-06,3.4809897108355022e-06,3.2777906953437734e-06,3.083704191160575e-06,2.8985261210248274e-06,2.7220414896307194e-06,2.5540257816388626e-06,2.3942463162673496e-06,2.2424635540925805e-06,2.098432352246075e-06,1.961903164741764e-06,1.8326231852048225e-06,1.7103374297944317e-06,1.5947897586159724e-06,1.4857238344002445e-06,1.3828840176861023e-06,1.2860161981763166e-06,1.1948685623429214e-06,1.1091922977364429e-06,1.028742234802248e-06,9.53277427326178e-07,8.825616729202597e-07,8.163639752175261e-07,7.54458949673094e-07,6.96627175066993e-07,6.426554929735465e-07,5.923372576031985e-07,5.45472538536611e-07,5.018682789588157e-07,4.613384120645161e-07,4.23703938345721e-07,3.887929664912997e-07,3.564407206263104e-07,3.264895165987595e-07,2.987887099843936e-07],[2.826035344921642e-07,3.088038077819837e-07,3.3713257603070354e-07,3.67732323359453e-07,4.00752192279973e-07,4.363480328732788e-07,4.746824252183721e-07,5.159246725450612e-07,5.602507625499069e-07,6.078432942952052e-07,6.588913681092798e-07,7.13590435923763e-07,7.721421095214636e-07,8.347539242282959e-07,9.01639055665947e-07,9.73015987289709e-07,1.0491081265693625e-06,1.130143367831127e-06,1.2163535999662957e-06,1.307974157427936e-06,1.405243213181284e-06,1.5084011125464545e-06,1.6176896471737385e-06,1.7333512687217075e-06,1.8556282421659941e-06,1.9847617390510573e-06,2.120990871407172e-06,2.2645516674888375e-06,2.415675990946763e-06,2.5745904055214713e-06,2.741514987839614e-06,2.9166620914016382e-06,3.100235065367974e-06,3.292426932277169e-06,3.4934190293592277e-06,3.7033796186369886e-06,3.922462471532962e-06,4.150805434214344e-06,4.38852898040984e-06,4.635734758913591e-06,4.892504143448803e-06,5.158896792991318e-06,5.434949231046256e-06,5.720673452723624e-06,6.01605556876647e-06,6.321054495942581e-06,6.635600703413179e-06,6.9595950248349026e-06,7.292907546030379e-06,7.635376578073844e-06,7.986807725578243e-06,8.34697305983588e-06,8.715610406253482e-06,9.092422755232795e-06,9.477077805277968e-06,9.8692076466606e-06,1.0268408593442454e-05,1.0674241171045348e-05,1.1086230265868996e-05,1.1503865442693407e-05,1.1926601434765427e-05,1.2353858810563633e-05,1.2785024820266228e-05,1.3219454423918906e-05,1.3656471502219414e-05,1.4095370249710292e-05,1.4535416749008028e-05,1.49758507235043e-05,1.5415887464761253e-05,1.5854719929597763e-05,1.6291521000636243e-05,1.672544590286019e-05,1.7155634767531416e-05,1.75812153336425e-05,1.8001305775945995e-05,1.8415017647515704e-05,1.882145892376921e-05,1.9219737133922437e-05,1.9608962564967605e-05,1.9988251522473194e-05,2.035672963180742e-05,2.071353516279309e-05,2.1057822360317896e-05,2.1388764763056785e-05,2.170555849221742e-05,2.20074254920989e-05,2.2293616704262793e-05,2.2563415157254342e-05,2.281613895408245e-05,2.3051144140069204e-05,2.326782743421141e-05,2.3465628807855682e-05,2.3644033895271084e-05,2.3802576221603903e-05,2.3940839234712318e-05,2.4058458128496824e-05,2.4155121446557538e-05,2.4230572456312456e-05,2.4284610285092088e-05,2.431709081117408e-05,2.4327927304226146e-05,2.431709081117408e-05,2.4284610285092088e-05,2.4230572456312456e-05,2.4155121446557538e-05,2.4058458128496824e-05,2.3940839234712318e-05,2.3802576221603903e-05,2.3644033895271084e-05,2.3465628807855682e-05,2.326782743421141e-05,2.3051144140069204e-05,2.281613895408245e-05,2.2563415157254342e-05,2.2293616704262793e-05,2.20074254920989e-05,2.170555849221742e-05,2.1388764763056785e-05,2.1057822360317896e-05,2.071353516279309e-05,2.035672963180742e-05,1.9988251522473194e-05,1.9608962564967605e-05,1.9219737133922437e-05,1.882145892376921e-05,1.8415017647515704e-05,1.8001305775945995e-05,1.75812153336425e-05,1.7155634767531416e-05,1.672544590286019e-05,1.6291521000636243e-05,1.5854719929597763e-05,1.5415887464761253e-05,1.49758507235043e-05,1.4535416749008028e-05,1.4095370249710292e-05,1.3656471502219414e-05,1.3219454423918906e-05,1.2785024820266228e-05,1.2353858810563633e-05,1.1926601434765427e-05,1.1503865442693407e-05,1.1086230265868996e-05,1.0674241171045348e-05,1.0268408593442454e-05,9.8692076466606e-06,9.477077805277968e-06,9.092422755232795e-06,8.715610406253482e-06,8.34697305983588e-06,7.986807725578243e-06,7.635376578073844e-06,7.292907546030379e-06,6.9595950248349026e-06,6.635600703413179e-06,6.321054495942581e-06,6.01605556876647e-06,5.720673452723624e-06,5.434949231046256e-06,5.158896792991318e-06,4.892504143448803e-06,4.635734758913591e-06,4.38852898040984e-06,4.150805434214344e-06,3.922462471532962e-06,3.7033796186369886e-06,3.4934190293592277e-06,3.292426932277169e-06,3.100235065367974e-06,2.9166620914016382e-06,2.741514987839614e-06,2.5745904055214713e-06,2.415675990946763e-06,2.2645516674888375e-06,2.120990871407172e-06,1.9847617390510573e-06,1.8556282421659941e-06,1.7333512687217075e-06,1.6176896471737385e-06,1.5084011125464545e-06,1.405243213181284e-06,1.307974157427936e-06,1.2163535999662957e-06,1.130143367831127e-06,1.0491081265693625e-06,9.73015987289709e-07,9.01639055665947e-07,8.347539242282959e-07,7.721421095214636e-07,7.13590435923763e-07,6.588913681092798e-07,6.078432942952052e-07,5.602507625499069e-07,5.159246725450612e-07,4.746824252183721e-07,4.363480328732788e-07,4.00752192279973e-07,3.67732323359453e-07,3.3713257603070354e-07,3.088038077819837e-07,2.826035344921642e-07],[2.670570268678228e-07,2.91815977956234e-07,3.185863318264559e-07,3.4750273430248026e-07,3.7870612330936396e-07,4.123437753464895e-07,4.485693266824339e-07,4.87542766884465e-07,5.294304022625633e-07,5.744047867898179e-07,6.226446180594933e-07,6.743345958555153e-07,7.296652409489533e-07,7.888326717896646e-07,8.520383368408847e-07,9.194887004063773e-07,9.913948799258696e-07,1.0679722328658187e-06,1.1494398915098451e-06,1.23602024415705e-06,1.3279383614672561e-06,1.4254213669501771e-06,1.528697750880587e-06,1.6379966272333467e-06,1.7535469335701287e-06,1.8755765741729654e-06,2.004311507107132e-06,2.1399747763059477e-06,2.282785490200978e-06,2.432957748870796e-06,2.5906995221474233e-06,2.7562114815991606e-06,2.9296857897985624e-06,3.1113048507815698e-06,3.301240026104552e-06,3.4996503214063944e-06,3.706681048878564e-06,3.922462471532962e-06,4.1471084356307844e-06,4.380714998090773e-06,4.623359056127335e-06,4.875096986773204e-06,5.135963304312519e-06,5.405969343983605e-06,5.6851019806014815e-06,5.973322390993363e-06,6.27056486933178e-06,6.576735704584877e-06,6.8917121293781425e-06,7.2153413495723615e-06,7.5474396638058455e-06,7.887791682122047e-06,8.23614965260404e-06,8.5922329046636e-06,8.955727417283031e-06,9.326285520082343e-06,9.703525734582694e-06,1.008703276246008e-05,1.047635762693243e-05,1.0871017972701167e-05,1.1270498529077236e-05,1.1674251740066112e-05,1.2081698564270039e-05,1.2492229446494612e-05,1.2905205461925986e-05,1.3319959632681677e-05,1.3735798415438676e-05,1.4152003357715552e-05,1.4567832919238412e-05,1.4982524453662822e-05,1.5395296344764033e-05,1.580535029005555e-05,1.6211873723660822e-05,1.661404236915419e-05,1.701102291201527e-05,1.7401975780314915e-05,1.778605802128078e-05,1.816242626048519e-05,1.8530239729566738e-05,1.8888663347648013e-05,1.92368708409531e-05,1.9574047884567435e-05,1.989939524982545e-05,2.0212131940464375e-05,2.0511498300450064e-05,2.0796759076267048e-05,2.106720641647293e-05,2.1322162791448697e-05,2.1560983816532283e-05,2.178306096210274e-05,2.198782413468488e-05,2.217474411376701e-05,2.2343334829763778e-05,2.2493155469407354e-05,2.2623812395807344e-05,2.2734960871476687e-05,2.2826306573768983e-05,2.289760689340417e-05,2.2948672008064583e-05,2.2979365724412283e-05,2.2989606083300074e-05,2.2979365724412283e-05,2.2948672008064583e-05,2.289760689340417e-05,2.2826306573768983e-05,2.2734960871476687e-05,2.2623812395807344e-05,2.2493155469407354e-05,2.2343334829763778e-05,2.217474411376701e-05,2.198782413468488e-05,2.178306096210274e-05,2.1560983816532283e-05,2.1322162791448697e-05,2.106720641647293e-05,2.0796759076267048e-05,2.0511498300450064e-05,2.0212131940464375e-05,1.989939524982545e-05,1.9574047884567435e-05,1.92368708409531e-05,1.8888663347648013e-05,1.8530239729566738e-05,1.816242626048519e-05,1.778605802128078e-05,1.7401975780314915e-05,1.701102291201527e-05,1.661404236915419e-05,1.6211873723660822e-05,1.580535029005555e-05,1.5395296344764033e-05,1.4982524453662822e-05,1.4567832919238412e-05,1.4152003357715552e-05,1.3735798415438676e-05,1.3319959632681677e-05,1.2905205461925986e-05,1.2492229446494612e-05,1.2081698564270039e-05,1.1674251740066112e-05,1.1270498529077236e-05,1.0871017972701167e-05,1.047635762693243e-05,1.008703276246008e-05,9.703525734582694e-06,9.326285520082343e-06,8.955727417283031e-06,8.5922329046636e-06,8.23614965260404e-06,7.887791682122047e-06,7.5474396638058455e-06,7.2153413495723615e-06,6.8917121293781425e-06,6.576735704584877e-06,6.27056486933178e-06,5.973322390993363e-06,5.6851019806014815e-06,5.405969343983605e-06,5.135963304312519e-06,4.875096986773204e-06,4.623359056127335e-06,4.380714998090773e-06,4.1471084356307844e-06,3.922462471532962e-06,3.706681048878564e-06,3.4996503214063944e-06,3.301240026104552e-06,3.1113048507815698e-06,2.9296857897985624e-06,2.7562114815991606e-06,2.5906995221474233e-06,2.432957748870796e-06,2.282785490200978e-06,2.1399747763059477e-06,2.004311507107132e-06,1.8755765741729654e-06,1.7535469335701287e-06,1.6379966272333467e-06,1.528697750880587e-06,1.4254213669501771e-06,1.3279383614672561e-06,1.23602024415705e-06,1.1494398915098451e-06,1.0679722328658187e-06,9.913948799258696e-07,9.194887004063773e-07,8.520383368408847e-07,7.888326717896646e-07,7.296652409489533e-07,6.743345958555153e-07,6.226446180594933e-07,5.744047867898179e-07,5.294304022625633e-07,4.87542766884465e-07,4.485693266824339e-07,4.123437753464895e-07,3.7870612330936396e-07,3.4750273430248026e-07,3.185863318264559e-07,2.91815977956234e-07,2.670570268678228e-07],[2.5214098477519995e-07,2.7551706434386373e-07,3.0079220301662046e-07,3.280935261908256e-07,3.5755409992968226e-07,3.8931297483981196e-07,4.235152060823186e-07,4.603118472636838e-07,4.998599159215647e-07,5.423223283035204e-07,5.878678011352296e-07,6.366707180902956e-07,6.88910958707561e-07,7.447736875552809e-07,8.044491015157374e-07,8.681321331600089e-07,9.360221083016874e-07,1.0083223559612005e-06,1.0852397691397773e-06,1.166984314994604e-06,1.2537684932246288e-06,1.3458067417200533e-06,1.443314788797667e-06,1.5465089516385778e-06,1.655605380863982e-06,1.7708192515276123e-06,1.8923639011692614e-06,2.0204499159609357e-06,2.1552841663840273e-06,2.2970687943004634e-06,2.4460001537207132e-06,2.6022677080243457e-06,2.766052886851497e-06,2.9375279063531094e-06,3.1168545569605456e-06,3.3041829633076498e-06,3.4996503214063944e-06,3.7033796186369886e-06,3.915478342560228e-06,4.136037184989652e-06,4.36512874816904e-06,4.602806260282347e-06,4.849102307873701e-06,5.104027593069865e-06,5.367569723772023e-06,5.6396920452134636e-06,5.920332521460374e-06,6.2094026755603435e-06,6.506786597113747e-06,6.812340026053055e-06,7.125889521361631e-06,7.447231723343637e-06,7.776132717868276e-06,8.112327510753057e-06,8.455519620120792e-06,8.80538079416319e-06,9.161550861270259e-06,9.523637718940074e-06,9.891217467268942e-06,1.0263834692140172e-05,1.0641002902482977e-05,1.1022205125165066e-05,1.1406894660217641e-05,1.1794495998174452e-05,1.2184405900342806e-05,1.2575994641820559e-05,1.2968607416035127e-05,1.3361565898516613e-05,1.3754169966534288e-05,1.4145699570132628e-05,1.453541674900803e-05,1.492256778857956e-05,1.5306385507535e-05,1.5686091668086972e-05,1.606089949916167e-05,1.6430016321774055e-05,1.6792646264927472e-05,1.7147993059520812e-05,1.7495262896961583e-05,1.7833667338475987e-05,1.816242626048519e-05,1.8480770820887214e-05,1.8787946430652295e-05,1.908321571481183e-05,1.936586144670159e-05,1.9635189439212453e-05,1.9890531376809536e-05,2.013124757220447e-05,2.0356729631807422e-05,2.0566403014443835e-05,2.0759729468295616e-05,2.09362093316143e-05,2.1095383683451974e-05,2.1236836331459166e-05,2.1360195624702925e-05,2.146513608045585e-05,2.15513798149911e-05,2.1618697769581002e-05,2.1666910724129125e-05,2.1695890092158072e-05,2.1705558492217425e-05,2.1695890092158072e-05,2.1666910724129125e-05,2.1618697769581002e-05,2.15513798149911e-05,2.146513608045585e-05,2.1360195624702925e-05,2.1236836331459166e-05,2.1095383683451974e-05,2.09362093316143e-05,2.0759729468295616e-05,2.0566403014443835e-05,2.0356729631807422e-05,2.013124757220447e-05,1.9890531376809536e-05,1.9635189439212453e-05,1.936586144670159e-05,1.908321571481183e-05,1.8787946430652295e-05,1.8480770820887214e-05,1.816242626048519e-05,1.7833667338475987e-05,1.7495262896961583e-05,1.7147993059520812e-05,1.6792646264927472e-05,1.6430016321774055e-05,1.606089949916167e-05,1.5686091668086972e-05,1.5306385507535e-05,1.492256778857956e-05,1.453541674900803e-05,1.4145699570132628e-05,1.3754169966534288e-05,1.3361565898516613e-05,1.2968607416035127e-05,1.2575994641820559e-05,1.2184405900342806e-05,1.1794495998174452e-05,1.1406894660217641e-05,1.1022205125165066e-05,1.0641002902482977e-05,1.0263834692140172e-05,9.891217467268942e-06,9.523637718940074e-06,9.161550861270259e-06,8.80538079416319e-06,8.455519620120792e-06,8.112327510753057e-06,7.776132717868276e-06,7.447231723343637e-06,7.125889521361631e-06,6.812340026053055e-06,6.506786597113747e-06,6.2094026755603435e-06,5.920332521460374e-06,5.6396920452134636e-06,5.367569723772023e-06,5.104027593069865e-06,4.849102307873701e-06,4.602806260282347e-06,4.36512874816904e-06,4.136037184989652e-06,3.915478342560228e-06,3.7033796186369886e-06,3.4996503214063944e-06,3.3041829633076498e-06,3.1168545569605456e-06,2.9375279063531094e-06,2.766052886851497e-06,2.6022677080243457e-06,2.4460001537207132e-06,2.2970687943004634e-06,2.1552841663840273e-06,2.0204499159609357e-06,1.8923639011692614e-06,1.7708192515276123e-06,1.655605380863982e-06,1.5465089516385778e-06,1.443314788797667e-06,1.3458067417200533e-06,1.2537684932246288e-06,1.166984314994604e-06,1.0852397691397773e-06,1.0083223559612005e-06,9.360221083016874e-07,8.681321331600089e-07,8.044491015157374e-07,7.447736875552809e-07,6.88910958707561e-07,6.366707180902956e-07,5.878678011352296e-07,5.423223283035204e-07,4.998599159215647e-07,4.603118472636838e-07,4.235152060823186e-07,3.8931297483981196e-07,3.5755409992968226e-07,3.280935261908256e-07,3.0079220301662046e-07,2.7551706434386373e-07,2.5214098477519995e-07],[2.378460230926166e-07,2.5989681172525504e-07,2.8373899359739023e-07,3.0949248681841643e-07,3.3728281336156496e-07,3.672411404538655e-07,3.995042994526971e-07,4.342147800830343e-07,4.715206978800045e-07,5.115757326652902e-07,5.545390358845309e-07,6.00575104647531e-07,6.498536203449919e-07,7.025492497658786e-07,7.58841406709561e-07,8.189139721775493e-07,8.829549713419702e-07,9.511562056226964e-07,1.0237128383629346e-06,1.1008229327746655e-06,1.182686941030901e-06,1.2695071436114687e-06,1.3614870382629277e-06,1.4588306782108932e-06,1.5617419595640694e-06,1.6704238581728308e-06,1.7850776165502156e-06,1.9059018818284016e-06,2.033091796107505e-06,2.1668380409540412e-06,2.3073258382213727e-06,2.4547339097915926e-06,2.6092333992747577e-06,2.7709867591442355e-06,2.9401466072328957e-06,3.1168545569605456e-06,3.301240026104552e-06,3.4934190293592277e-06,3.6934929603511995e-06,3.901547369183307e-06,4.117650741964486e-06,4.341853289142994e-06,4.574185749790998e-06,4.8146582192854645e-06,5.063259008089189e-06,5.319953539552538e-06,5.584683294826781e-06,5.857364813100165e-06,6.137888755434354e-06,6.426119040488253e-06,6.721892060365731e-06,7.025015984710623e-06,7.335270160994723e-06,7.652404618700531e-06,7.976139684789283e-06,8.306165717465754e-06,8.642142964804477e-06,8.983701554288257e-06,9.330441618730192e-06,9.681933563407275e-06,1.003771847852917e-05,1.0397308700403795e-05,1.0760188523845344e-05,1.1125815067505421e-05,1.1493619292898831e-05,1.1863007176948561e-05,1.223336103689541e-05,1.2604041005414054e-05,1.2974386652755921e-05,1.3343718751708098e-05,1.3711341180124605e-05,1.4076542954760163e-05,1.443860038912539e-05,1.4796779367095083e-05,1.5150337723046483e-05,1.5498527718390602e-05,1.5840598603495776e-05,1.6175799253196128e-05,1.6503380863337563e-05,1.682259969514644e-05,1.7132719853619765e-05,1.7433016085635733e-05,1.772277658307653e-05,1.8001305775945995e-05,1.8267927100257936e-05,1.8521985725369362e-05,1.8762851225440186e-05,1.8989920179817892e-05,1.9202618687373533e-05,1.940040478015377e-05,1.9582770722161334e-05,1.9749245179630837e-05,1.9899395249825454e-05,2.003282833613796e-05,2.0149193858132343e-05,2.024818478610311e-05,2.032953899075236e-05,2.039304039968123e-05,2.0438519953554787e-05,2.0465856356018545e-05,2.047497661271079e-05,2.0465856356018545e-05,2.0438519953554787e-05,2.039304039968123e-05,2.032953899075236e-05,2.024818478610311e-05,2.0149193858132343e-05,2.003282833613796e-05,1.9899395249825454e-05,1.9749245179630837e-05,1.9582770722161334e-05,1.940040478015377e-05,1.9202618687373533e-05,1.8989920179817892e-05,1.8762851225440186e-05,1.8521985725369362e-05,1.8267927100257936e-05,1.8001305775945995e-05,1.772277658307653e-05,1.7433016085635733e-05,1.7132719853619765e-05,1.682259969514644e-05,1.6503380863337563e-05,1.6175799253196128e-05,1.5840598603495776e-05,1.5498527718390602e-05,1.5150337723046483e-05,1.4796779367095083e-05,1.443860038912539e-05,1.4076542954760163e-05,1.3711341180124605e-05,1.3343718751708098e-05,1.2974386652755921e-05,1.2604041005414054e-05,1.223336103689541e-05,1.1863007176948561e-05,1.1493619292898831e-05,1.1125815067505421e-05,1.0760188523845344e-05,1.0397308700403795e-05,1.003771847852917e-05,9.681933563407275e-06,9.330441618730192e-06,8.983701554288257e-06,8.642142964804477e-06,8.306165717465754e-06,7.976139684789283e-06,7.652404618700531e-06,7.335270160994723e-06,7.025015984710623e-06,6.721892060365731e-06,6.426119040488253e-06,6.137888755434354e-06,5.857364813100165e-06,5.584683294826781e-06,5.319953539552538e-06,5.063259008089189e-06,4.8146582192854645e-06,4.574185749790998e-06,4.341853289142994e-06,4.117650741964486e-06,3.901547369183307e-06,3.6934929603511995e-06,3.4934190293592277e-06,3.301240026104552e-06,3.1168545569605456e-06,2.9401466072328957e-06,2.7709867591442355e-06,2.6092333992747577e-06,2.4547339097915926e-06,2.3073258382213727e-06,2.1668380409540412e-06,2.033091796107505e-06,1.9059018818284016e-06,1.7850776165502156e-06,1.6704238581728308e-06,1.5617419595640694e-06,1.4588306782108932e-06,1.3614870382629277e-06,1.2695071436114687e-06,1.182686941030901e-06,1.1008229327746655e-06,1.0237128383629346e-06,9.511562056226964e-07,8.829549713419702e-07,8.189139721775493e-07,7.58841406709561e-07,7.025492497658786e-07,6.498536203449919e-07,6.00575104647531e-07,5.545390358845309e-07,5.115757326652902e-07,4.715206978800045e-07,4.342147800830343e-07,3.995042994526971e-07,3.672411404538655e-07,3.3728281336156496e-07,3.0949248681841643e-07,2.8373899359739023e-07,2.5989681172525504e-07,2.378460230926166e-07],[2.2416167244293764e-07,2.4494378010362863e-07,2.674142140997664e-07,2.916859931129691e-07,3.178774172732199e-07,3.4611210716747836e-07,3.7651902163017815e-07,4.092324523120305e-07,4.4439199299575785e-07,4.821424816122245e-07,5.226339129091347e-07,5.660213197382739e-07,6.124646209573444e-07,6.621284339899448e-07,7.151818501532352e-07,7.717981709483005e-07,8.321546036140818e-07,8.964319143727614e-07,9.64814037943297e-07,1.0374876420709374e-06,1.114641646014297e-06,1.1964666921480992e-06,1.2831545700789723e-06,1.3748975929333934e-06,1.4718879257605714e-06,1.5743168662979846e-06,1.682374078672459e-06,1.7962467809538876e-06,1.916118887840348e-06,2.0421701101308623e-06,2.174575013033134e-06,2.3135020357561576e-06,2.45911247524894e-06,2.6115594373639525e-06,2.7709867591442355e-06,2.9375279063531094e-06,3.1113048507815698e-06,3.292426932277169e-06,3.4809897108355022e-06,3.6770738144775097e-06,3.880743788998485e-06,4.09204695601394e-06,4.311012286039072e-06,4.537649293618435e-06,4.771946961766439e-06,5.0138727031835005e-06,5.2633713658732525e-06,5.520364290899539e-06,5.784748430084543e-06,6.056395531458308e-06,6.3351514002222596e-06,6.620835242882763e-06,6.913239102043228e-06,7.212127389113454e-06,7.5172365219015256e-06,7.828274673696303e-06,8.144921640027524e-06,8.46682882880621e-06,8.79361937900183e-06,9.124888412406497e-06,9.460203422372574e-06,9.79910480269187e-06,1.014110651901563e-05,1.0485696924399281e-05,1.0832339719699084e-05,1.118047505865534e-05,1.1529520796574009e-05,1.1878873880572718e-05,1.2227911878394481e-05,1.2575994641820559e-05,1.2922466099740583e-05,1.3266656174970714e-05,1.3607882817957741e-05,1.394545414957645e-05,1.4278670704327839e-05,1.4606827764384478e-05,1.492921777411507e-05,1.5245132823960286e-05,1.555386719183433e-05,1.5854719929597766e-05,1.6146997481594417e-05,1.6430016321774058e-05,1.670310559553893e-05,1.6965609752160836e-05,1.721689115342035e-05,1.7456332644024356e-05,1.7683340069364636e-05,1.789734472629075e-05,1.8097805732784955e-05,1.8284212302746007e-05,1.845608591251046e-05,1.8612982346262742e-05,1.875449360810605e-05,1.8880249689280416e-05,1.8989920179817892e-05,1.908321571481183e-05,1.9159889246440905e-05,1.9219737133922437e-05,1.9262600044664848e-05,1.9288363661038046e-05,1.9296959188374008e-05,1.9288363661038046e-05,1.9262600044664848e-05,1.9219737133922437e-05,1.9159889246440905e-05,1.908321571481183e-05,1.8989920179817892e-05,1.8880249689280416e-05,1.875449360810605e-05,1.8612982346262742e-05,1.845608591251046e-05,1.8284212302746007e-05,1.8097805732784955e-05,1.789734472629075e-05,1.7683340069364636e-05,1.7456332644024356e-05,1.721689115342035e-05,1.6965609752160836e-05,1.670310559553893e-05,1.6430016321774058e-05,1.6146997481594417e-05,1.5854719929597766e-05,1.555386719183433e-05,1.5245132823960286e-05,1.492921777411507e-05,1.4606827764384478e-05,1.4278670704327839e-05,1.394545414957645e-05,1.3607882817957741e-05,1.3266656174970714e-05,1.2922466099740583e-05,1.2575994641820559e-05,1.2227911878394481e-05,1.1878873880572718e-05,1.1529520796574009e-05,1.118047505865534e-05,1.0832339719699084e-05,1.0485696924399281e-05,1.014110651901563e-05,9.79910480269187e-06,9.460203422372574e-06,9.124888412406497e-06,8.79361937900183e-06,8.46682882880621e-06,8.144921640027524e-06,7.828274673696303e-06,7.5172365219015256e-06,7.212127389113454e-06,6.913239102043228e-06,6.620835242882763e-06,6.3351514002222596e-06,6.056395531458308e-06,5.784748430084543e-06,5.520364290899539e-06,5.2633713658732525e-06,5.0138727031835005e-06,4.771946961766439e-06,4.537649293618435e-06,4.311012286039072e-06,4.09204695601394e-06,3.880743788998485e-06,3.6770738144775097e-06,3.4809897108355022e-06,3.292426932277169e-06,3.1113048507815698e-06,2.9375279063531094e-06,2.7709867591442355e-06,2.6115594373639525e-06,2.45911247524894e-06,2.3135020357561576e-06,2.174575013033134e-06,2.0421701101308623e-06,1.916118887840348e-06,1.7962467809538876e-06,1.682374078672459e-06,1.5743168662979846e-06,1.4718879257605714e-06,1.3748975929333934e-06,1.2831545700789723e-06,1.1964666921480992e-06,1.114641646014297e-06,1.0374876420709374e-06,9.64814037943297e-07,8.964319143727614e-07,8.321546036140818e-07,7.717981709483005e-07,7.151818501532352e-07,6.621284339899448e-07,6.124646209573444e-07,5.660213197382739e-07,5.226339129091347e-07,4.821424816122245e-07,4.4439199299575785e-07,4.092324523120305e-07,3.7651902163017815e-07,3.4611210716747836e-07,3.178774172732199e-07,2.916859931129691e-07,2.674142140997664e-07,2.4494378010362863e-07,2.2416167244293764e-07],[2.1107647687065554e-07,2.3064545143780402e-07,2.5180419811367357e-07,2.7465913823638386e-07,2.9932166629357444e-07,3.2590818665393026e-07,3.5454013031917863e-07,3.8534394980993276e-07,4.1845109027258614e-07,4.539979348801894e-07,4.921257225990185e-07,5.329804364055449e-07,5.767126600668378e-07,6.23477401642152e-07,6.734338819255986e-07,7.267452861302728e-07,7.83578477213896e-07,8.441036693656279e-07,9.084940603138251e-07,9.76925421275677e-07,1.0495756435520772e-06,1.1266242409749857e-06,1.2082518076398444e-06,1.294639430602038e-06,1.3859680574835336e-06,1.4824178192229526e-06,1.584167308508523e-06,1.691392814757472e-06,1.8042675168459726e-06,1.922960635149212e-06,2.0476365448193948e-06,2.1784538526085757e-06,2.3155644399305366e-06,2.45911247524894e-06,2.6092333992747577e-06,2.766052886851497e-06,2.9296857897985624e-06,3.100235065367974e-06,3.2777906953437734e-06,3.4624286011732428e-06,3.6542095608605732e-06,3.853178133673072e-06,4.059361599003392e-06,4.272768915994826e-06,4.49338971076642e-06,4.721193298267016e-06,4.9561277459384795e-06,5.198118986475114e-06,5.447069987025206e-06,5.7028599821890586e-06,5.965343778122959e-06,6.234351134958236e-06,6.509686234586766e-06,6.791127240647909e-06,7.078425957275574e-06,7.371307592827762e-06,7.669470634424399e-06,7.972586838663278e-06,8.280301343369578e-06,8.5922329046636e-06,8.907974263006228e-06,9.22709264120538e-06,9.549130376642567e-06,9.87360568921112e-06,1.0200013585650705e-05,1.0527826900122488e-05,1.0856497470000331e-05,1.1185457444962678e-05,1.1514120726563412e-05,1.184188453454482e-05,1.2168131095239154e-05,1.2492229446494612e-05,1.2813537352664151e-05,1.3131403322319383e-05,1.3445168720504504e-05,1.3754169966534286e-05,1.4057740807573367e-05,1.4355214657518527e-05,1.4645926990048661e-05,1.4929217774115066e-05,1.520443393962408e-05,1.5470931860620565e-05,1.5728079842919496e-05,1.597526060285855e-05,1.621187372366082e-05,1.6437338075807e-05,1.665109418782255e-05,1.6852606553989324e-05,1.7041365865693303e-05,1.7216891153420347e-05,1.737873182680914e-05,1.752646960066266e-05,1.765972029540402e-05,1.777813550113506e-05,1.788140409521294e-05,1.7969253604094952e-05,1.8041451401109585e-05,1.8097805732784952e-05,1.8138166567397443e-05,1.816242626048519e-05,1.8170520033194628e-05,1.816242626048519e-05,1.8138166567397443e-05,1.8097805732784952e-05,1.8041451401109585e-05,1.7969253604094952e-05,1.788140409521294e-05,1.777813550113506e-05,1.765972029540402e-05,1.752646960066266e-05,1.737873182680914e-05,1.7216891153420347e-05,1.7041365865693303e-05,1.6852606553989324e-05,1.665109418782255e-05,1.6437338075807e-05,1.621187372366082e-05,1.597526060285855e-05,1.5728079842919496e-05,1.5470931860620565e-05,1.520443393962408e-05,1.4929217774115066e-05,1.4645926990048661e-05,1.4355214657518527e-05,1.4057740807573367e-05,1.3754169966534286e-05,1.3445168720504504e-05,1.3131403322319383e-05,1.2813537352664151e-05,1.2492229446494612e-05,1.2168131095239154e-05,1.184188453454482e-05,1.1514120726563412e-05,1.1185457444962678e-05,1.0856497470000331e-05,1.0527826900122488e-05,1.0200013585650705e-05,9.87360568921112e-06,9.549130376642567e-06,9.22709264120538e-06,8.907974263006228e-06,8.5922329046636e-06,8.280301343369578e-06,7.972586838663278e-06,7.669470634424399e-06,7.371307592827762e-06,7.078425957275574e-06,6.791127240647909e-06,6.509686234586766e-06,6.234351134958236e-06,5.965343778122959e-06,5.7028599821890586e-06,5.447069987025206e-06,5.198118986475114e-06,4.9561277459384795e-06,4.721193298267016e-06,4.49338971076642e-06,4.272768915994826e-06,4.059361599003392e-06,3.853178133673072e-06,3.6542095608605732e-06,3.4624286011732428e-06,3.2777906953437734e-06,3.100235065367974e-06,2.9296857897985624e-06,2.766052886851497e-06,2.6092333992747577e-06,2.45911247524894e-06,2.3155644399305366e-06,2.1784538526085757e-06,2.0476365448193948e-06,1.922960635149212e-06,1.8042675168459726e-06,1.691392814757472e-06,1.584167308508523e-06,1.4824178192229526e-06,1.3859680574835336e-06,1.294639430602038e-06,1.2082518076398444e-06,1.1266242409749857e-06,1.0495756435520772e-06,9.76925421275677e-07,9.084940603138251e-07,8.441036693656279e-07,7.83578477213896e-07,7.267452861302728e-07,6.734338819255986e-07,6.23477401642152e-07,5.767126600668378e-07,5.329804364055449e-07,4.921257225990185e-07,4.539979348801894e-07,4.1845109027258614e-07,3.8534394980993276e-07,3.5454013031917863e-07,3.2590818665393026e-07,2.9932166629357444e-07,2.7465913823638386e-07,2.5180419811367357e-07,2.3064545143780402e-07,2.1107647687065554e-07],[1.9857809020755145e-07,2.1698833494195522e-07,2.3689421724761012e-07,2.583958569786772e-07,2.8159805266573206e-07,3.066103160723211e-07,3.335468879550294e-07,3.625267332521465e-07,3.936735139013968e-07,4.2711553747377235e-07,4.629856798093563e-07,5.014212798532566e-07,5.425640049164129e-07,5.865596846281137e-07,6.335581119055265e-07,6.837128093412539e-07,7.371807595037087e-07,7.941220977576205e-07,8.546997663438078e-07,9.190791286089608e-07,9.874275424478092e-07,1.0599138922118684e-06,1.1367080785509273e-06,1.2179804658852797e-06,1.3039012874580164e-06,1.3946400081868246e-06,1.4903646458228024e-06,1.5912410512287061e-06,1.6974321489094582e-06,1.8090971392621233e-06,1.926390664359026e-06,2.049461939434304e-06,2.1784538526085757e-06,2.3135020357561576e-06,2.4547339097915926e-06,2.6022677080243457e-06,2.7562114815991606e-06,2.9166620914016382e-06,3.083704191160575e-06,3.2574092068170824e-06,3.4378343175517977e-06,3.625021444162024e-06,3.818996250756695e-06,4.019767165984947e-06,4.2273244302302744e-06,4.44163917538313e-06,4.66266254394709e-06,4.890324854334088e-06,5.124534819259692e-06,5.365178824157322e-06,5.612120272488031e-06,5.865199004728122e-06,6.124230797668477e-06,6.389006950455795e-06,6.659293963546137e-06,6.934833316424655e-06,7.215341349572362e-06,7.5005092557318126e-06,7.790003185039644e-06,8.08346446805691e-06,8.380509960140038e-06,8.680732509959034e-06,8.983701554288257e-06,9.288963840473018e-06,9.596044277216124e-06,9.904446913537861e-06,1.0213656044945545e-05,1.052313744501068e-05,1.0832339719699084e-05,1.114069578093838e-05,1.144762443504493e-05,1.1752532080775454e-05,1.2054814510924375e-05,1.2353858810563634e-05,1.264904534422458e-05,1.293974982355862e-05,1.3225345446291992e-05,1.350520509661672e-05,1.3778703596541902e-05,1.404521999717227e-05,1.4304139898391373e-05,1.455485778500928e-05,1.4796779367095085e-05,1.5029323911956078e-05,1.5251926555052855e-05,1.546404057705497e-05,1.5665139634247643e-05,1.5854719929597766e-05,1.6032302311977767e-05,1.61974342913282e-05,1.6349691957913872e-05,1.648868179429116e-05,1.6614042369154193e-05,1.6725445902860198e-05,1.682259969514644e-05,1.690524740633669e-05,1.6973170184189117e-05,1.702618762945316e-05,1.7064158594173416e-05,1.7086981807796303e-05,1.709459632719251e-05,1.7086981807796303e-05,1.7064158594173416e-05,1.702618762945316e-05,1.6973170184189117e-05,1.690524740633669e-05,1.682259969514644e-05,1.6725445902860198e-05,1.6614042369154193e-05,1.648868179429116e-05,1.6349691957913872e-05,1.61974342913282e-05,1.6032302311977767e-05,1.5854719929597766e-05,1.5665139634247643e-05,1.546404057705497e-05,1.5251926555052855e-05,1.5029323911956078e-05,1.4796779367095085e-05,1.455485778500928e-05,1.4304139898391373e-05,1.404521999717227e-05,1.3778703596541902e-05,1.350520509661672e-05,1.3225345446291992e-05,1.293974982355862e-05,1.264904534422458e-05,1.2353858810563634e-05,1.2054814510924375e-05,1.1752532080775454e-05,1.144762443504493e-05,1.114069578093838e-05,1.0832339719699084e-05,1.052313744501068e-05,1.0213656044945545e-05,9.904446913537861e-06,9.596044277216124e-06,9.288963840473018e-06,8.983701554288257e-06,8.680732509959034e-06,8.380509960140038e-06,8.08346446805691e-06,7.790003185039644e-06,7.5005092557318126e-06,7.215341349572362e-06,6.934833316424655e-06,6.659293963546137e-06,6.389006950455795e-06,6.124230797668477e-06,5.865199004728122e-06,5.612120272488031e-06,5.365178824157322e-06,5.124534819259692e-06,4.890324854334088e-06,4.66266254394709e-06,4.44163917538313e-06,4.2273244302302744e-06,4.019767165984947e-06,3.818996250756695e-06,3.625021444162024e-06,3.4378343175517977e-06,3.2574092068170824e-06,3.083704191160575e-06,2.9166620914016382e-06,2.7562114815991606e-06,2.6022677080243457e-06,2.4547339097915926e-06,2.3135020357561576e-06,2.1784538526085757e-06,2.049461939434304e-06,1.926390664359026e-06,1.8090971392621233e-06,1.6974321489094582e-06,1.5912410512287061e-06,1.4903646458228024e-06,1.3946400081868246e-06,1.3039012874580164e-06,1.2179804658852797e-06,1.1367080785509273e-06,1.0599138922118684e-06,9.874275424478092e-07,9.190791286089608e-07,8.546997663438078e-07,7.941220977576205e-07,7.371807595037087e-07,6.837128093412539e-07,6.335581119055265e-07,5.865596846281137e-07,5.425640049164129e-07,5.014212798532566e-07,4.629856798093563e-07,4.2711553747377235e-07,3.936735139013968e-07,3.625267332521465e-07,3.335468879550294e-07,3.066103160723211e-07,2.8159805266573206e-07,2.583958569786772e-07,2.3689421724761012e-07,2.1698833494195522e-07,1.9857809020755145e-07],[1.866533707025858e-07,2.0395807048867188e-07,2.226685940176073e-07,2.4287904889327666e-07,2.6468794043898193e-07,2.881982041788599e-07,3.135172206515482e-07,3.40756810887776e-07,3.7003321086040287e-07,4.0146702320281734e-07,4.3518314449052057e-07,4.713106663922174e-07,5.099827490217836e-07,5.51336464862022e-07,5.955126116860781e-07,6.426554929735469e-07,6.929126644064533e-07,7.464346451360502e-07,8.033745926352836e-07,8.638879400942809e-07,9.281319954775427e-07,9.96265501541817e-07,1.0684481563128758e-06,1.1448400937373306e-06,1.2256013244618512e-06,1.3108911369460516e-06,1.4008674593860757e-06,1.4956861832125196e-06,1.5955004492274828e-06,1.7004598977598571e-06,1.810709884543609e-06,1.926390664359026e-06,2.0476365448193948e-06,2.174575013033134e-06,2.3073258382213727e-06,2.4460001537207132e-06,2.5906995221474233e-06,2.741514987839614e-06,2.8985261210248274e-06,3.0618000584785762e-06,3.2313905457414113e-06,3.407336986244553e-06,3.5896635029535987e-06,3.778378018372839e-06,3.973471358955911e-06,4.174916390138534e-06,4.3826671883428285e-06,4.596658256396999e-06,4.816803788866403e-06,5.042996993799361e-06,5.275109477351447e-06,5.512990697663203e-06,5.7564674942268e-06,6.005343698785728e-06,6.259399833567348e-06,6.5183929023506666e-06,6.78205627952107e-06,7.050099701860501e-06,7.322209367366731e-06,7.598048144890613e-06,7.877255897827375e-06,8.159449924500059e-06,8.444225517232798e-06,8.731156641432906e-06,9.019796735287243e-06,9.30967962993514e-06,9.600320589211866e-06,9.891217467268942e-06,1.0181851981576012e-05,1.0471691097999837e-05,1.0760188523845346e-05,1.1046786303938348e-05,1.1330916514036014e-05,1.1612003045076383e-05,1.1889463471028914e-05,1.2162710992391047e-05,1.2431156446697568e-05,1.2694210376776965e-05,1.295128514690785e-05,1.3201797096505035e-05,1.3445168720504506e-05,1.3680830865224245e-05,1.3908224928158489e-05,1.4126805049920341e-05,1.4336040286385208e-05,1.4535416749008028e-05,1.4724439701292906e-05,1.490263559948544e-05,1.5069554065737071e-05,1.5224769782256115e-05,1.5367884295311517e-05,1.5498527718390606e-05,1.5616360324328864e-05,1.5721074016824707e-05,1.5812393672421214e-05,1.5890078344775503e-05,1.595392232383879e-05,1.600375604343107e-05,1.6039446831606428e-05,1.606089949916167e-05,1.6068056762634675e-05,1.606089949916167e-05,1.6039446831606428e-05,1.600375604343107e-05,1.595392232383879e-05,1.5890078344775503e-05,1.5812393672421214e-05,1.5721074016824707e-05,1.5616360324328864e-05,1.5498527718390606e-05,1.5367884295311517e-05,1.5224769782256115e-05,1.5069554065737071e-05,1.490263559948544e-05,1.4724439701292906e-05,1.4535416749008028e-05,1.4336040286385208e-05,1.4126805049920341e-05,1.3908224928158489e-05,1.3680830865224245e-05,1.3445168720504506e-05,1.3201797096505035e-05,1.295128514690785e-05,1.2694210376776965e-05,1.2431156446697568e-05,1.2162710992391047e-05,1.1889463471028914e-05,1.1612003045076383e-05,1.1330916514036014e-05,1.1046786303938348e-05,1.0760188523845346e-05,1.0471691097999837e-05,1.0181851981576012e-05,9.891217467268942e-06,9.600320589211866e-06,9.30967962993514e-06,9.019796735287243e-06,8.731156641432906e-06,8.444225517232798e-06,8.159449924500059e-06,7.877255897827375e-06,7.598048144890613e-06,7.322209367366731e-06,7.050099701860501e-06,6.78205627952107e-06,6.5183929023506666e-06,6.259399833567348e-06,6.005343698785728e-06,5.7564674942268e-06,5.512990697663203e-06,5.275109477351447e-06,5.042996993799361e-06,4.816803788866403e-06,4.596658256396999e-06,4.3826671883428285e-06,4.174916390138534e-06,3.973471358955911e-06,3.778378018372839e-06,3.5896635029535987e-06,3.407336986244553e-06,3.2313905457414113e-06,3.0618000584785762e-06,2.8985261210248274e-06,2.741514987839614e-06,2.5906995221474233e-06,2.4460001537207132e-06,2.3073258382213727e-06,2.174575013033134e-06,2.0476365448193948e-06,1.926390664359026e-06,1.810709884543609e-06,1.7004598977598571e-06,1.5955004492274828e-06,1.4956861832125196e-06,1.4008674593860757e-06,1.3108911369460516e-06,1.2256013244618512e-06,1.1448400937373306e-06,1.0684481563128758e-06,9.96265501541817e-07,9.281319954775427e-07,8.638879400942809e-07,8.033745926352836e-07,7.464346451360502e-07,6.929126644064533e-07,6.426554929735469e-07,5.955126116860781e-07,5.51336464862022e-07,5.099827490217836e-07,4.713106663922174e-07,4.3518314449052057e-07,4.0146702320281734e-07,3.7003321086040287e-07,3.40756810887776e-07,3.135172206515482e-07,2.881982041788599e-07,2.6468794043898193e-07,2.4287904889327666e-07,2.226685940176073e-07,2.0395807048867188e-07,1.866533707025858e-07],[1.7528847352675266e-07,1.9153952968997111e-07,2.0911081220112073e-07,2.2809069866715347e-07,2.4857169664735347e-07,2.7065047415703533e-07,2.944278735792402e-07,3.200089074176849e-07,3.475027343024802e-07,3.770226136482857e-07,4.086858373635511e-07,4.4261363702029224e-07,4.789310649173668e-07,5.177668475073571e-07,5.592532097087724e-07,6.035256686921173e-07,6.507227958111532e-07,7.009859454500006e-07,7.544589496730943e-07,8.112877776988328e-07,8.716201593692598e-07,9.356051719574463e-07,1.003392789841339e-06,1.0751333967775008e-06,1.150977260730004e-06,1.2310739714481851e-06,1.3155718412412445e-06,1.4046172696668338e-06,1.4983540731335914e-06,1.5969227807127619e-06,1.7004598977598571e-06,1.8090971392621233e-06,1.922960635149212e-06,2.0421701101308623e-06,2.1668380409540412e-06,2.2970687943004634e-06,2.432957748870796e-06,2.5745904055214713e-06,2.7220414896307194e-06,2.8753740501692238e-06,3.0346385602343967e-06,3.1998720240725837e-06,3.371097095857134e-06,3.5483212157091592e-06,3.7315357686385683e-06,3.920715272242689e-06,4.1158165991253476e-06,4.316778240087856e-06,4.523519614192391e-06,4.735940431805158e-06,4.953920116689494e-06,5.177317293135723e-06,5.405969343983607e-06,5.639692045213464e-06,5.878279282552651e-06,6.121502855264742e-06,6.369112371959466e-06,6.620835242882763e-06,6.876376772719179e-06,7.135420357464777e-06,7.397627788409617e-06,7.662639665707246e-06,7.930075923407286e-06,8.199536467189769e-06,8.470601925369811e-06,8.742834513043311e-06,9.015779008522829e-06,9.288963840473018e-06,9.561902283402351e-06,9.834093758407799e-06,1.0105025235308022e-05,1.0374172731544279e-05,1.0641002902482977e-05,1.0904974717026338e-05,1.1165541211733782e-05,1.142215131598342e-05,1.1674251740066113e-05,1.1921288917510408e-05,1.2162710992391049e-05,1.2397969841882015e-05,1.262652312388285e-05,1.2847836339178519e-05,1.3061384897293241e-05,1.3266656174970714e-05,1.3463151556060702e-05,1.3650388441517246e-05,1.3827902218219042e-05,1.3995248175408686e-05,1.4152003357715555e-05,1.4297768343976302e-05,1.4432168941396954e-05,1.4554857785009279e-05,1.4665515832859421e-05,1.4763853747925485e-05,1.4849613158389105e-05,1.492256778857956e-05,1.4982524453662823e-05,1.5029323911956078e-05,1.5062841569604993e-05,1.5082988033259414e-05,1.5089709507316325e-05,1.5082988033259414e-05,1.5062841569604993e-05,1.5029323911956078e-05,1.4982524453662823e-05,1.492256778857956e-05,1.4849613158389105e-05,1.4763853747925485e-05,1.4665515832859421e-05,1.4554857785009279e-05,1.4432168941396954e-05,1.4297768343976302e-05,1.4152003357715555e-05,1.3995248175408686e-05,1.3827902218219042e-05,1.3650388441517246e-05,1.3463151556060702e-05,1.3266656174970714e-05,1.3061384897293241e-05,1.2847836339178519e-05,1.262652312388285e-05,1.2397969841882015e-05,1.2162710992391049e-05,1.1921288917510408e-05,1.1674251740066113e-05,1.142215131598342e-05,1.1165541211733782e-05,1.0904974717026338e-05,1.0641002902482977e-05,1.0374172731544279e-05,1.0105025235308022e-05,9.834093758407799e-06,9.561902283402351e-06,9.288963840473018e-06,9.015779008522829e-06,8.742834513043311e-06,8.470601925369811e-06,8.199536467189769e-06,7.930075923407286e-06,7.662639665707246e-06,7.397627788409617e-06,7.135420357464777e-06,6.876376772719179e-06,6.620835242882763e-06,6.369112371959466e-06,6.121502855264742e-06,5.878279282552651e-06,5.639692045213464e-06,5.405969343983607e-06,5.177317293135723e-06,4.953920116689494e-06,4.735940431805158e-06,4.523519614192391e-06,4.316778240087856e-06,4.1158165991253476e-06,3.920715272242689e-06,3.7315357686385683e-06,3.5483212157091592e-06,3.371097095857134e-06,3.1998720240725837e-06,3.0346385602343967e-06,2.8753740501692238e-06,2.7220414896307194e-06,2.5745904055214713e-06,2.432957748870796e-06,2.2970687943004634e-06,2.1668380409540412e-06,2.0421701101308623e-06,1.922960635149212e-06,1.8090971392621233e-06,1.7004598977598571e-06,1.5969227807127619e-06,1.4983540731335914e-06,1.4046172696668338e-06,1.3155718412412445e-06,1.2310739714481851e-06,1.150977260730004e-06,1.0751333967775008e-06,1.003392789841339e-06,9.356051719574463e-07,8.716201593692598e-07,8.112877776988328e-07,7.544589496730943e-07,7.009859454500006e-07,6.507227958111532e-07,6.035256686921173e-07,5.592532097087724e-07,5.177668475073571e-07,4.789310649173668e-07,4.4261363702029224e-07,4.086858373635511e-07,3.770226136482857e-07,3.475027343024802e-07,3.200089074176849e-07,2.944278735792402e-07,2.7065047415703533e-07,2.4857169664735347e-07,2.2809069866715347e-07,2.0911081220112073e-07,1.9153952968997111e-07,1.7528847352675266e-07],[1.6446894079934937e-07,1.7971691426993442e-07,1.9620362423408874e-07,2.1401199326574605e-07,2.332288189733589e-07,2.5394480262078146e-07,2.762545621802784e-07,3.002566283476193e-07,3.2605342202882406e-07,3.5375121179700427e-07,3.834600498167943e-07,4.1529368474399396e-07,4.493694501301132e-07,4.858081268963564e-07,5.247337784900053e-07,5.662735573988683e-07,6.105574817771325e-07,6.577181810291502e-07,7.078906093068663e-07,7.612117260021698e-07,8.178201424575894e-07,8.778557342776411e-07,9.414592187986772e-07,1.0087716974671174e-06,1.0799341630840847e-06,1.1550869720981956e-06,1.2343692823668446e-06,1.317918457058846e-06,1.40586943563669e-06,1.4983540731335914e-06,1.5955004492274828e-06,1.6974321489094582e-06,1.8042675168459726e-06,1.916118887840348e-06,2.033091796107505e-06,2.1552841663840273e-06,2.282785490200978e-06,2.415675990946763e-06,2.5540257816388626e-06,2.697894019603585e-06,2.84732806252911e-06,3.0023626306059814e-06,3.163018979697866e-06,3.3293040906906942e-06,3.50120988034735e-06,3.678712439144907e-06,3.861771301689232e-06,4.050328755384889e-06,4.2443091930842645e-06,4.443618515446363e-06,4.648143588700714e-06,4.857751763433715e-06,5.072290459891762e-06,5.291586825126928e-06,5.5154474670956665e-06,5.743658270558941e-06,5.975984299323204e-06,6.2121697890063434e-06,6.4519382341119265e-06,6.694992572750301e-06,6.941015471858009e-06,7.189669715240052e-06,7.44059869619529e-06,7.69342701588716e-06,7.947761187993222e-06,8.203190449512195e-06,8.459287676930161e-06,8.715610406253484e-06,8.971701954709805e-06,9.22709264120538e-06,9.481301101912764e-06,9.733835696653346e-06,9.984196001039815e-06,1.0231874378661165e-05,1.0476357626932433e-05,1.0717128689599637e-05,1.0953668428292832e-05,1.118545744496268e-05,1.141197794652401e-05,1.163271564256851e-05,1.184716166660303e-05,1.2054814510924375e-05,1.2255181964960058e-05,1.2447783046690573e-05,1.2632149916625704e-05,1.2807829763737313e-05,1.2974386652755921e-05,1.3131403322319385e-05,1.3278482923619494e-05,1.3415250689426284e-05,1.3541355523679411e-05,1.3656471502219417e-05,1.3760299275687127e-05,1.3852567366143535e-05,1.3933033349552166e-05,1.4001484916916643e-05,1.4057740807573369e-05,1.410165160889768e-05,1.4133100417485487e-05,1.4152003357715555e-05,1.4158309954472937e-05,1.4152003357715555e-05,1.4133100417485487e-05,1.410165160889768e-05,1.4057740807573369e-05,1.4001484916916643e-05,1.3933033349552166e-05,1.3852567366143535e-05,1.3760299275687127e-05,1.3656471502219417e-05,1.3541355523679411e-05,1.3415250689426284e-05,1.3278482923619494e-05,1.3131403322319385e-05,1.2974386652755921e-05,1.2807829763737313e-05,1.2632149916625704e-05,1.2447783046690573e-05,1.2255181964960058e-05,1.2054814510924375e-05,1.184716166660303e-05,1.163271564256851e-05,1.141197794652401e-05,1.118545744496268e-05,1.0953668428292832e-05,1.0717128689599637e-05,1.0476357626932433e-05,1.0231874378661165e-05,9.984196001039815e-06,9.733835696653346e-06,9.481301101912764e-06,9.22709264120538e-06,8.971701954709805e-06,8.715610406253484e-06,8.459287676930161e-06,8.203190449512195e-06,7.947761187993222e-06,7.69342701588716e-06,7.44059869619529e-06,7.189669715240052e-06,6.941015471858009e-06,6.694992572750301e-06,6.4519382341119265e-06,6.2121697890063434e-06,5.975984299323204e-06,5.743658270558941e-06,5.5154474670956665e-06,5.291586825126928e-06,5.072290459891762e-06,4.857751763433715e-06,4.648143588700714e-06,4.443618515446363e-06,4.2443091930842645e-06,4.050328755384889e-06,3.861771301689232e-06,3.678712439144907e-06,3.50120988034735e-06,3.3293040906906942e-06,3.163018979697866e-06,3.0023626306059814e-06,2.84732806252911e-06,2.697894019603585e-06,2.5540257816388626e-06,2.415675990946763e-06,2.282785490200978e-06,2.1552841663840273e-06,2.033091796107505e-06,1.916118887840348e-06,1.8042675168459726e-06,1.6974321489094582e-06,1.5955004492274828e-06,1.4983540731335914e-06,1.40586943563669e-06,1.317918457058846e-06,1.2343692823668446e-06,1.1550869720981956e-06,1.0799341630840847e-06,1.0087716974671174e-06,9.414592187986772e-07,8.778557342776411e-07,8.178201424575894e-07,7.612117260021698e-07,7.078906093068663e-07,6.577181810291502e-07,6.105574817771325e-07,5.662735573988683e-07,5.247337784900053e-07,4.858081268963564e-07,4.493694501301132e-07,4.1529368474399396e-07,3.834600498167943e-07,3.5375121179700427e-07,3.2605342202882406e-07,3.002566283476193e-07,2.762545621802784e-07,2.5394480262078146e-07,2.332288189733589e-07,2.1401199326574605e-07,1.9620362423408874e-07,1.7971691426993442e-07,1.6446894079934937e-07],[1.5417978881816751e-07,1.684738513820405e-07,1.839291552724012e-07,2.0062343543954009e-07,2.186380594466949e-07,2.3805805430041536e-07,2.5897211868697787e-07,2.81472619236775e-07,3.0565556941948647e-07,3.316205896624144e-07,3.5947084728347215e-07,3.8931297483981186e-07,4.212569655137645e-07,4.554160441904302e-07,4.919065129266532e-07,5.308475695698975e-07,5.723610983583524e-07,6.165714314209579e-07,6.636050801983905e-07,7.135904359237631e-07,7.666574384350483e-07,8.229372127401669e-07,8.825616729202601e-07,9.456630931366697e-07,1.012373645702273e-06,1.0828249063875584e-06,1.1571473273554755e-06,1.235469678355841e-06,1.317918457058846e-06,1.4046172696668338e-06,1.4956861832125196e-06,1.5912410512287061e-06,1.691392814757472e-06,1.7962467809538876e-06,1.9059018818284016e-06,2.0204499159609357e-06,2.1399747763059477e-06,2.2645516674888375e-06,2.3942463162673496e-06,2.529114179094436e-06,2.6691996509684877e-06,2.8145352799901977e-06,2.965140992259627e-06,3.1210233319395407e-06,3.28217472147891e-06,3.4485727471309367e-06,3.6201794750104027e-06,3.796940803013086e-06,3.978785853963057e-06,4.165626415359814e-06,4.357356431064402e-06,4.553851550190404e-06,4.754968738350453e-06,4.960545956250815e-06,5.1704019104248455e-06,5.384335880650372e-06,5.60212762830647e-06,5.823537389591964e-06,6.0483059571523224e-06,6.276154853244636e-06,6.506786597113748e-06,6.739885068758654e-06,6.9751159707393256e-06,7.212127389113456e-06,7.45055045400323e-06,7.690000099678408e-06,7.930075923407288e-06,8.170363141676541e-06,8.410433641718756e-06,8.649847125618142e-06,8.888152343595269e-06,9.124888412406497e-06,9.359586214138256e-06,9.591769870036386e-06,9.82095828339177e-06,1.0046666744911225e-05,1.0268408593442457e-05,1.0485696924399281e-05,1.0698046337753377e-05,1.0904974717026338e-05,1.1106005030335613e-05,1.1300667144223827e-05,1.1488499640737223e-05,1.1669051628018453e-05,1.1841884534544824e-05,1.2006573877077412e-05,1.2162710992391049e-05,1.2309904722931097e-05,1.2447783046690575e-05,1.2575994641820559e-05,1.2694210376776967e-05,1.2802124717166304e-05,1.2899457040879887e-05,1.2985952853597379e-05,1.3061384897293241e-05,1.3125554144989699e-05,1.3178290675662768e-05,1.321945442391891e-05,1.324893579981326e-05,1.3266656174970718e-05,1.327256823199187e-05,1.3266656174970718e-05,1.324893579981326e-05,1.321945442391891e-05,1.3178290675662768e-05,1.3125554144989699e-05,1.3061384897293241e-05,1.2985952853597379e-05,1.2899457040879887e-05,1.2802124717166304e-05,1.2694210376776967e-05,1.2575994641820559e-05,1.2447783046690575e-05,1.2309904722931097e-05,1.2162710992391049e-05,1.2006573877077412e-05,1.1841884534544824e-05,1.1669051628018453e-05,1.1488499640737223e-05,1.1300667144223827e-05,1.1106005030335613e-05,1.0904974717026338e-05,1.0698046337753377e-05,1.0485696924399281e-05,1.0268408593442457e-05,1.0046666744911225e-05,9.82095828339177e-06,9.591769870036386e-06,9.359586214138256e-06,9.124888412406497e-06,8.888152343595269e-06,8.649847125618142e-06,8.410433641718756e-06,8.170363141676541e-06,7.930075923407288e-06,7.690000099678408e-06,7.45055045400323e-06,7.212127389113456e-06,6.9751159707393256e-06,6.739885068758654e-06,6.506786597113748e-06,6.276154853244636e-06,6.0483059571523224e-06,5.823537389591964e-06,5.60212762830647e-06,5.384335880650372e-06,5.1704019104248455e-06,4.960545956250815e-06,4.754968738350453e-06,4.553851550190404e-06,4.357356431064402e-06,4.165626415359814e-06,3.978785853963057e-06,3.796940803013086e-06,3.6201794750104027e-06,3.4485727471309367e-06,3.28217472147891e-06,3.1210233319395407e-06,2.965140992259627e-06,2.8145352799901977e-06,2.6691996509684877e-06,2.529114179094436e-06,2.3942463162673496e-06,2.2645516674888375e-06,2.1399747763059477e-06,2.0204499159609357e-06,1.9059018818284016e-06,1.7962467809538876e-06,1.691392814757472e-06,1.5912410512287061e-06,1.4956861832125196e-06,1.4046172696668338e-06,1.317918457058846e-06,1.235469678355841e-06,1.1571473273554755e-06,1.0828249063875584e-06,1.012373645702273e-06,9.456630931366697e-07,8.825616729202601e-07,8.229372127401669e-07,7.666574384350483e-07,7.135904359237631e-07,6.636050801983905e-07,6.165714314209579e-07,5.723610983583524e-07,5.308475695698975e-07,4.919065129266532e-07,4.554160441904302e-07,4.212569655137645e-07,3.8931297483981186e-07,3.5947084728347215e-07,3.316205896624144e-07,3.0565556941948647e-07,2.81472619236775e-07,2.5897211868697787e-07,2.3805805430041536e-07,2.186380594466949e-07,2.0062343543954009e-07,1.839291552724012e-07,1.684738513820405e-07,1.5417978881816751e-07],[1.44405592212186e-07,1.5779348556368404e-07,1.7226900358206035e-07,1.87904953226115e-07,2.047775437788303e-07,2.2296641197683015e-07,2.4255463347106973e-07,2.63628719328043e-07,2.862785962628903e-07,3.1059756928602366e-07,3.366822654440514e-07,3.646325573446786e-07,3.945514651746336e-07,4.2654503595026906e-07,4.607221987829997e-07,4.971945949967981e-07,5.360763820031639e-07,5.774840099208074e-07,6.215359700231473e-07,6.683525142069768e-07,7.180553448004555e-07,7.707672741680819e-07,8.266118537244375e-07,8.857129721370923e-07,9.48194422681815e-07,1.0141794399096694e-06,1.0837902059950541e-06,1.1571473273554755e-06,1.2343692823668446e-06,1.3155718412412445e-06,1.4008674593860757e-06,1.4903646458228024e-06,1.584167308508523e-06,1.682374078672459e-06,1.7850776165502156e-06,1.8923639011692614e-06,2.004311507107132e-06,2.120990871407172e-06,2.2424635540925805e-06,2.368781495965662e-06,2.4999862776128418e-06,2.6361083837545358e-06,2.777166477279712e-06,2.9231666874852578e-06,3.074101917197463e-06,3.229951173584484e-06,3.390678927572105e-06,3.556234506848084e-06,3.726551527480762e-06,3.901547369183307e-06,4.081122699224299e-06,4.265161049916675e-06,4.453528454509198e-06,4.646073146156469e-06,4.842625324454583e-06,5.0429969937993605e-06,5.246981877552813e-06,5.454355411691569e-06,5.664874821259042e-06,5.878279282552651e-06,6.094290173549694e-06,6.3126114146128525e-06,6.532929901020864e-06,6.7549160283447945e-06,6.978224311138314e-06,7.20249409483546e-06,7.427350360154927e-06,7.65240461870053e-06,7.877255897827375e-06,8.10149181221721e-06,8.324689718979333e-06,8.546417952470348e-06,8.766237134412172e-06,8.983701554288255e-06,9.198360614418293e-06,9.409760333556953e-06,9.617444902337501e-06,9.820958283391767e-06,1.0019845848528289e-05,1.0213656044945543e-05,1.0401942082100931e-05,1.0584263630552754e-05,1.0760188523845344e-05,1.0929294454319681e-05,1.109117065360627e-05,1.124541954849548e-05,1.139165838288485e-05,1.1529520796574004e-05,1.1658658351816037e-05,1.1778741998739757e-05,1.1889463471028914e-05,1.1990536603581248e-05,1.208169856427004e-05,1.2162710992391045e-05,1.2233361036895407e-05,1.2293462288080448e-05,1.2342855597031222e-05,1.238140977777155e-05,1.2409022187789018e-05,1.2425619183338498e-05,1.2431156446697567e-05,1.2425619183338498e-05,1.2409022187789018e-05,1.238140977777155e-05,1.2342855597031222e-05,1.2293462288080448e-05,1.2233361036895407e-05,1.2162710992391045e-05,1.208169856427004e-05,1.1990536603581248e-05,1.1889463471028914e-05,1.1778741998739757e-05,1.1658658351816037e-05,1.1529520796574004e-05,1.139165838288485e-05,1.124541954849548e-05,1.109117065360627e-05,1.0929294454319681e-05,1.0760188523845344e-05,1.0584263630552754e-05,1.0401942082100931e-05,1.0213656044945543e-05,1.0019845848528289e-05,9.820958283391767e-06,9.617444902337501e-06,9.409760333556953e-06,9.198360614418293e-06,8.983701554288255e-06,8.766237134412172e-06,8.546417952470348e-06,8.324689718979333e-06,8.10149181221721e-06,7.877255897827375e-06,7.65240461870053e-06,7.427350360154927e-06,7.20249409483546e-06,6.978224311138314e-06,6.7549160283447945e-06,6.532929901020864e-06,6.3126114146128525e-06,6.094290173549694e-06,5.878279282552651e-06,5.664874821259042e-06,5.454355411691569e-06,5.246981877552813e-06,5.0429969937993605e-06,4.842625324454583e-06,4.646073146156469e-06,4.453528454509198e-06,4.265161049916675e-06,4.081122699224299e-06,3.901547369183307e-06,3.726551527480762e-06,3.556234506848084e-06,3.390678927572105e-06,3.229951173584484e-06,3.074101917197463e-06,2.9231666874852578e-06,2.777166477279712e-06,2.6361083837545358e-06,2.4999862776128418e-06,2.368781495965662e-06,2.2424635540925805e-06,2.120990871407172e-06,2.004311507107132e-06,1.8923639011692614e-06,1.7850776165502156e-06,1.682374078672459e-06,1.584167308508523e-06,1.4903646458228024e-06,1.4008674593860757e-06,1.3155718412412445e-06,1.2343692823668446e-06,1.1571473273554755e-06,1.0837902059950541e-06,1.0141794399096694e-06,9.48194422681815e-07,8.857129721370923e-07,8.266118537244375e-07,7.707672741680819e-07,7.180553448004555e-07,6.683525142069768e-07,6.215359700231473e-07,5.774840099208074e-07,5.360763820031639e-07,4.971945949967981e-07,4.607221987829997e-07,4.2654503595026906e-07,3.945514651746336e-07,3.646325573446786e-07,3.366822654440514e-07,3.1059756928602366e-07,2.862785962628903e-07,2.63628719328043e-07,2.4255463347106973e-07,2.2296641197683015e-07,2.047775437788303e-07,1.87904953226115e-07,1.7226900358206035e-07,1.5779348556368404e-07,1.44405592212186e-07],[1.351305647711742e-07,1.476585670595199e-07,1.612043369650529e-07,1.7583600512808433e-07,1.9162488598521221e-07,2.086455012847405e-07,2.2697559081126005e-07,2.466961091115804e-07,2.678912069974449e-07,2.9064819659132603e-07,3.1505749868081474e-07,3.4121257115544016e-07,3.692098173178873e-07,3.9914847289021155e-07,4.311304705754337e-07,4.652602810864197e-07,5.016447296177651e-07,5.40392786812974e-07,5.816153333689245e-07,6.254248975227816e-07,6.719353647833147e-07,7.212616593991026e-07,7.735193972003558e-07,8.288245096088497e-07,8.87292838781479e-07,9.490397040367649e-07,1.0141794399096694e-06,1.0828249063875584e-06,1.1550869720981956e-06,1.2310739714481851e-06,1.3108911369460516e-06,1.3946400081868246e-06,1.4824178192229526e-06,1.5743168662979846e-06,1.6704238581728308e-06,1.7708192515276123e-06,1.8755765741729654e-06,1.9847617390510573e-06,2.098432352246075e-06,2.2166370184542954e-06,2.3394146475824693e-06,2.4667937663477645e-06,2.598791838940369e-06,2.7354146009785324e-06,2.876655411132947e-06,3.022494624920462e-06,3.172898995263931e-06,3.3278211044832865e-06,3.487198832420718e-06,3.650954865408175e-06,3.818996250756694e-06,3.99121400138282e-06,4.16748275508639e-06,4.347660492855409e-06,4.531588320396893e-06,4.7190903168771774e-06,4.909973454601399e-06,5.104027593069865e-06,5.3010255505197855e-06,5.500723255695361e-06,5.702859982189059e-06,5.907158667263935e-06,6.113326316603297e-06,6.321054495942581e-06,6.530019910021765e-06,6.739885068758652e-06,6.950299039987063e-06,7.160898287533785e-06,7.371307592827763e-06,7.581141057649232e-06,7.790003185039644e-06,7.997490034810185e-06,8.203190449512195e-06,8.406687346171928e-06,8.607559068549545e-06,8.805380794163188e-06,8.999725989828021e-06,9.190167909002071e-06,9.376281123810064e-06,9.557643084237424e-06,9.733835696653346e-06,9.90444691353786e-06,1.0069072326056546e-05,1.0227316750950944e-05,1.0378795803095033e-05,1.0523137445010679e-05,1.0659983504638877e-05,1.0788991152730228e-05,1.090983433134746e-05,1.1022205125165064e-05,1.1125815067505421e-05,1.122039637336593e-05,1.1305703092065738e-05,1.1381512172571361e-05,1.1447624435044927e-05,1.1503865442693409e-05,1.1550086268578237e-05,1.1586164152667901e-05,1.1612003045076383e-05,1.1627534032122994e-05,1.163271564256851e-05,1.1627534032122994e-05,1.1612003045076383e-05,1.1586164152667901e-05,1.1550086268578237e-05,1.1503865442693409e-05,1.1447624435044927e-05,1.1381512172571361e-05,1.1305703092065738e-05,1.122039637336593e-05,1.1125815067505421e-05,1.1022205125165064e-05,1.090983433134746e-05,1.0788991152730228e-05,1.0659983504638877e-05,1.0523137445010679e-05,1.0378795803095033e-05,1.0227316750950944e-05,1.0069072326056546e-05,9.90444691353786e-06,9.733835696653346e-06,9.557643084237424e-06,9.376281123810064e-06,9.190167909002071e-06,8.999725989828021e-06,8.805380794163188e-06,8.607559068549545e-06,8.406687346171928e-06,8.203190449512195e-06,7.997490034810185e-06,7.790003185039644e-06,7.581141057649232e-06,7.371307592827763e-06,7.160898287533785e-06,6.950299039987063e-06,6.739885068758652e-06,6.530019910021765e-06,6.321054495942581e-06,6.113326316603297e-06,5.907158667263935e-06,5.702859982189059e-06,5.500723255695361e-06,5.3010255505197855e-06,5.104027593069865e-06,4.909973454601399e-06,4.7190903168771774e-06,4.531588320396893e-06,4.347660492855409e-06,4.16748275508639e-06,3.99121400138282e-06,3.818996250756694e-06,3.650954865408175e-06,3.487198832420718e-06,3.3278211044832865e-06,3.172898995263931e-06,3.022494624920462e-06,2.876655411132947e-06,2.7354146009785324e-06,2.598791838940369e-06,2.4667937663477645e-06,2.3394146475824693e-06,2.2166370184542954e-06,2.098432352246075e-06,1.9847617390510573e-06,1.8755765741729654e-06,1.7708192515276123e-06,1.6704238581728308e-06,1.5743168662979846e-06,1.4824178192229526e-06,1.3946400081868246e-06,1.3108911369460516e-06,1.2310739714481851e-06,1.1550869720981956e-06,1.0828249063875584e-06,1.0141794399096694e-06,9.490397040367649e-07,8.87292838781479e-07,8.288245096088497e-07,7.735193972003558e-07,7.212616593991026e-07,6.719353647833147e-07,6.254248975227816e-07,5.816153333689245e-07,5.40392786812974e-07,5.016447296177651e-07,4.652602810864197e-07,4.311304705754337e-07,3.9914847289021155e-07,3.692098173178873e-07,3.4121257115544016e-07,3.1505749868081474e-07,2.9064819659132603e-07,2.678912069974449e-07,2.466961091115804e-07,2.2697559081126005e-07,2.086455012847405e-07,1.9162488598521221e-07,1.7583600512808433e-07,1.612043369650529e-07,1.476585670595199e-07,1.351305647711742e-07],[1.2633863674191953e-07,1.380515362838511e-07,1.507159849700733e-07,1.6439568069330074e-07,1.7915729799689127e-07,1.950705100602939e-07,2.1220799872586203e-07,2.3064545143780413e-07,2.504615439483778e-07,2.7173790763789226e-07,2.945590802943506e-07,3.1901243920634686e-07,3.451881154397821e-07,3.731788881957336e-07,4.0308005818400645e-07,4.3498929899506694e-07,4.690064855127191e-07,5.052334984814749e-07,5.437740044264337e-07,5.847332102199454e-07,6.282175916985233e-07,6.743345958555154e-07,7.231923162698934e-07,7.748991415790274e-07,8.295633769632011e-07,8.87292838781479e-07,9.48194422681815e-07,1.012373645702273e-06,1.0799341630840847e-06,1.150977260730004e-06,1.2256013244618512e-06,1.3039012874580164e-06,1.3859680574835336e-06,1.4718879257605714e-06,1.5617419595640694e-06,1.655605380863982e-06,1.7535469335701287e-06,1.8556282421659941e-06,1.961903164741764e-06,2.072417143652225e-06,2.1872065572295696e-06,2.3062980761723463e-06,2.429708028407431e-06,2.557441776379594e-06,2.689493110860803e-06,2.825843665486461e-06,2.96646235631631e-06,3.1113048507815698e-06,3.2603130704152e-06,3.413414731767195e-06,3.5705229298799304e-06,3.7315357686385675e-06,3.896336042217063e-06,4.06479097171083e-06,4.236752000881714e-06,4.4120546547396416e-06,4.590518464447943e-06,4.771946961766438e-06,4.9561277459384795e-06,5.142832625586506e-06,5.3318178378065e-06,5.522824346246939e-06,5.715578219524447e-06,5.909791090868892e-06,6.105160699407719e-06,6.301371512996361e-06,6.498095431981428e-06,6.694992572750298e-06,6.8917121293781425e-06,7.0878933111357204e-06,7.283166353072646e-06,7.47715359634566e-06,7.669470634424399e-06,7.8597275207827e-06,8.047530033176274e-06,8.232480989122348e-06,8.414181606737723e-06,8.5922329046636e-06,8.766237134412172e-06,8.935799238115614e-06,9.100528324346546e-06,9.260039154413525e-06,9.413953631318927e-06,9.56190228340235e-06,9.703525734582694e-06,9.838476153058286e-06,9.966418670328206e-06,1.0087032762460078e-05,1.0200013585650705e-05,1.0305073258305545e-05,1.040194208210093e-05,1.0490369694787385e-05,1.0570126147842327e-05,1.0641002902482976e-05,1.0702813738003264e-05,1.0755395566898398e-05,1.0798609151783972e-05,1.0832339719699082e-05,1.085649747000033e-05,1.0871017972701166e-05,1.0875862454783534e-05,1.0871017972701166e-05,1.085649747000033e-05,1.0832339719699082e-05,1.0798609151783972e-05,1.0755395566898398e-05,1.0702813738003264e-05,1.0641002902482976e-05,1.0570126147842327e-05,1.0490369694787385e-05,1.040194208210093e-05,1.0305073258305545e-05,1.0200013585650705e-05,1.0087032762460078e-05,9.966418670328206e-06,9.838476153058286e-06,9.703525734582694e-06,9.56190228340235e-06,9.413953631318927e-06,9.260039154413525e-06,9.100528324346546e-06,8.935799238115614e-06,8.766237134412172e-06,8.5922329046636e-06,8.414181606737723e-06,8.232480989122348e-06,8.047530033176274e-06,7.8597275207827e-06,7.669470634424399e-06,7.47715359634566e-06,7.283166353072646e-06,7.0878933111357204e-06,6.8917121293781425e-06,6.694992572750298e-06,6.498095431981428e-06,6.301371512996361e-06,6.105160699407719e-06,5.909791090868892e-06,5.715578219524447e-06,5.522824346246939e-06,5.3318178378065e-06,5.142832625586506e-06,4.9561277459384795e-06,4.771946961766438e-06,4.590518464447943e-06,4.4120546547396416e-06,4.236752000881714e-06,4.06479097171083e-06,3.896336042217063e-06,3.7315357686385675e-06,3.5705229298799304e-06,3.413414731767195e-06,3.2603130704152e-06,3.1113048507815698e-06,2.96646235631631e-06,2.825843665486461e-06,2.689493110860803e-06,2.557441776379594e-06,2.429708028407431e-06,2.3062980761723463e-06,2.1872065572295696e-06,2.072417143652225e-06,1.961903164741764e-06,1.8556282421659941e-06,1.7535469335701287e-06,1.655605380863982e-06,1.5617419595640694e-06,1.4718879257605714e-06,1.3859680574835336e-06,1.3039012874580164e-06,1.2256013244618512e-06,1.150977260730004e-06,1.0799341630840847e-06,1.012373645702273e-06,9.48194422681815e-07,8.87292838781479e-07,8.295633769632011e-07,7.748991415790274e-07,7.231923162698934e-07,6.743345958555154e-07,6.282175916985233e-07,5.847332102199454e-07,5.437740044264337e-07,5.052334984814749e-07,4.690064855127191e-07,4.3498929899506694e-07,4.0308005818400645e-07,3.731788881957336e-07,3.451881154397821e-07,3.1901243920634686e-07,2.945590802943506e-07,2.7173790763789226e-07,2.504615439483778e-07,2.3064545143780413e-07,2.1220799872586203e-07,1.950705100602939e-07,1.7915729799689127e-07,1.6439568069330074e-07,1.507159849700733e-07,1.380515362838511e-07,1.2633863674191953e-07],[1.180135284153471e-07,1.2895460423003652e-07,1.407845266784579e-07,1.5356279626865636e-07,1.6735169401236406e-07,1.8221630196171277e-07,1.9822451257532828e-07,2.154470258589898e-07,2.3395733321140238e-07,2.53831686897654e-07,2.7514905407224273e-07,2.9799105428082996e-07,3.224418793857083e-07,3.4858819488497927e-07,3.765190216301781e-07,4.0632559699208207e-07,4.3810121458016616e-07,4.71941041688043e-07,5.079419137155635e-07,5.462021049083563e-07,5.868210748575803e-07,6.298991903166657e-07,6.755374220177851e-07,7.238370163085804e-07,7.748991415790274e-07,8.288245096088497e-07,8.857129721370923e-07,9.456630931366697e-07,1.0087716974671174e-06,1.0751333967775008e-06,1.1448400937373306e-06,1.2179804658852797e-06,1.294639430602038e-06,1.3748975929333934e-06,1.4588306782108932e-06,1.5465089516385778e-06,1.6379966272333467e-06,1.7333512687217075e-06,1.8326231852048225e-06,1.9358548246049276e-06,2.0430801680971462e-06,2.15432412890931e-06,2.269601959036469e-06,2.3889186675640818e-06,2.5122684544223715e-06,2.6396341635018044e-06,2.770986759144235e-06,2.9062848300838747e-06,3.045474124945239e-06,3.1884871234099072e-06,3.335242647138852e-06,3.4856455144809634e-06,3.639586242910239e-06,3.7969408030130853e-06,3.957570427692713e-06,4.121321480069582e-06,4.288025383335095e-06,4.457498615560861e-06,4.6295427721782005e-06,4.803944698523473e-06,4.980476694495252e-06,5.158896792991318e-06,5.3389491133885344e-06,5.520364290899538e-06,5.7028599821890586e-06,5.886141447162777e-06,6.069902206355927e-06,6.253824772850725e-06,6.4375814571450035e-06,6.620835242882762e-06,6.803240730844849e-06,6.9844451480888e-06,7.164089418625164e-06,7.3418092915277546e-06,7.5172365219015256e-06,7.690000099678406e-06,7.8597275207827e-06,8.026046094807591e-06,8.188584282976992e-06,8.34697305983588e-06,8.500847291821304e-06,8.64984712561814e-06,8.79361937900183e-06,8.931818926716803e-06,9.064110073836686e-06,9.19016790900207e-06,9.30967962993514e-06,9.422345833688573e-06,9.52788176419915e-06,9.62601850988437e-06,9.71650414424253e-06,9.799104802691869e-06,9.87360568921112e-06,9.939812006719979e-06,9.997549805560967e-06,1.0046666744911223e-05,1.008703276246008e-05,1.0118540648232562e-05,1.014110651901563e-05,1.0154670190448866e-05,1.0159195444469559e-05,1.0154670190448866e-05,1.014110651901563e-05,1.0118540648232562e-05,1.008703276246008e-05,1.0046666744911223e-05,9.997549805560967e-06,9.939812006719979e-06,9.87360568921112e-06,9.799104802691869e-06,9.71650414424253e-06,9.62601850988437e-06,9.52788176419915e-06,9.422345833688573e-06,9.30967962993514e-06,9.19016790900207e-06,9.064110073836686e-06,8.931818926716803e-06,8.79361937900183e-06,8.64984712561814e-06,8.500847291821304e-06,8.34697305983588e-06,8.188584282976992e-06,8.026046094807591e-06,7.8597275207827e-06,7.690000099678406e-06,7.5172365219015256e-06,7.3418092915277546e-06,7.164089418625164e-06,6.9844451480888e-06,6.803240730844849e-06,6.620835242882762e-06,6.4375814571450035e-06,6.253824772850725e-06,6.069902206355927e-06,5.886141447162777e-06,5.7028599821890586e-06,5.520364290899538e-06,5.3389491133885344e-06,5.158896792991318e-06,4.980476694495252e-06,4.803944698523473e-06,4.6295427721782005e-06,4.457498615560861e-06,4.288025383335095e-06,4.121321480069582e-06,3.957570427692713e-06,3.7969408030130853e-06,3.639586242910239e-06,3.4856455144809634e-06,3.335242647138852e-06,3.1884871234099072e-06,3.045474124945239e-06,2.9062848300838747e-06,2.770986759144235e-06,2.6396341635018044e-06,2.5122684544223715e-06,2.3889186675640818e-06,2.269601959036469e-06,2.15432412890931e-06,2.0430801680971462e-06,1.9358548246049276e-06,1.8326231852048225e-06,1.7333512687217075e-06,1.6379966272333467e-06,1.5465089516385778e-06,1.4588306782108932e-06,1.3748975929333934e-06,1.294639430602038e-06,1.2179804658852797e-06,1.1448400937373306e-06,1.0751333967775008e-06,1.0087716974671174e-06,9.456630931366697e-07,8.857129721370923e-07,8.288245096088497e-07,7.748991415790274e-07,7.238370163085804e-07,6.755374220177851e-07,6.298991903166657e-07,5.868210748575803e-07,5.462021049083563e-07,5.079419137155635e-07,4.71941041688043e-07,4.3810121458016616e-07,4.0632559699208207e-07,3.765190216301781e-07,3.4858819488497927e-07,3.224418793857083e-07,2.9799105428082996e-07,2.7514905407224273e-07,2.53831686897654e-07,2.3395733321140238e-07,2.154470258589898e-07,1.9822451257532828e-07,1.8221630196171277e-07,1.6735169401236406e-07,1.5356279626865636e-07,1.407845266784579e-07,1.2895460423003652e-07,1.180135284153471e-07],[1.1013881986237013e-07,1.203498286715763e-07,1.3139037389573765e-07,1.433159857424948e-07,1.561847893880382e-07,1.7005752414346448e-07,1.8499755219589745e-07,2.010708559399434e-07,2.1834602290138942e-07,2.368942172476101e-07,2.5678913687850816e-07,2.781069550985983e-07,3.009262458856222e-07,3.2532789179441784e-07,3.513949735671925e-07,3.792126405633433e-07,4.088679611739796e-07,4.4044975244871205e-07,4.740483882353841e-07,5.097555852175129e-07,5.476641663293951e-07,5.878678011352296e-07,6.304607228761664e-07,6.755374220177851e-07,7.231923162698934e-07,7.735193972003558e-07,8.266118537244375e-07,8.825616729202601e-07,9.414592187986772e-07,1.003392789841339e-06,1.0684481563128758e-06,1.1367080785509273e-06,1.2082518076398444e-06,1.2831545700789723e-06,1.3614870382629277e-06,1.443314788797667e-06,1.528697750880587e-06,1.6176896471737385e-06,1.7103374297944317e-06,1.8066807142352582e-06,1.9067512142037554e-06,2.0105721805386123e-06,2.1181578475124414e-06,2.229512889968614e-06,2.3446318948595837e-06,2.463498850854422e-06,2.5860866597622273e-06,2.712356673573706e-06,2.842258260954025e-06,2.9757284070244076e-06,3.1126913502465006e-06,3.2530582601712316e-06,3.3967269597315198e-06,3.5435816956453053e-06,3.6934929603512e-06,3.846317368723554e-06,4.001897592606825e-06,4.1600623559711895e-06,4.3206264932229866e-06,4.483391072905653e-06,4.6481435887007145e-06,4.814658219285465e-06,4.982696158226131e-06,5.152006014684809e-06,5.322324285297428e-06,5.493375897141504e-06,5.664874821259044e-06,5.836524755735208e-06,6.0080198768603386e-06,6.179045656425486e-06,6.349279742723268e-06,6.5183929023506666e-06,6.686050019442155e-06,6.85191114850434e-06,7.0156326165812035e-06,7.176868170055866e-06,7.335270160994724e-06,7.4904907675664005e-06,7.642183242725185e-06,7.790003185039644e-06,7.93360982527547e-06,8.072667322110202e-06,8.206846060168965e-06,8.335823943427142e-06,8.459287676930161e-06,8.576934029733515e-06,8.688471071969576e-06,8.79361937900183e-06,8.892113195732764e-06,8.983701554288257e-06,9.068149338508645e-06,9.14523828893343e-06,9.214767942271578e-06,9.27655649970031e-06,9.330441618730192e-06,9.376281123810064e-06,9.413953631318929e-06,9.443359085099838e-06,9.464419199229014e-06,9.477077805277972e-06,9.481301101912764e-06,9.477077805277972e-06,9.464419199229014e-06,9.443359085099838e-06,9.413953631318929e-06,9.376281123810064e-06,9.330441618730192e-06,9.27655649970031e-06,9.214767942271578e-06,9.14523828893343e-06,9.068149338508645e-06,8.983701554288257e-06,8.892113195732764e-06,8.79361937900183e-06,8.688471071969576e-06,8.576934029733515e-06,8.459287676930161e-06,8.335823943427142e-06,8.206846060168965e-06,8.072667322110202e-06,7.93360982527547e-06,7.790003185039644e-06,7.642183242725185e-06,7.4904907675664005e-06,7.335270160994724e-06,7.176868170055866e-06,7.0156326165812035e-06,6.85191114850434e-06,6.686050019442155e-06,6.5183929023506666e-06,6.349279742723268e-06,6.179045656425486e-06,6.0080198768603386e-06,5.836524755735208e-06,5.664874821259044e-06,5.493375897141504e-06,5.322324285297428e-06,5.152006014684809e-06,4.982696158226131e-06,4.814658219285465e-06,4.6481435887007145e-06,4.483391072905653e-06,4.3206264932229866e-06,4.1600623559711895e-06,4.001897592606825e-06,3.846317368723554e-06,3.6934929603512e-06,3.5435816956453053e-06,3.3967269597315198e-06,3.2530582601712316e-06,3.1126913502465006e-06,2.9757284070244076e-06,2.842258260954025e-06,2.712356673573706e-06,2.5860866597622273e-06,2.463498850854422e-06,2.3446318948595837e-06,2.229512889968614e-06,2.1181578475124414e-06,2.0105721805386123e-06,1.9067512142037554e-06,1.8066807142352582e-06,1.7103374297944317e-06,1.6176896471737385e-06,1.528697750880587e-06,1.443314788797667e-06,1.3614870382629277e-06,1.2831545700789723e-06,1.2082518076398444e-06,1.1367080785509273e-06,1.0684481563128758e-06,1.003392789841339e-06,9.414592187986772e-07,8.825616729202601e-07,8.266118537244375e-07,7.735193972003558e-07,7.231923162698934e-07,6.755374220177851e-07,6.304607228761664e-07,5.878678011352296e-07,5.476641663293951e-07,5.097555852175129e-07,4.740483882353841e-07,4.4044975244871205e-07,4.088679611739796e-07,3.792126405633433e-07,3.513949735671925e-07,3.2532789179441784e-07,3.009262458856222e-07,2.781069550985983e-07,2.5678913687850816e-07,2.368942172476101e-07,2.1834602290138942e-07,2.010708559399434e-07,1.8499755219589745e-07,1.7005752414346448e-07,1.561847893880382e-07,1.433159857424948e-07,1.3139037389573765e-07,1.203498286715763e-07,1.1013881986237013e-07],[1.0269801670870804e-07,1.1221918603493669e-07,1.2251384961786796e-07,1.336337861328067e-07,1.4563319391166778e-07,1.585687088144836e-07,1.7249941237998954e-07,1.8748682933736103e-07,2.035949135484435e-07,2.2089002144287037e-07,2.394408720078712e-07,2.5931849240089673e-07,2.8059614826696733e-07,3.0334925786440965e-07,3.2765528913288446e-07,3.5359363887676094e-07,3.8124549328539665e-07,4.106936690700688e-07,4.4202243456547917e-07,4.753173102221655e-07,5.106648480049053e-07,5.48152389311411e-07,5.878678011352296e-07,6.298991903166657e-07,6.743345958555154e-07,7.212616593991026e-07,7.707672741680819e-07,8.229372127401669e-07,8.778557342776411e-07,9.356051719574463e-07,9.96265501541817e-07,1.0599138922118684e-06,1.1266242409749857e-06,1.1964666921480992e-06,1.2695071436114687e-06,1.3458067417200533e-06,1.4254213669501771e-06,1.5084011125464545e-06,1.5947897586159724e-06,1.6846242442917745e-06,1.7779341407538548e-06,1.8747411280512937e-06,1.9750584788119284e-06,2.0788905520541633e-06,2.1862323004273173e-06,2.2970687943004634e-06,2.4113747661932947e-06,2.529114179094436e-06,2.6502398222413505e-06,2.7746929379400507e-06,2.902402882980982e-06,3.033286828158652e-06,3.167249499325804e-06,3.3041829633076498e-06,3.443966461867266e-06,3.586466296749597e-06,3.7315357686385687e-06,3.879015172639992e-06,4.028731852652632e-06,4.1805003167121175e-06,4.334122415088203e-06,4.489387582586876e-06,4.646073146156469e-06,4.803944698523473e-06,4.9627565381911786e-06,5.1222521757253905e-06,5.282164905828702e-06,5.442218444271459e-06,5.60212762830647e-06,5.761599178749351e-06,5.920332521460374e-06,6.078020665520567e-06,6.234351134958238e-06,6.389006950455795e-06,6.541667657054456e-06,6.692010393479909e-06,6.839710998338935e-06,6.984445148088801e-06,7.1258895213616325e-06,7.263722983937866e-06,7.397627788409618e-06,7.527290782358981e-06,7.652404618700531e-06,7.772668961703792e-06,7.887791682122047e-06,7.997490034810185e-06,8.10149181221721e-06,8.199536467189769e-06,8.291376198621228e-06,8.376776993627102e-06,8.455519620120796e-06,8.527400563903146e-06,8.592232904663603e-06,8.649847125618142e-06,8.70009185187721e-06,8.742834513043311e-06,8.777961925979448e-06,8.80538079416319e-06,8.825018120543007e-06,8.83682153133994e-06,8.840759508784293e-06,8.83682153133994e-06,8.825018120543007e-06,8.80538079416319e-06,8.777961925979448e-06,8.742834513043311e-06,8.70009185187721e-06,8.649847125618142e-06,8.592232904663603e-06,8.527400563903146e-06,8.455519620120796e-06,8.376776993627102e-06,8.291376198621228e-06,8.199536467189769e-06,8.10149181221721e-06,7.997490034810185e-06,7.887791682122047e-06,7.772668961703792e-06,7.652404618700531e-06,7.527290782358981e-06,7.397627788409618e-06,7.263722983937866e-06,7.1258895213616325e-06,6.984445148088801e-06,6.839710998338935e-06,6.692010393479909e-06,6.541667657054456e-06,6.389006950455795e-06,6.234351134958238e-06,6.078020665520567e-06,5.920332521460374e-06,5.761599178749351e-06,5.60212762830647e-06,5.442218444271459e-06,5.282164905828702e-06,5.1222521757253905e-06,4.9627565381911786e-06,4.803944698523473e-06,4.646073146156469e-06,4.489387582586876e-06,4.334122415088203e-06,4.1805003167121175e-06,4.028731852652632e-06,3.879015172639992e-06,3.7315357686385687e-06,3.586466296749597e-06,3.443966461867266e-06,3.3041829633076498e-06,3.167249499325804e-06,3.033286828158652e-06,2.902402882980982e-06,2.7746929379400507e-06,2.6502398222413505e-06,2.529114179094436e-06,2.4113747661932947e-06,2.2970687943004634e-06,2.1862323004273173e-06,2.0788905520541633e-06,1.9750584788119284e-06,1.8747411280512937e-06,1.7779341407538548e-06,1.6846242442917745e-06,1.5947897586159724e-06,1.5084011125464545e-06,1.4254213669501771e-06,1.3458067417200533e-06,1.2695071436114687e-06,1.1964666921480992e-06,1.1266242409749857e-06,1.0599138922118684e-06,9.96265501541817e-07,9.356051719574463e-07,8.778557342776411e-07,8.229372127401669e-07,7.707672741680819e-07,7.212616593991026e-07,6.743345958555154e-07,6.298991903166657e-07,5.878678011352296e-07,5.48152389311411e-07,5.106648480049053e-07,4.753173102221655e-07,4.4202243456547917e-07,4.106936690700688e-07,3.8124549328539665e-07,3.5359363887676094e-07,3.2765528913288446e-07,3.0334925786440965e-07,2.8059614826696733e-07,2.5931849240089673e-07,2.394408720078712e-07,2.2089002144287037e-07,2.035949135484435e-07,1.8748682933736103e-07,1.7249941237998954e-07,1.585687088144836e-07,1.4563319391166778e-07,1.336337861328067e-07,1.2251384961786796e-07,1.1221918603493669e-07,1.0269801670870804e-07],[9.567461186995482e-08,1.0454463885809825e-07,1.1413526167822904e-07,1.2449471791878067e-07,1.356734993471323e-07,1.4772436855890338e-07,1.6070236657112944e-07,1.7466481050416903e-07,1.8967128048532872e-07,2.0578359490072461e-07,2.2306577312134344e-07,2.415839848351609e-07,2.614064851300099e-07,2.8260353449216427e-07,3.0524730291377127e-07,3.2941175733874267e-07,3.5517253172189976e-07,3.826067790303758e-07,4.1179300457979347e-07,4.4281088017078105e-07,4.7574103857407807e-07,5.106648480049053e-07,5.476641663293951e-07,5.868210748575803e-07,6.282175916985233e-07,6.719353647833147e-07,7.180553448004555e-07,7.666574384350483e-07,8.178201424575894e-07,8.716201593692598e-07,9.281319954775427e-07,9.874275424478092e-07,1.0495756435520772e-06,1.114641646014297e-06,1.182686941030901e-06,1.2537684932246288e-06,1.3279383614672561e-06,1.405243213181284e-06,1.4857238344002445e-06,1.5694146380303461e-06,1.6563431729109836e-06,1.7465296364164345e-06,1.8399863934740617e-06,1.9367175049937763e-06,2.03671826880768e-06,2.1399747763059473e-06,2.246463488023564e-06,2.3561508314808784e-06,2.468992824607675e-06,2.584934728084279e-06,2.7039107299128355e-06,2.8258436654864616e-06,2.9506447763524406e-06,3.0782135107675488e-06,3.2084373690183747e-06,3.3411917963270333e-06,3.476340125982944e-06,3.613733575134645e-06,3.75321129544249e-06,3.894600480534312e-06,4.037716531922805e-06,4.18236328473687e-06,4.32833329429086e-06,4.475408184167869e-06,4.6233590561273355e-06,4.771946961766439e-06,4.920923435470842e-06,5.070031087786637e-06,5.2190042579344645e-06,5.367569723772022e-06,5.5154474670956665e-06,5.66235149175901e-06,5.807990691679691e-06,5.952069765408342e-06,6.094290173549695e-06,6.234351134958237e-06,6.371950657283254e-06,6.506786597113747e-06,6.638557744675935e-06,6.7669649277676695e-06,6.891712129378143e-06,7.012507613240197e-06,7.129065051398824e-06,7.241104647755082e-06,7.3483542514613644e-06,7.450550454003229e-06,7.547439663805846e-06,7.638779152250201e-06,7.724338065075833e-06,7.803898393283026e-06,7.877255897827375e-06,7.94422098262282e-06,8.004619510634037e-06,8.058293558144129e-06,8.105102102626378e-06,8.144921640027524e-06,8.17764672768129e-06,8.203190449512195e-06,8.221484800657084e-06,8.23248098912235e-06,8.23614965260404e-06,8.23248098912235e-06,8.221484800657084e-06,8.203190449512195e-06,8.17764672768129e-06,8.144921640027524e-06,8.105102102626378e-06,8.058293558144129e-06,8.004619510634037e-06,7.94422098262282e-06,7.877255897827375e-06,7.803898393283026e-06,7.724338065075833e-06,7.638779152250201e-06,7.547439663805846e-06,7.450550454003229e-06,7.3483542514613644e-06,7.241104647755082e-06,7.129065051398824e-06,7.012507613240197e-06,6.891712129378143e-06,6.7669649277676695e-06,6.638557744675935e-06,6.506786597113747e-06,6.371950657283254e-06,6.234351134958237e-06,6.094290173549695e-06,5.952069765408342e-06,5.807990691679691e-06,5.66235149175901e-06,5.5154474670956665e-06,5.367569723772022e-06,5.2190042579344645e-06,5.070031087786637e-06,4.920923435470842e-06,4.771946961766439e-06,4.6233590561273355e-06,4.475408184167869e-06,4.32833329429086e-06,4.18236328473687e-06,4.037716531922805e-06,3.894600480534312e-06,3.75321129544249e-06,3.613733575134645e-06,3.476340125982944e-06,3.3411917963270333e-06,3.2084373690183747e-06,3.0782135107675488e-06,2.9506447763524406e-06,2.8258436654864616e-06,2.7039107299128355e-06,2.584934728084279e-06,2.468992824607675e-06,2.3561508314808784e-06,2.246463488023564e-06,2.1399747763059473e-06,2.03671826880768e-06,1.9367175049937763e-06,1.8399863934740617e-06,1.7465296364164345e-06,1.6563431729109836e-06,1.5694146380303461e-06,1.4857238344002445e-06,1.405243213181284e-06,1.3279383614672561e-06,1.2537684932246288e-06,1.182686941030901e-06,1.114641646014297e-06,1.0495756435520772e-06,9.874275424478092e-07,9.281319954775427e-07,8.716201593692598e-07,8.178201424575894e-07,7.666574384350483e-07,7.180553448004555e-07,6.719353647833147e-07,6.282175916985233e-07,5.868210748575803e-07,5.476641663293951e-07,5.106648480049053e-07,4.7574103857407807e-07,4.4281088017078105e-07,4.1179300457979347e-07,3.826067790303758e-07,3.5517253172189976e-07,3.2941175733874267e-07,3.0524730291377127e-07,2.8260353449216427e-07,2.614064851300099e-07,2.415839848351609e-07,2.2306577312134344e-07,2.0578359490072461e-07,1.8967128048532872e-07,1.7466481050416903e-07,1.6070236657112944e-07,1.4772436855890338e-07,1.356734993471323e-07,1.2449471791878067e-07,1.1413526167822904e-07,1.0454463885809825e-07,9.567461186995482e-08],[8.905214319772361e-08,9.73081987810949e-08,1.0623497151673482e-07,1.1587736005172152e-07,1.2628236118082714e-07,1.374990853433705e-07,1.4957876369080326e-07,1.6257474592907242e-07,1.765424881287587e-07,1.9153952968997111e-07,2.0762545864846042e-07,2.2486186451490019e-07,2.4331227785123225e-07,2.630420958068416e-07,2.8411849286354375e-07,3.066103160723211e-07,3.305879641068e-07,3.561232495089181e-07,3.832892435613488e-07,4.12160103289239e-07,4.4281088017078105e-07,4.753173102221655e-07,5.097555852175129e-07,5.462021049083563e-07,5.847332102199454e-07,6.254248975227816e-07,6.683525142069768e-07,7.135904359237631e-07,7.612117260021698e-07,8.112877776988328e-07,8.638879400942809e-07,9.190791286089608e-07,9.76925421275677e-07,1.0374876420709374e-06,1.1008229327746655e-06,1.166984314994604e-06,1.23602024415705e-06,1.307974157427936e-06,1.3828840176861023e-06,1.460781855822416e-06,1.5416933137824543e-06,1.625637190905261e-06,1.712624996234464e-06,1.802660509589222e-06,1.8957393542794094e-06,1.9918485844305708e-06,2.0909662899479772e-06,2.1930612221941153e-06,2.2980924434788475e-06,2.406009003464993e-06,2.5167496455731685e-06,2.6302425464273732e-06,2.746405091316278e-06,2.8651436885538392e-06,2.986353625506344e-06,3.109918968911045e-06,3.235712511944281e-06,3.363595770304577e-06,3.4934190293592273e-06,3.6250214441620237e-06,3.75823119388606e-06,3.892865691930247e-06,4.028731852652631e-06,4.165626415359812e-06,4.303336325841299e-06,4.4416391753831285e-06,4.580303696828475e-06,4.7190903168771774e-06,4.857751763433715e-06,4.996033726427049e-06,5.133675570139078e-06,5.270411094694158e-06,5.405969343983605e-06,5.540075456929422e-06,5.672451558633991e-06,5.802817687620412e-06,5.930892755044583e-06,6.056395531458306e-06,6.179045656425485e-06,6.298564666043673e-06,6.414677033203637e-06,6.527111215232442e-06,6.635600703413179e-06,6.73988506875865e-06,6.839710998338932e-06,6.9348333164246526e-06,7.0250159847106226e-06,7.110033075928192e-06,7.189669715240051e-06,7.263722983937864e-06,7.3320027801307215e-06,7.394332631320055e-06,7.450550454003229e-06,7.500509255731811e-06,7.544077775369772e-06,7.58114105764923e-06,7.611600958504251e-06,7.635376578073844e-06,7.65240461870053e-06,7.662639665707244e-06,7.666054389209439e-06,7.662639665707244e-06,7.65240461870053e-06,7.635376578073844e-06,7.611600958504251e-06,7.58114105764923e-06,7.544077775369772e-06,7.500509255731811e-06,7.450550454003229e-06,7.394332631320055e-06,7.3320027801307215e-06,7.263722983937864e-06,7.189669715240051e-06,7.110033075928192e-06,7.0250159847106226e-06,6.9348333164246526e-06,6.839710998338932e-06,6.73988506875865e-06,6.635600703413179e-06,6.527111215232442e-06,6.414677033203637e-06,6.298564666043673e-06,6.179045656425485e-06,6.056395531458306e-06,5.930892755044583e-06,5.802817687620412e-06,5.672451558633991e-06,5.540075456929422e-06,5.405969343983605e-06,5.270411094694158e-06,5.133675570139078e-06,4.996033726427049e-06,4.857751763433715e-06,4.7190903168771774e-06,4.580303696828475e-06,4.4416391753831285e-06,4.303336325841299e-06,4.165626415359812e-06,4.028731852652631e-06,3.892865691930247e-06,3.75823119388606e-06,3.6250214441620237e-06,3.4934190293592273e-06,3.363595770304577e-06,3.235712511944281e-06,3.109918968911045e-06,2.986353625506344e-06,2.8651436885538392e-06,2.746405091316278e-06,2.6302425464273732e-06,2.5167496455731685e-06,2.406009003464993e-06,2.2980924434788475e-06,2.1930612221941153e-06,2.0909662899479772e-06,1.9918485844305708e-06,1.8957393542794094e-06,1.802660509589222e-06,1.712624996234464e-06,1.625637190905261e-06,1.5416933137824543e-06,1.460781855822416e-06,1.3828840176861023e-06,1.307974157427936e-06,1.23602024415705e-06,1.166984314994604e-06,1.1008229327746655e-06,1.0374876420709374e-06,9.76925421275677e-07,9.190791286089608e-07,8.638879400942809e-07,8.112877776988328e-07,7.612117260021698e-07,7.135904359237631e-07,6.683525142069768e-07,6.254248975227816e-07,5.847332102199454e-07,5.462021049083563e-07,5.097555852175129e-07,4.753173102221655e-07,4.4281088017078105e-07,4.12160103289239e-07,3.832892435613488e-07,3.561232495089181e-07,3.305879641068e-07,3.066103160723211e-07,2.8411849286354375e-07,2.630420958068416e-07,2.4331227785123225e-07,2.2486186451490019e-07,2.0762545864846042e-07,1.9153952968997111e-07,1.765424881287587e-07,1.6257474592907242e-07,1.4957876369080326e-07,1.374990853433705e-07,1.2628236118082714e-07,1.1587736005172152e-07,1.0623497151673482e-07,9.73081987810949e-08,8.905214319772361e-08],[8.281424701560523e-08,9.049198504530999e-08,9.879345804568524e-08,1.077604196176695e-07,1.1743657453951346e-07,1.2786759317811393e-07,1.3910111806153218e-07,1.5118676187249383e-07,1.6417609611239882e-07,1.7812262967977164e-07,1.9308177660660115e-07,2.0911081220112075e-07,2.2626881685669068e-07,2.446166068039912e-07,2.642166511081166e-07,2.8513297424373574e-07,3.0743104362059194e-07,3.3117764147854264e-07,3.5644072062631067e-07,3.832892435613488e-07,4.1179300457979347e-07,4.4202243456547917e-07,4.740483882353841e-07,5.079419137155635e-07,5.437740044264337e-07,5.816153333689245e-07,6.215359700231473e-07,6.636050801983905e-07,7.078906093068663e-07,7.544589496730943e-07,8.033745926352836e-07,8.546997663438078e-07,9.084940603138251e-07,9.64814037943297e-07,1.0237128383629346e-06,1.0852397691397773e-06,1.1494398915098451e-06,1.2163535999662957e-06,1.2860161981763166e-06,1.3584574733411262e-06,1.4337012712474594e-06,1.5117650743842425e-06,1.5926595856132788e-06,1.6763883199861575e-06,1.7629472073897496e-06,1.8523242087780935e-06,1.9444989488078015e-06,2.039442367735975e-06,2.1371163954627647e-06,2.2374736506039913e-06,2.340457167461648e-06,2.4460001537207136e-06,2.5540257816388634e-06,2.664447015410689e-06,2.777166477279713e-06,2.8920763548394768e-06,3.009058351809414e-06,3.127983684392322e-06,3.2487131251184326e-06,3.3710970958571346e-06,3.494975811432116e-06,3.6201794750104035e-06,3.7465285261516354e-06,3.873833942102765e-06,4.001897592606825e-06,4.130512648164656e-06,4.259464041347623e-06,4.388528980409841e-06,4.517477514092833e-06,4.64607314615647e-06,4.774073497810474e-06,4.9012310158633605e-06,5.027293724053703e-06,5.15200601468481e-06,5.2751094773514484e-06,5.39634376122914e-06,5.515447467095667e-06,5.632159064973708e-06,5.746217833025756e-06,5.857364813100167e-06,5.9653437781229626e-06,6.069902206355929e-06,6.17079225739993e-06,6.267771744714574e-06,6.360605099353424e-06,6.44906431957856e-06,6.532929901020867e-06,6.611991742093098e-06,6.686050019442156e-06,6.754916028344797e-06,6.8184129831068574e-06,6.876376772719181e-06,6.928656667252735e-06,6.975115970739326e-06,7.0156326165812035e-06,7.050099701860502e-06,7.078425957275576e-06,7.100536149813151e-06,7.11637141566991e-06,7.125889521361633e-06,7.129065051398826e-06,7.125889521361633e-06,7.11637141566991e-06,7.100536149813151e-06,7.078425957275576e-06,7.050099701860502e-06,7.0156326165812035e-06,6.975115970739326e-06,6.928656667252735e-06,6.876376772719181e-06,6.8184129831068574e-06,6.754916028344797e-06,6.686050019442156e-06,6.611991742093098e-06,6.532929901020867e-06,6.44906431957856e-06,6.360605099353424e-06,6.267771744714574e-06,6.17079225739993e-06,6.069902206355929e-06,5.9653437781229626e-06,5.857364813100167e-06,5.746217833025756e-06,5.632159064973708e-06,5.515447467095667e-06,5.39634376122914e-06,5.2751094773514484e-06,5.15200601468481e-06,5.027293724053703e-06,4.9012310158633605e-06,4.774073497810474e-06,4.64607314615647e-06,4.517477514092833e-06,4.388528980409841e-06,4.259464041347623e-06,4.130512648164656e-06,4.001897592606825e-06,3.873833942102765e-06,3.7465285261516354e-06,3.6201794750104035e-06,3.494975811432116e-06,3.3710970958571346e-06,3.2487131251184326e-06,3.127983684392322e-06,3.009058351809414e-06,2.8920763548394768e-06,2.777166477279713e-06,2.664447015410689e-06,2.5540257816388634e-06,2.4460001537207136e-06,2.340457167461648e-06,2.2374736506039913e-06,2.1371163954627647e-06,2.039442367735975e-06,1.9444989488078015e-06,1.8523242087780935e-06,1.7629472073897496e-06,1.6763883199861575e-06,1.5926595856132788e-06,1.5117650743842425e-06,1.4337012712474594e-06,1.3584574733411262e-06,1.2860161981763166e-06,1.2163535999662957e-06,1.1494398915098451e-06,1.0852397691397773e-06,1.0237128383629346e-06,9.64814037943297e-07,9.084940603138251e-07,8.546997663438078e-07,8.033745926352836e-07,7.544589496730943e-07,7.078906093068663e-07,6.636050801983905e-07,6.215359700231473e-07,5.816153333689245e-07,5.437740044264337e-07,5.079419137155635e-07,4.740483882353841e-07,4.4202243456547917e-07,4.1179300457979347e-07,3.832892435613488e-07,3.5644072062631067e-07,3.3117764147854264e-07,3.0743104362059194e-07,2.8513297424373574e-07,2.642166511081166e-07,2.446166068039912e-07,2.2626881685669068e-07,2.0911081220112075e-07,1.9308177660660115e-07,1.7812262967977164e-07,1.6417609611239882e-07,1.5118676187249383e-07,1.3910111806153218e-07,1.2786759317811393e-07,1.1743657453951346e-07,1.077604196176695e-07,9.879345804568524e-08,9.049198504530999e-08,8.281424701560523e-08],[7.69447075498509e-08,8.407827850689504e-08,9.179137661821992e-08,1.0012279615810982e-07,1.091131442865911e-07,1.1880485443934917e-07,1.2924219243441318e-07,1.4047125460786839e-07,1.525399572813156e-07,1.6549801685859423e-07,1.7939691984884e-07,1.9428988211768795e-07,2.1023179667875413e-07,2.2727916935383384e-07,2.454900416529066e-07,2.649239002543755e-07,2.856415725023063e-07,3.077051073810287e-07,3.3117764147854264e-07,3.561232495089181e-07,3.826067790303758e-07,4.106936690700688e-07,4.4044975244871205e-07,4.71941041688043e-07,5.052334984814749e-07,5.40392786812974e-07,5.774840099208074e-07,6.165714314209579e-07,6.577181810291502e-07,7.009859454500006e-07,7.464346451360502e-07,7.941220977576205e-07,8.441036693656279e-07,8.964319143727614e-07,9.511562056226964e-07,1.0083223559612005e-06,1.0679722328658187e-06,1.130143367831127e-06,1.1948685623429214e-06,1.2621754924058635e-06,1.3320863137136019e-06,1.4046172696668338e-06,1.47977830455173e-06,1.5575726842872157e-06,1.637996627233347e-06,1.7210389476231325e-06,1.8066807142352584e-06,1.8948949269640746e-06,1.9856462139646993e-06,2.0788905520541637e-06,2.1745750130331336e-06,2.272637538556206e-06,2.3730067461212368e-06,2.475601768669299e-06,2.5803321301861316e-06,2.687097659573353e-06,2.795788444913142e-06,2.9062848300838756e-06,3.0184574554967127e-06,3.132167344515017e-06,3.2472660368906414e-06,3.3635957703045778e-06,3.4809897108355022e-06,3.5992722328999243e-06,3.7182592489135378e-06,3.837758588617011e-06,3.957570427692715e-06,4.07748776497419e-06,4.19729694721973e-06,4.316778240087856e-06,4.435706443618336e-06,4.553851550190404e-06,4.670979442602688e-06,4.78685262960002e-06,4.9012310158633605e-06,5.0138727031835005e-06,5.1245348192596935e-06,5.2329743703034814e-06,5.338949113388535e-06,5.442218444271459e-06,5.542544296218757e-06,5.639692045213464e-06,5.733431416783278e-06,5.823537389591963e-06,5.9097910908688926e-06,5.991980678718775e-06,6.069902206355927e-06,6.143360463345323e-06,6.212169789006345e-06,6.276154853244635e-06,6.33515140022226e-06,6.389006950455795e-06,6.437581457145005e-06,6.480747912780011e-06,6.5183929023506666e-06,6.5504170997863035e-06,6.576735704584879e-06,6.597278815945343e-06,6.611991742093098e-06,6.620835242882765e-06,6.6237857041721305e-06,6.620835242882765e-06,6.611991742093098e-06,6.597278815945343e-06,6.576735704584879e-06,6.5504170997863035e-06,6.5183929023506666e-06,6.480747912780011e-06,6.437581457145005e-06,6.389006950455795e-06,6.33515140022226e-06,6.276154853244635e-06,6.212169789006345e-06,6.143360463345323e-06,6.069902206355927e-06,5.991980678718775e-06,5.9097910908688926e-06,5.823537389591963e-06,5.733431416783278e-06,5.639692045213464e-06,5.542544296218757e-06,5.442218444271459e-06,5.338949113388535e-06,5.2329743703034814e-06,5.1245348192596935e-06,5.0138727031835005e-06,4.9012310158633605e-06,4.78685262960002e-06,4.670979442602688e-06,4.553851550190404e-06,4.435706443618336e-06,4.316778240087856e-06,4.19729694721973e-06,4.07748776497419e-06,3.957570427692715e-06,3.837758588617011e-06,3.7182592489135378e-06,3.5992722328999243e-06,3.4809897108355022e-06,3.3635957703045778e-06,3.2472660368906414e-06,3.132167344515017e-06,3.0184574554967127e-06,2.9062848300838756e-06,2.795788444913142e-06,2.687097659573353e-06,2.5803321301861316e-06,2.475601768669299e-06,2.3730067461212368e-06,2.272637538556206e-06,2.1745750130331336e-06,2.0788905520541637e-06,1.9856462139646993e-06,1.8948949269640746e-06,1.8066807142352584e-06,1.7210389476231325e-06,1.637996627233347e-06,1.5575726842872157e-06,1.47977830455173e-06,1.4046172696668338e-06,1.3320863137136019e-06,1.2621754924058635e-06,1.1948685623429214e-06,1.130143367831127e-06,1.0679722328658187e-06,1.0083223559612005e-06,9.511562056226964e-07,8.964319143727614e-07,8.441036693656279e-07,7.941220977576205e-07,7.464346451360502e-07,7.009859454500006e-07,6.577181810291502e-07,6.165714314209579e-07,5.774840099208074e-07,5.40392786812974e-07,5.052334984814749e-07,4.71941041688043e-07,4.4044975244871205e-07,4.106936690700688e-07,3.826067790303758e-07,3.561232495089181e-07,3.3117764147854264e-07,3.077051073810287e-07,2.856415725023063e-07,2.649239002543755e-07,2.454900416529066e-07,2.2727916935383384e-07,2.1023179667875413e-07,1.9428988211768795e-07,1.7939691984884e-07,1.6549801685859423e-07,1.525399572813156e-07,1.4047125460786839e-07,1.2924219243441318e-07,1.1880485443934917e-07,1.091131442865911e-07,1.0012279615810982e-07,9.179137661821992e-08,8.407827850689504e-08,7.69447075498509e-08],[7.142750228404095e-08,7.80495711962858e-08,8.520961313428075e-08,9.294364068684817e-08,1.0128934933828958e-07,1.1028612989819868e-07,1.1997507417027535e-07,1.3039897322171393e-07,1.416023076058828e-07,1.536312288861821e-07,1.6653353180855337e-07,1.8035861647451404e-07,1.9515743987617303e-07,2.1098245616981818e-07,2.2788754508569538e-07,2.4592792789883195e-07,2.6516007041949007e-07,2.856415725023063e-07,3.0743104362059194e-07,3.305879641068e-07,3.5517253172189976e-07,3.8124549328539665e-07,4.088679611739796e-07,4.3810121458016616e-07,4.690064855127191e-07,5.016447296177651e-07,5.360763820031639e-07,5.723610983583524e-07,6.105574817771325e-07,6.507227958111532e-07,6.929126644064533e-07,7.371807595037087e-07,7.83578477213896e-07,8.321546036140818e-07,8.829549713419702e-07,9.360221083016874e-07,9.913948799258696e-07,1.0491081265693625e-06,1.1091922977364429e-06,1.171673084965218e-06,1.2365710553084346e-06,1.3039012874580162e-06,1.3736730126599558e-06,1.4458892626553424e-06,1.5205465269610733e-06,1.5976344218688627e-06,1.677135373592329e-06,1.7590243180280477e-06,1.8432684196164141e-06,1.9298268117910035e-06,2.018650361489918e-06,2.109681460168668e-06,2.202853843700751e-06,2.2980924434788475e-06,2.3953132709360894e-06,2.4944233375930053e-06,2.5953206126015837e-06,2.697894019603585e-06,2.802023474546167e-06,2.90757996590473e-06,3.014425678551356e-06,3.1224141622783552e-06,3.23139054574141e-06,3.341191796327033e-06,3.451647026176042e-06,3.5625778443103657e-06,3.6737987545164447e-06,3.7851175983371107e-06,3.896336042217063e-06,4.007250107537397e-06,4.117650741964485e-06,4.227324430230274e-06,4.336053842157443e-06,4.443618515446361e-06,4.5497955704540315e-06,4.654360453920836e-06,4.757087708341396e-06,4.857751763433715e-06,4.9561277459384795e-06,5.051992303779998e-06,5.145124440444125e-06,5.2353063552784e-06,5.322324285297427e-06,5.405969343983605e-06,5.486038352511233e-06,5.562334658791537e-06,5.634668939738317e-06,5.7028599821890586e-06,5.766735437984788e-06,5.826132548813547e-06,5.8808988365567915e-06,5.930892755044583e-06,5.975984299323203e-06,6.01605556876647e-06,6.051001280618043e-06,6.0807292308347175e-06,6.105160699407719e-06,6.124230797668476e-06,6.1378887554343535e-06,6.146098146215956e-06,6.148837049087848e-06,6.146098146215956e-06,6.1378887554343535e-06,6.124230797668476e-06,6.105160699407719e-06,6.0807292308347175e-06,6.051001280618043e-06,6.01605556876647e-06,5.975984299323203e-06,5.930892755044583e-06,5.8808988365567915e-06,5.826132548813547e-06,5.766735437984788e-06,5.7028599821890586e-06,5.634668939738317e-06,5.562334658791537e-06,5.486038352511233e-06,5.405969343983605e-06,5.322324285297427e-06,5.2353063552784e-06,5.145124440444125e-06,5.051992303779998e-06,4.9561277459384795e-06,4.857751763433715e-06,4.757087708341396e-06,4.654360453920836e-06,4.5497955704540315e-06,4.443618515446361e-06,4.336053842157443e-06,4.227324430230274e-06,4.117650741964485e-06,4.007250107537397e-06,3.896336042217063e-06,3.7851175983371107e-06,3.6737987545164447e-06,3.5625778443103657e-06,3.451647026176042e-06,3.341191796327033e-06,3.23139054574141e-06,3.1224141622783552e-06,3.014425678551356e-06,2.90757996590473e-06,2.802023474546167e-06,2.697894019603585e-06,2.5953206126015837e-06,2.4944233375930053e-06,2.3953132709360894e-06,2.2980924434788475e-06,2.202853843700751e-06,2.109681460168668e-06,2.018650361489918e-06,1.9298268117910035e-06,1.8432684196164141e-06,1.7590243180280477e-06,1.677135373592329e-06,1.5976344218688627e-06,1.5205465269610733e-06,1.4458892626553424e-06,1.3736730126599558e-06,1.3039012874580162e-06,1.2365710553084346e-06,1.171673084965218e-06,1.1091922977364429e-06,1.0491081265693625e-06,9.913948799258696e-07,9.360221083016874e-07,8.829549713419702e-07,8.321546036140818e-07,7.83578477213896e-07,7.371807595037087e-07,6.929126644064533e-07,6.507227958111532e-07,6.105574817771325e-07,5.723610983583524e-07,5.360763820031639e-07,5.016447296177651e-07,4.690064855127191e-07,4.3810121458016616e-07,4.088679611739796e-07,3.8124549328539665e-07,3.5517253172189976e-07,3.305879641068e-07,3.0743104362059194e-07,2.856415725023063e-07,2.6516007041949007e-07,2.4592792789883195e-07,2.2788754508569538e-07,2.1098245616981818e-07,1.9515743987617303e-07,1.8035861647451404e-07,1.6653353180855337e-07,1.536312288861821e-07,1.416023076058828e-07,1.3039897322171393e-07,1.1997507417027535e-07,1.1028612989819868e-07,1.0128934933828958e-07,9.294364068684817e-08,8.520961313428075e-08,7.80495711962858e-08,7.142750228404095e-08],[6.624684328946431e-08,7.238861148033571e-08,7.9029333345789e-08,8.620240947035914e-08,9.394280127312687e-08,1.0228704253599354e-07,1.112732446613341e-07,1.2094109506690732e-07,1.3133184811768745e-07,1.4248830798980223e-07,1.5445480286137918e-07,1.672771498291816e-07,1.810026099588046e-07,1.956798328902379e-07,2.1135879044010586e-07,2.2809069866715347e-07,2.4592792789883195e-07,2.649239002543755e-07,2.8513297424373574e-07,3.066103160723211e-07,3.2941175733874267e-07,3.5359363887676094e-07,3.792126405633433e-07,4.0632559699208207e-07,4.3498929899506694e-07,4.652602810864197e-07,4.971945949967981e-07,5.308475695698975e-07,5.662735573988683e-07,6.035256686921173e-07,6.426554929735469e-07,6.837128093412539e-07,7.267452861302728e-07,7.717981709483005e-07,8.189139721775493e-07,8.681321331600089e-07,9.194887004063773e-07,9.73015987289709e-07,1.028742234802248e-06,1.086691271066839e-06,1.146882171401484e-06,1.209328920835885e-06,1.2740400810708859e-06,1.3410184639544502e-06,1.4102608136199082e-06,1.4817574994925713e-06,1.55549222241826e-06,1.6314417362007794e-06,1.7095755868538933e-06,1.7898558718759728e-06,1.8722370218414065e-06,1.9566656065713854e-06,2.043080168097147e-06,2.13141108256085e-06,2.2215804531125484e-06,2.3135020357561576e-06,2.407081199972862e-06,2.5022149258072916e-06,2.598791838940369e-06,2.6966922850935707e-06,2.795788444913142e-06,2.895944490270587e-06,2.997016782688442e-06,3.0988541143594696e-06,3.2012979919741567e-06,3.3041829633076506e-06,3.4073369862445533e-06,3.510581839640467e-06,3.6137335751346454e-06,3.716603008740968e-06,3.818996250756695e-06,3.920715272242689e-06,4.021558506047103e-06,4.121321480069583e-06,4.219797480197079e-06,4.316778240087856e-06,4.412054654739642e-06,4.505417514553275e-06,4.596658256397e-06,4.685569727990762e-06,4.77194696176644e-06,4.855587954220756e-06,4.936294446664242e-06,5.013872703183501e-06,5.0881342815763625e-06,5.158896792991319e-06,5.225984646004598e-06,5.28922977090082e-06,5.348472319986682e-06,5.403561339861299e-06,5.454355411691571e-06,5.500723255695362e-06,5.542544296218758e-06,5.579709184004719e-06,5.612120272488031e-06,5.639692045213466e-06,5.6623514917590115e-06,5.680038429851446e-06,5.692705771685298e-06,5.700319732795797e-06,5.70285998218906e-06,5.700319732795797e-06,5.692705771685298e-06,5.680038429851446e-06,5.6623514917590115e-06,5.639692045213466e-06,5.612120272488031e-06,5.579709184004719e-06,5.542544296218758e-06,5.500723255695362e-06,5.454355411691571e-06,5.403561339861299e-06,5.348472319986682e-06,5.28922977090082e-06,5.225984646004598e-06,5.158896792991319e-06,5.0881342815763625e-06,5.013872703183501e-06,4.936294446664242e-06,4.855587954220756e-06,4.77194696176644e-06,4.685569727990762e-06,4.596658256397e-06,4.505417514553275e-06,4.412054654739642e-06,4.316778240087856e-06,4.219797480197079e-06,4.121321480069583e-06,4.021558506047103e-06,3.920715272242689e-06,3.818996250756695e-06,3.716603008740968e-06,3.6137335751346454e-06,3.510581839640467e-06,3.4073369862445533e-06,3.3041829633076506e-06,3.2012979919741567e-06,3.0988541143594696e-06,2.997016782688442e-06,2.895944490270587e-06,2.795788444913142e-06,2.6966922850935707e-06,2.598791838940369e-06,2.5022149258072916e-06,2.407081199972862e-06,2.3135020357561576e-06,2.2215804531125484e-06,2.13141108256085e-06,2.043080168097147e-06,1.9566656065713854e-06,1.8722370218414065e-06,1.7898558718759728e-06,1.7095755868538933e-06,1.6314417362007794e-06,1.55549222241826e-06,1.4817574994925713e-06,1.4102608136199082e-06,1.3410184639544502e-06,1.2740400810708859e-06,1.209328920835885e-06,1.146882171401484e-06,1.086691271066839e-06,1.028742234802248e-06,9.73015987289709e-07,9.194887004063773e-07,8.681321331600089e-07,8.189139721775493e-07,7.717981709483005e-07,7.267452861302728e-07,6.837128093412539e-07,6.426554929735469e-07,6.035256686921173e-07,5.662735573988683e-07,5.308475695698975e-07,4.971945949967981e-07,4.652602810864197e-07,4.3498929899506694e-07,4.0632559699208207e-07,3.792126405633433e-07,3.5359363887676094e-07,3.2941175733874267e-07,3.066103160723211e-07,2.8513297424373574e-07,2.649239002543755e-07,2.4592792789883195e-07,2.2809069866715347e-07,2.1135879044010586e-07,1.956798328902379e-07,1.810026099588046e-07,1.672771498291816e-07,1.5445480286137918e-07,1.4248830798980223e-07,1.3133184811768745e-07,1.2094109506690732e-07,1.112732446613341e-07,1.0228704253599354e-07,9.394280127312687e-08,8.620240947035914e-08,7.9029333345789e-08,7.238861148033571e-08,6.624684328946431e-08],[6.138721460347203e-08,6.707844490602989e-08,7.323202744724332e-08,7.987891266563769e-08,8.705149733711029e-08,9.478363525753261e-08,1.0311064211472104e-07,1.120692940010906e-07,1.2169781901069455e-07,1.3203588136020203e-07,1.4312455747301042e-07,1.5500630346946983e-07,1.6772491351443424e-07,1.8132546848635983e-07,1.9585427445024406e-07,2.1135879044010586e-07,2.2788754508569538e-07,2.454900416529066e-07,2.642166511081166e-07,2.8411849286354375e-07,3.0524730291377127e-07,3.2765528913288446e-07,3.513949735671925e-07,3.765190216301781e-07,4.0308005818400645e-07,4.311304705754337e-07,4.607221987829997e-07,4.919065129266532e-07,5.247337784900053e-07,5.592532097087724e-07,5.955126116860781e-07,6.335581119055265e-07,6.734338819255986e-07,7.151818501532352e-07,7.58841406709561e-07,8.044491015157374e-07,8.520383368408847e-07,9.01639055665947e-07,9.53277427326178e-07,1.0069755319995606e-06,1.0627510457077994e-06,1.1206169275894265e-06,1.1805811112898961e-06,1.2426462023901807e-06,1.306809183862207e-06,1.3730611315953936e-06,1.4413869420825274e-06,1.5117650743842421e-06,1.584167308508523e-06,1.6585585223440967e-06,1.734896489273506e-06,1.8131316985625034e-06,1.893207200576507e-06,1.9750584788119276e-06,2.0586133506498344e-06,2.1437918986415916e-06,2.2305064340207886e-06,2.3186614940031677e-06,2.408153874286652e-06,2.4988726979975777e-06,2.5906995221474233e-06,2.6835084824676557e-06,2.777166477279711e-06,2.871533390833893e-06,2.96646235631631e-06,3.0618000584785754e-06,3.157387075592284e-06,3.2530582601712307e-06,3.348643157640735e-06,3.4439664618672658e-06,3.53884850619502e-06,3.633105788371195e-06,3.726551527480762e-06,3.818996250756694e-06,3.910248407885206e-06,4.0001150101897075e-06,4.088402291854173e-06,4.174916390138534e-06,4.259464041347621e-06,4.341853289142992e-06,4.421894201635574e-06,4.499399593568069e-06,4.5741857497909975e-06,4.646073146156469e-06,4.714887163900317e-06,4.780458793557144e-06,4.842625324454583e-06,4.901231015863358e-06,4.9561277459384795e-06,5.007175634674272e-06,5.054243637211457e-06,5.097210103977636e-06,5.135963304312519e-06,5.170401910424844e-06,5.20043543874805e-06,5.225984646004595e-06,5.246981877552813e-06,5.263371365873252e-06,5.275109477351447e-06,5.2821649058287015e-06,5.284518811719268e-06,5.2821649058287015e-06,5.275109477351447e-06,5.263371365873252e-06,5.246981877552813e-06,5.225984646004595e-06,5.20043543874805e-06,5.170401910424844e-06,5.135963304312519e-06,5.097210103977636e-06,5.054243637211457e-06,5.007175634674272e-06,4.9561277459384795e-06,4.901231015863358e-06,4.842625324454583e-06,4.780458793557144e-06,4.714887163900317e-06,4.646073146156469e-06,4.5741857497909975e-06,4.499399593568069e-06,4.421894201635574e-06,4.341853289142992e-06,4.259464041347621e-06,4.174916390138534e-06,4.088402291854173e-06,4.0001150101897075e-06,3.910248407885206e-06,3.818996250756694e-06,3.726551527480762e-06,3.633105788371195e-06,3.53884850619502e-06,3.4439664618672658e-06,3.348643157640735e-06,3.2530582601712307e-06,3.157387075592284e-06,3.0618000584785754e-06,2.96646235631631e-06,2.871533390833893e-06,2.777166477279711e-06,2.6835084824676557e-06,2.5906995221474233e-06,2.4988726979975777e-06,2.408153874286652e-06,2.3186614940031677e-06,2.2305064340207886e-06,2.1437918986415916e-06,2.0586133506498344e-06,1.9750584788119276e-06,1.893207200576507e-06,1.8131316985625034e-06,1.734896489273506e-06,1.6585585223440967e-06,1.584167308508523e-06,1.5117650743842421e-06,1.4413869420825274e-06,1.3730611315953936e-06,1.306809183862207e-06,1.2426462023901807e-06,1.1805811112898961e-06,1.1206169275894265e-06,1.0627510457077994e-06,1.0069755319995606e-06,9.53277427326178e-07,9.01639055665947e-07,8.520383368408847e-07,8.044491015157374e-07,7.58841406709561e-07,7.151818501532352e-07,6.734338819255986e-07,6.335581119055265e-07,5.955126116860781e-07,5.592532097087724e-07,5.247337784900053e-07,4.919065129266532e-07,4.607221987829997e-07,4.311304705754337e-07,4.0308005818400645e-07,3.765190216301781e-07,3.513949735671925e-07,3.2765528913288446e-07,3.0524730291377127e-07,2.8411849286354375e-07,2.642166511081166e-07,2.454900416529066e-07,2.2788754508569538e-07,2.1135879044010586e-07,1.9585427445024406e-07,1.8132546848635983e-07,1.6772491351443424e-07,1.5500630346946983e-07,1.4312455747301042e-07,1.3203588136020203e-07,1.2169781901069455e-07,1.120692940010906e-07,1.0311064211472104e-07,9.478363525753261e-08,8.705149733711029e-08,7.987891266563769e-08,7.323202744724332e-08,6.707844490602989e-08,6.138721460347203e-08],[5.683340574665413e-08,6.21024508250511e-08,6.779955006011772e-08,7.395335793377026e-08,8.059386797351034e-08,8.775242264257326e-08,9.546171785048768e-08,1.037558015760632e-07,1.12670066087776e-07,1.2224123324267956e-07,1.3250733234463857e-07,1.4350767004618446e-07,1.552827917859164e-07,1.678744342654141e-07,1.8132546848635983e-07,1.956798328902379e-07,2.1098245616981818e-07,2.2727916935383384e-07,2.446166068039912e-07,2.630420958068416e-07,2.8260353449216427e-07,3.0334925786440965e-07,3.2532789179441784e-07,3.4858819488497927e-07,3.731788881957336e-07,3.9914847289021155e-07,4.2654503595026906e-07,4.554160441904302e-07,4.858081268963564e-07,5.177668475073571e-07,5.51336464862022e-07,5.865596846281137e-07,6.23477401642152e-07,6.621284339899448e-07,7.025492497658786e-07,7.447736875552809e-07,7.888326717896646e-07,8.347539242282959e-07,8.825616729202597e-07,9.322763600980688e-07,9.839143505458242e-07,1.0374876420709374e-06,1.093003579787436e-06,1.1504645759898278e-06,1.2098678374583564e-06,1.2712051020882677e-06,1.3344623867764156e-06,1.3996197485272585e-06,1.4666510607561861e-06,1.5355238067703726e-06,1.6061988923952607e-06,1.67863047968778e-06,1.7527658436349082e-06,1.8285452536779377e-06,1.9059018818284007e-06,1.984761739051057e-06,2.0650436414825737e-06,2.1466592079317444e-06,2.2295128899686136e-06,2.3135020357561567e-06,2.398516988609868e-06,2.4844412210885084e-06,2.5711515052242954e-06,2.658518119294139e-06,2.7464050913162775e-06,2.8346704792303797e-06,2.9231666874852578e-06,3.0117408195184577e-06,3.100235065367974e-06,3.1884871234099064e-06,3.276330654969103e-06,3.3635957703045765e-06,3.4501095442298984e-06,3.535696559392842e-06,3.6201794750104014e-06,3.7033796186369878e-06,3.7851175983371107e-06,3.86521393244123e-06,3.943489693886528e-06,4.019767165984946e-06,4.0938705063206725e-06,4.165626415359812e-06,4.234864806257743e-06,4.301419472275743e-06,4.3651287481690394e-06,4.425836161884223e-06,4.483391072905651e-06,4.537649293618433e-06,4.588473690110067e-06,4.635734758913591e-06,4.679311176302125e-06,4.719090316877177e-06,4.7549687383504515e-06,4.786852629600019e-06,4.814658219285463e-06,4.838312142531468e-06,4.857751763433714e-06,4.872925451402981e-06,4.883792809641157e-06,4.890324854334086e-06,4.892504143448802e-06,4.890324854334086e-06,4.883792809641157e-06,4.872925451402981e-06,4.857751763433714e-06,4.838312142531468e-06,4.814658219285463e-06,4.786852629600019e-06,4.7549687383504515e-06,4.719090316877177e-06,4.679311176302125e-06,4.635734758913591e-06,4.588473690110067e-06,4.537649293618433e-06,4.483391072905651e-06,4.425836161884223e-06,4.3651287481690394e-06,4.301419472275743e-06,4.234864806257743e-06,4.165626415359812e-06,4.0938705063206725e-06,4.019767165984946e-06,3.943489693886528e-06,3.86521393244123e-06,3.7851175983371107e-06,3.7033796186369878e-06,3.6201794750104014e-06,3.535696559392842e-06,3.4501095442298984e-06,3.3635957703045765e-06,3.276330654969103e-06,3.1884871234099064e-06,3.100235065367974e-06,3.0117408195184577e-06,2.9231666874852578e-06,2.8346704792303797e-06,2.7464050913162775e-06,2.658518119294139e-06,2.5711515052242954e-06,2.4844412210885084e-06,2.398516988609868e-06,2.3135020357561567e-06,2.2295128899686136e-06,2.1466592079317444e-06,2.0650436414825737e-06,1.984761739051057e-06,1.9059018818284007e-06,1.8285452536779377e-06,1.7527658436349082e-06,1.67863047968778e-06,1.6061988923952607e-06,1.5355238067703726e-06,1.4666510607561861e-06,1.3996197485272585e-06,1.3344623867764156e-06,1.2712051020882677e-06,1.2098678374583564e-06,1.1504645759898278e-06,1.093003579787436e-06,1.0374876420709374e-06,9.839143505458242e-07,9.322763600980688e-07,8.825616729202597e-07,8.347539242282959e-07,7.888326717896646e-07,7.447736875552809e-07,7.025492497658786e-07,6.621284339899448e-07,6.23477401642152e-07,5.865596846281137e-07,5.51336464862022e-07,5.177668475073571e-07,4.858081268963564e-07,4.554160441904302e-07,4.2654503595026906e-07,3.9914847289021155e-07,3.731788881957336e-07,3.4858819488497927e-07,3.2532789179441784e-07,3.0334925786440965e-07,2.8260353449216427e-07,2.630420958068416e-07,2.446166068039912e-07,2.2727916935383384e-07,2.1098245616981818e-07,1.956798328902379e-07,1.8132546848635983e-07,1.678744342654141e-07,1.552827917859164e-07,1.4350767004618446e-07,1.3250733234463857e-07,1.2224123324267956e-07,1.12670066087776e-07,1.037558015760632e-07,9.546171785048768e-08,8.775242264257326e-08,8.059386797351034e-08,7.395335793377026e-08,6.779955006011772e-08,6.21024508250511e-08,5.683340574665413e-08],[5.257054148631848e-08,5.744437491664143e-08,6.271415573927626e-08,6.840638916907964e-08,7.454881902962029e-08,8.117043690150378e-08,8.830148629461182e-08,9.597346137437443e-08,1.0421909976567571e-07,1.130723689544392e-07,1.225684458066339e-07,1.3274368872768084e-07,1.4363560199229233e-07,1.552827917859164e-07,1.6772491351443424e-07,1.810026099588046e-07,1.9515743987617303e-07,2.1023179667875413e-07,2.2626881685669068e-07,2.4331227785123225e-07,2.614064851300099e-07,2.8059614826696733e-07,3.009262458856222e-07,3.224418793857083e-07,3.451881154397821e-07,3.692098173178873e-07,3.945514651746336e-07,4.212569655137645e-07,4.493694501301132e-07,4.789310649173668e-07,5.099827490217836e-07,5.425640049164129e-07,5.767126600668378e-07,6.124646209573444e-07,6.498536203449919e-07,6.88910958707561e-07,7.296652409489533e-07,7.721421095214636e-07,8.163639752175261e-07,8.623497469731493e-07,9.101145621103042e-07,9.596695185250953e-07,1.0110214104016242e-06,1.0641724690970792e-06,1.1191201109008213e-06,1.1758566934181183e-06,1.2343692823668444e-06,1.2946394306020381e-06,1.3566429711978902e-06,1.4203498264188376e-06,1.4857238344002445e-06,1.552722595334177e-06,1.6212973389164807e-06,1.6913928147574717e-06,1.762947207389749e-06,1.8358920774228611e-06,1.9101523302957954e-06,1.9856462139646993e-06,2.0622853467351278e-06,2.1399747763059473e-06,2.2186130709363297e-06,2.298092443478848e-06,2.378298908841329e-06,2.45911247524894e-06,2.5404073694770356e-06,2.622052296015993e-06,2.703910729912836e-06,2.785841242812639e-06,2.8676978614969126e-06,2.9493304579882733e-06,3.0305851700624187e-06,3.1113048507815698e-06,3.191329545440078e-06,3.270496994094667e-06,3.3486431576407353e-06,3.425602765194196e-06,3.5012098803473495e-06,3.5752984836890655e-06,3.6477030688159286e-06,3.7182592489135373e-06,3.786804370857482e-06,3.853178133673071e-06,3.917223208102909e-06,3.978785853963056e-06,4.037716531922805e-06,4.0938705063206725e-06,4.1471084356307844e-06,4.19729694721973e-06,4.2443091930842645e-06,4.288025383335094e-06,4.3283332942908605e-06,4.36512874816904e-06,4.398316061506064e-06,4.427808459606442e-06,4.453528454509198e-06,4.475408184167868e-06,4.493389710766422e-06,4.50742527633581e-06,4.517477514092832e-06,4.523519614192391e-06,4.525535442864115e-06,4.523519614192391e-06,4.517477514092832e-06,4.50742527633581e-06,4.493389710766422e-06,4.475408184167868e-06,4.453528454509198e-06,4.427808459606442e-06,4.398316061506064e-06,4.36512874816904e-06,4.3283332942908605e-06,4.288025383335094e-06,4.2443091930842645e-06,4.19729694721973e-06,4.1471084356307844e-06,4.0938705063206725e-06,4.037716531922805e-06,3.978785853963056e-06,3.917223208102909e-06,3.853178133673071e-06,3.786804370857482e-06,3.7182592489135373e-06,3.6477030688159286e-06,3.5752984836890655e-06,3.5012098803473495e-06,3.425602765194196e-06,3.3486431576407353e-06,3.270496994094667e-06,3.191329545440078e-06,3.1113048507815698e-06,3.0305851700624187e-06,2.9493304579882733e-06,2.8676978614969126e-06,2.785841242812639e-06,2.703910729912836e-06,2.622052296015993e-06,2.5404073694770356e-06,2.45911247524894e-06,2.378298908841329e-06,2.298092443478848e-06,2.2186130709363297e-06,2.1399747763059473e-06,2.0622853467351278e-06,1.9856462139646993e-06,1.9101523302957954e-06,1.8358920774228611e-06,1.762947207389749e-06,1.6913928147574717e-06,1.6212973389164807e-06,1.552722595334177e-06,1.4857238344002445e-06,1.4203498264188376e-06,1.3566429711978902e-06,1.2946394306020381e-06,1.2343692823668444e-06,1.1758566934181183e-06,1.1191201109008213e-06,1.0641724690970792e-06,1.0110214104016242e-06,9.596695185250953e-07,9.101145621103042e-07,8.623497469731493e-07,8.163639752175261e-07,7.721421095214636e-07,7.296652409489533e-07,6.88910958707561e-07,6.498536203449919e-07,6.124646209573444e-07,5.767126600668378e-07,5.425640049164129e-07,5.099827490217836e-07,4.789310649173668e-07,4.493694501301132e-07,4.212569655137645e-07,3.945514651746336e-07,3.692098173178873e-07,3.451881154397821e-07,3.224418793857083e-07,3.009262458856222e-07,2.8059614826696733e-07,2.614064851300099e-07,2.4331227785123225e-07,2.2626881685669068e-07,2.1023179667875413e-07,1.9515743987617303e-07,1.810026099588046e-07,1.6772491351443424e-07,1.552827917859164e-07,1.4363560199229233e-07,1.3274368872768084e-07,1.225684458066339e-07,1.130723689544392e-07,1.0421909976567571e-07,9.597346137437443e-08,8.830148629461182e-08,8.117043690150378e-08,7.454881902962029e-08,6.840638916907964e-08,6.271415573927626e-08,5.744437491664143e-08,5.257054148631848e-08],[4.85841079684406e-08,5.3088357742254135e-08,5.795853014714633e-08,6.321912050281362e-08,6.889576881374542e-08,7.501526822382984e-08,8.160556887221119e-08,8.869577671614936e-08,9.631614688060654e-08,1.0449807109100287e-07,1.1327405874529985e-07,1.2267771118456397e-07,1.3274368872768084e-07,1.4350767004618446e-07,1.5500630346946983e-07,1.672771498291816e-07,1.8035861647451404e-07,1.9428988211768795e-07,2.0911081220112075e-07,2.2486186451490019e-07,2.415839848351609e-07,2.5931849240089673e-07,2.781069550985983e-07,2.9799105428082996e-07,3.1901243920634686e-07,3.4121257115544016e-07,3.646325573446786e-07,3.8931297483981186e-07,4.1529368474399396e-07,4.4261363702029224e-07,4.713106663922174e-07,5.014212798532566e-07,5.329804364055449e-07,5.660213197382739e-07,6.00575104647531e-07,6.366707180902956e-07,6.743345958555153e-07,7.13590435923763e-07,7.54458949673094e-07,7.969576121715336e-07,8.411004128752333e-07,8.86897608124861e-07,9.343554769003282e-07,9.834760813546111e-07,1.0342570337003079e-06,1.0866912710668388e-06,1.1407668399809946e-06,1.196466692148099e-06,1.2537684932246286e-06,1.3126444462750613e-06,1.3730611315953936e-06,1.4349793645626735e-06,1.4983540731335911e-06,1.5631341965653465e-06,1.629262606868434e-06,1.6966760544235613e-06,1.7653051391036438e-06,1.835074308136865e-06,1.905901881828401e-06,1.9777001081270127e-06,2.0503752468788328e-06,2.1238276844550095e-06,2.1979520792731976e-06,2.272637538556205e-06,2.3477678264853996e-06,2.423221603713021e-06,2.4988726979975777e-06,2.574590405521471e-06,2.65023982224135e-06,2.725682204411079e-06,2.8007753572062087e-06,2.8753740501692233e-06,2.9493304579882733e-06,3.0224946249204617e-06,3.094714950975686e-06,3.165838697790415e-06,3.235712511944281e-06,3.304182963307649e-06,3.3710970958571333e-06,3.4363029882597273e-06,3.499650321406394e-06,3.5609909499738884e-06,3.620179475010402e-06,3.6770738144775093e-06,3.731535768638567e-06,3.7834315771630625e-06,3.832632464817831e-06,3.879015172639991e-06,3.922462471532962e-06,3.962863655296078e-06,4.000115010189708e-06,4.034120258251125e-06,4.06479097171083e-06,4.092046956013939e-06,4.115816599125347e-06,4.136037184989652e-06,4.1526551692257245e-06,4.165626415359812e-06,4.174916390138534e-06,4.180500316712117e-06,4.182363284736869e-06,4.180500316712117e-06,4.174916390138534e-06,4.165626415359812e-06,4.1526551692257245e-06,4.136037184989652e-06,4.115816599125347e-06,4.092046956013939e-06,4.06479097171083e-06,4.034120258251125e-06,4.000115010189708e-06,3.962863655296078e-06,3.922462471532962e-06,3.879015172639991e-06,3.832632464817831e-06,3.7834315771630625e-06,3.731535768638567e-06,3.6770738144775093e-06,3.620179475010402e-06,3.5609909499738884e-06,3.499650321406394e-06,3.4363029882597273e-06,3.3710970958571333e-06,3.304182963307649e-06,3.235712511944281e-06,3.165838697790415e-06,3.094714950975686e-06,3.0224946249204617e-06,2.9493304579882733e-06,2.8753740501692233e-06,2.8007753572062087e-06,2.725682204411079e-06,2.65023982224135e-06,2.574590405521471e-06,2.4988726979975777e-06,2.423221603713021e-06,2.3477678264853996e-06,2.272637538556205e-06,2.1979520792731976e-06,2.1238276844550095e-06,2.0503752468788328e-06,1.9777001081270127e-06,1.905901881828401e-06,1.835074308136865e-06,1.7653051391036438e-06,1.6966760544235613e-06,1.629262606868434e-06,1.5631341965653465e-06,1.4983540731335911e-06,1.4349793645626735e-06,1.3730611315953936e-06,1.3126444462750613e-06,1.2537684932246286e-06,1.196466692148099e-06,1.1407668399809946e-06,1.0866912710668388e-06,1.0342570337003079e-06,9.834760813546111e-07,9.343554769003282e-07,8.86897608124861e-07,8.411004128752333e-07,7.969576121715336e-07,7.54458949673094e-07,7.13590435923763e-07,6.743345958555153e-07,6.366707180902956e-07,6.00575104647531e-07,5.660213197382739e-07,5.329804364055449e-07,5.014212798532566e-07,4.713106663922174e-07,4.4261363702029224e-07,4.1529368474399396e-07,3.8931297483981186e-07,3.646325573446786e-07,3.4121257115544016e-07,3.1901243920634686e-07,2.9799105428082996e-07,2.781069550985983e-07,2.5931849240089673e-07,2.415839848351609e-07,2.2486186451490019e-07,2.0911081220112075e-07,1.9428988211768795e-07,1.8035861647451404e-07,1.672771498291816e-07,1.5500630346946983e-07,1.4350767004618446e-07,1.3274368872768084e-07,1.2267771118456397e-07,1.1327405874529985e-07,1.0449807109100287e-07,9.631614688060654e-08,8.869577671614936e-08,8.160556887221119e-08,7.501526822382984e-08,6.889576881374542e-08,6.321912050281362e-08,5.795853014714633e-08,5.3088357742254135e-08,4.85841079684406e-08],[4.4859975353025586e-08,4.9018959479448184e-08,5.351581705662892e-08,5.837316575696719e-08,6.361468019377878e-08,6.926509972782817e-08,7.535023202762175e-08,8.189695198249886e-08,8.893319556199488e-08,9.648794821191749e-08,1.045912273773177e-07,1.1327405874529985e-07,1.225684458066339e-07,1.3250733234463857e-07,1.4312455747301042e-07,1.5445480286137918e-07,1.6653353180855337e-07,1.7939691984884e-07,1.9308177660660115e-07,2.0762545864846042e-07,2.2306577312134344e-07,2.394408720078712e-07,2.5678913687850816e-07,2.7514905407224273e-07,2.945590802943506e-07,3.1505749868081474e-07,3.366822654440514e-07,3.5947084728347215e-07,3.834600498167943e-07,4.086858373635511e-07,4.3518314449052057e-07,4.629856798093563e-07,4.921257225990185e-07,5.226339129091347e-07,5.545390358845309e-07,5.878678011352296e-07,6.226446180594933e-07,6.588913681092798e-07,6.96627175066993e-07,7.358681744788784e-07,7.766272834629896e-07,8.189139721775491e-07,8.627340382978845e-07,9.080893859061238e-07,9.549778102466693e-07,1.0033927898413388e-06,1.0533232874901922e-06,1.1047535617067444e-06,1.1576629901487953e-06,1.2120259066078969e-06,1.2678114531109256e-06,1.3249834486659203e-06,1.3835002761508112e-06,1.4433147887976669e-06,1.5043742376663847e-06,1.5666202214302514e-06,1.6299886597115321e-06,1.694409791108335e-06,1.7598081969446805e-06,1.8261028516543832e-06,1.893207200576507e-06,1.9610292657964216e-06,2.0294717805125883e-06,2.0984323522460755e-06,2.1678036550383113e-06,2.237473650603991e-06,2.3073258382213723e-06,2.3772395329529067e-06,2.447090171596493e-06,2.5167496455731685e-06,2.5860866597622273e-06,2.654967116101213e-06,2.7232545205775084e-06,2.790810412052034e-06,2.8574948111754947e-06,2.9231666874852578e-06,2.9876844426079917e-06,3.0509064073411196e-06,3.1126913502465006e-06,3.172898995263931e-06,3.2313905457414113e-06,3.2880292121848567e-06,3.342680740953168e-06,3.3952139410662386e-06,3.4455012062544705e-06,3.4934190293592277e-06,3.53884850619502e-06,3.581675826006269e-06,3.621792745694499e-06,3.6590970450555933e-06,3.6934929603512e-06,3.724891593642967e-06,3.7532112954424903e-06,3.778378018372839e-06,3.800325639698327e-06,3.818996250756694e-06,3.834340411520775e-06,3.8463173687235536e-06,3.854895236199774e-06,3.860051136327173e-06,3.861771301689232e-06,3.860051136327173e-06,3.854895236199774e-06,3.8463173687235536e-06,3.834340411520775e-06,3.818996250756694e-06,3.800325639698327e-06,3.778378018372839e-06,3.7532112954424903e-06,3.724891593642967e-06,3.6934929603512e-06,3.6590970450555933e-06,3.621792745694499e-06,3.581675826006269e-06,3.53884850619502e-06,3.4934190293592277e-06,3.4455012062544705e-06,3.3952139410662386e-06,3.342680740953168e-06,3.2880292121848567e-06,3.2313905457414113e-06,3.172898995263931e-06,3.1126913502465006e-06,3.0509064073411196e-06,2.9876844426079917e-06,2.9231666874852578e-06,2.8574948111754947e-06,2.790810412052034e-06,2.7232545205775084e-06,2.654967116101213e-06,2.5860866597622273e-06,2.5167496455731685e-06,2.447090171596493e-06,2.3772395329529067e-06,2.3073258382213723e-06,2.237473650603991e-06,2.1678036550383113e-06,2.0984323522460755e-06,2.0294717805125883e-06,1.9610292657964216e-06,1.893207200576507e-06,1.8261028516543832e-06,1.7598081969446805e-06,1.694409791108335e-06,1.6299886597115321e-06,1.5666202214302514e-06,1.5043742376663847e-06,1.4433147887976669e-06,1.3835002761508112e-06,1.3249834486659203e-06,1.2678114531109256e-06,1.2120259066078969e-06,1.1576629901487953e-06,1.1047535617067444e-06,1.0533232874901922e-06,1.0033927898413388e-06,9.549778102466693e-07,9.080893859061238e-07,8.627340382978845e-07,8.189139721775491e-07,7.766272834629896e-07,7.358681744788784e-07,6.96627175066993e-07,6.588913681092798e-07,6.226446180594933e-07,5.878678011352296e-07,5.545390358845309e-07,5.226339129091347e-07,4.921257225990185e-07,4.629856798093563e-07,4.3518314449052057e-07,4.086858373635511e-07,3.834600498167943e-07,3.5947084728347215e-07,3.366822654440514e-07,3.1505749868081474e-07,2.945590802943506e-07,2.7514905407224273e-07,2.5678913687850816e-07,2.394408720078712e-07,2.2306577312134344e-07,2.0762545864846042e-07,1.9308177660660115e-07,1.7939691984884e-07,1.6653353180855337e-07,1.5445480286137918e-07,1.4312455747301042e-07,1.3250733234463857e-07,1.225684458066339e-07,1.1327405874529985e-07,1.045912273773177e-07,9.648794821191749e-08,8.893319556199488e-08,8.189695198249886e-08,7.535023202762175e-08,6.926509972782817e-08,6.361468019377878e-08,5.837316575696719e-08,5.351581705662892e-08,4.9018959479448184e-08,4.4859975353025586e-08],[4.138441709872621e-08,4.522118099438996e-08,4.936964135673083e-08,5.385066353801469e-08,5.868608794418026e-08,6.389873723655484e-08,6.951241961631129e-08,7.555192782176811e-08,8.204303346350267e-08,8.90124763194497e-08,9.648794821191749e-08,1.0449807109100287e-07,1.130723689544392e-07,1.2224123324267956e-07,1.3203588136020203e-07,1.4248830798980223e-07,1.536312288861821e-07,1.6549801685859423e-07,1.7812262967977164e-07,1.9153952968997111e-07,2.0578359490072461e-07,2.2089002144287037e-07,2.368942172476101e-07,2.53831686897654e-07,2.7173790763789226e-07,2.9064819659132603e-07,3.1059756928602366e-07,3.316205896624144e-07,3.5375121179700427e-07,3.770226136482857e-07,4.0146702320281734e-07,4.2711553747377235e-07,4.539979348801894e-07,4.821424816122245e-07,5.115757326652902e-07,5.423223283035204e-07,5.744047867898179e-07,6.078432942952052e-07,6.426554929735465e-07,6.788562682582528e-07,7.164575365045387e-07,7.554680341634345e-07,7.958931097312796e-07,8.377345197700947e-07,8.809902303392788e-07,9.256542252167744e-07,9.717163223174977e-07,1.0191619997377397e-06,1.0679722328658185e-06,1.1181233440009014e-06,1.1695868659131135e-06,1.2223294207583837e-06,1.2763126157305495e-06,1.3314929567908028e-06,1.3878217817604077e-06,1.4452452139966596e-06,1.5037041377943193e-06,1.5631341965653465e-06,1.6234658147489161e-06,1.6846242442917743e-06,1.7465296364164343e-06,1.8090971392621229e-06,1.8722370218414057e-06,1.935854824604928e-06,1.9998515367485138e-06,2.0641238002320923e-06,2.1285641403095687e-06,2.1930612221941153e-06,2.2575001333056353e-06,2.321762690367744e-06,2.3857277704418857e-06,2.449271664807644e-06,2.5122684544223715e-06,2.574590405521471e-06,2.6361083837545353e-06,2.6966922850935694e-06,2.7562114815991606e-06,2.8145352799901964e-06,2.8715333908338935e-06,2.9270764060568237e-06,2.9810362823755698e-06,3.0332868281586513e-06,3.083704191160575e-06,3.1321673445150163e-06,3.1785585683381855e-06,3.2227639242757366e-06,3.264673720327877e-06,3.304182963307649e-06,3.341191796327033e-06,3.375605918764377e-06,3.4073369862445525e-06,3.4363029882597273e-06,3.4624286011732436e-06,3.485645514480963e-06,3.5058927283528185e-06,3.523116820641034e-06,3.5372721817194433e-06,3.548321215709159e-06,3.556234506848084e-06,3.5609909499738884e-06,3.5625778443103657e-06,3.5609909499738884e-06,3.556234506848084e-06,3.548321215709159e-06,3.5372721817194433e-06,3.523116820641034e-06,3.5058927283528185e-06,3.485645514480963e-06,3.4624286011732436e-06,3.4363029882597273e-06,3.4073369862445525e-06,3.375605918764377e-06,3.341191796327033e-06,3.304182963307649e-06,3.264673720327877e-06,3.2227639242757366e-06,3.1785585683381855e-06,3.1321673445150163e-06,3.083704191160575e-06,3.0332868281586513e-06,2.9810362823755698e-06,2.9270764060568237e-06,2.8715333908338935e-06,2.8145352799901964e-06,2.7562114815991606e-06,2.6966922850935694e-06,2.6361083837545353e-06,2.574590405521471e-06,2.5122684544223715e-06,2.449271664807644e-06,2.3857277704418857e-06,2.321762690367744e-06,2.2575001333056353e-06,2.1930612221941153e-06,2.1285641403095687e-06,2.0641238002320923e-06,1.9998515367485138e-06,1.935854824604928e-06,1.8722370218414057e-06,1.8090971392621229e-06,1.7465296364164343e-06,1.6846242442917743e-06,1.6234658147489161e-06,1.5631341965653465e-06,1.5037041377943193e-06,1.4452452139966596e-06,1.3878217817604077e-06,1.3314929567908028e-06,1.2763126157305495e-06,1.2223294207583837e-06,1.1695868659131135e-06,1.1181233440009014e-06,1.0679722328658185e-06,1.0191619997377397e-06,9.717163223174977e-07,9.256542252167744e-07,8.809902303392788e-07,8.377345197700947e-07,7.958931097312796e-07,7.554680341634345e-07,7.164575365045387e-07,6.788562682582528e-07,6.426554929735465e-07,6.078432942952052e-07,5.744047867898179e-07,5.423223283035204e-07,5.115757326652902e-07,4.821424816122245e-07,4.539979348801894e-07,4.2711553747377235e-07,4.0146702320281734e-07,3.770226136482857e-07,3.5375121179700427e-07,3.316205896624144e-07,3.1059756928602366e-07,2.9064819659132603e-07,2.7173790763789226e-07,2.53831686897654e-07,2.368942172476101e-07,2.2089002144287037e-07,2.0578359490072461e-07,1.9153952968997111e-07,1.7812262967977164e-07,1.6549801685859423e-07,1.536312288861821e-07,1.4248830798980223e-07,1.3203588136020203e-07,1.2224123324267956e-07,1.130723689544392e-07,1.0449807109100287e-07,9.648794821191749e-08,8.90124763194497e-08,8.204303346350267e-08,7.555192782176811e-08,6.951241961631129e-08,6.389873723655484e-08,5.868608794418026e-08,5.385066353801469e-08,4.936964135673083e-08,4.522118099438996e-08,4.138441709872621e-08],[3.814412605164715e-08,4.168048142225624e-08,4.550412824574291e-08,4.963429817215173e-08,5.4091121561061264e-08,5.8895634119424336e-08,6.406977992886071e-08,6.963641052146588e-08,7.561927965847016e-08,8.204303346350267e-08,8.893319556199488e-08,9.631614688060654e-08,1.0421909976567571e-07,1.12670066087776e-07,1.2169781901069455e-07,1.3133184811768745e-07,1.416023076058828e-07,1.525399572813156e-07,1.6417609611239882e-07,1.765424881287587e-07,1.8967128048532872e-07,2.035949135484435e-07,2.1834602290138942e-07,2.3395733321140238e-07,2.504615439483778e-07,2.678912069974449e-07,2.862785962628903e-07,3.0565556941948647e-07,3.2605342202882406e-07,3.475027343024802e-07,3.7003321086040287e-07,3.936735139013968e-07,4.1845109027258614e-07,4.4439199299575785e-07,4.715206978800045e-07,4.998599159215647e-07,5.294304022625633e-07,5.602507625499069e-07,5.923372576031985e-07,6.25703607365551e-07,6.603607951728979e-07,6.96316873435124e-07,7.335767718753683e-07,7.721421095214636e-07,8.120110116850102e-07,8.531779331983196e-07,8.956334892067979e-07,9.393642948336144e-07,9.843528150441608e-07,1.0305772260393236e-06,1.0780112894984788e-06,1.1266242409749857e-06,1.1763806937184585e-06,1.227240559158969e-06,1.2791589852384296e-06,1.3320863137136019e-06,1.3859680574835338e-06,1.440744898911817e-06,1.4963527100211044e-06,1.5527225953341772e-06,1.60978095802288e-06,1.667449589904038e-06,1.7256457856906033e-06,1.7842824817675748e-06,1.8432684196164141e-06,1.9025083338598302e-06,1.9619031647417644e-06,2.021350294696466e-06,2.0807438084967212e-06,2.1399747763059473e-06,2.19893155879321e-06,2.2575001333056353e-06,2.315564439930537e-06,2.3730067461212363e-06,2.429708028407431e-06,2.4855483695644363e-06,2.540407369477036e-06,2.5941645678043992e-06,2.6466998764337588e-06,2.697894019603585e-06,2.7476289794828896e-06,2.7957884449131413e-06,2.842258260954025e-06,2.8869268768246356e-06,2.929685789798563e-06,2.970429982595029e-06,3.009058351809413e-06,3.045474124945239e-06,3.0795852636462643e-06,3.1113048507815698e-06,3.1405514591083154e-06,3.1672494993258036e-06,3.191329545440078e-06,3.212728635479867e-06,3.2313905457414105e-06,3.247266036890641e-06,3.2603130704152004e-06,3.270496994094667e-06,3.2777906953437743e-06,3.2821747214789097e-06,3.283637366161251e-06,3.2821747214789097e-06,3.2777906953437743e-06,3.270496994094667e-06,3.2603130704152004e-06,3.247266036890641e-06,3.2313905457414105e-06,3.212728635479867e-06,3.191329545440078e-06,3.1672494993258036e-06,3.1405514591083154e-06,3.1113048507815698e-06,3.0795852636462643e-06,3.045474124945239e-06,3.009058351809413e-06,2.970429982595029e-06,2.929685789798563e-06,2.8869268768246356e-06,2.842258260954025e-06,2.7957884449131413e-06,2.7476289794828896e-06,2.697894019603585e-06,2.6466998764337588e-06,2.5941645678043992e-06,2.540407369477036e-06,2.4855483695644363e-06,2.429708028407431e-06,2.3730067461212363e-06,2.315564439930537e-06,2.2575001333056353e-06,2.19893155879321e-06,2.1399747763059473e-06,2.0807438084967212e-06,2.021350294696466e-06,1.9619031647417644e-06,1.9025083338598302e-06,1.8432684196164141e-06,1.7842824817675748e-06,1.7256457856906033e-06,1.667449589904038e-06,1.60978095802288e-06,1.5527225953341772e-06,1.4963527100211044e-06,1.440744898911817e-06,1.3859680574835338e-06,1.3320863137136019e-06,1.2791589852384296e-06,1.227240559158969e-06,1.1763806937184585e-06,1.1266242409749857e-06,1.0780112894984788e-06,1.0305772260393236e-06,9.843528150441608e-07,9.393642948336144e-07,8.956334892067979e-07,8.531779331983196e-07,8.120110116850102e-07,7.721421095214636e-07,7.335767718753683e-07,6.96316873435124e-07,6.603607951728979e-07,6.25703607365551e-07,5.923372576031985e-07,5.602507625499069e-07,5.294304022625633e-07,4.998599159215647e-07,4.715206978800045e-07,4.4439199299575785e-07,4.1845109027258614e-07,3.936735139013968e-07,3.7003321086040287e-07,3.475027343024802e-07,3.2605342202882406e-07,3.0565556941948647e-07,2.862785962628903e-07,2.678912069974449e-07,2.504615439483778e-07,2.3395733321140238e-07,2.1834602290138942e-07,2.035949135484435e-07,1.8967128048532872e-07,1.765424881287587e-07,1.6417609611239882e-07,1.525399572813156e-07,1.416023076058828e-07,1.3133184811768745e-07,1.2169781901069455e-07,1.12670066087776e-07,1.0421909976567571e-07,9.631614688060654e-08,8.893319556199488e-08,8.204303346350267e-08,7.561927965847016e-08,6.963641052146588e-08,6.406977992886071e-08,5.8895634119424336e-08,5.4091121561061264e-08,4.963429817215173e-08,4.550412824574291e-08,4.168048142225624e-08,3.814412605164715e-08],[3.512622750060166e-08,3.838279243284831e-08,4.190391880554038e-08,4.570731669319273e-08,4.981152377548027e-08,5.423591144990363e-08,5.900068761956759e-08,6.412689584211029e-08,6.963641052146588e-08,7.555192782176811e-08,8.189695198249886e-08,8.869577671614936e-08,9.597346137437443e-08,1.037558015760632e-07,1.120692940010906e-07,1.2094109506690732e-07,1.3039897322171393e-07,1.4047125460786839e-07,1.5118676187249383e-07,1.6257474592907242e-07,1.7466481050416903e-07,1.8748682933736103e-07,2.010708559399434e-07,2.154470258589898e-07,2.3064545143780413e-07,2.466961091115804e-07,2.63628719328043e-07,2.81472619236775e-07,3.002566283476193e-07,3.200089074176849e-07,3.40756810887776e-07,3.625267332521465e-07,3.8534394980993276e-07,4.092324523120305e-07,4.342147800830343e-07,4.603118472636838e-07,4.87542766884465e-07,5.159246725450612e-07,5.45472538536611e-07,5.761989993036006e-07,6.081141691990549e-07,6.412254635398477e-07,6.755374220177852e-07,7.110515355659647e-07,7.477660778181522e-07,7.856759423309211e-07,8.247724867634536e-07,8.650433852276698e-07,9.064724900311556e-07,9.490397040367652e-07,9.927208648552944e-07,1.0374876420709376e-06,1.0833074486729736e-06,1.1301433678311274e-06,1.1779540961060656e-06,1.2266939041305229e-06,1.2763126157305497e-06,1.326755606380513e-06,1.3779638217998559e-06,1.4298738174046527e-06,1.4824178192229528e-06,1.5355238067703732e-06,1.589115618261888e-06,1.6431130784080325e-06,1.6974321489094582e-06,1.7519851016239302e-06,1.8066807142352589e-06,1.86142448810543e-06,1.916118887840348e-06,1.9706636019473276e-06,2.0249558238099296e-06,2.0788905520541637e-06,2.1323609092307683e-06,2.1852584775924526e-06,2.2374736506039913e-06,2.288895998688107e-06,2.3394146475824697e-06,2.388918667564083e-06,2.4372974716879625e-06,2.484441221088509e-06,2.5302412353053318e-06,2.5745904055214717e-06,2.6173836085418537e-06,2.658518119294141e-06,2.6978940196035864e-06,2.7354146009785332e-06,2.7709867591442355e-06,2.804521378079988e-06,2.835933701348175e-06,2.86514368855384e-06,2.8920763548394768e-06,2.9166620914016387e-06,2.938836965113248e-06,2.9585429954474006e-06,2.9757284070244076e-06,2.9903478562427905e-06,3.0023626306059814e-06,3.0117408195184594e-06,3.0184574554967136e-06,3.022494624920463e-06,3.0238415476365552e-06,3.022494624920463e-06,3.0184574554967136e-06,3.0117408195184594e-06,3.0023626306059814e-06,2.9903478562427905e-06,2.9757284070244076e-06,2.9585429954474006e-06,2.938836965113248e-06,2.9166620914016387e-06,2.8920763548394768e-06,2.86514368855384e-06,2.835933701348175e-06,2.804521378079988e-06,2.7709867591442355e-06,2.7354146009785332e-06,2.6978940196035864e-06,2.658518119294141e-06,2.6173836085418537e-06,2.5745904055214717e-06,2.5302412353053318e-06,2.484441221088509e-06,2.4372974716879625e-06,2.388918667564083e-06,2.3394146475824697e-06,2.288895998688107e-06,2.2374736506039913e-06,2.1852584775924526e-06,2.1323609092307683e-06,2.0788905520541637e-06,2.0249558238099296e-06,1.9706636019473276e-06,1.916118887840348e-06,1.86142448810543e-06,1.8066807142352589e-06,1.7519851016239302e-06,1.6974321489094582e-06,1.6431130784080325e-06,1.589115618261888e-06,1.5355238067703732e-06,1.4824178192229528e-06,1.4298738174046527e-06,1.3779638217998559e-06,1.326755606380513e-06,1.2763126157305497e-06,1.2266939041305229e-06,1.1779540961060656e-06,1.1301433678311274e-06,1.0833074486729736e-06,1.0374876420709376e-06,9.927208648552944e-07,9.490397040367652e-07,9.064724900311556e-07,8.650433852276698e-07,8.247724867634536e-07,7.856759423309211e-07,7.477660778181522e-07,7.110515355659647e-07,6.755374220177852e-07,6.412254635398477e-07,6.081141691990549e-07,5.761989993036006e-07,5.45472538536611e-07,5.159246725450612e-07,4.87542766884465e-07,4.603118472636838e-07,4.342147800830343e-07,4.092324523120305e-07,3.8534394980993276e-07,3.625267332521465e-07,3.40756810887776e-07,3.200089074176849e-07,3.002566283476193e-07,2.81472619236775e-07,2.63628719328043e-07,2.466961091115804e-07,2.3064545143780413e-07,2.154470258589898e-07,2.010708559399434e-07,1.8748682933736103e-07,1.7466481050416903e-07,1.6257474592907242e-07,1.5118676187249383e-07,1.4047125460786839e-07,1.3039897322171393e-07,1.2094109506690732e-07,1.120692940010906e-07,1.037558015760632e-07,9.597346137437443e-08,8.869577671614936e-08,8.189695198249886e-08,7.555192782176811e-08,6.963641052146588e-08,6.412689584211029e-08,5.900068761956759e-08,5.423591144990363e-08,4.981152377548027e-08,4.570731669319273e-08,4.190391880554038e-08,3.838279243284831e-08,3.512622750060166e-08],[3.231828936675165e-08,3.531452936491713e-08,3.85541821573388e-08,4.205354210164067e-08,4.582966500308713e-08,4.990037373861117e-08,5.428426082174198e-08,5.900068761956759e-08,6.406977992886071e-08,6.951241961631129e-08,7.535023202762175e-08,8.160556887221119e-08,8.830148629461182e-08,9.546171785048768e-08,1.0311064211472104e-07,1.112732446613341e-07,1.1997507417027535e-07,1.2924219243441318e-07,1.3910111806153218e-07,1.4957876369080326e-07,1.6070236657112944e-07,1.7249941237998954e-07,1.8499755219589745e-07,1.9822451257532828e-07,2.1220799872586203e-07,2.2697559081126005e-07,2.4255463347106973e-07,2.5897211868697787e-07,2.762545621802784e-07,2.944278735792402e-07,3.135172206515482e-07,3.335468879550294e-07,3.5454013031917863e-07,3.7651902163017815e-07,3.995042994526971e-07,4.235152060823186e-07,4.485693266824339e-07,4.746824252183721e-07,5.018682789588157e-07,5.301385123696397e-07,5.595024312776028e-07,5.899668582302296e-07,6.215359700231472e-07,6.542111384064893e-07,6.879907750171587e-07,7.228701816131852e-07,7.58841406709561e-07,7.958931097312795e-07,8.340104338083272e-07,8.731748883386683e-07,9.133642424383838e-07,9.545524303827703e-07,9.96709470118046e-07,1.0398013958901794e-06,1.083790205995054e-06,1.1286338266026853e-06,1.174286092547487e-06,1.2206967459067733e-06,1.2678114531109254e-06,1.3155718412412445e-06,1.3639155540758171e-06,1.4127763283401538e-06,1.4620840905085086e-06,1.5117650743842421e-06,1.5617419595640692e-06,1.6119340307623447e-06,1.6622573578385128e-06,1.7126249962344638e-06,1.762947207389749e-06,1.8131316985625036e-06,1.8630838813435719e-06,1.9127071480118873e-06,1.9619031647417644e-06,2.010572180538612e-06,2.0586133506498352e-06,2.1059250730735367e-06,2.152405336670229e-06,2.1979520792731976e-06,2.2424635540925805e-06,2.2858387026175503e-06,2.3279775321413095e-06,2.368781495965662e-06,2.4081538742866523e-06,2.446000153720713e-06,2.48222840340267e-06,2.5167496455731685e-06,2.5494782185740506e-06,2.5803321301861312e-06,2.6092333992747577e-06,2.6361083837545353e-06,2.6608880929454084e-06,2.6835084824676557e-06,2.7039107299128355e-06,2.7220414896307194e-06,2.737853125088097e-06,2.7513039173832315e-06,2.7623582486386783e-06,2.770986759144235e-06,2.7771664772797116e-06,2.7808809214128626e-06,2.7821201731398687e-06,2.7808809214128626e-06,2.7771664772797116e-06,2.770986759144235e-06,2.7623582486386783e-06,2.7513039173832315e-06,2.737853125088097e-06,2.7220414896307194e-06,2.7039107299128355e-06,2.6835084824676557e-06,2.6608880929454084e-06,2.6361083837545353e-06,2.6092333992747577e-06,2.5803321301861312e-06,2.5494782185740506e-06,2.5167496455731685e-06,2.48222840340267e-06,2.446000153720713e-06,2.4081538742866523e-06,2.368781495965662e-06,2.3279775321413095e-06,2.2858387026175503e-06,2.2424635540925805e-06,2.1979520792731976e-06,2.152405336670229e-06,2.1059250730735367e-06,2.0586133506498352e-06,2.010572180538612e-06,1.9619031647417644e-06,1.9127071480118873e-06,1.8630838813435719e-06,1.8131316985625036e-06,1.762947207389749e-06,1.7126249962344638e-06,1.6622573578385128e-06,1.6119340307623447e-06,1.5617419595640692e-06,1.5117650743842421e-06,1.4620840905085086e-06,1.4127763283401538e-06,1.3639155540758171e-06,1.3155718412412445e-06,1.2678114531109254e-06,1.2206967459067733e-06,1.174286092547487e-06,1.1286338266026853e-06,1.083790205995054e-06,1.0398013958901794e-06,9.96709470118046e-07,9.545524303827703e-07,9.133642424383838e-07,8.731748883386683e-07,8.340104338083272e-07,7.958931097312795e-07,7.58841406709561e-07,7.228701816131852e-07,6.879907750171587e-07,6.542111384064893e-07,6.215359700231472e-07,5.899668582302296e-07,5.595024312776028e-07,5.301385123696397e-07,5.018682789588157e-07,4.746824252183721e-07,4.485693266824339e-07,4.235152060823186e-07,3.995042994526971e-07,3.7651902163017815e-07,3.5454013031917863e-07,3.335468879550294e-07,3.135172206515482e-07,2.944278735792402e-07,2.762545621802784e-07,2.5897211868697787e-07,2.4255463347106973e-07,2.2697559081126005e-07,2.1220799872586203e-07,1.9822451257532828e-07,1.8499755219589745e-07,1.7249941237998954e-07,1.6070236657112944e-07,1.4957876369080326e-07,1.3910111806153218e-07,1.2924219243441318e-07,1.1997507417027535e-07,1.112732446613341e-07,1.0311064211472104e-07,9.546171785048768e-08,8.830148629461182e-08,8.160556887221119e-08,7.535023202762175e-08,6.951241961631129e-08,6.406977992886071e-08,5.900068761956759e-08,5.428426082174198e-08,4.990037373861117e-08,4.582966500308713e-08,4.205354210164067e-08,3.85541821573388e-08,3.531452936491713e-08,3.231828936675165e-08],[2.970832969963869e-08,3.246259941715411e-08,3.54406244041026e-08,3.865738311875108e-08,4.2128553974035836e-08,4.5870520507405684e-08,4.990037373861117e-08,5.423591144990363e-08,5.8895634119424336e-08,6.389873723655484e-08,6.926509972782817e-08,7.501526822382984e-08,8.117043690150378e-08,8.775242264257326e-08,9.478363525753261e-08,1.0228704253599354e-07,1.1028612989819868e-07,1.1880485443934917e-07,1.2786759317811393e-07,1.374990853433705e-07,1.4772436855890338e-07,1.585687088144836e-07,1.7005752414346448e-07,1.8221630196171277e-07,1.950705100602939e-07,2.086455012847405e-07,2.2296641197683015e-07,2.3805805430041536e-07,2.5394480262078146e-07,2.7065047415703533e-07,2.881982041788599e-07,3.066103160723211e-07,3.2590818665393026e-07,3.4611210716747836e-07,3.672411404538655e-07,3.8931297483981196e-07,4.123437753464895e-07,4.363480328732788e-07,4.613384120645161e-07,4.873255986177292e-07,5.143181468399345e-07,5.423223283035205e-07,5.713419824945496e-07,6.013783703833898e-07,6.324300318799346e-07,6.6449264816273e-07,6.975589098926114e-07,7.316183923364667e-07,7.666574384350482e-07,8.026590508499329e-07,8.396027940184124e-07,8.774647072309775e-07,9.162172297238542e-07,9.55829138748591e-07,9.96265501541817e-07,1.0374876420709374e-06,1.0794531233757443e-06,1.1221157462617126e-06,1.1654255650283851e-06,1.2093289208358848e-06,1.2537684932246288e-06,1.2986833702081204e-06,1.3440091372567892e-06,1.3896779853828022e-06,1.4356188384222192e-06,1.481757499492571e-06,1.5280168164816569e-06,1.5743168662979842e-06,1.6205751574856999e-06,1.6667068506780568e-06,1.712624996234464e-06,1.7582407882779643e-06,1.803463834223698e-06,1.8482024387655944e-06,1.8923639011692614e-06,1.935854824604928e-06,1.978581436146356e-06,2.0204499159609352e-06,2.0613667341237122e-06,2.101238993404746e-06,2.1399747763059477e-06,2.177483494561101e-06,2.213676239261946e-06,2.248466129734566e-06,2.2817686592644757e-06,2.313502035756157e-06,2.343587515413666e-06,2.3719497275435632e-06,2.3985169886098686e-06,2.423221603713021e-06,2.4460001537207132e-06,2.4667937663477645e-06,2.4855483695644367e-06,2.502214925807291e-06,2.5167496455731685e-06,2.529114179094436e-06,2.539275784921373e-06,2.547207474374578e-06,2.552888130975433e-06,2.556302604114969e-06,2.5574417763795946e-06,2.556302604114969e-06,2.552888130975433e-06,2.547207474374578e-06,2.539275784921373e-06,2.529114179094436e-06,2.5167496455731685e-06,2.502214925807291e-06,2.4855483695644367e-06,2.4667937663477645e-06,2.4460001537207132e-06,2.423221603713021e-06,2.3985169886098686e-06,2.3719497275435632e-06,2.343587515413666e-06,2.313502035756157e-06,2.2817686592644757e-06,2.248466129734566e-06,2.213676239261946e-06,2.177483494561101e-06,2.1399747763059477e-06,2.101238993404746e-06,2.0613667341237122e-06,2.0204499159609352e-06,1.978581436146356e-06,1.935854824604928e-06,1.8923639011692614e-06,1.8482024387655944e-06,1.803463834223698e-06,1.7582407882779643e-06,1.712624996234464e-06,1.6667068506780568e-06,1.6205751574856999e-06,1.5743168662979842e-06,1.5280168164816569e-06,1.481757499492571e-06,1.4356188384222192e-06,1.3896779853828022e-06,1.3440091372567892e-06,1.2986833702081204e-06,1.2537684932246288e-06,1.2093289208358848e-06,1.1654255650283851e-06,1.1221157462617126e-06,1.0794531233757443e-06,1.0374876420709374e-06,9.96265501541817e-07,9.55829138748591e-07,9.162172297238542e-07,8.774647072309775e-07,8.396027940184124e-07,8.026590508499329e-07,7.666574384350482e-07,7.316183923364667e-07,6.975589098926114e-07,6.6449264816273e-07,6.324300318799346e-07,6.013783703833898e-07,5.713419824945496e-07,5.423223283035205e-07,5.143181468399345e-07,4.873255986177292e-07,4.613384120645161e-07,4.363480328732788e-07,4.123437753464895e-07,3.8931297483981196e-07,3.672411404538655e-07,3.4611210716747836e-07,3.2590818665393026e-07,3.066103160723211e-07,2.881982041788599e-07,2.7065047415703533e-07,2.5394480262078146e-07,2.3805805430041536e-07,2.2296641197683015e-07,2.086455012847405e-07,1.950705100602939e-07,1.8221630196171277e-07,1.7005752414346448e-07,1.585687088144836e-07,1.4772436855890338e-07,1.374990853433705e-07,1.2786759317811393e-07,1.1880485443934917e-07,1.1028612989819868e-07,1.0228704253599354e-07,9.478363525753261e-08,8.775242264257326e-08,8.117043690150378e-08,7.501526822382984e-08,6.926509972782817e-08,6.389873723655484e-08,5.8895634119424336e-08,5.423591144990363e-08,4.990037373861117e-08,4.5870520507405684e-08,4.2128553974035836e-08,3.865738311875108e-08,3.54406244041026e-08,3.246259941715411e-08,2.970832969963869e-08],[2.7284821654195476e-08,2.9814407086622995e-08,3.254949456788302e-08,3.550384066277069e-08,3.8691844790745527e-08,4.2128553974035836e-08,4.582966500308713e-08,4.981152377548027e-08,5.4091121561061264e-08,5.868608794418026e-08,6.361468019377878e-08,6.889576881374542e-08,7.454881902962029e-08,8.059386797351034e-08,8.705149733711029e-08,9.394280127312687e-08,1.0128934933828958e-07,1.091131442865911e-07,1.1743657453951346e-07,1.2628236118082714e-07,1.356734993471323e-07,1.4563319391166778e-07,1.561847893880382e-07,1.6735169401236406e-07,1.7915729799689127e-07,1.9162488598521221e-07,2.047775437788303e-07,2.186380594466949e-07,2.332288189733589e-07,2.4857169664735347e-07,2.6468794043898193e-07,2.8159805266573206e-07,2.9932166629357444e-07,3.178774172732199e-07,3.3728281336156496e-07,3.5755409992968226e-07,3.7870612330936396e-07,4.00752192279973e-07,4.23703938345721e-07,4.4757117549999805e-07,4.723617602175258e-07,4.980814524563986e-07,5.247337784900054e-07,5.523198964228898e-07,5.808384652743045e-07,6.10285518538077e-07,6.406543431469454e-07,6.719353647833148e-07,7.041160404860137e-07,7.371807595037088e-07,7.711107533398357e-07,8.058840159209369e-07,8.414752347999033e-07,8.778557342776411e-07,9.149934312909783e-07,9.528528048711401e-07,9.913948799258698e-07,1.0305772260393238e-06,1.070353971917385e-06,1.1106758360322457e-06,1.1514901739393123e-06,1.1927410426520557e-06,1.2343692823668446e-06,1.2763126157305495e-06,1.31850576473944e-06,1.3608805852492324e-06,1.4033662189638551e-06,1.4458892626553428e-06,1.4883739542501049e-06,1.5307423752985233e-06,1.5729146692263505e-06,1.6148092746486442e-06,1.6563431729109838e-06,1.697432148909458e-06,1.737991064131379e-06,1.7779341407538546e-06,1.8171752555382416e-06,1.855628242165995e-06,1.8932072005765074e-06,1.929826811791004e-06,1.965402656639251e-06,1.999851536748514e-06,2.033091796107505e-06,2.065043641482574e-06,2.0956294599396854e-06,2.124774131714063e-06,2.152405336670229e-06,2.1784538526085757e-06,2.2028538437007513e-06,2.225543137374951e-06,2.2464634880235646e-06,2.2655608259692387e-06,2.2827854902009785e-06,2.298092443478848e-06,2.3114414685036548e-06,2.322797343955959e-06,2.332129999326065e-06,2.3394146475824693e-06,2.3446318948595837e-06,2.347767826485401e-06,2.3488140688150084e-06,2.347767826485401e-06,2.3446318948595837e-06,2.3394146475824693e-06,2.332129999326065e-06,2.322797343955959e-06,2.3114414685036548e-06,2.298092443478848e-06,2.2827854902009785e-06,2.2655608259692387e-06,2.2464634880235646e-06,2.225543137374951e-06,2.2028538437007513e-06,2.1784538526085757e-06,2.152405336670229e-06,2.124774131714063e-06,2.0956294599396854e-06,2.065043641482574e-06,2.033091796107505e-06,1.999851536748514e-06,1.965402656639251e-06,1.929826811791004e-06,1.8932072005765074e-06,1.855628242165995e-06,1.8171752555382416e-06,1.7779341407538546e-06,1.737991064131379e-06,1.697432148909458e-06,1.6563431729109838e-06,1.6148092746486442e-06,1.5729146692263505e-06,1.5307423752985233e-06,1.4883739542501049e-06,1.4458892626553428e-06,1.4033662189638551e-06,1.3608805852492324e-06,1.31850576473944e-06,1.2763126157305495e-06,1.2343692823668446e-06,1.1927410426520557e-06,1.1514901739393123e-06,1.1106758360322457e-06,1.070353971917385e-06,1.0305772260393238e-06,9.913948799258698e-07,9.528528048711401e-07,9.149934312909783e-07,8.778557342776411e-07,8.414752347999033e-07,8.058840159209369e-07,7.711107533398357e-07,7.371807595037088e-07,7.041160404860137e-07,6.719353647833148e-07,6.406543431469454e-07,6.10285518538077e-07,5.808384652743045e-07,5.523198964228898e-07,5.247337784900054e-07,4.980814524563986e-07,4.723617602175258e-07,4.4757117549999805e-07,4.23703938345721e-07,4.00752192279973e-07,3.7870612330936396e-07,3.5755409992968226e-07,3.3728281336156496e-07,3.178774172732199e-07,2.9932166629357444e-07,2.8159805266573206e-07,2.6468794043898193e-07,2.4857169664735347e-07,2.332288189733589e-07,2.186380594466949e-07,2.047775437788303e-07,1.9162488598521221e-07,1.7915729799689127e-07,1.6735169401236406e-07,1.561847893880382e-07,1.4563319391166778e-07,1.356734993471323e-07,1.2628236118082714e-07,1.1743657453951346e-07,1.091131442865911e-07,1.0128934933828958e-07,9.394280127312687e-08,8.705149733711029e-08,8.059386797351034e-08,7.454881902962029e-08,6.889576881374542e-08,6.361468019377878e-08,5.868608794418026e-08,5.4091121561061264e-08,4.981152377548027e-08,4.582966500308713e-08,4.2128553974035836e-08,3.8691844790745527e-08,3.550384066277069e-08,3.254949456788302e-08,2.9814407086622995e-08,2.7284821654195476e-08],[2.5036696124511825e-08,2.7357857046703193e-08,2.9867587731775656e-08,3.257851127607403e-08,3.550384066277069e-08,3.865738311875108e-08,4.205354210164067e-08,4.570731669319273e-08,4.963429817215173e-08,5.385066353801469e-08,5.837316575696719e-08,6.321912050281362e-08,6.840638916907964e-08,7.395335793377026e-08,7.987891266563769e-08,8.620240947035914e-08,9.294364068684817e-08,1.0012279615810982e-07,1.077604196176695e-07,1.1587736005172152e-07,1.2449471791878067e-07,1.336337861328067e-07,1.433159857424948e-07,1.5356279626865636e-07,1.6439568069330074e-07,1.7583600512808433e-07,1.87904953226115e-07,2.0062343543954009e-07,2.1401199326574605e-07,2.2809069866715347e-07,2.4287904889327666e-07,2.583958569786772e-07,2.7465913823638386e-07,2.916859931129691e-07,3.0949248681841643e-07,3.280935261908256e-07,3.4750273430248026e-07,3.67732323359453e-07,3.887929664912997e-07,4.106936690700687e-07,4.3344164023836366e-07,4.570421653640835e-07,4.814984801742712e-07,5.068116473517583e-07,5.329804364055452e-07,5.600012076486669e-07,5.878678011352297e-07,6.16571431420958e-07,6.461005890185867e-07,6.764409494204334e-07,7.075752905551515e-07,7.394834195337781e-07,7.721421095214639e-07,8.055250475456172e-07,8.396027940184126e-07,8.743427547117285e-07,9.097091658755345e-07,9.456630931366698e-07,9.821624447539383e-07,1.01916199973774e-06,1.0566134512683108e-06,1.094465465766426e-06,1.1326637578845363e-06,1.1711511815952464e-06,1.209867837458357e-06,1.2487511960479948e-06,1.2877362374183043e-06,1.3267556063805133e-06,1.3657397832566742e-06,1.404617269666834e-06,1.4433147887976673e-06,1.4817574994925713e-06,1.5198692233967916e-06,1.5575726842872159e-06,1.5947897586159728e-06,1.6314417362007794e-06,1.6674495899040384e-06,1.7027342530578084e-06,1.7372169033138345e-06,1.7708192515276127e-06,1.8034638342236985e-06,1.8350743081368657e-06,1.8655757452808774e-06,1.8948949269640748e-06,1.922960635149213e-06,1.9497039395442967e-06,1.975058478811929e-06,1.998960734296989e-06,2.021350294696467e-06,2.0421701101308627e-06,2.061366734123713e-06,2.078890552054164e-06,2.0946959947168433e-06,2.1087417357030663e-06,2.1209908714071727e-06,2.1314110825608504e-06,2.139974776305948e-06,2.1466592079317456e-06,2.1514465815249852e-06,2.1543241289093108e-06,2.1552841663840277e-06,2.1543241289093108e-06,2.1514465815249852e-06,2.1466592079317456e-06,2.139974776305948e-06,2.1314110825608504e-06,2.1209908714071727e-06,2.1087417357030663e-06,2.0946959947168433e-06,2.078890552054164e-06,2.061366734123713e-06,2.0421701101308627e-06,2.021350294696467e-06,1.998960734296989e-06,1.975058478811929e-06,1.9497039395442967e-06,1.922960635149213e-06,1.8948949269640748e-06,1.8655757452808774e-06,1.8350743081368657e-06,1.8034638342236985e-06,1.7708192515276127e-06,1.7372169033138345e-06,1.7027342530578084e-06,1.6674495899040384e-06,1.6314417362007794e-06,1.5947897586159728e-06,1.5575726842872159e-06,1.5198692233967916e-06,1.4817574994925713e-06,1.4433147887976673e-06,1.404617269666834e-06,1.3657397832566742e-06,1.3267556063805133e-06,1.2877362374183043e-06,1.2487511960479948e-06,1.209867837458357e-06,1.1711511815952464e-06,1.1326637578845363e-06,1.094465465766426e-06,1.0566134512683108e-06,1.01916199973774e-06,9.821624447539383e-07,9.456630931366698e-07,9.097091658755345e-07,8.743427547117285e-07,8.396027940184126e-07,8.055250475456172e-07,7.721421095214639e-07,7.394834195337781e-07,7.075752905551515e-07,6.764409494204334e-07,6.461005890185867e-07,6.16571431420958e-07,5.878678011352297e-07,5.600012076486669e-07,5.329804364055452e-07,5.068116473517583e-07,4.814984801742712e-07,4.570421653640835e-07,4.3344164023836366e-07,4.106936690700687e-07,3.887929664912997e-07,3.67732323359453e-07,3.4750273430248026e-07,3.280935261908256e-07,3.0949248681841643e-07,2.916859931129691e-07,2.7465913823638386e-07,2.583958569786772e-07,2.4287904889327666e-07,2.2809069866715347e-07,2.1401199326574605e-07,2.0062343543954009e-07,1.87904953226115e-07,1.7583600512808433e-07,1.6439568069330074e-07,1.5356279626865636e-07,1.433159857424948e-07,1.336337861328067e-07,1.2449471791878067e-07,1.1587736005172152e-07,1.077604196176695e-07,1.0012279615810982e-07,9.294364068684817e-08,8.620240947035914e-08,7.987891266563769e-08,7.395335793377026e-08,6.840638916907964e-08,6.321912050281362e-08,5.837316575696719e-08,5.385066353801469e-08,4.963429817215173e-08,4.570731669319273e-08,4.205354210164067e-08,3.865738311875108e-08,3.550384066277069e-08,3.257851127607403e-08,2.9867587731775656e-08,2.7357857046703193e-08,2.5036696124511825e-08],[2.2953342210018216e-08,2.508135465649348e-08,2.7382245596055287e-08,2.9867587731775656e-08,3.254949456788302e-08,3.54406244041026e-08,3.85541821573388e-08,4.190391880554038e-08,4.550412824574291e-08,4.936964135673083e-08,5.351581705662892e-08,5.795853014714633e-08,6.271415573927626e-08,6.779955006011772e-08,7.323202744724332e-08,7.9029333345789e-08,8.520961313428075e-08,9.179137661821992e-08,9.879345804568524e-08,1.0623497151673482e-07,1.1413526167822904e-07,1.2251384961786796e-07,1.3139037389573765e-07,1.407845266784579e-07,1.507159849700733e-07,1.612043369650529e-07,1.7226900358206035e-07,1.839291552724012e-07,1.9620362423408874e-07,2.0911081220112073e-07,2.226685940176073e-07,2.3689421724761012e-07,2.5180419811367357e-07,2.674142140997664e-07,2.8373899359739023e-07,3.0079220301662046e-07,3.185863318264559e-07,3.3713257603070354e-07,3.564407206263104e-07,3.7651902163017804e-07,3.973740882976329e-07,4.1901076619046496e-07,4.414320217843526e-07,4.6463882933414835e-07,4.886300607404871e-07,5.134023791820876e-07,5.389501372945615e-07,5.652652806881473e-07,5.923372576031985e-07,6.201529355031693e-07,6.4869652539996e-07,6.779495146955711e-07,7.078906093068661e-07,7.384956858167028e-07,7.697377543646578e-07,8.015869329539837e-07,8.340104338083272e-07,8.669725623621415e-07,9.004347294127983e-07,9.343554769003282e-07,9.686905177127413e-07,1.0033927898413388e-06,1.0384125251316845e-06,1.0736973327924288e-06,1.109192297736443e-06,1.1448400937373306e-06,1.1805811112898961e-06,1.2163535999662952e-06,1.2520938249610117e-06,1.2877362374183039e-06,1.3232136580360795e-06,1.358457473341126e-06,1.3933978439330286e-06,1.427963923898854e-06,1.4620840905085086e-06,1.495686183212519e-06,1.528697750880587e-06,1.5610463061414698e-06,1.5926595856132782e-06,1.6234658147489161e-06,1.653393975964761e-06,1.682374078672459e-06,1.7103374297944317e-06,1.7372169033138334e-06,1.762947207389749e-06,1.7874651475586224e-06,1.8107098845436085e-06,1.8326231852048225e-06,1.8531496651854597e-06,1.8722370218414057e-06,1.8898362560851585e-06,1.9059018818284012e-06,1.9203921217711273e-06,1.9332690883583604e-06,1.9444989488078007e-06,1.9540520732025507e-06,1.9619031647417644e-06,1.968031371347914e-06,1.9724203779415297e-06,1.975058478811928e-06,1.9759386296346257e-06,1.975058478811928e-06,1.9724203779415297e-06,1.968031371347914e-06,1.9619031647417644e-06,1.9540520732025507e-06,1.9444989488078007e-06,1.9332690883583604e-06,1.9203921217711273e-06,1.9059018818284012e-06,1.8898362560851585e-06,1.8722370218414057e-06,1.8531496651854597e-06,1.8326231852048225e-06,1.8107098845436085e-06,1.7874651475586224e-06,1.762947207389749e-06,1.7372169033138334e-06,1.7103374297944317e-06,1.682374078672459e-06,1.653393975964761e-06,1.6234658147489161e-06,1.5926595856132782e-06,1.5610463061414698e-06,1.528697750880587e-06,1.495686183212519e-06,1.4620840905085086e-06,1.427963923898854e-06,1.3933978439330286e-06,1.358457473341126e-06,1.3232136580360795e-06,1.2877362374183039e-06,1.2520938249610117e-06,1.2163535999662952e-06,1.1805811112898961e-06,1.1448400937373306e-06,1.109192297736443e-06,1.0736973327924288e-06,1.0384125251316845e-06,1.0033927898413388e-06,9.686905177127413e-07,9.343554769003282e-07,9.004347294127983e-07,8.669725623621415e-07,8.340104338083272e-07,8.015869329539837e-07,7.697377543646578e-07,7.384956858167028e-07,7.078906093068661e-07,6.779495146955711e-07,6.4869652539996e-07,6.201529355031693e-07,5.923372576031985e-07,5.652652806881473e-07,5.389501372945615e-07,5.134023791820876e-07,4.886300607404871e-07,4.6463882933414835e-07,4.414320217843526e-07,4.1901076619046496e-07,3.973740882976329e-07,3.7651902163017804e-07,3.564407206263104e-07,3.3713257603070354e-07,3.185863318264559e-07,3.0079220301662046e-07,2.8373899359739023e-07,2.674142140997664e-07,2.5180419811367357e-07,2.3689421724761012e-07,2.226685940176073e-07,2.0911081220112073e-07,1.9620362423408874e-07,1.839291552724012e-07,1.7226900358206035e-07,1.612043369650529e-07,1.507159849700733e-07,1.407845266784579e-07,1.3139037389573765e-07,1.2251384961786796e-07,1.1413526167822904e-07,1.0623497151673482e-07,9.879345804568524e-08,9.179137661821992e-08,8.520961313428075e-08,7.9029333345789e-08,7.323202744724332e-08,6.779955006011772e-08,6.271415573927626e-08,5.795853014714633e-08,5.351581705662892e-08,4.936964135673083e-08,4.550412824574291e-08,4.190391880554038e-08,3.85541821573388e-08,3.54406244041026e-08,3.254949456788302e-08,2.9867587731775656e-08,2.7382245596055287e-08,2.508135465649348e-08,2.2953342210018216e-08],[2.1024605688448892e-08,2.297380429220283e-08,2.508135465649348e-08,2.7357857046703193e-08,2.9814407086622995e-08,3.246259941715411e-08,3.531452936491713e-08,3.838279243284831e-08,4.168048142225624e-08,4.522118099438996e-08,4.9018959479448184e-08,5.3088357742254135e-08,5.744437491664143e-08,6.21024508250511e-08,6.707844490602989e-08,7.238861148033571e-08,7.80495711962858e-08,8.407827850689504e-08,9.049198504530999e-08,9.73081987810949e-08,1.0454463885809825e-07,1.1221918603493669e-07,1.203498286715763e-07,1.2895460423003652e-07,1.380515362838511e-07,1.476585670595199e-07,1.5779348556368404e-07,1.684738513820405e-07,1.7971691426993442e-07,1.9153952968997111e-07,2.0395807048867188e-07,2.1698833494195522e-07,2.3064545143780402e-07,2.4494378010362863e-07,2.5989681172525504e-07,2.7551706434386373e-07,2.91815977956234e-07,3.088038077819837e-07,3.264895165987595e-07,3.44880666682169e-07,3.639833119212652e-07,3.8380189071221046e-07,4.0433912026197375e-07,4.2559589296016587e-07,4.475711754999979e-07,4.7026191144850916e-07,4.936629279812649e-07,5.17766847507357e-07,5.425640049164125e-07,5.680423711801517e-07,5.941874840365658e-07,6.209823864747912e-07,6.484075737230459e-07,6.764409494204328e-07,7.050577916259027e-07,7.342307292841626e-07,7.63929729728818e-07,7.9412209775762e-07,8.247724867634531e-07,8.5584292234784e-07,8.872928387814787e-07,9.190791286089606e-07,9.511562056226958e-07,9.83476081354611e-07,1.0159884551538174e-06,1.0486408178347437e-06,1.0813785687936715e-06,1.1141451464029024e-06,1.1468821714014837e-06,1.1795296029102836e-06,1.2120259066078964e-06,1.2443082345131418e-06,1.276312615730549e-06,1.3079741574279356e-06,1.3392272552307937e-06,1.3700058121374291e-06,1.4002434649824145e-06,1.4298738174046518e-06,1.458830678210893e-06,1.4870483039665922e-06,1.5144616445941208e-06,1.5410065907141753e-06,1.566620221430251e-06,1.5912410512287049e-06,1.6148092746486434e-06,1.6372670073669123e-06,1.6585585223440965e-06,1.6786304796877798e-06,1.6974321489094574e-06,1.7149156222814053e-06,1.7310360180393722e-06,1.7457516722259963e-06,1.759024318028047e-06,1.7708192515276114e-06,1.781105482862704e-06,1.7898558718759715e-06,1.7970472474205685e-06,1.8026605095892217e-06,1.8066807142352578e-06,1.8090971392621225e-06,1.809903332269845e-06,1.8090971392621225e-06,1.8066807142352578e-06,1.8026605095892217e-06,1.7970472474205685e-06,1.7898558718759715e-06,1.781105482862704e-06,1.7708192515276114e-06,1.759024318028047e-06,1.7457516722259963e-06,1.7310360180393722e-06,1.7149156222814053e-06,1.6974321489094574e-06,1.6786304796877798e-06,1.6585585223440965e-06,1.6372670073669123e-06,1.6148092746486434e-06,1.5912410512287049e-06,1.566620221430251e-06,1.5410065907141753e-06,1.5144616445941208e-06,1.4870483039665922e-06,1.458830678210893e-06,1.4298738174046518e-06,1.4002434649824145e-06,1.3700058121374291e-06,1.3392272552307937e-06,1.3079741574279356e-06,1.276312615730549e-06,1.2443082345131418e-06,1.2120259066078964e-06,1.1795296029102836e-06,1.1468821714014837e-06,1.1141451464029024e-06,1.0813785687936715e-06,1.0486408178347437e-06,1.0159884551538174e-06,9.83476081354611e-07,9.511562056226958e-07,9.190791286089606e-07,8.872928387814787e-07,8.5584292234784e-07,8.247724867634531e-07,7.9412209775762e-07,7.63929729728818e-07,7.342307292841626e-07,7.050577916259027e-07,6.764409494204328e-07,6.484075737230459e-07,6.209823864747912e-07,5.941874840365658e-07,5.680423711801517e-07,5.425640049164125e-07,5.17766847507357e-07,4.936629279812649e-07,4.7026191144850916e-07,4.475711754999979e-07,4.2559589296016587e-07,4.0433912026197375e-07,3.8380189071221046e-07,3.639833119212652e-07,3.44880666682169e-07,3.264895165987595e-07,3.088038077819837e-07,2.91815977956234e-07,2.7551706434386373e-07,2.5989681172525504e-07,2.4494378010362863e-07,2.3064545143780402e-07,2.1698833494195522e-07,2.0395807048867188e-07,1.9153952968997111e-07,1.7971691426993442e-07,1.684738513820405e-07,1.5779348556368404e-07,1.476585670595199e-07,1.380515362838511e-07,1.2895460423003652e-07,1.203498286715763e-07,1.1221918603493669e-07,1.0454463885809825e-07,9.73081987810949e-08,9.049198504530999e-08,8.407827850689504e-08,7.80495711962858e-08,7.238861148033571e-08,6.707844490602989e-08,6.21024508250511e-08,5.744437491664143e-08,5.3088357742254135e-08,4.9018959479448184e-08,4.522118099438996e-08,4.168048142225624e-08,3.838279243284831e-08,3.531452936491713e-08,3.246259941715411e-08,2.9814407086622995e-08,2.7357857046703193e-08,2.508135465649348e-08,2.297380429220283e-08,2.1024605688448892e-08],[1.9240785667560563e-08,2.1024605688448892e-08,2.2953342210018216e-08,2.5036696124511825e-08,2.7284821654195476e-08,2.970832969963869e-08,3.231828936675165e-08,3.512622750060166e-08,3.814412605164715e-08,4.138441709872621e-08,4.4859975353025586e-08,4.85841079684406e-08,5.257054148631848e-08,5.683340574665413e-08,6.138721460347203e-08,6.624684328946431e-08,7.142750228404095e-08,7.69447075498509e-08,8.281424701560523e-08,8.905214319772361e-08,9.567461186995482e-08,1.0269801670870804e-07,1.1013881986237013e-07,1.180135284153471e-07,1.2633863674191953e-07,1.351305647711742e-07,1.44405592212186e-07,1.5417978881816751e-07,1.6446894079934937e-07,1.7528847352675266e-07,1.866533707025858e-07,1.9857809020755145e-07,2.1107647687065554e-07,2.2416167244293764e-07,2.378460230926166e-07,2.5214098477519995e-07,2.670570268678228e-07,2.826035344921642e-07,2.987887099843936e-07,3.156194740033942e-07,3.3310136679964454e-07,3.5123845019625447e-07,3.7003321086040276e-07,3.894864654674403e-07,4.0959726838087123e-07,4.303628224889505e-07,4.517783938524205e-07,4.7383723082763523e-07,4.965304883346967e-07,5.198471579409927e-07,5.437740044264335e-07,5.682955094875411e-07,5.933938232231608e-07,6.190487240248422e-07,6.452375874697512e-07,6.719353647833146e-07,6.991145714026495e-07,7.267452861302724e-07,7.54795161320683e-07,7.832294444903971e-07,8.120110116850101e-07,8.411004128752333e-07,8.704559295878346e-07,9.000336449074435e-07,9.297875259116344e-07,9.59669518525095e-07,9.896296546994813e-07,1.0196161717443682e-06,1.049575643552077e-06,1.079453123375744e-06,1.1091922977364429e-06,1.1387356509521463e-06,1.1680246396995243e-06,1.1969998769396995e-06,1.225601324461851e-06,1.2537684932246284e-06,1.2814406506054494e-06,1.3085570336025288e-06,1.3350570669745875e-06,1.3608805852492316e-06,1.3859680574835336e-06,1.4102608136199075e-06,1.4337012712474588e-06,1.4562331615539585e-06,1.4778017532368626e-06,1.498354073133591e-06,1.5178391223318609e-06,1.5362080865303387e-06,1.553414539438296e-06,1.5694146380303457e-06,1.584167308508523e-06,1.5976344218688622e-06,1.6097809580228796e-06,1.6205751574856993e-06,1.6299886597115317e-06,1.6379966272333465e-06,1.6445778548463115e-06,1.649714863163296e-06,1.6533939759647603e-06,1.6556053808639816e-06,1.656343172910983e-06,1.6556053808639816e-06,1.6533939759647603e-06,1.649714863163296e-06,1.6445778548463115e-06,1.6379966272333465e-06,1.6299886597115317e-06,1.6205751574856993e-06,1.6097809580228796e-06,1.5976344218688622e-06,1.584167308508523e-06,1.5694146380303457e-06,1.553414539438296e-06,1.5362080865303387e-06,1.5178391223318609e-06,1.498354073133591e-06,1.4778017532368626e-06,1.4562331615539585e-06,1.4337012712474588e-06,1.4102608136199075e-06,1.3859680574835336e-06,1.3608805852492316e-06,1.3350570669745875e-06,1.3085570336025288e-06,1.2814406506054494e-06,1.2537684932246284e-06,1.225601324461851e-06,1.1969998769396995e-06,1.1680246396995243e-06,1.1387356509521463e-06,1.1091922977364429e-06,1.079453123375744e-06,1.049575643552077e-06,1.0196161717443682e-06,9.896296546994813e-07,9.59669518525095e-07,9.297875259116344e-07,9.000336449074435e-07,8.704559295878346e-07,8.411004128752333e-07,8.120110116850101e-07,7.832294444903971e-07,7.54795161320683e-07,7.267452861302724e-07,6.991145714026495e-07,6.719353647833146e-07,6.452375874697512e-07,6.190487240248422e-07,5.933938232231608e-07,5.682955094875411e-07,5.437740044264335e-07,5.198471579409927e-07,4.965304883346967e-07,4.7383723082763523e-07,4.517783938524205e-07,4.303628224889505e-07,4.0959726838087123e-07,3.894864654674403e-07,3.7003321086040276e-07,3.5123845019625447e-07,3.3310136679964454e-07,3.156194740033942e-07,2.987887099843936e-07,2.826035344921642e-07,2.670570268678228e-07,2.5214098477519995e-07,2.378460230926166e-07,2.2416167244293764e-07,2.1107647687065554e-07,1.9857809020755145e-07,1.866533707025858e-07,1.7528847352675266e-07,1.6446894079934937e-07,1.5417978881816751e-07,1.44405592212186e-07,1.351305647711742e-07,1.2633863674191953e-07,1.180135284153471e-07,1.1013881986237013e-07,1.0269801670870804e-07,9.567461186995482e-08,8.905214319772361e-08,8.281424701560523e-08,7.69447075498509e-08,7.142750228404095e-08,6.624684328946431e-08,6.138721460347203e-08,5.683340574665413e-08,5.257054148631848e-08,4.85841079684406e-08,4.4859975353025586e-08,4.138441709872621e-08,3.814412605164715e-08,3.512622750060166e-08,3.231828936675165e-08,2.970832969963869e-08,2.7284821654195476e-08,2.5036696124511825e-08,2.2953342210018216e-08,2.1024605688448892e-08,1.9240785667560563e-08]],"replace_invalid":0},"process_id":"apply_kernel"},"filterbands1":{"arguments":{"bands":[{"from_parameter":"scl_band_name"}],"data":{"from_parameter":"data"}},"process_id":"filter_bands"},"mergecubes1":{"arguments":{"cube1":{"from_node":"apply1"},"cube2":{"from_node":"apply2"},"overlap_resolver":{"process_graph":{"or9":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"or","result":true}}}},"process_id":"merge_cubes","result":true},"reducedimension1":{"arguments":{"data":{"from_node":"filterbands1"},"dimension":"bands","reducer":{"process_graph":{"arrayelement1":{"arguments":{"data":{"from_parameter":"data"},"index":0},"process_id":"array_element"},"eq1":{"arguments":{"x":{"from_node":"arrayelement1"},"y":2},"process_id":"eq"},"eq2":{"arguments":{"x":{"from_node":"arrayelement1"},"y":4},"process_id":"eq"},"eq3":{"arguments":{"x":{"from_node":"arrayelement1"},"y":5},"process_id":"eq"},"eq4":{"arguments":{"x":{"from_node":"arrayelement1"},"y":6},"process_id":"eq"},"eq5":{"arguments":{"x":{"from_node":"arrayelement1"},"y":7},"process_id":"eq"},"not1":{"arguments":{"x":{"from_node":"or4"}},"process_id":"not","result":true},"or1":{"arguments":{"x":{"from_node":"eq1"},"y":{"from_node":"eq2"}},"process_id":"or"},"or2":{"arguments":{"x":{"from_node":"or1"},"y":{"from_node":"eq3"}},"process_id":"or"},"or3":{"arguments":{"x":{"from_node":"or2"},"y":{"from_node":"eq4"}},"process_id":"or"},"or4":{"arguments":{"x":{"from_node":"or3"},"y":{"from_node":"eq5"}},"process_id":"or"}}}},"process_id":"reduce_dimension"},"reducedimension2":{"arguments":{"data":{"from_node":"filterbands1"},"dimension":"bands","reducer":{"process_graph":{"arrayelement2":{"arguments":{"data":{"from_parameter":"data"},"index":0},"process_id":"array_element"},"eq10":{"arguments":{"x":{"from_node":"arrayelement2"},"y":11},"process_id":"eq"},"eq6":{"arguments":{"x":{"from_node":"arrayelement2"},"y":3},"process_id":"eq"},"eq7":{"arguments":{"x":{"from_node":"arrayelement2"},"y":8},"process_id":"eq"},"eq8":{"arguments":{"x":{"from_node":"arrayelement2"},"y":9},"process_id":"eq"},"eq9":{"arguments":{"x":{"from_node":"arrayelement2"},"y":10},"process_id":"eq"},"or5":{"arguments":{"x":{"from_node":"eq6"},"y":{"from_node":"eq7"}},"process_id":"or"},"or6":{"arguments":{"x":{"from_node":"or5"},"y":{"from_node":"eq8"}},"process_id":"or"},"or7":{"arguments":{"x":{"from_node":"or6"},"y":{"from_node":"eq9"}},"process_id":"or"},"or8":{"arguments":{"x":{"from_node":"or7"},"y":{"from_node":"eq10"}},"process_id":"or","result":true}}}},"process_id":"reduce_dimension"}},"returns":{"description":"Masked data cube","schema":{"subtype":"datacube","type":"object"}},"summary":"Mask clouds by dilating Sen2Cor sceneclassification"},{"categories":["cubes","ard"],"description":"Create a mask for clouds by dilating Sen2Cor sceneclassification. Requires a datacube with only Sentinel-2 L2A 'SCL' band as input. This dilation algorithm removes pixels in the neighbourhood of clouds in a fairly aggressive manner, to avoid any type of contamination. Nevertheless, some outliers can sometimes still remain.","experimental":true,"id":"to_scl_dilation_mask","parameters":[{"description":"The source data cube containing only the Sentinel-2 SCL band.","name":"data","schema":{"subtype":"datacube","type":"object"}},{"default":0,"description":"","name":"erosion_kernel_size","optional":true,"schema":{"type":"number"}},{"default":[2,4,5,6,7],"description":"","name":"mask1_values","optional":true,"schema":{"items":{"type":"number"},"type":"array"}},{"default":[3,8,9,10,11],"description":"","name":"mask2_values","optional":true,"schema":{"items":{"type":"number"},"type":"array"}},{"default":17,"description":"Size of the first convolution kernel.","name":"kernel1_size","optional":true,"schema":{"type":"number"}},{"default":201,"description":"Size of the second convolution kernel.","name":"kernel2_size","optional":true,"schema":{"type":"number"}}],"returns":{"description":"SCL dilation mask.","schema":{"subtype":"datacube","type":"object"}},"summary":"Create a mask for clouds by dilating Sen2Cor sceneclassification"},{"categories":["cubes","ard"],"description":"Mask high probability clouds from Sentinel-2 L1C data.","experimental":true,"id":"mask_l1c","parameters":[{"description":"The source data cube containing Sentinel-2 L1C input.","name":"data","schema":{"subtype":"raster-cube","type":"object"}}],"returns":{"description":"Masked data cube","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Mask high probability clouds from Sentinel-2 L1C data."},{"categories":["cubes","sar","ard"],"description":"Computes CARD4L compliant backscatter from SAR input. The radiometric correction coefficient is gamma0 (terrain), which is the ground area computed with terrain earth model in sensor line of sight.\n\nNote that backscatter computation may require instrument specific metadata that is tightly coupled to the original SAR products. As a result, this process may only work in combination with loading data from specific collections, not with general data cubes.\n\nThis process uses bilinear interpolation, both for resampling the DEM and the backscatter.","exceptions":{"DigitalElevationModelInvalid":{"message":"The digital elevation model specified is either not a DEM or can't be used with the data cube given."}},"experimental":true,"id":"ard_normalized_radar_backscatter","links":[{"href":"http://ceos.org/ard/files/PFS/NRB/v5.0/CARD4L-PFS_Normalised_Radar_Backscatter-v5.0.pdf","rel":"about","title":"CEOS CARD4L specification"},{"href":"https://bok.eo4geo.eu/PP2-2-4-3","rel":"about","title":"Gamma nought (0) explained by EO4GEO body of knowledge."},{"href":"https://doi.org/10.3390/data4030093","rel":"about","title":"Reasoning behind the choice of bilinear resampling"}],"parameters":[{"description":"The source data cube containing SAR input.","name":"data","schema":{"subtype":"raster-cube","type":"object"}},{"default":null,"description":"The digital elevation model to use. Set to `null` (the default) to allow the back-end to choose, which will improve portability, but reduce reproducibility.","name":"elevation_model","optional":true,"schema":[{"subtype":"collection-id","type":"string"},{"type":"null"}]},{"default":false,"description":"If set to `true`, a DEM-based local contributing area band named `contributing_area` is added. The values are given in square meters.","name":"contributing_area","optional":true,"schema":{"type":"boolean"}},{"default":false,"description":"If set to `true`, an ellipsoidal incidence angle band named `ellipsoid_incidence_angle` is added. The values are given in degrees.","name":"ellipsoid_incidence_angle","optional":true,"schema":{"type":"boolean"}},{"default":true,"description":"If set to `false`, no noise removal is applied. Defaults to `true`, which removes noise.","name":"noise_removal","optional":true,"schema":{"type":"boolean"}},{"default":{},"description":"Proprietary options for the backscatter computations. Specifying proprietary options will reduce portability.","name":"options","optional":true,"schema":{"additionalProperties":false,"type":"object"}}],"process_graph":{"nrb":{"arguments":{"coefficient":"gamma0-terrain","contributing_area":{"from_parameter":"contributing_area"},"data":{"from_parameter":"data"},"elevation_model":{"from_parameter":"elevation_model"},"ellipsoid_incidence_angle":{"from_parameter":"ellipsoid_incidence_angle"},"local_incidence_angle":true,"mask":true,"noise_removal":{"from_parameter":"noise_removal"},"options":{"from_parameter":"options"}},"process_id":"sar_backscatter","result":true}},"returns":{"description":"Backscatter values expressed as gamma0 in linear scale.\n\nIn addition to the bands `contributing_area` and `ellipsoid_incidence_angle` that can optionally be added with corresponding parameters, the following bands are always added to the data cube:\n\n- `mask`: A data mask that indicates which values are valid (1), invalid (0) or contain no-data (null).\n- `local_incidence_angle`: A band with DEM-based local incidence angles in degrees.\n\nThe data returned is CARD4L compliant with corresponding metadata.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"CARD4L compliant SAR NRB generation"},{"categories":["math > constants"],"description":"Defines a constant value that can be reused in multiple places of a process.","id":"constant","parameters":[{"description":"The value of the constant.","name":"x","schema":{"description":"Any data type."}}],"returns":{"description":"The value of the constant.","schema":{"description":"Any data type."}},"summary":"Define a constant value"},{"categories":["development"],"description":"This process can be used to add runtime information to the logs, e.g. for debugging purposes. This process should be used with caution and it is recommended to remove the process in production workflows. For example, logging each value or array individually in a process such as ``apply()`` or ``reduce_dimension()`` could lead to a (too) large number of log entries. Several data structures (e.g. data cubes) are too large to log and will only return summaries of their contents.\n\nThe data provided in the parameter `data` is returned without changes.","experimental":true,"id":"inspect","parameters":[{"description":"Data to log.","name":"data","schema":{"description":"Any data type is allowed."}},{"default":"","description":"A message to send in addition to the data.","name":"message","optional":true,"schema":{"type":"string"}},{"default":"User","description":"A label to help identify one or more log entries originating from this process in the list of all log entries. It can help to group or filter log entries and is usually not unique.","name":"code","optional":true,"schema":{"type":"string"}},{"default":"info","description":"The severity level of this message, defaults to `info`.","name":"level","optional":true,"schema":{"enum":["error","warning","info","debug"],"type":"string"}}],"returns":{"description":"The data as passed to the `data` parameter without any modification.","schema":{"description":"Any data type is allowed."}},"summary":"Add information to the logs"},{"description":"Sleep for given amount of seconds (and just pass-through given data).","id":"sleep","parameters":[{"description":"Data to pass through.","name":"data","optional":true,"schema":{}},{"description":"Number of seconds to sleep.","name":"seconds","optional":false,"schema":{"type":"number"}}],"returns":{"description":"Original data","schema":{}}},{"description":"Discards given data. Used for side-effecting purposes.","id":"discard_result","parameters":[{"description":"Data to discard.","name":"data","optional":true,"schema":{}}],"returns":{"description":"Nothing","schema":{}}},{"categories":["date & time"],"description":"Based on a given date (and optionally time), calculates a new date (and time if given) by adding or subtracting a given temporal period.\n\nSome specifics about dates and times need to be taken into account:\n\n* This process doesn't have any effect on the time zone.\n* It doesn't take daylight saving time (DST) into account as only dates and times in UTC (with potential numerical time zone modifier) are supported.\n* Leap years are implemented in a way that computations handle them gracefully (see parameter `unit` for details).\n* Leap seconds are mostly ignored in manipulations as they don't follow a regular pattern. Leap seconds can be passed to the process, but will never be returned.","examples":[{"arguments":{"date":"2020-02-01T17:22:45Z","unit":"month","value":6},"returns":"2020-08-01T17:22:45Z"},{"arguments":{"date":"2021-03-31T00:00:00+02:00","unit":"day","value":-7},"returns":"2021-03-24T00:00:00+02:00"},{"arguments":{"date":"2020-02-29T17:22:45Z","unit":"year","value":1},"description":"Adding a year to February 29th in a leap year will result in February 28th in the next (non-leap) year.","returns":"2021-02-28T17:22:45Z"},{"arguments":{"date":"2020-01-31","unit":"month","value":1},"description":"Adding a month to January 31th will result in February 29th in leap years.","returns":"2020-02-29"},{"arguments":{"date":"2016-12-31T23:59:59Z","unit":"second","value":1},"description":"The process skips over the leap second `2016-12-31T23:59:60Z`.","returns":"2017-01-01T00:00:00Z"},{"arguments":{"date":"2018-12-31T17:22:45Z","unit":"millisecond","value":1150},"description":"Milliseconds can be added or subtracted. If not given, the default value is `0`.","returns":"2018-12-31T17:22:46.150Z"},{"arguments":{"date":"2018-01-01","unit":"hour","value":25},"returns":"2018-01-02"},{"arguments":{"date":"2018-01-01","unit":"hour","value":-1},"returns":"2017-12-31"}],"experimental":true,"id":"date_shift","parameters":[{"description":"The date (and optionally time) to manipulate.\n\nIf the given date doesn't include the time, the process assumes that the time component is `00:00:00Z` (i.e. midnight, in UTC). The millisecond part of the time is optional and defaults to `0` if not given.","name":"date","schema":[{"format":"date-time","subtype":"date-time","type":"string"},{"format":"date","subtype":"date","type":"string"}]},{"description":"The period of time in the unit given that is added (positive numbers) or subtracted (negative numbers). The value `0` doesn't have any effect.","name":"value","schema":{"type":"integer"}},{"description":"The unit for the value given. The following pre-defined units are available:\n\n- millisecond: Milliseconds\n- second: Seconds - leap seconds are ignored in computations.\n- minute: Minutes\n- hour: Hours\n- day: Days - changes only the the day part of a date\n- week: Weeks (equivalent to 7 days)\n- month: Months\n- year: Years\n\nManipulations with the unit `year`, `month`, `week` or `day` do never change the time. If any of the manipulations result in an invalid date or time, the corresponding part is rounded down to the next valid date or time respectively. For example, adding a month to `2020-01-31` would result in `2020-02-29`.","name":"unit","schema":{"enum":["millisecond","second","minute","hour","day","week","month","year"],"type":"string"}}],"returns":{"description":"The manipulated date. If a time component was given in the parameter `date`, the time component is returned with the date.","schema":[{"format":"date-time","subtype":"date-time","type":"string"},{"format":"date","subtype":"date","type":"string"}]},"summary":"Manipulates dates and times by addition or subtraction"},{"categories":["comparison","date & time"],"description":"By default, this process checks whether `x` is later than or equal to `min` and before or equal to `max`.\n\nIf `exclude_max` is set to `true` the upper bound is excluded so that the process checks whether `x` is later than or equal to `min` and before `max`.\n\nLower and upper bounds are not allowed to be swapped. So `min` MUST be before or equal to `max` or otherwise the process always returns `false`.","examples":[{"arguments":{"max":"2022-01-01","min":"2021-01-01","x":"2020-01-01"},"returns":false}],"experimental":true,"id":"date_between","parameters":[{"description":"The value to check.","name":"x","schema":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"description":"Time only, formatted as HH:MM:SS. The time zone is UTC.","pattern":"^\\d{2}:\\d{2}:\\d{2}$","subtype":"time","type":"string"}]},{"description":"Lower boundary (inclusive) to check against.","name":"min","schema":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"description":"Time only, formatted as HH:MM:SS. The time zone is UTC.","pattern":"^\\d{2}:\\d{2}:\\d{2}$","subtype":"time","type":"string"}]},{"description":"Upper boundary (inclusive) to check against.","name":"max","schema":[{"description":"Date and time with a time zone.","format":"date-time","subtype":"date-time","type":"string"},{"description":"Date only, formatted as `YYYY-MM-DD`. The time zone is UTC. Missing time components are all 0.","format":"date","subtype":"date","type":"string"},{"description":"Time only, formatted as HH:MM:SS. The time zone is UTC.","pattern":"^\\d{2}:\\d{2}:\\d{2}$","subtype":"time","type":"string"}]},{"default":false,"description":"Exclude the upper boundary `max` if set to `true`. Defaults to `false`.","name":"exclude_max","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"`true` if `x` is between the specified bounds, otherwise `false`.","schema":{"type":["boolean","null"]}},"summary":"Between comparison for dates and times"},{"categories":["logic","comparison","masks"],"description":"If the value passed is `true`, returns the value of the `accept` parameter, otherwise returns the value of the `reject` parameter.\n\nThis is basically an if-then-else construct as in other programming languages.","examples":[{"arguments":{"accept":"A","reject":"B","value":true},"returns":"A"},{"arguments":{"accept":"A","reject":"B","value":null},"returns":"B"},{"arguments":{"accept":[1,2,3],"reject":[4,5,6],"value":false},"returns":[4,5,6]},{"arguments":{"accept":123,"value":true},"returns":123},{"arguments":{"accept":1,"value":false},"returns":null}],"id":"if","parameters":[{"description":"A boolean value.","name":"value","schema":{"type":["boolean","null"]}},{"description":"A value that is returned if the boolean value is `true`.","name":"accept","schema":{"description":"Any data type is allowed."}},{"default":null,"description":"A value that is returned if the boolean value is **not** `true`. Defaults to `null`.","name":"reject","optional":true,"schema":{"description":"Any data type is allowed."}}],"returns":{"description":"Either the `accept` or `reject` argument depending on the given boolean value.","schema":{"description":"Any data type is allowed."}},"summary":"If-Then-Else conditional"},{"categories":["arrays"],"description":"Appends a new value to the end of the array, which may also include a new label for labeled arrays.","examples":[{"arguments":{"data":[1,2],"value":3},"returns":[1,2,3]}],"exceptions":{"LabelExists":{"message":"An array element with the specified label already exists."}},"id":"array_append","parameters":[{"description":"An array.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"Value to append to the array.","name":"value","schema":{"description":"Any data type is allowed."}},{"default":null,"description":"If the given array is a labeled array, a new label for the new value should be given. If not given or `null`, the array index as string is used as the label. If in any case the label exists, a `LabelExists` exception is thrown.","name":"label","optional":true,"schema":{"type":["string","null"]}}],"returns":{"description":"The new array with the value being appended.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Append a value to an array"},{"categories":["arrays","math","math > interpolation"],"description":"Performs a linear interpolation for each of the no-data values (`null`) in the array given, except for leading and trailing no-data values.\n\nThe linear interpolants are defined by the array indices or labels (x) and the values in the array (y).","examples":[{"arguments":{"data":[null,1,null,6,null,-8]},"returns":[null,1,3.5,6,-1,-8]},{"arguments":{"data":[null,1,null,null]},"returns":[null,1,null,null]}],"id":"array_interpolate_linear","links":[{"href":"https://en.wikipedia.org/wiki/Linear_interpolation","rel":"about","title":"Linear interpolation explained by Wikipedia"}],"parameters":[{"description":"An array of numbers and no-data values.\n\nIf the given array is a labeled array, the labels must have a natural/inherent label order and the process expects the labels to be sorted accordingly. This is the default behavior in openEO for spatial and temporal dimensions.","name":"data","schema":{"items":{"type":["number","null"]},"type":"array"}}],"returns":{"description":"An array with no-data values being replaced with interpolated values. If not at least 2 numerical values are available in the array, the array stays the same.","schema":{"items":{"type":["number","null"]},"type":"array"}},"summary":"One-dimensional linear interpolation for arrays"},{"categories":["arrays"],"description":"Concatenates two arrays into a single array by appending the second array to the first array.\n\nArray labels are kept only if both given arrays are labeled. Otherwise, the labels get discarded from both arrays. The process fails with an `ArrayLabelConflict` exception if a label is present in both arrays. Conflicts must be resolved beforehand.","examples":[{"arguments":{"array1":[1.5,2.5],"array2":[5]},"description":"Concatenates two numerical arrays.","returns":[1.5,2.5,5]},{"arguments":{"array1":["a","b"],"array2":[1,2]},"description":"Concatenates two arrays containing different data type, may not always be supported.","returns":["a","b",1,2]}],"exceptions":{"ArrayLabelConflict":{"message":"At least one label exists in both arrays and the conflict must be resolved before."}},"id":"array_concat","parameters":[{"description":"The first array.","name":"array1","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"The second array.","name":"array2","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}}],"returns":{"description":"The merged array.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Merge two arrays"},{"categories":["arrays"],"description":"Creates a new array, which by default is empty.\n\nThe second parameter `repeat` allows to add the given array multiple times to the new array.\n\nIn most cases you can simply pass a (native) array to processes directly, but this process is especially useful to create a new array that is getting returned by a child process, for example in ``apply_dimension()``.","examples":[{"arguments":{},"returns":[]},{"arguments":{"data":["this","is","a","test"]},"returns":["this","is","a","test"]},{"arguments":{"data":[null],"repeat":3},"returns":[null,null,null]},{"arguments":{"data":[1,2,3],"repeat":2},"returns":[1,2,3,1,2,3]}],"id":"array_create","parameters":[{"default":[],"description":"A (native) array to fill the newly created array with. Defaults to an empty array.","name":"data","optional":true,"schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"default":1,"description":"The number of times the (native) array specified in `data` is repeatedly added after each other to the new array being created. Defaults to `1`.","name":"repeat","optional":true,"schema":{"minimum":1,"type":"integer"}}],"returns":{"description":"The newly created array.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Create an array"},{"categories":["arrays"],"description":"Applies a process to each individual value in the array. This is basically what other languages call either a `for each` loop or a `map` function.","id":"array_apply","parameters":[{"description":"An array.","name":"data","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},{"description":"A process that accepts and returns a single value and is applied on each individual value in the array. The process may consist of multiple sub-processes and could, for example, consist of processes such as ``absolute()`` or ``linear_scale_range()``.","name":"process","schema":{"parameters":[{"description":"The value of the current element being processed.","name":"x","schema":{"description":"Any data type."}},{"description":"The zero-based index of the current element being processed.","name":"index","schema":{"minimum":0,"type":"integer"}},{"default":null,"description":"The label of the current element being processed. Only populated for labeled arrays.","name":"label","optional":true,"schema":[{"type":"number"},{"type":"string"},{"type":"null"}]},{"default":null,"description":"Additional data passed by the user.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"The value to be set in the new array.","schema":{"description":"Any data type."}},"subtype":"process-graph","type":"object"}},{"default":null,"description":"Additional data to be passed to the process.","name":"context","optional":true,"schema":{"description":"Any data type."}}],"returns":{"description":"An array with the newly computed values. The number of elements are the same as for the original array.","schema":{"items":{"description":"Any data type is allowed."},"type":"array"}},"summary":"Apply a process to each array element"},{"categories":["cubes","elevation"],"description":"Computes the aspect (in radians, from due North) from elevation data.","experimental":true,"id":"aspect","parameters":[{"description":"Data cube containing elevation data.","name":"data","optional":false,"schema":{"subtype":"raster-cube","type":"object"}}],"returns":{"description":"A data cube with calculated aspects for each band, the band names are the original band names with a '_aspect' suffix.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Compute aspect on elevation data"},{"categories":["cubes","math","elevation"],"description":"Computes the slope (in radians, relative to the horizontal plane) from elevation data.","experimental":true,"id":"slope","parameters":[{"description":"Data cube containing elevation data.","name":"data","optional":false,"schema":{"subtype":"raster-cube","type":"object"}}],"returns":{"description":"A data cube with calculated slopes for each band, the band names are the original band names with a '_slope' suffix.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Compute slope on elevation data"},{"categories":["cubes"],"description":"Converts the data type of the cube to the desired data type.","experimental":true,"id":"convert_data_type","parameters":[{"description":"The data cube.","name":"data","optional":false,"schema":{"subtype":"raster-cube","type":"object"}},{"description":"The desired data type, represented as a string.","name":"data_type","optional":false,"schema":{"type":"string"}}],"returns":{"description":"A data cube with desired data type.","schema":{"subtype":"raster-cube","type":"object"}},"summary":"Converts the data type of the cube"},{"categories":["texts","comparison"],"description":"Checks whether the text (also known as *string*) specified for `data` contains the text specified for `pattern` at the beginning. Both are expected to be encoded in UTF-8 by default. The no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"amet"},"returns":false},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"Lorem"},"returns":true},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"lorem"},"returns":false},{"arguments":{"case_sensitive":false,"data":"Lorem ipsum dolor sit amet","pattern":"lorem"},"returns":true},{"arguments":{"case_sensitive":false,"data":"\u00c4","pattern":"\u00e4"},"returns":true},{"arguments":{"data":null,"pattern":"null"},"returns":null}],"id":"text_begins","parameters":[{"description":"Text in which to find something at the beginning.","name":"data","schema":{"type":["string","null"]}},{"description":"Text to find at the beginning of `data`. Regular expressions are not supported.","name":"pattern","schema":{"type":"string"}},{"default":true,"description":"Case sensitive comparison can be disabled by setting this parameter to `false`.","name":"case_sensitive","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"`true` if `data` begins with `pattern`, false` otherwise.","schema":{"type":["boolean","null"]}},"summary":"Text begins with another text"},{"categories":["texts","comparison"],"description":"Checks whether the text (also known as *string*) specified for `data` contains the text specified for `pattern`. Both are expected to be encoded in UTF-8 by default. The no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"openEO"},"returns":false},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"ipsum dolor"},"returns":true},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"Ipsum Dolor"},"returns":false},{"arguments":{"case_sensitive":false,"data":"Lorem ipsum dolor sit amet","pattern":"SIT"},"returns":true},{"arguments":{"case_sensitive":false,"data":"\u00c4\u00d6\u00dc","pattern":"\u00f6"},"returns":true},{"arguments":{"data":null,"pattern":"null"},"returns":null}],"id":"text_contains","parameters":[{"description":"Text in which to find something in.","name":"data","schema":{"type":["string","null"]}},{"description":"Text to find in `data`. Regular expressions are not supported.","name":"pattern","schema":{"type":"string"}},{"default":true,"description":"Case sensitive comparison can be disabled by setting this parameter to `false`.","name":"case_sensitive","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"`true` if `data` contains the `pattern`, false` otherwise.","schema":{"type":["boolean","null"]}},"summary":"Text contains another text"},{"categories":["texts","comparison"],"description":"Checks whether the text (also known as *string*) specified for `data` contains the text specified for `pattern` at the end. Both are expected to be encoded in UTF-8 by default. The no-data value `null` is passed through and therefore gets propagated.","examples":[{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"amet"},"returns":true},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"AMET"},"returns":false},{"arguments":{"data":"Lorem ipsum dolor sit amet","pattern":"Lorem"},"returns":false},{"arguments":{"case_sensitive":false,"data":"Lorem ipsum dolor sit amet","pattern":"AMET"},"returns":true},{"arguments":{"case_sensitive":false,"data":"\u00c4","pattern":"\u00e4"},"returns":true},{"arguments":{"data":null,"pattern":"null"},"returns":null}],"id":"text_ends","parameters":[{"description":"Text in which to find something at the end.","name":"data","schema":{"type":["string","null"]}},{"description":"Text to find at the end of `data`. Regular expressions are not supported.","name":"pattern","schema":{"type":"string"}},{"default":true,"description":"Case sensitive comparison can be disabled by setting this parameter to `false`.","name":"case_sensitive","optional":true,"schema":{"type":"boolean"}}],"returns":{"description":"`true` if `data` ends with `pattern`, false` otherwise.","schema":{"type":["boolean","null"]}},"summary":"Text ends with another text"},{"categories":["texts"],"description":"Merges text representations (also known as *string*) of a set of elements to a single text, having the separator between each element.","examples":[{"arguments":{"data":["Hello","World"],"separator":" "},"returns":"Hello World"},{"arguments":{"data":[1,2,3,4,5,6,7,8,9,0]},"returns":"1234567890"},{"arguments":{"data":[null,true,false,1,-1.5,"\u00df"],"separator":"\n"},"returns":"null\ntrue\nfalse\n1\n-1.5\n\u00df"},{"arguments":{"data":[2,0],"separator":1},"returns":"210"},{"arguments":{"data":[]},"returns":""}],"id":"text_concat","parameters":[{"description":"A set of elements. Numbers, boolean values and null values get converted to their (lower case) string representation. For example: `1` (integer), `-1.5` (number), `true` / `false` (boolean values)","name":"data","schema":{"items":{"type":["string","number","boolean","null"]},"type":"array"}},{"default":"","description":"A separator to put between each of the individual texts. Defaults to an empty string.","name":"separator","optional":true,"schema":{"type":["string","number","boolean","null"]}}],"returns":{"description":"A string containing a string representation of all the array elements in the same order, with the separator between each element.","schema":{"type":"string"}},"summary":"Concatenate elements to a single text"},{"categories":["math > indices","vegetation indices"],"description":"Computes the normalized difference for two bands. The normalized difference is computed as *`(x - y) / (x + y)`*.\n\nThis process could be used for a number of remote sensing indices such as:\n\n* [NDVI](https://eos.com/ndvi/): `x` = NIR band, `y` = red band\n* [NDWI](https://eos.com/ndwi/): `x` = NIR band, `y` = SWIR band\n* [NDSI](https://eos.com/ndsi/): `x` = green band, `y` = SWIR band\n\nSome back-ends may have native processes such as ``ndvi()`` available for convenience.","id":"normalized_difference","links":[{"href":"https://eos.com/ndvi/","rel":"related","title":"NDVI explained by EOS"},{"href":"https://eos.com/ndwi/","rel":"related","title":"NDWI explained by EOS"},{"href":"https://eos.com/ndsi/","rel":"related","title":"NDSI explained by EOS"}],"parameters":[{"description":"The value for the first band.","name":"x","schema":{"type":"number"}},{"description":"The value for the second band.","name":"y","schema":{"type":"number"}}],"process_graph":{"add":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"add"},"divide":{"arguments":{"x":{"from_node":"subtract"},"y":{"from_node":"add"}},"process_id":"divide","result":true},"subtract":{"arguments":{"x":{"from_parameter":"x"},"y":{"from_parameter":"y"}},"process_id":"subtract"}},"returns":{"description":"The computed normalized difference.","schema":{"maximum":1,"minimum":-1,"type":"number"}},"summary":"Normalized difference"},{"description":"Compresses a data cube by means of the CORSA algorithm.","experimental":true,"id":"corsa_compress","parameters":[{"description":"a Sentinel 2 data cube with 10 bands that correspond to: \"B02\", \"B03\", \"B04\", \"B05\", \"B06\", \"B07\", \"B08\", \"B8A\", \"B11\" and \"B12\".","name":"data","optional":false,"schema":{"subtype":"datacube","type":"object"}}],"returns":{"description":"a data cube consisting of two bands: \"level_0\" and \"level_1\"","schema":{"subtype":"datacube","type":"object"}}},{"description":"Decompresses a data cube that was compressed by the CORSA algorithm to reconstruct the original data cube.","experimental":true,"id":"corsa_decompress","parameters":[{"description":"a data cube consisting of two bands: \"level_0\" and \"level_1\"","name":"data","optional":false,"schema":{"subtype":"datacube","type":"object"}}],"returns":{"description":"a Sentinel 2 data cube with 10 bands that correspond to: \"B02\", \"B03\", \"B04\", \"B05\", \"B06\", \"B07\", \"B08\", \"B8A\", \"B11\" and \"B12\".","schema":{"subtype":"datacube","type":"object"}}}],"version":"2.0.0-rc.1"}
