{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Range and endurance have been mentioned in the preceding sections - and we have introduced that for *maximum range* the pilot should fly at $V_{md}$, whilst to fly for *maximum endurance* the pilot should fly at $V_{mp}$.\n", "\n", "However - the above speeds are valid **only for unpowered flight**. So these speeds are suitable for a glider, but once an engine is introduced to an aircraft, these speeds no longer give the maximum range or the maximum endurance.\n", "\n", "Furthermore, the propulsor type changes the speeds for both. In the following section, the best range and endurance speeds for jet and propeller-driven aircraft will be explored.\n", "\n", "# Range and Endurance\n", "\n", "Range and endurance are intuitive concepts:\n", "- **Range** ($R$): The maximum horizontal distance that an aircraft can cover.\n", "- **Endurance** ($E$): The time an aircraft can remain in flight\n", "\n", "In the following analysis, the range and endurance for certain fuel quantities will be determined. For (hopefully) obvious reasons, some further definitions of range will help us here\n", "\n", "## Range subdefinitions\n", "\n", "1. **Safe Range**: The maximum distance between two airfields, for which an aircraft can fly a safe a reliable mission with a given payload. \n", " - This is an involved calculation involving take-off/landing/weather/diversion allowances etc. - there isn't an easy means to do this calculation, so tends to be performed computationally.\n", " - For aircraft performance there are some more simple definitions of *range*:\n", "\n", "2. **Still Air Range (SAR)**: The maximum distance possible if an aircraft takes off, climbs to cruise altitude, and then cruises until all fuel is expended.\n", " - Obviously not desirable to run out of fuel at altitude, but SAR gives a good indication of the influence of aircraft parameters on range.\n", "\n", "3. **Gross Still Air Range (GSAR)**: The maximum distance possible if an aircraft commences cruise at altitude and continues until all fuel is expended.\n", " - The relationship between SAR and GSAR tends to be easy to define.\n", " - GSAR much easier to calculate\n", " - What will be covered here\n", " \n", "## Defining the problem\n", "\n", "To calculate GSAR, you might think that we need to:\n", "- find out the fuel flow rate, $\\dot{m}_{fuel}$ for thrust/power associated with $V_{md}$ \n", "- get the endurance from the fuel mass, $m_{fuel}$ divided by the flow rate $E=\\frac{m_{fuel}}{\\dot{m}_{fuel}}$\n", "- hence $R=E\\cdot V$\n", "\n", "The above reasoning is effectively how range is determined, but there are some complications that you may/may not be considering:\n", "- Aircraft take-off with a *lot* of fuel, so the **aircraft weight changes with time** and accordingly so do almost all the parameters we have considered up to this point, including the aircraft speed whilst the above relationship only holds true for *constant* airspeed\n", "- This means that some trade-offs *have* to be made in efficiency to allow a reasonable cruise - and we will see these\n", "\n", "## Breguet Range Equation\n", "\n", "The Breguet Range Equation (BRE) is named after a French aircraft designer, but was actually derived in the 1920's by J G Coffin.\n", "\n", "```{admonition} History and namesakes...\n", ":class: dropdown\n", "\n", "I've loosely read the history of the BRE and it being Coffin who actually came up with it in NACA Report 1969, but I've never actually delved into the legacy of this equation. If you wish to, and suggest a correct here, feel free.\n", "```\n", "The BRE allows a simple means to calculate GSAR, and can be defined in words as:\n", "\n", "$$\\substack{\\text{\"The rate of}\\\\\\text{aircraft weight reduction\"}}=\\substack{\\text{\"The rate of}\\\\\\text{fuel weight burned\"}}$$\n", "\n", "The BRE was first implemented for propeller aircraft, and is derived differently for thrust and power engines. In the following it will be derived separately for the two engines types.\n", "\n", "### Engine fuel burn\n", "\n", "To calculate the engine fuel burn of both types of engine, two new parameters are introduced\n", "\n", "A parameter, $c_t$, is introduced which is:\n", "- Thrust Specific Fuel Consumption (TSFC) for a **turbojet**\n", " $c_t$ - **mass of fuel burned per unit of thrust per second**\n", " \n", "- Specific Fuel Consumption (SFC) for a **turboprop**\n", " $c$ - **mass of fuel burned per unit of power per second**\n", "\n", "#### Thrust specific fuel consumption - units\n", "\n", "In the above, the SI units are $\\left\\{c_t\\right\\}=\\left\\{\\frac{kg}{N\\cdot s}\\right\\}$ which has dimensions of $\\left[\\frac{\\text{L}}{\\text{T}}\\right]$. You might see this expressed as $\\frac{g}{kN\\,s}$, which is actually the same units.\n", "\n", "In US customary units, this is $\\left\\{c_t\\right\\}=\\left\\{\\frac{lb}{lbf\\cdot s}\\right\\}$.\n", "\n", "You may see some slightly different units such as $\\left[\\frac{kg}{kN\\cdot hr}\\right]$ so be sure to convert to SI or US customary base units\n", "\n", "#### Specific fuel consumption - units\n", "\n", "In the above, the SI units are $\\left\\{c\\right\\}=\\left\\{\\frac{kg}{W\\cdot s}\\right\\}$ which has dimensions of $\\left[\\frac{\\text{T}^2}{\\text{L}^2}\\right]$. You might see this expressed as $\\frac{g}{kW\\,s}$, which is actually the same units.\n", "\n", "In US customary units, this is $\\left\\{c_t\\right\\}=\\left\\{\\frac{lb}{hp\\cdot s}\\right\\}$.\n", "\n", "You may see some slightly different units such as $\\left[\\frac{kg}{kW\\cdot hr}\\right]$ so be sure to convert to SI or US customary base units\n", " \n", "The analysis is slightly different for jet and propeller-driven aircraft, so jet aircraft will be explored first." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## BRE - Jet Aircraft\n", "\n", "The fundamental concept is, again:\n", "\n", "$$\\substack{\\text{\"The rate of}\\\\\\text{aircraft weight reduction\"}}=\\substack{\\text{\"The rate of}\\\\\\text{fuel weight burned\"}}$$\n", "\n", "So for a jet aircraft this is\n", "\n", "$$\\frac{\\text{d}W}{\\text{d}t}=-c_t\\,T\\, g$$\n", "\n", "which can be rearranged for the time\n", "\n", "$$\\text{d}t = -\\frac{\\text{d}W}{c_t\\,T\\, g}$$\n", "\n", "since the endurance/range is defined by *cruise* conditions, the equilibrium steady flight conditions of $T=D$ and $L=W$ can be utilised such that\n", "\n", "```{margin}\n", "*Substitution for thrust*\n", "\n", "This always seems like a bit of a *trick* in the derivation - but what's really occurring is that the thrust is defined in terms of aerodynamic variables so the condition for maximum range can be determined.\n", "```\n", "\n", "$$T=\\frac{D}{L}W=\\frac{C_D}{C_L}W$$\n", "\n", "which can be substituted into the BRE to give\n", "\n", "$$\\text{d}t = -\\frac{1}{c_t\\, g}\\frac{C_L}{C_D}\\frac{\\text{d}W}{W}$$\n", "\n", "for constant lift-to-drag ratio and TSFC, the equation above can be integrated with the limits $t_{0}$ and $t_{1}$ corresponding to $W_{0}$ and $W_{1}$ where 0 denotes the start of cruise, and 1 denotes the end. \n", "\n", "```{math}\n", ":label: EnduranceJetDifferential\n", "\\int^{t_1}_{t_0}\\text{d}t = -\\frac{1}{c_t\\, g}\\frac{C_L}{C_D}\\int^{W_1}_{W_0}\\frac{\\text{d}W}{W}\n", "```\n", "\n", "$$t_1 - t_0 = -\\frac{1}{c_t\\, g}\\frac{C_L}{C_D}\\left[\\ln W_1 - \\ln W_0\\right]$$\n", "\n", "This yields the endurance, $E$:\n", "\n", "```{math}\n", ":label: EnduranceJet\n", "E=t_{1}-t_{0}=\\frac{1}{c_t\\, g}\\frac{C_L}{C_D}\\ln\\left|\\frac{W_{0}}{W_{1}}\\right|\n", "````\n", "\n", "### Jet Aircraft: Maximum Endurance\n", "\n", "For a given $c_t$, $W_0$, and $W_{1}$, Equation {eq}`EnduranceJet` shows that the **best endurance for a jet aircraft is found at the minimum drag speed**. If you're unsure why it shows this - look at the equation and consider what can be maximised.\n", "\n", "To find the range, we'll take a step back to the Equation {eq}`EnduranceJetDifferential` and substitute the aircraft speed equation." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Jet Aircraft: Range\n", "\n", "Taking Equation{eq} `ACSpeedEquation` and multiplying Equation {eq}`EnduranceJetDifferential` by it yields the incremental distance, $dS$, covered during cruise\n", "\n", "$$\\begin{gather}\n", "\\text{d}S &= V\\,\\text{d}t=-\\frac{V}{c_t\\,g}\\frac{C_L}{C_D}\\frac{1}{W}\\text{d}W\\\\\n", "&= -\\frac{1}{c_t\\,g}\\sqrt{\\frac{2\\,W}{\\rho S C_L}}\\frac{C_L}{C_D}\\frac{1}{W}\\text{d}W\\\\\n", "&= -\\frac{1}{c_t\\,g}\\sqrt{\\frac{2\\,W}{\\rho S}}\\frac{C_L^{1/2}}{C_D}\\frac{1}{W}\\text{d}W\n", "\\end{gather}$$\n", "\n", "Don't be tempted to combine the two $W$ terms at this point - those will be dealt with in a little while, first some observations can be made about the equation above:\n", "\n", "```{figure} ../Images/JetRangeAnnotated.png\n", "---\n", "height: 300px\n", "name: JetRangeAnnotated\n", "---\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As with all things in aeronautics (well, with science and mathematics), if you derive a relationship, you should check that what it says *makes sense*. The equation above says:\n", "- Range is inversely proportional to fuel burn, which makes sense\n", "- Range is inversely proportonal to weight, which makes sense (combine the two into $W^{-1/2}$)\n", "- Range is proportional to altitude (we know aircraft cruise at altitude)\n", "\n", "We see that the best range is given at the aerodynamic condition (that is, the velocity) corresponding to the maximum value of $\\frac{C_L^{1/2}}{C_D}$ which is given by:\n", "\n", "$$C_L=\\sqrt{\\frac{C_{D0}}{3\\,K}}$$\n", "\n", "- For equilibrium, lift must equal weight, so for the _best_ $C_L$, this occurs at a single airspeed (Eq. {eq}`ACSpeedEquation`\n", "- Fuel is burned, so the aircraft gets *lighter*, so looking at the definition of the lift coefficient:\n", "\n", "$$C_L=\\frac{2\\,W}{\\rho\\,S\\,V^2}$$\n", "\n", "- To maintain the best $C_L$, *either* the velocity has to reduce or the density has to reduce.\n", "\n", "This yields two types of cruise:\n", "- Constant Velocity *aka* Cruise-Climb\n", "- Constant Altitude (where the aircraft slows down)\n", "\n", "#### Constant Velocity Cruise\n", "\n", "Looking at the definition of the lift coefficient, if velocity is constant, then in order to maintain a constant $C_L=\\sqrt{\\frac{C_{D0}}{3\\,K}}$, the ratio $\\frac{W}{\\rho}$ must be constant. Accordingly, whilst the terms $W$ and $\\rho$ both change during the cruise and could be included in the integration, the ratio of them is a **constant**, and can be removed from the integration. If the aircraft starts at an altitude $h_0$ with a corresponding density $\\rho_0$, then\n", "\n", "$$\\frac{W_0}{\\rho_0}=\\frac{W_1}{\\rho_1}=\\frac{W_n}{\\rho_n}$$\n", "\n", "where $n$ is any intermediate value between the start and end of the cruise. Hence $\\frac{W}{\\rho}$ can be replaced with $\\frac{W_0}{\\rho_0}$. That is\n", "\n", "$$R = \\int^{R}_0\\text{d}S = -\\frac{1}{c_t\\,g}\\sqrt{\\frac{2\\,W_0}{\\rho_0 S}}\\frac{C_L^{1/2}}{C_D}\\int_{W0}^{W1}\\frac{1}{W}\\text{d}W$$\n", "\n", "```{math}\n", ":label: BREjetConstantVelocity\n", "\n", "R=\\frac{1}{c_t\\, g}\\sqrt{\\frac{2\\,W_0}{\\rho_0 S}}\\frac{C_L}{C_D}\\ln\\left|\\frac{W_{0}}{W_{1}}\\right|\n", "\n", "```\n", "\n", "You should be able to see that the range is a function of the starting altitude (to which $\\rho_0$ corresponds) - that is, if a cruise is commenced at a higher altitude, the range will be greater.\n", "\n", "To determine the end altitude, this can be simply yielded from the relationship between weight and density.\n", "\n", "#### Constant Altitude Cruise\n", "\n", "Conversely, if the altitude is held constant, then the ratio of\n", "\n", "$$\\frac{W}{V^2}$$\n", "\n", "must be held constant. But since there is no such ratio in the expression for incremental distance, the weight must be moved into the integral:\n", "\n", "$$R = \\int^{R}_0\\text{d}S = -\\frac{1}{c_t\\,g}\\sqrt{\\frac{2}{\\rho_0 S}}\\frac{C_L^{1/2}}{C_D}\\int_{W0}^{W1}\\frac{W^{1/2}}{W}\\text{d}W$$\n", "\n", "```{math}\n", ":label: BREjetConstantAltitude\n", "\n", "R=\\frac{1}{c_t\\, g}\\sqrt{\\frac{8}{\\rho_0 S}}\\frac{C_L}{C_D}\\ln\\left[W_0^{1/2} - W_1^{1/2}\\right]\n", "\n", "```\n", "\n", "Similarly, the variation of velocity can be yielded from the aircraft weight to velocity ratio.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Jet BRE: Numerical Example\n", "\n", "\n", "```{admonition} About units\n", ":class: dropdown\n", "\n", "You (that's you, IIT student) should be able to do these calculations *both* in SI units and US customary units. Since I got my degree and PhD outside of America, I have an *appreciation* (to use the term loosely) for US customary units, but my actual application has always been to convert to SI at the start, and then convert the answer *back* to US customary units if I need to provide one.\n", "\n", "For this reason, I work in SI in written examples for class but I will provide examples with US customary units used throughout. I simply don't want to make a mistake when going through work in class, and end up a factor of 32 out, or have mixed up lb for lbf or whatever else I could have done.\n", "\n", "I managed to find this whilst googling about the US and the metric system, if you want some further reading. https://www.nist.gov/system/files/documents/pml/wmd/metric/1136a.pdf\n", "```\n", "This is an adaptation of Example 5.19 in Anderson{cite}`Anderson:1999AP` - I claim no originality or authorship for the data provided, but I've used it to confirm my US customary calculation is correct before adapting.\n", "\n", "```{admonition} Question:\n", "\n", "Estimate the maximum range at altitudes of 20,000, 30,000, and 40,000 feet for the Gulfstream IV given the following:\n", "\n", "Mass of aircraft without fuel: 43,500lb. \n", "Mass of usable fuel: 29,500lb.\n", "Drag model: $C_D=0.015 + 0.08\\cdot C_L^2$\n", "Wing area: 950 square feet\n", "TSFC: 0.69 lb of fuel consumed per pound of thrust per hour.\n", "\n", "Compare the constant altitude, and the cruise-climb (constant speed ranges).\n", "\n", "Show the starting/ending speeds and altitudes for the respective cruise methods.\n", "\n", "```" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "tags": [ "hide-input" ] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "For an altitude of 20000ft/6.1km\n", "US Customary Unit Calcs:\n", "The constant altitude range is 3924 miles\n", "The cruise-climb range is 4454 miles\n", " \n", "SI Unit Calcs:\n", "The constant altitude range is 6315km which is equal to 3924 miles\n", "The cruise-climb range is 7167km which is equal to 4454 miles\n", " \n", "For the constant altitude cruise, the starting speed is 413knTAS and the end speed is 319knTAS\n", "For the cruise-climb the aircraft gains 14.4 thousand feet during the cruise\n", " \n", "-------------------------------------------------------------- \n", " \n", "For an altitude of 30000ft/9.1km\n", "US Customary Unit Calcs:\n", "The constant altitude range is 4680 miles\n", "The cruise-climb range is 5312 miles\n", " \n", "SI Unit Calcs:\n", "The constant altitude range is 7533km which is equal to 4680 miles\n", "The cruise-climb range is 8549km which is equal to 5312 miles\n", " \n", "For the constant altitude cruise, the starting speed is 492knTAS and the end speed is 380knTAS\n", "For the cruise-climb the aircraft gains 12.1 thousand feet during the cruise\n", " \n", "-------------------------------------------------------------- \n", " \n", "For an altitude of 40000ft/12.2km\n", "US Customary Unit Calcs:\n", "The constant altitude range is 5764 miles\n", "The cruise-climb range is 6542 miles\n", " \n", "SI Unit Calcs:\n", "The constant altitude range is 9276km which is equal to 5764 miles\n", "The cruise-climb range is 10529km which is equal to 6542 miles\n", " \n", "For the constant altitude cruise, the starting speed is 606knTAS and the end speed is 468knTAS\n", "For the cruise-climb the aircraft gains 10.8 thousand feet during the cruise\n", " \n", "-------------------------------------------------------------- \n", " \n" ] } ], "source": [ "import numpy as np\n", "from ambiance import Atmosphere\n", "\n", "h1 = 20000\n", "h2 = 30000\n", "h3 = 40000\n", "\n", "m_1 = 43500 # mass in lbs of aircraft without fuel\n", "m_fuel = 29500 # mass in lbs of fuel\n", "\n", "# # Unit conversions\n", "lb_to_kilo = 0.453592\n", "pound_to_newton = 4.44822\n", "hour_to_second = 3600\n", "ft_to_metre = 0.3048\n", "metre_to_miles = 0.000621371\n", "km_to_miles = 0.621371\n", "g = 9.80665 # Gravitational acceleration\n", "kg_to_slugs = 0.0685218\n", "miles_to_feet = 5280 # Because everyone recalls this number...\n", "ms_to_knots = 1.94384\n", "\n", "# The start weight of the aircraft is equal to the end weight plus the fuel weight\n", "m_0 = m_1 + m_fuel\n", "\n", "# Aircraft drag model - from Anderson\n", "CD0 = 0.015\n", "K = 0.08\n", "S = 950 # In square feet\n", "\n", "# Thrust specific fuel consumption\n", "c_t = 0.69 # c_t in lb of fuel per pound of thrust per hour\n", "\n", "# Convert c_t to consistent units (lb of fuel per pound of thrust per second, not per hour)\n", "c_t = c_t / 3600\n", "\n", "# Find the Cl and Cd for max range\n", "Cl = np.sqrt(CD0/3/K)\n", "Cd = CD0 + K * Cl**2\n", "\n", "V = np.zeros(3)\n", "\n", "# Make an interpolant for the altitude based on the density:\n", "from scipy.interpolate import interp1d\n", "altitudes = np.linspace(0, 80e3, 10000)\n", "densities = Atmosphere(altitudes).density\n", "altdens = interp1d(densities, altitudes, kind='cubic')\n", "\n", "\n", "# Iterate over the altitudes\n", "for i, h_ft in enumerate([h1, h2, h3]):\n", " \n", " ############################################################################\n", " ################### First do the calculation in US customary units\n", " ############################################################################\n", " # Get density for this altitude - this will be in SI\n", " h = h_ft * ft_to_metre\n", " Atmopshere_for_altitude = Atmosphere(h)\n", " rho_SI = Atmopshere_for_altitude.density[0]\n", " \n", " print(f\"For an altitude of {h_ft:1.0f}ft/{h/1e3:1.1f}km\")\n", "\n", " # Convert to US customary density units of slugs per cubic feet \n", " rho_US = rho_SI * kg_to_slugs * ft_to_metre**3 # i.e., dividing be the reciprocal of ft_to_metre**3\n", "\n", " # Now get range - which will be in feet (US Customary base units), so convert to miles for readability\n", " ## Note that since c_t has been defined as a mass, and so has the aircraft mass - we can avoid using \"g\" by\n", " # keeping the aircraft mass as mass since \"g\" is in the denominator of the BRE\n", " # If you don't want to do this you can save g in US customary as 32.17405ft/s^2, but the pounds/pounds/poundal\n", " # conversion can be a real pain\n", "\n", " # Constant altitude range\n", " Range_constant_altitude = 1/c_t * np.sqrt(8/rho_US/S) * Cl**.5 / Cd * (m_0**.5 - m_1**.5) / miles_to_feet\n", " \n", " # Constant speed range\n", " Range_constant_speed = 1/c_t * np.sqrt(2*m_0/rho_US/S) * Cl**.5 / Cd * (np.log(m_0/m_1)) / miles_to_feet\n", "\n", " print(\"US Customary Unit Calcs:\")\n", " print(f\"The constant altitude range is {Range_constant_altitude:1.0f} miles\")\n", " print(f\"The cruise-climb range is {Range_constant_speed:1.0f} miles\")\n", "\n", "\n", " ############################################################################\n", " ################### Now in SI units\n", " ############################################################################\n", " # Do the conversion into SI units\n", " c_t_SI = c_t * lb_to_kilo / pound_to_newton\n", "\n", " # Find the Cl and Cd for best range\n", " Cl = np.sqrt(CD0/3/K)\n", " Cd = CD0 + K * Cl**2\n", "\n", " # wing area\n", " S_SI = S * ft_to_metre**2\n", "\n", " # Convert units\n", " w_0 = m_0 * lb_to_kilo * g\n", " w_1 = m_1 * lb_to_kilo * g\n", "\n", " # Determine constant altitude range in km\n", " Range_constant_altitude = 1/c_t_SI / g * np.sqrt(8/rho_SI/S_SI) * Cl**.5 / Cd * (w_0**.5 - w_1**.5) / 1e3\n", " \n", " # Determine constant speed range in km\n", " Range_constant_speed = 1/c_t_SI / g * np.sqrt(2*w_0/rho_SI/S_SI) * Cl**.5 / Cd * (np.log(w_0/w_1)) / 1e3\n", " \n", "\n", " print(\" \")\n", "\n", "\n", " print(\"SI Unit Calcs:\")\n", " print(f\"The constant altitude range is {Range_constant_altitude:1.0f}km which is equal to {Range_constant_altitude*km_to_miles:1.0f} miles\")\n", " print(f\"The cruise-climb range is {Range_constant_speed:1.0f}km which is equal to {Range_constant_speed*km_to_miles:1.0f} miles\")\n", " \n", " print(\" \")\n", " \n", " # Determine the speed difference for the constant altitude cruise\n", " v0 = np.sqrt(w_0 / (0.5 * rho_SI * S_SI * Cl)) * ms_to_knots\n", " v1 = np.sqrt(w_1 / (0.5 * rho_SI * S_SI * Cl)) * ms_to_knots\n", " \n", " # Determine the altitude difference for cruise climb\n", " rho_1 = 2*w_1/S_SI/Cl/(v0/ms_to_knots)**2\n", " h_1 = altdens(rho_1)/ft_to_metre\n", " \n", " print(f\"For the constant altitude cruise, the starting speed is {v0:1.0f}knTAS and the end speed is {v1:1.0f}knTAS\")\n", " print(f\"For the cruise-climb the aircraft gains {(h_1 - h_ft)/1e3:1.1f} thousand feet during the cruise\")\n", " \n", " print(\" \")\n", " print(\"-------------------------------------------------------------- \")\n", " print(\" \")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Variation of jet range with lift coefficient, airspeed\n", "\n", "Recall that the lift coefficient is effectively a measure of the aircraft *cruise speed*. The range can be plotted vs. lift coefficient and forward speed for the two different jet cruise cases over a range of starting altitudes.\n", "\n", "You can click on the entries in the legend to hide/show different plots.\n", "\n", "```{admonition} Beware of source for the plots below...\n", ":class: dropdown\n", "\n", "Producing the plots below is fairly simple - but in order to get the labels and legend to work correctly, there's a bit of obscure logic flow in the way the plot is created.\n", "\n", "That is, it makes it look more complicated than it actually is (and it probably could be done better if I knew my way around plotly better).\n", "```" ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "tags": [ "hide-input" ] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "Constant Speed", "line": { "color": "#636EFA", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 4km", "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 5123.0936483657915, 5145.452683135506, 5167.545971510886, 5189.3760568656, 5210.945425191832, 5232.2565075192415, 5253.311682215269, 5274.113277173529, 5294.663571896537, 5314.964799478605, 5335.019148494431, 5354.828764798466, 5374.395753239878, 5393.722179297604, 5412.8100706397145, 5431.661418611046, 5450.278179652811, 5468.662276657695, 5486.815600263706, 5504.740010089885, 5522.437335916753, 5539.909378814286, 5557.1579122199355, 5574.184682969178, 5590.991412280866, 5607.579796699559, 5623.9515089968645, 5640.108199033754, 5656.051494585645, 5671.783002132015, 5687.304307612163, 5702.616977148669, 5717.722557740051, 5732.622577923962, 5747.318548412295, 5761.811962699419, 5776.1042976447525, 5790.197014030789, 5804.091557097671, 5817.789357055305, 5831.291829573999, 5844.600376254562, 5857.716385078712, 5870.641230840649, 5883.376275560598, 5895.922868881041, 5908.282348446425, 5920.456040266957, 5932.445259067228, 5944.251308620217, 5955.875482067336, 5967.319062225042, 5978.583321878594, 5989.669524063469, 6000.578922334928, 6011.312761026213, 6021.87227549585, 6032.2586923644585, 6042.473229741543, 6052.517097442594, 6062.391497196949, 6072.097622846748, 6081.636660537336, 6091.009788899468, 6100.218179223627, 6109.2629956267565, 6118.145395211747, 6126.866528219904, 6135.427538176722, 6143.829562031209, 6152.073730289008, 6160.16116713957, 6168.092990577613, 6175.8703125190905, 6183.49423891187, 6190.965869841361, 6198.286299631266, 6205.456616939654, 6212.477904850549, 6219.3512409612, 6226.077697465214, 6232.658341231715, 6239.094233880671, 6245.3864318545875, 6251.535986486638, 6257.543944065467, 6263.411345896724, 6269.139228361492, 6274.728622971758, 6280.180556422998, 6285.496050644039, 6290.676122844289, 6295.721785558455, 6300.634046688838, 6305.413909545332, 6310.062372883207, 6314.580430938768, 6318.969073462993, 6323.229285753244, 6327.362048683106, 6331.36833873047, 6335.249128003915, 6339.005384267478, 6342.638070963883, 6346.1481472363, 6349.536567948688, 6352.8042837048215, 6355.9522408660205, 6358.981381567692, 6361.892643734692, 6364.686961095616, 6367.365263196037, 6369.928475410744, 6372.377518955068, 6374.7133108953, 6376.93676415828, 6379.048787540187, 6381.050285714575, 6382.942159239712, 6384.725304565245, 6386.400614038241, 6387.968975908634, 6389.43127433413, 6390.788389384583, 6392.041197045902, 6393.190569223492, 6394.237373745299, 6395.182474364436, 6396.026730761484, 6396.7709985464435, 6397.416129260379, 6397.9629703768005, 6398.412365302778, 6398.765153379846, 6399.022169884682, 6399.184246029617, 6399.252208962971, 6399.226881769269, 6399.109083469313, 6398.899629020153, 6398.599329314994, 6398.208991183009, 6397.729417389121, 6397.161406633741, 6396.5057535524775, 6395.7632487158635, 6394.934678629067, 6394.02082573164, 6393.022468397291, 6391.9403809337155, 6390.775333582463, 6389.528092518903, 6388.19941985224, 6386.79007362564, 6385.300807816434, 6383.732372336454, 6382.08551303246, 6380.360971686708, 6378.5594860176325, 6376.6817896806915, 6374.728612269329, 6372.70067931611, 6370.598712294, 6368.423428617809, 6366.175541645817, 6363.855760681551, 6361.464790975748, 6359.003333728517, 6356.472086091651, 6353.871741171172, 6351.202988030015, 6348.466511690966, 6345.662993139757, 6342.793109328371, 6339.85753317856, 6336.856933585561, 6333.791975422018, 6330.663319542117, 6327.471622785926, 6324.217537983948, 6320.901713961889, 6317.524795545623, 6314.087423566407, 6310.590234866256, 6307.0338623035905, 6303.418934759041, 6299.746077141506, 6296.015910394422, 6292.229051502201, 6288.3861134969575, 6284.487705465368, 6280.534432555795, 6276.5268959855985, 6272.465693048662, 6268.35141712312, 6264.1846576793005, 6259.96600028787, 6255.69602662817, 6251.37531449678, 6247.00443781625, 6242.583966644058, 6238.114467181742, 6233.59650178425, 6229.030628969457, 6224.417403427892, 6219.757376032645, 6215.0510938494535, 6210.299100146992, 6205.501934407319, 6200.660132336518, 6195.774225875523, 6190.844743211089, 6185.872208786957, 6180.857143315194, 6175.800063787674, 6170.701483487746, 6165.561912002051, 6160.381855232502, 6155.161815408412, 6149.902291098791, 6144.603777224779, 6139.26676507223, 6133.891742304443, 6128.479192975037, 6123.029597540954, 6117.543432875614, 6112.021172282188, 6106.463285507017, 6100.870238753144, 6095.242494693978, 6089.580512487081, 6083.8847477880745, 6078.155652764655, 6072.393676110732, 6066.599263060667, 6060.772855403633, 6054.914891498068, 6049.025806286228, 6043.10603130886, 6037.155994719935, 6031.17612130152, 6025.166832478693, 6019.128546334588, 6013.061677625495, 6006.966637796059, 6000.843834994556, 5994.693674088238, 5988.516556678763, 5982.312881117686, 5976.08304252203, 5969.8274327899135, 5963.546440616251, 5957.240451508504, 5950.909847802495, 5944.555008678292, 5938.17631017611, 5931.774125212302, 5925.348823595384, 5918.900772042087, 5912.430334193493, 5905.937870631167, 5899.423738893369, 5892.888293491259, 5886.33188592519, 5879.754864700974, 5873.15757534622, 5866.540360426685, 5859.903559562643, 5853.247509445285, 5846.572543853148, 5839.878993668533, 5833.1671868939775, 5826.437448668708, 5819.69010128513, 5812.925464205311, 5806.143854077482, 5799.345584752538, 5792.530967300548, 5785.700310027264, 5778.853918490637, 5771.992095517311, 5765.115141219145, 5758.223353009703, 5751.31702562075, 5744.39645111874, 5737.46191892128, 5730.513715813604, 5723.552125965017, 5716.577430945322, 5709.589909741239, 5702.589838772808, 5695.57749190976, 5688.55314048787, 5681.517053325295, 5674.469496738878, 5667.4107345604325, 5660.341028152989, 5653.26063642703, 5646.169815856679, 5639.0688204958615, 5631.957901994443, 5624.837309614321, 5617.707290245479, 5610.568088422026, 5603.41994633817, 5596.26310386417, 5589.097798562246, 5581.924265702438, 5574.742738278436, 5567.553447023365, 5560.356620425503, 5553.1524847439905, 5545.9412640244645, 5538.723180114655, 5531.498452679942, 5524.267299218834, 5517.029935078441, 5509.78657346986, 5502.5374254835115, 5495.282700104447, 5488.022604227583, 5480.757342672876, 5473.48711820047, 5466.212131525748, 5458.932581334368, 5451.648664297205, 5444.360575085269, 5437.068506384529, 5429.772648910714, 5422.473191424017, 5415.170320743775, 5407.864221763053, 5400.555077463197, 5393.243068928307, 5385.928375359642, 5378.611174089979, 5371.291640597897, 5363.9699485220035, 5356.646269675081, 5349.320774058189, 5341.993629874686, 5334.665003544193, 5327.335059716476, 5320.003961285293, 5312.671869402134, 5305.338943489917, 5298.005341256625, 5290.671218708849, 5283.33673016527, 5276.002028270098, 5268.6672640064035, 5261.3325867094045, 5253.998144079671, 5246.664082196281, 5239.33054552987, 5231.997676955645, 5224.665617766317, 5217.334507684948, 5210.004484877749, 5202.675685966799, 5195.348246042686, 5188.022298677081, 5180.697975935256, 5173.375408388503, 5166.054725126501, 5158.736053769603, 5151.419520481067, 5144.105249979184, 5136.793365549366, 5129.4839890561525, 5122.177240955129, 5114.873240304801, 5107.57210477837, 5100.273950675463, 5092.978892933767, 5085.687045140611, 5078.398519544459, 5071.113427066342, 5063.831877311224, 5056.553978579281, 5049.279837877119, 5042.009560928918, 5034.7432521875035, 5027.48101484535, 5020.222950845513, 5012.96916089248, 5005.719744462975, 4998.4747998166595, 4991.234424006789, 4983.998712890788, 4976.767761140756, 4969.541662253906, 4962.320508562925, 4955.104391246275, 4947.893400338422, 4940.68762473998, 4933.487152227819, 4926.292069465065, 4919.102462011056, 4911.91841433123, 4904.740009806924, 4897.5673307451225, 4890.400458388139, 4883.239472923215, 4876.084453492064, 4868.935478200339, 4861.792624127048, 4854.655967333877, 4847.5255828744685, 4840.401544803628, 4833.283926186457, 4826.172799107424, 4819.068234679379, 4811.970303052481, 4804.879073423076, 4797.794614042521, 4790.7169922259045, 4783.646274360749, 4776.582525915611, 4769.5258114486405, 4762.476194616066, 4755.433738180627, 4748.398504019923, 4741.370553134717, 4734.349945657179, 4727.336740859043, 4720.330997159738, 4713.332772134421, 4706.342122521974, 4699.359104232927, 4692.383772357329, 4685.416181172548, 4678.456384151018, 4671.504433967924, 4664.560382508831, 4657.624280877245, 4650.696179402121, 4643.776127645315, 4636.864174408967, 4629.960367742846, 4623.064754951606, 4616.177382602013, 4609.298296530103, 4602.427541848284, 4595.565162952383, 4588.71120352863, 4581.865706560595, 4575.028714336067, 4568.200268453877, 4561.38040983066, 4554.569178707572, 4547.76661465695, 4540.972756588914, 4534.1876427579155, 4527.41131076924, 4520.643797585446, 4513.885139532758, 4507.13537230741, 4500.394530981925, 4493.662650011353, 4486.939763239462, 4480.225903904853, 4473.521104647061, 4466.825397512571, 4460.138813960805, 4453.461384870063, 4446.7931405433765, 4440.134110714373, 4433.484324553034, 4426.8438106714475, 4420.212597129481, 4413.590711440428, 4406.978180576596, 4400.375030974847, 4393.781288542095, 4387.1969786607615, 4380.622126194169, 4374.056755491904, 4367.500890395128, 4360.954554241838, 4354.417769872092, 4347.890559633185, 4341.372945384776, 4334.864948503977, 4328.366589890397, 4321.877889971139, 4315.398868705757, 4308.9295455911715, 4302.469939666533, 4296.020069518055, 4289.5799532838, 4283.149608658421, 4276.729052897861, 4270.318302824025, 4263.917374829385, 4257.526284881571, 4251.1450485279065, 4244.773680899907, 4238.412196717738, 4232.060610294639, 4225.718935541302, 4219.387185970214, 4213.065374699956, 4206.753514459478, 4200.451617592313, 4194.159696060776, 4187.877761450116, 4181.605824972622, 4175.343897471707, 4169.091989425954, 4162.850110953106, 4156.618271814048, 4150.3964814167375, 4144.184748820095, 4137.983082737875, 4131.791491542486, 4125.609983268789, 4119.438565617849, 4113.277245960669, 4107.126031341866, 4100.984928483336, 4094.8539437878812, 4088.733083342788, 4082.622352923394, 4076.5217579966056, 4070.4313037243955, 4064.3509949672575, 4058.2808362876394, 4052.220831953336, 4046.170985940856, 4040.131301938754, 4034.1017833509377, 4028.082433299934, 4022.0732546301406, 4016.0742499110283, 4010.0854214403303, 4004.1067712471922, 3998.138301095296, 3992.1800124859515, 3986.231906661167, 3980.293984606682, 3974.3662470549757, 3968.4486944882474, 3962.54132714137, 3956.644145004813, 3950.7571478275345, 3944.880335119862, 3939.0137061563246, 3933.15725997847, 3927.3109953976605, 3921.4749109978234, 3915.649005138201, 3909.833275956051, 3904.0277213693334, 3898.232339079371, 3892.4471265734837, 3886.672081127595, 3880.907199808818, 3875.15247947801, 3869.4079167923132, 3863.673508207662, 3857.949249981266, 3852.23513817408, 3846.5311686532336, 3840.837337094454, 3835.1536389844555, 3829.4800696233065, 3823.8166241267745, 3818.163297428658, 3812.520084283075, 3806.886979266748, 3801.2639767812657, 3795.6510710553057, 3790.048256146857, 3784.4555259454064, 3778.872874174111, 3773.300294391944, 3767.7377799958276, 3762.1853242227326, 3756.6429201517703, 3751.1105607062586, 3745.588238655765, 3740.0759466181316, 3734.5736770614863, 3729.08142230622, 3723.5991745269575, 3718.126925754512, 3712.6646678777965, 3707.212392645746, 3701.770091669203, 3696.3377564227853, 3690.915378246743, 3685.5029483487915, 3680.1004578059255, 3674.7078975662203, 3669.325258450605, 3663.952531154634, 3658.5897062502254, 3653.2367741873836, 3647.893725295924, 3642.5605497871493, 3637.2372377555344, 3631.9237791803826, 3626.620163927468, 3621.3263817506627, 3616.0424222935435, 3610.768275090985, 3605.5039295707384, 3600.2493750549925, 3595.0046007619167, 3589.7695958071913, 3584.5443492055238, 3579.3288498721445, 3574.123086624288, 3568.92704818267, 3563.7407231729308, 3558.5641001270783, 3553.3971674849145, 3548.239913595437, 3543.092326718241, 3537.9543950248967, 3532.826106600316, 3527.7074494441044, 3522.5984114718976, 3517.498980516691, 3512.409144330147, 3507.328890583891, 3502.258206870799, 3497.1970807062653, 3492.1454995294603, 3487.103450704581, 3482.0709215220677, 3477.0478991998407, 3472.034370884492, 3467.0303236524883, 3462.0357445113464, 3457.0506204008016, 3452.074938193969, 3447.1086846984817, 3442.151846657628, 3437.2044107514694, 3432.266363597948, 3427.337691753986, 3422.4183817165685, 3417.5084199238204, 3412.6077927560664, 3407.716486536882, 3402.834487534135, 3397.9617819610157, 3393.0983559770502, 3388.244195689115, 3383.399287152426, 3378.563616371529, 3373.7371693012733, 3368.9199318477795, 3364.1118898693903, 3359.313029177617, 3354.5233355380715, 3349.742794671396, 3344.97139225417, 3340.209113919817, 3335.455945259506, 3330.7118718230254, 3325.9768791196634, 3321.2509526190775, 3316.534077752145, 3311.8262399118125, 3307.1274244539327, 3302.4376166980987, 3297.7568019284536, 3293.08496539451, 3288.422092311947, 3283.7681678634067, 3279.1231771992757, 3274.487105438461, 3269.859937669158, 3265.2416589496115, 3260.6322543088604, 3256.031708747483, 3251.4400072383323, 3246.85713472726, 3242.2830761338305, 3237.7178163520375, 3233.161340251, 3228.613632675659, 3224.074678447459, 3219.544462365034, 3215.022969204872, 3210.510183721978, 3206.0060906505364, 3201.510674704549, 3197.0239205784837, 3192.545812947908, 3188.076336470109, 3183.615475784719, 3179.1632155143284, 3174.7195402650823, 3170.2844346272914, 3165.857883176013, 3161.439870471641, 3157.0303810604837, 3152.6293994753337, 3148.2369102360335, 3143.8528978500312, 3139.477346812939, 3135.1102416090703, 3130.7515667119874, 3126.4013065850236, 3122.0594456818208, 3117.7259684468436, 3113.4008593158933, 3109.084102716623, 3104.775683069028, 3100.475584785955, 3096.1837922735826, 3091.900289931915, 3087.625062155251, 3083.358093332668, 3079.0993678484797, 3074.8488700827047, 3070.6065844115237, 3066.3724952077255, 3062.146586841156, 3057.928843679158, 3053.719250087009, 3049.5177904283437, 3045.3244490655875, 3041.1392103603694, 3036.9620586739406, 3032.79297836758, 3028.6319538030025, 3024.478969342754, 3020.3340093506094, 3016.1970581919645, 3012.0681002342085, 3007.947119847123, 3003.8341014032417, 2999.729029278226, 2995.6318878512334, 2991.5426615052793, 2987.4613346275883, 2983.3878916099507, 2979.3223168490736, 2975.2645947469177, 2971.2147097110433, 2967.172646154937, 2963.1383884983525, 2959.1119211676305, 2955.0932285960243, 2951.082295224013, 2947.079105499621, 2943.083643878729, 2939.0958948253733, 2935.1158428120534, 2931.143472320031, 2927.1787678396195, 2923.2217138704764, 2919.2722949218946, 2915.330495513077, 2911.396300173422, 2907.469693442798, 2903.550659871811, 2899.639184022078, 2895.73525046649, 2891.8388437894705, 2887.9499485872343, 2884.068549468047, 2880.194631052465, 2876.328177973592, 2872.469174877319, 2868.617606422564, 2864.7734572815107, 2860.936712139842, 2857.1073556969704, 2853.285372666269, 2849.4707477752854, 2845.6634657659774, 2841.8635113949204, 2838.070869433526, 2834.285524668254, 2830.5074619008205, 2826.736665948404, 2822.9731216438504, 2819.216813835871, 2815.4677273892385, 2811.7258471849855, 2807.9911581205924, 2804.263645110177, 2800.543293084682, 2796.830086992056, 2793.124011797434, 2789.4250524833183, 2785.733194049752, 2782.0484215144884, 2778.3707199131654, 2774.7000742994715, 2771.0364697453088, 2767.379891340958, 2763.730324195237, 2760.087753435656, 2756.452164208577, 2752.8235416793646, 2749.201871032532, 2745.5871374718927, 2741.979326220709, 2738.3784225218265, 2734.7844116378214, 2731.197278851139, 2727.6170094642257, 2724.0435887996655, 2720.4770022003136, 2716.9172350294234, 2713.3642726707753, 2709.8181005287993, 2706.278704028705, 2702.7460686165937, 2699.2201797595862, 2695.7010229459356, 2692.18858368514, 2688.68284750806, 2685.1837999670306, 2681.691426635963, 2678.2057131104602, 2674.72664500792, 2671.2542079676323, 2667.788387650893, 2664.329169741089, 2660.8765399438084, 2657.4304839869305, 2653.9909876207203, 2650.558036617922, 2647.1316167738514, 2643.7117139064826, 2640.298313856534, 2636.8914024875594, 2633.490965686025, 2630.096989361397, 2626.709459446219, 2623.328361896196, 2619.953682690264, 2616.5854078306706, 2613.2235233430492, 2609.868015276494, 2606.5188697036233, 2603.176072720659, 2599.839610447486, 2596.5094690277247, 2593.185634628794, 2589.868093441976, 2586.5568316824747, 2583.2518355894863, 2579.953091426245, 2576.660585480091, 2573.374304062527, 2570.094233509267, 2566.820360180295, 2563.552670459921, 2560.2911507568247, 2557.0357875041095, 2553.7865671593527, 2550.5434762046502, 2547.306501146664, 2544.0756285166676, 2540.8508448705898, 2537.632136789057, 2534.4194908774325, 2531.2128937658613, 2528.0123321093047, 2524.8177925875793, 2521.6292619053975, 2518.446726792398, 2515.270174003181, 2512.0995903173457, 2508.9349625395175, 2505.7762774993816, 2502.6235220517133, 2499.476683076408, 2496.335747478505, 2493.2007021882196, 2490.071534160966, 2486.948230377383, 2483.830777843359, 2480.719163590053, 2477.613374673918, 2474.513398176721, 2471.4192212055646, 2468.3308308929045, 2465.2482143965703, 2462.171358899779, 2459.100251611154, 2456.034879764741, 2452.975230620019, 2449.9212914619197, 2446.873049600836, 2443.830492372636, 2440.793607138672, 2437.7623812857933, 2434.736802226355, 2431.7168573982267, 2428.702534264799, 2425.6938203149934, 2422.6907030632665, 2419.6931700496134, 2416.70120883958, 2413.7148070242597, 2410.7339522202956, 2407.7586320698933, 2404.788834240812, 2401.824546426369, 2398.865756345443, 2395.912451742469, 2392.9646203874413, 2390.0222500759105, 2387.085328628978, 2384.1538438932994, 2381.2277837410743, 2378.307136070045, 2375.3918888034937, 2372.4820298902314, 2369.577547304596, 2366.6784290464434, 2363.7846631411403, 2360.896237639558, 2358.013140618062, 2355.1353601785, 2352.2628844481974, 2349.3957015799433, 2346.5337997519805, 2343.6771671679935, 2340.825792057098, 2337.979662673827, 2335.1387672981145, 2332.3030942352875, 2329.472631816049, 2326.6473683964628, 2323.8272923579375, 2321.0123921072145, 2318.202656076346, 2315.398072722684, 2312.5986305288584, 2309.804318002762, 2307.015123677532, 2304.231036111529, 2301.4520438883214, 2298.6781356166634, 2295.909299930477, 2293.1455254888265, 2290.3868009759053, 2287.633115101008, 2284.8844565985137, 2282.1408142278583, 2279.402176773516, 2276.6685330449773, 2273.9398718767184, 2271.2161821281893, 2268.4974526837796, 2265.7836724527942, 2263.074830369438, 2260.3709153927784, 2257.6719165067266, 2254.977822720014, 2252.2886230661575, 2249.604306603438, 2246.9248624148763, 2244.2502796081976, 2241.58054731581, 2238.915654694776, 2236.25559092678, 2233.600345218105, 2230.949906799599, 2228.304264926649, 2225.6634088791475, 2223.0273279614676, 2220.396011502429, 2217.769448855267, 2215.1476293976066, 2212.5305425314236, 2209.9181776830214, 2207.3105243029927, 2204.7075718661913, 2202.1093098717006, 2199.5157278427946, 2196.9268153269163, 2194.3425618956326, 2191.76295714461, 2189.1879906935783, 2186.617652186295, 2184.0519312905126, 2181.4908176979457, 2178.9343011242363, 2176.3823713089146, 2173.8350180153734, 2171.2922310308227, 2168.754000166261, 2166.22031525644, 2163.691166159822, 2161.166542758553, 2158.6464349584203, 2156.1308326888193, 2153.6197259027144 ] }, { "legendgroup": "Constant Altitude", "line": { "color": "#636EFA", "width": 4 }, "mode": "lines", "name": "Constant Altitude - 4km", "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 4513.731029652265, 4533.430585420745, 4552.896003804972, 4572.129525658892, 4591.133341280176, 4609.909592541439, 4628.460374916953, 4646.787739410731, 4664.893694391531, 4682.780207339903, 4700.449206512128, 4717.902582525577, 4735.142189869669, 4752.16984834647, 4768.987344444556, 4785.596432649711, 4801.9988366956795, 4818.196250758088, 4834.190340594394, 4849.982744632612, 4865.575075011365, 4880.968918573676, 4896.1658378167795, 4911.167371800088, 4925.975037013338, 4940.590328206842, 4955.014719185613, 4969.249663569119, 4983.296595518224, 4997.156930430883, 5010.832065608003, 5024.323380890869, 5037.632239271386, 5050.759987476423, 5063.70795652735, 5076.477462275946, 5089.069805917664, 5101.4862744833, 5113.7281413099645, 5125.796666492294, 5137.693097314733, 5149.418668665708, 5160.974603434466, 5172.362112891322, 5183.582397052002, 5194.636645026754, 5205.5260353548865, 5216.251736325293, 5226.81490628361, 5237.216693926502, 5247.458238583617, 5257.5406704877505, 5267.465111033653, 5277.232673025972, 5286.844460916757, 5296.301571032944, 5305.605091794245, 5314.75610392179, 5323.755680637941, 5332.60488785757, 5341.304784371201, 5349.856422020295, 5358.260845865009, 5366.519094344729, 5374.632199431645, 5382.601186777667, 5390.427075854929, 5398.11088009013, 5405.653606992961, 5413.056258278865, 5420.319829986318, 5427.44531258888, 5434.433691102212, 5441.285945186233, 5448.003049242656, 5454.585972508037, 5461.035679142548, 5467.353128314623, 5473.539274281646, 5479.595066466858, 5485.521449532578, 5491.319363449965, 5496.989743565381, 5502.533520663549, 5507.951621027591, 5513.244966496114, 5518.414474517429, 5523.461058201036, 5528.385626366479, 5533.189083589696, 5537.872330246939, 5542.436262556387, 5546.881772617549, 5551.2097484485275, 5555.421074021257, 5559.516629294789, 5563.497290246723, 5567.363928902834, 5571.117413365009, 5574.758607837547, 5578.288372651887, 5581.707564289868, 5585.017035405544, 5588.2176348456505, 5591.310207668776, 5594.295595163282, 5597.174634864078, 5599.94816056823, 5602.617002349539, 5605.181986572076, 5607.643935902775, 5610.0036693230895, 5612.262002139786, 5614.419745994909, 5616.477708874974, 5618.436695119409, 5620.297505428294, 5622.060936869453, 5623.727782884909, 5625.298833296763, 5626.774874312518, 5628.156688529865, 5629.445054941023, 5630.640748936582, 5631.74454230895, 5632.757203255381, 5633.6794963806615, 5634.512182699426, 5635.256019638178, 5635.911761037012, 5636.48015715107, 5636.961954651738, 5637.357896627656, 5637.668722585497, 5637.895168450561, 5638.03796656724, 5638.097845699303, 5638.075531030092, 5637.971744162577, 5637.787203119338, 5637.522622342486, 5637.178712693488, 5636.756181452981, 5636.255732320538, 5635.678065414426, 5635.0238772713365, 5634.293860846162, 5633.488705511754, 5632.609097058731, 5631.6557176953265, 5630.629246047275, 5629.530357157777, 5628.359722487517, 5627.1180099147705, 5625.80588373559, 5624.424004664096, 5622.973029832846, 5621.453612793354, 5619.866403516676, 5618.212048394156, 5616.4911902382855, 5614.704468283687, 5612.852518188255, 5610.935972034418, 5608.95545833058, 5606.911602012679, 5604.805024445924, 5602.636343426685, 5600.406173184552, 5598.1151243845525, 5595.763804129542, 5593.352815962772, 5590.882759870621, 5588.354232285519, 5585.767826089032, 5583.124130615147, 5580.423731653715, 5577.667211454105, 5574.855148729025, 5571.988118658534, 5569.066692894237, 5566.091439563672, 5563.062923274886, 5559.981705121194, 5556.8483426861285, 5553.6633900485795, 5550.427397788113, 5547.1409129905005, 5543.8044792534, 5540.418636692269, 5536.983921946416, 5533.500868185273, 5529.970005114845, 5526.39185898433, 5522.766952592935, 5519.095805296875, 5515.378933016539, 5511.61684824385, 5507.810060049792, 5503.959074092121, 5500.064392623244, 5496.126514498274, 5492.145935183263, 5488.1231467635835, 5484.058637952509, 5479.952894099932, 5475.806397201256, 5471.619625906464, 5467.393055529313, 5463.127158056724, 5458.822402158301, 5454.479253196014, 5450.098173234032, 5445.679621048703, 5441.224052138681, 5436.731918735206, 5432.203669812507, 5427.639751098366, 5423.040605084799, 5418.406671038889, 5413.738385013744, 5409.036179859583, 5404.300485234953, 5399.531727618068, 5394.730330318269, 5389.896713487621, 5385.031294132595, 5380.134486125898, 5375.206700218389, 5370.248344051136, 5365.259822167534, 5360.241536025585, 5355.193884010229, 5350.1172614458055, 5345.012060608604, 5339.878670739507, 5334.7174780567275, 5329.528865768639, 5324.313214086684, 5319.070900238379, 5313.8022984803965, 5308.507780111717, 5303.187713486882, 5297.8424640293015, 5292.472394244639, 5287.07786373427, 5281.65922920881, 5276.216844501701, 5270.751060582864, 5265.26222557242, 5259.750684754451, 5254.216780590838, 5248.660852735143, 5243.083238046535, 5237.484270603784, 5231.8642817192795, 5226.223599953112, 5220.562551127191, 5214.8814583394, 5209.180641977793, 5203.4604197348335, 5197.721106621647, 5191.963014982331, 5186.186454508277, 5180.391732252538, 5174.579152644189, 5168.749017502757, 5162.901626052632, 5157.0372749375165, 5151.156258234902, 5145.258867470541, 5139.345391632946, 5133.4161171879, 5127.471328092973, 5121.511305812049, 5115.5363293298715, 5109.546675166565, 5103.542617392204, 5097.524427641334, 5091.492375127542, 5085.446726657977, 5079.387746647911, 5073.3156971352755, 5067.230837795179, 5061.133425954441, 5055.023716606111, 5048.901962423958, 5042.768413776979, 5036.623318743863, 5030.466923127461, 5024.299470469231, 5018.12120206367, 5011.93235697272, 5005.733172040159, 4999.523881905967, 4993.304719020675, 4987.075913659682, 4980.837693937553, 4974.590285822283, 4968.3339131495395, 4962.068797636882, 4955.795158897929, 4949.513214456522, 4943.2231797608365, 4936.925268197467, 4930.619691105483, 4924.3066577904365, 4917.98637553835, 4911.6590496296485, 4905.324883353071, 4898.984078019529, 4892.6368329759325, 4886.283345618976, 4879.923811408875, 4873.558423883066, 4867.187374669865, 4860.810853502076, 4854.429048230551, 4848.042144837722, 4841.650327451067, 4835.253778356537, 4828.852678011927, 4822.447205060227, 4816.037536342874, 4809.623846913007, 4803.2063100486275, 4796.785097265745, 4790.3603783314375, 4783.932321276892, 4777.501092410357, 4771.066856330081, 4764.629775937158, 4758.190012448356, 4751.747725408855, 4745.3030727049545, 4738.8562105767105, 4732.407293630535, 4725.956474851718, 4719.503905616895, 4713.049735706476, 4706.594113316992, 4700.137185073405, 4693.6790960413355, 4687.219989739264, 4680.760008150632, 4674.299291735918, 4667.837979444643, 4661.376208727309, 4654.914115547275, 4648.4518343925965, 4641.989498287773, 4635.527238805455, 4629.065186078079, 4622.60346880945, 4616.142214286251, 4609.681548389504, 4603.22159560596, 4596.762479039425, 4590.30432042203, 4583.847240125443, 4577.3913571719995, 4570.936789245785, 4564.483652703668, 4558.03206258623, 4551.582132628674, 4545.133975271645, 4538.687701672004, 4532.243421713516, 4525.801244017501, 4519.361275953409, 4512.923623649324, 4506.488392002426, 4500.055684689364, 4493.625604176591, 4487.198251730611, 4480.773727428198, 4474.352130166499, 4467.933557673129, 4461.518106516168, 4455.105872114105, 4448.696948745726, 4442.291429559926, 4435.889406585463, 4429.490970740662, 4423.096211843034, 4416.7052186188475, 4410.318078712637, 4403.934878696643, 4397.555704080191, 4391.180639319017, 4384.809767824516, 4378.443171972942, 4372.080933114539, 4365.723131582615, 4359.36984670255, 4353.021156800741, 4346.677139213503, 4340.33787029588, 4334.003425430416, 4327.673879035871, 4321.349304575849, 4315.02977456739, 4308.715360589502, 4302.406133291613, 4296.102162401981, 4289.803516736043, 4283.510264204698, 4277.222471822532, 4270.940205715989, 4264.663531131475, 4258.392512443421, 4252.127213162259, 4245.867695942374, 4239.614022589963, 4233.36625407087, 4227.124450518338, 4220.888671240716, 4214.6589747291055, 4208.435418664959, 4202.2180599276035, 4196.006954601722, 4189.802157984788, 4183.603724594414, 4177.411708175675, 4171.2261617083595, 4165.0471374141725, 4158.874686763884, 4152.708860484416, 4146.549708565888, 4140.397280268594, 4134.251624129934, 4128.112787971295, 4121.9808189048745, 4115.8557633404425, 4109.737666992075, 4103.62657488481, 4097.522531361258, 4091.4255800881824, 4085.335764062985, 4079.2531256201887, 4073.1777064378325, 4067.1095475438315, 4061.0486893222896, 4054.995171519752, 4048.949033251414, 4042.910313007282, 4036.8790486582757, 4030.8552774622945, 4024.839036070225, 4018.8303605319047, 4012.8292863020365, 4006.835848246052, 4000.850080645937, 3994.872017205993, 3988.9016910585747, 3982.9391347697556, 3976.9843803449644, 3971.0374592345715, 3965.098402339425, 3959.167240016347, 3953.244002083579, 3947.328717826183, 3941.421416001407, 3935.5221248439925, 3929.6308720714433, 3923.7476848892597, 3917.8725899961046, 3912.0056135889604, 3906.1467813682057, 3900.296118542686, 3894.453649834707, 3888.619399485014, 3882.7933912577128, 3876.9756484451523, 3871.166193872769, 3865.36504990389, 3859.5722384444875, 3853.7877809479064, 3848.0116984195356, 3842.2440114214523, 3836.484740077022, 3830.7339040754555, 3824.991522676331, 3819.2576147140753, 3813.5321986024096, 3807.81529233875, 3802.106913508577, 3796.4070792897614, 3790.715806456857, 3785.033111385355, 3779.3590100558977, 3773.693518058462, 3768.0366505964953, 3762.388422491032, 3756.7488481847545, 3751.117941746035, 3745.4957168729306, 3739.882186897152, 3734.2773647879844, 3728.6812631561893, 3723.0938942578623, 3717.5152699982546, 3711.9454019355717, 3706.3843012847246, 3700.831978921056, 3695.2884453840315, 3689.7537108809, 3684.227785290315, 3678.7106781659263, 3673.202398739948, 3667.7029559266784, 3662.212358326, 3656.7306142268476, 3651.257731610636, 3645.7937181546667, 3640.3385812355, 3634.8923279322958, 3629.454965030121, 3624.02649902324, 3618.6069361183536, 3613.1962822378277, 3607.794543022885, 3602.4017238367674, 3597.0178297678663, 3591.6428656328335, 3586.2768359796523, 3580.91974509069, 3575.5715969857174, 3570.232395424899, 3564.9021439117614, 3559.5808456961263, 3554.2685037770243, 3548.96512090558, 3543.6706995878617, 3538.3852420877197, 3533.1087504295833, 3527.8412264012422, 3522.582671556601, 3517.3330872183956, 3512.092474480904, 3506.8608342126195, 3501.6381670588958, 3496.4244734445774, 3491.219753576601, 3486.024007446568, 3480.8372348332987, 3475.659435305364, 3470.490608223582, 3465.330752743505, 3460.179867817875, 3455.0379521990544, 3449.905004441443, 3444.781022903863, 3439.666005751918, 3434.559950960348, 3429.462856315341, 3424.3747194168336, 3419.295537680788, 3414.2253083414466, 3409.1640284535642, 3404.1116948946215, 3399.068304367012, 3394.0338534002162, 3389.008338352946, 3383.991755415277, 3378.9841006107504, 3373.9853697984663, 3368.9955586751444, 3364.014662777176, 3359.0426774826487, 3354.079598013353, 3349.1254194367757, 3344.18013666806, 3339.2437444719635, 3334.316237464784, 3329.397610116272, 3324.4878567515248, 3319.5869715528625, 3314.6949485616788, 3309.8117816802865, 3304.937464673733, 3300.071991171605, 3295.2153546698087, 3290.367548532346, 3285.5285659930537, 3280.69840015734, 3275.877044003907, 3271.064490386435, 3266.2607320352745, 3261.465761559112, 3256.67957144661, 3251.902154068047, 3247.133501676928, 3242.373606411591, 3237.6224602967836, 3232.8800552452344, 3228.146383059207, 3223.421435432035, 3218.705203949643, 3213.9976800920567, 3209.298855234889, 3204.60872065082, 3199.9272675110587, 3195.2544868867867, 3190.590369750593, 3185.9349069778928, 3181.288089348327, 3176.6499075471556, 3172.0203521666317, 3167.399413707361, 3162.7870825796517, 3158.1833491048487, 3153.5882035166524, 3149.001635962423, 3144.4236365044826, 3139.854195121386, 3135.2933017091927, 3130.7409460827257, 3126.1971179768007, 3121.6618070474683, 3117.135002873221, 3112.6166949562025, 3108.106872723397, 3103.605525527806, 3099.1126426496203, 3094.628213297371, 3090.152226609075, 3085.684671653362, 3081.225537430601, 3076.774812874, 3072.3324868507107, 3067.898548162905, 3063.472985548857, 3059.0557876839994, 3054.646943181978, 3050.2464405956894, 3045.8542684183158, 3041.470415084338, 3037.094868970546, 3032.7276183970375, 3028.368651628205, 3024.0179568737094, 3019.675522289449, 3015.3413359785172, 3011.0153859921443, 3006.697660330638, 3002.3881469443068, 2998.0868337343754, 2993.793708553897, 2989.5087592086425, 2985.2319734579964, 2980.963339015825, 2976.702843551355, 2972.4504746900257, 2968.2062200143428, 2963.970067064718, 2959.7420033403027, 2955.5220162998085, 2951.3100933623246, 2947.1062219081177, 2942.9103892794346, 2938.722582781293, 2934.5427896822493, 2930.37099721518, 2926.2071925780438, 2922.0513629346306, 2917.9034954153126, 2913.76357711778, 2909.6315951077772, 2905.5075364198115, 2901.391388057884, 2897.2831369961823, 2893.1827701797893, 2889.0902745253675, 2885.005636921845, 2880.9288442310894, 2876.859883288584, 2872.798740904076, 2868.7454038622395, 2864.699858923321, 2860.6620928237753, 2856.6320922768996, 2852.60984397346, 2848.5953345823064, 2844.588550750988, 2840.5894791063506, 2836.5981062551464, 2832.6144187846085, 2828.6384032630494, 2824.670046240434, 2820.7093342489466, 2816.7562538035595, 2812.810791402594, 2808.872933528265, 2804.9426666472323, 2801.0199772111405, 2797.1048516571477, 2793.1972764084558, 2789.2972378748323, 2785.4047224531237, 2781.5197165277664, 2777.6422064712883, 2773.7721786448064, 2769.9096193985215, 2766.054515072203, 2762.206851995667, 2758.3666164892534, 2754.5337948642973, 2750.708373423588, 2746.8903384618325, 2743.079676266104, 2739.2763731162977, 2735.4804152855613, 2731.691789040743, 2727.9104806428177, 2724.136476347319, 2720.3697624047554, 2716.6103250610327, 2712.8581505578622, 2709.1132251331705, 2705.375535021499, 2701.645066454407, 2697.9218056608556, 2694.205738867603, 2690.496852299588, 2686.7951321803007, 2683.1005647321654, 2679.4131361769078, 2675.732832735917, 2672.0596406306095, 2668.393546082782, 2664.734535314969, 2661.0825945507836, 2657.437710015266, 2653.7998679352186, 2650.169054539545, 2646.545256059577, 2642.9284587294023, 2639.318648786188, 2635.7158124704993, 2632.119936026612, 2628.5310057028228, 2624.9490077517617, 2621.373928430686, 2617.8057540017876, 2614.24447073248, 2610.6900648956967, 2607.142522770177, 2603.6018306407486, 2600.067974798607, 2596.540941541595, 2593.020717174477, 2589.5072880092025, 2586.00064036518, 2582.500760569534, 2579.0076349573674, 2575.5212498720143, 2572.0415916652987, 2568.568646697775, 2565.102401338981, 2561.642841967679, 2558.1899549720924, 2554.7437267501464, 2551.3041437096954, 2547.871192268759, 2544.4448588557448, 2541.025129909675, 2537.6119918804047, 2534.2054312288396, 2530.805434427156, 2527.4119879590044, 2524.025078319725, 2520.6446920165495, 2517.2708155688097, 2513.9034355081335, 2510.542538378641, 2507.188110737145, 2503.8401391533394, 2500.4986102099892, 2497.1635105031173, 2493.8348266421895, 2490.512545250293, 2487.19665296432, 2483.88713643514, 2480.583982327775, 2477.2871773215725, 2473.9967081103705, 2470.7125614026654, 2467.4347239217786, 2464.1631824060137, 2460.8979236088167, 2457.638934298936, 2454.386201260572, 2451.139711293531, 2447.8994512133763, 2444.6654078515744, 2441.4375680556386, 2438.215918689276, 2435.000446632524, 2431.7911387818926, 2428.587982050497, 2425.390963368195, 2422.2000696817204, 2419.0152879548077, 2415.8366051683242, 2412.664008320399, 2409.497484426537, 2406.3370205197534, 2403.1826036506845, 2400.0342208877096, 2396.8918593170642, 2393.7555060429627, 2390.625148187698, 2387.500772891761, 2384.3823673139486, 2381.2699186314658, 2378.1634140400347, 2375.062840753998, 2371.9681860064156, 2368.879437049171, 2365.796581153063, 2362.7196056079065, 2359.6484977226237, 2356.5832448253395, 2353.5238342634702, 2350.470253403815, 2347.422489632643, 2344.3805303557792, 2341.344362998691, 2338.3139750065657, 2335.2893538443996, 2332.270486997073, 2329.257361969432, 2326.2499662863606, 2323.24828749286, 2320.2523131541216, 2317.2620308555997, 2314.2774282030814, 2311.298492822759, 2308.3252123612947, 2305.357574485888, 2302.395566884344, 2299.4391772651365, 2296.488393357465, 2293.5432029113276, 2290.603593697569, 2287.6695535079466, 2284.7410701551844, 2281.818131473033, 2278.90072531632, 2275.9888395610087, 2273.0824621042443, 2270.181580864408, 2267.2861837811697, 2264.396258815535, 2261.5117939498887, 2258.6327771880465, 2255.7591965553006, 2252.8910400984582, 2250.0282958858897, 2247.1709520075674, 2244.3189965751117, 2241.4724177218195, 2238.6312036027184, 2235.79534239459, 2232.964822296014, 2230.1396315274033, 2227.3197583310343, 2224.5051909710833, 2221.6959177336607, 2218.8919269268395, 2216.0932068806833, 2213.299745947282, 2210.511532500776, 2207.728554937384, 2204.95080167543, 2202.17826115537, 2199.410921839815, 2196.648772213555, 2193.8918007835846, 2191.1399960791196, 2188.3933466516232, 2185.651841074825, 2182.915467944737, 2180.184215879678, 2177.4580735202862, 2174.7370295295373, 2172.0210725927627, 2169.310191417664, 2166.604374734324, 2163.9036112952276, 2161.207889875264, 2158.517199271749, 2155.831528304433, 2153.1508658155085, 2150.475200669624, 2147.8045217538897, 2145.1388179778896, 2142.4780782736857, 2139.822291595827, 2137.171446921356, 2134.5255332498136, 2131.8845396032407, 2129.2484550261897, 2126.6172685857227, 2123.9909693714135, 2121.3695464953535, 2118.7529890921537, 2116.1412863189403, 2113.5344273553596, 2110.932401403577, 2108.335197688277, 2105.7428054566567, 2103.15521397843, 2100.5724125458214, 2097.994390473564, 2095.4211370988946, 2092.8526417815506, 2090.2888939037634, 2087.7298828702546, 2085.175598108228, 2082.6260290673654, 2080.081165219817, 2077.5409960601964, 2075.0055111055694, 2072.4746998954474, 2069.948551991777, 2067.4270569789314, 2064.9102044637, 2062.397984075277, 2059.890385465251, 2057.3873983075905, 2054.8890122986377, 2052.395217157092, 2049.906002623995, 2047.4213584627212, 2044.9412744589629, 2042.4657404207153, 2039.9947461782601, 2037.528281584153, 2035.0663365132073, 2032.608900862477, 2030.1559645512418, 2027.707517520988, 2025.263549735393, 2022.8240511803087, 2020.3890118637396, 2017.9584218158288, 2015.5322710888354, 2013.1105497571193, 2010.6932479171169, 2008.2803556873266, 2005.8718632082835, 2003.4677606425412, 2001.0680381746522, 1998.672686011145, 1996.2816943805, 1993.8950535331335, 1991.5127537413694, 1989.1347852994195, 1986.7611385233631, 1984.3918037511173, 1982.0267713424194, 1979.6660316787998, 1977.309575163559, 1974.9573922217428, 1972.6094733001178, 1970.2658088671465, 1967.9263894129617, 1965.5912054493406, 1963.2602475096799, 1960.9335061489687, 1958.6109719437623, 1956.292635492156, 1953.9784874137574, 1951.6685183496622, 1949.3627189624206, 1947.0610799360154, 1944.7635919758316, 1942.4702458086292, 1940.1810321825146, 1937.8959418669097, 1935.6149656525267, 1933.3380943513375, 1931.065318796543, 1928.7966298425465, 1926.5320183649224, 1924.2714752603833, 1922.0149914467565, 1919.7625578629484, 1917.5141654689137, 1915.2698052456315, 1913.0294681950636, 1910.7931453401322, 1908.560827724687, 1906.3325064134688, 1904.1081724920834, 1901.887817066967, 1899.6714312653557, 1897.459006235252 ] }, { "legendgroup": "Constant Speed", "line": { "color": "#EF553B", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 6km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 5707.652605065593, 5732.56286667887, 5757.1770595094895, 5781.4980171369925, 5805.528509212052, 5829.2712441514395, 5852.728871700806, 5875.903985372778, 5898.799124767323, 5921.416777780903, 5943.759382710561, 5965.829330258591, 5987.62896544319, 6009.1605894200775, 6030.426461219778, 6051.4287994050055, 6072.169783652249, 6092.651556261496, 6112.8762235977065, 6132.845857467522, 6152.562496434418, 6172.028147075361, 6191.244785181852, 6210.214356908064, 6228.938779868608, 6247.419944188411, 6265.65971350688, 6283.659925938621, 6301.422394992668, 6318.948910452189, 6336.241239216476, 6353.301126106976, 6370.130294638948, 6386.730447760366, 6403.103268559466, 6419.250420942399, 6435.1735502822685, 6450.874284040839, 6466.354232364091, 6481.614988652783, 6496.658130109066, 6511.485218260225, 6526.097799460473, 6540.49740537178, 6554.685553424593, 6568.663747259284, 6582.433477149176, 6595.9962204058575, 6609.353441767582, 6622.506593771382, 6635.457117109629, 6648.206440971634, 6660.75598337093, 6673.107151458785, 6685.261341824534, 6697.219940783232, 6708.9843246511855, 6720.555860009772, 6731.93590395811, 6743.125804354939, 6754.126900050189, 6764.940521106647, 6775.567989012073, 6786.0106168822085, 6796.269709654973, 6806.346564276229, 6816.242469877461, 6825.958707945647, 6835.496552485658, 6844.857270175483, 6854.042120514542, 6863.052355965368, 6871.889222088929, 6880.553957673816, 6889.047794859568, 6897.3719592543375, 6905.527670047147, 6913.51614011492, 6921.338576124521, 6928.9961786299855, 6936.490142165131, 6943.821655331762, 6950.991900883579, 6958.002055806057, 6964.853291392356, 6971.546773315503, 6978.083661696964, 6984.46511117173, 6990.69227095012, 6996.76628487636, 7002.688291484149, 7008.459424049257, 7014.080810639364, 7019.553574161175, 7024.878832404977, 7030.057698086739, 7035.091278887838, 7039.980677492545, 7044.726991623333, 7049.3313140741375, 7053.794732741641, 7058.118330654662, 7062.3031860017545, 7066.350372157085, 7070.260957704673, 7074.03600646106, 7077.676577496503, 7081.183725154733, 7084.5584990713705, 7087.801944191063, 7090.915100783377, 7093.899004457576, 7096.754686176233, 7099.483172267863, 7102.085484438521, 7104.562639782486, 7106.915650792064, 7109.145525366525, 7111.253266820295, 7113.239873890368, 7115.106340743045, 7116.853656980001, 7118.482807643746, 7119.9947732225055, 7121.390529654569, 7122.6710483321285, 7123.837296104662, 7124.890235281868, 7125.83082363623, 7126.66001440518, 7127.378756292941, 7127.98799347206, 7128.4886655846585, 7128.881707743425, 7129.168050532383, 7129.348620007459, 7129.424337696855, 7129.396120601283, 7129.264881194048, 7129.031527421023, 7128.696962700545, 7128.262085923192, 7127.727791451554, 7127.094969119937, 7126.364504234041, 7125.53727757065, 7124.6141653773175, 7123.596039372085, 7122.483766743222, 7121.278210149041, 7119.980227717758, 7118.590673047437, 7117.110395206026, 7115.540238731477, 7113.881043631998, 7112.133645386402, 7110.298874944596, 7108.377558728217, 7106.370518631387, 7104.278572021652, 7102.102531741055, 7099.8432061074045, 7097.5013989157005, 7095.077909439743, 7092.573532433932, 7089.989058135261, 7087.325272265506, 7084.582956033613, 7081.762886138304, 7078.865834770875, 7075.892569618236, 7072.843853866136, 7069.720446202629, 7066.5231008217725, 7063.252567427525, 7059.909591237893, 7056.494912989305, 7053.009268941208, 7049.4533908809135, 7045.828006128667, 7042.133837542957, 7038.371603526048, 7034.542018029788, 7030.645790561611, 7026.683626190799, 7022.6562255549825, 7018.564284866873, 7014.408495921237, 7010.1895461021, 7005.908118390206, 7001.564891370687, 6997.160539240982, 6992.695731818992, 6988.171134551458, 6983.587408522584, 6978.945210462867, 6974.2451927581815, 6969.488003459071, 6964.674286290279, 6959.804680660484, 6954.879821672275, 6949.900340132336, 6944.866862561841, 6939.780011207082, 6934.640404050288, 6929.44865482067, 6924.205373005661, 6918.911163862372, 6913.566628429232, 6908.172363537856, 6902.728961825084, 6897.237011745219, 6891.6970975824715, 6886.1097994635675, 6880.475693370565, 6874.795351153848, 6869.069340545276, 6863.298225171553, 6857.4825645677265, 6851.622914190888, 6845.719825434036, 6839.773845640073, 6833.785518116013, 6827.755382147312, 6821.683973012361, 6815.571821997137, 6809.4194564099935, 6803.227399596612, 6796.996170955068, 6790.726285951076, 6784.418256133324, 6778.072589148982, 6771.689788759316, 6765.27035485543, 6758.814783474147, 6752.323566813984, 6745.797193251275, 6739.236147356373, 6732.640909909999, 6726.011957919664, 6719.349764636223, 6712.654799570508, 6705.927528510075, 6699.168413536041, 6692.377913040008, 6685.5564817410805, 6678.704570702969, 6671.8226273511755, 6664.911095490253, 6657.970415321156, 6651.001023458649, 6644.003352948793, 6636.977833286502, 6629.924890433163, 6622.844946834316, 6615.738421437398, 6608.60572970953, 6601.4472836553905, 6594.263491835088, 6587.054759382144, 6579.821488021466, 6572.5640760873985, 6565.2829185417995, 6557.978406992165, 6550.650929709773, 6543.300871647873, 6535.928614459911, 6528.534536517762, 6521.119012929997, 6513.682415560196, 6506.225113045231, 6498.747470813625, 6491.249851103878, 6483.732612982837, 6476.196112364061, 6468.64070202621, 6461.066731631421, 6453.474547743706, 6445.864493847347, 6438.2369103652845, 6430.592134677512, 6422.930501139472, 6415.252341100424, 6407.557982921833, 6399.84775199573, 6392.1219707630635, 6384.38095873204, 6376.625032496462, 6368.854505754011, 6361.069689324558, 6353.2708911684185, 6345.458416404606, 6337.632567329051, 6329.793643432793, 6321.941941420155, 6314.077755226877, 6306.201376038226, 6298.313092307079, 6290.413189771952, 6282.501951475018, 6274.579657780081, 6266.646586390494, 6258.703012367069, 6250.7492081459195, 6242.785443556272, 6234.81198583824, 6226.829099660535, 6218.837047138156, 6210.836087850005, 6202.826478856488, 6194.808474717018, 6186.782327507521, 6178.748286837849, 6170.706599869166, 6162.657511331268, 6154.60126353984, 6146.538096413687, 6138.4682474918645, 6130.3919519507945, 6122.3094426212865, 6114.220950005535, 6106.126702294014, 6098.026925382346, 6089.921842888092, 6081.811676167483, 6073.69664433208, 6065.576964265382, 6057.452850639356, 6049.3245159309145, 6041.192170438305, 6033.056022297456, 6024.916277498239, 6016.7731399006725, 6008.62681125104, 6000.477491197957, 5992.3253773083525, 5984.170665083392, 5976.013547974321, 5967.854217398228, 5959.692862753756, 5951.529671436729, 5943.364828855696, 5935.198518447415, 5927.030921692262, 5918.862218129553, 5910.692585372799, 5902.522199124888, 5894.351233193191, 5886.179859504574, 5878.008248120364, 5869.836567251213, 5861.664983271895, 5853.493660736018, 5845.32276239068, 5837.1524491910095, 5828.982880314668, 5820.814213176246, 5812.64660344159, 5804.480205042052, 5796.315170188664, 5788.151649386213, 5779.9897914472685, 5771.8297435061095, 5763.671651032564, 5755.515657845799, 5747.361906128001, 5739.21053643799, 5731.061687724764, 5722.915497340932, 5714.772101056111, 5706.631633070196, 5698.494226026593, 5690.360011025339, 5682.229117636165, 5674.101673911457, 5665.977806399173, 5657.85764015563, 5649.741298758254, 5641.628904318232, 5633.520577493086, 5625.41643749917, 5617.316602124077, 5609.221187738984, 5601.130309310914, 5593.044080414899, 5584.962613246086, 5576.8860186317615, 5568.814406043285, 5560.74788360795, 5552.686558120778, 5544.63053505621, 5536.579918579748, 5528.53481155949, 5520.495315577609, 5512.461530941748, 5504.433556696326, 5496.411490633794, 5488.395429305771, 5480.3854680341565, 5472.381700922118, 5464.384220865037, 5456.393119561345, 5448.408487523327, 5440.430414087806, 5432.458987426783, 5424.494294557979, 5416.536421355322, 5408.585452559349, 5400.641471787527, 5392.704561544516, 5384.774803232345, 5376.852277160518, 5368.937062556051, 5361.029237573432, 5353.1288793045, 5345.236063788271, 5337.350866020677, 5329.47335996423, 5321.603618557634, 5313.741713725294, 5305.887716386793, 5298.041696466269, 5290.203722901721, 5282.3738636542685, 5274.552185717325, 5266.738755125695, 5258.933636964617, 5251.136895378734, 5243.348593580989, 5235.5687938614565, 5227.797557596109, 5220.034945255508, 5212.281016413445, 5204.53582975548, 5196.799443087467, 5189.07191334396, 5181.353296596583, 5173.643648062338, 5165.943022111823, 5158.251472277412, 5150.569051261354, 5142.895810943804, 5135.231802390821, 5127.57707586226, 5119.931680819632, 5112.295665933884, 5104.669079093132, 5097.051967410313, 5089.4443772308005, 5081.846354139928, 5074.257942970479, 5066.679187810099, 5059.110132008664, 5051.550818185555, 5044.001288236929, 5036.46158334287, 5028.931743974528, 5021.411809901171, 5013.901820197193, 5006.401813249063, 4998.911826762209, 4991.431897767851, 4983.962062629782, 4976.502357051078, 4969.052816080773, 4961.613474120455, 4954.184364930822, 4946.765521638185, 4939.356976740904, 4931.958762115783, 4924.5709090243945, 4917.193448119376, 4909.826409450648, 4902.469822471588, 4895.1237160451665, 4887.788118450002, 4880.463057386392, 4873.148559982279, 4865.844652799164, 4858.551361837973, 4851.268712544877, 4843.9967298170595, 4836.735438008426, 4829.484860935273, 4822.245021881915, 4815.01594360624, 4807.797648345248, 4800.590157820502, 4793.393493243577, 4786.207675321424, 4779.032724261708, 4771.868659778087, 4764.71550109546, 4757.57326695515, 4750.441975620062, 4743.32164487977, 4736.212292055593, 4729.113934005593, 4722.026587129546, 4714.950267373872, 4707.884990236511, 4700.830770771759, 4693.787623595066, 4686.755562887788, 4679.734602401891, 4672.724755464622, 4665.726034983136, 4658.738453449077, 4651.762022943122, 4644.796755139486, 4637.842661310376, 4630.89975233042, 4623.968038681049, 4617.047530454831, 4610.138237359784, 4603.240168723632, 4596.353333498035, 4589.47774026277, 4582.61339722989, 4575.760312247825, 4568.918492805457, 4562.087946036164, 4555.26867872181, 4548.460697296711, 4541.664007851568, 4534.878616137345, 4528.104527569131, 4521.341747229963, 4514.590279874603, 4507.850129933289, 4501.121301515451, 4494.40379841339, 4487.697624105925, 4481.002781762004, 4474.3192742442825, 4467.647104112672, 4460.986273627848, 4454.336784754734, 4447.698639165945, 4441.071838245202, 4434.4563830907255, 4427.852274518566, 4421.259513065948, 4414.678098994544, 4408.108032293731, 4401.549312683828, 4395.001939619287, 4388.46591229186, 4381.941229633731, 4375.42789032064, 4368.925892774931, 4362.435235168632, 4355.955915426459, 4349.487931228808, 4343.0312800147085, 4336.585958984784, 4330.151965104131, 4323.729295105211, 4317.3179454906995, 4310.917912536307, 4304.52919229358, 4298.151780592669, 4291.785673045068, 4285.430865046339, 4279.087351778797, 4272.755128214177, 4266.434189116272, 4260.124529043547, 4253.826142351731, 4247.539023196373, 4241.263165535388, 4234.998563131566, 4228.745209555064, 4222.503098185871, 4216.2722222162465, 4210.052574653144, 4203.844148320596, 4197.646935862096, 4191.460929742937, 4185.286122252536, 4179.122505506744, 4172.970071450114, 4166.828811858165, 4160.698718339616, 4154.579782338596, 4148.471995136833, 4142.375347855834, 4136.289831459014, 4130.21543675384, 4124.152154393926, 4118.099974881125, 4112.0588885675825, 4106.028885657791, 4100.009956210607, 4094.0020901412554, 4088.005277223309, 4082.0195070906598, 4076.0447692394537, 4070.081053030018, 4064.1283476887725, 4058.186642310101, 4052.255925858233, 4046.3361871690813, 4040.42741495208, 4034.5295977919877, 4028.642724150686, 4022.7667823689485, 4016.9017606682064, 4011.0476471522798, 4005.2044298091014, 3999.372096512423, 3993.550635023498, 3987.7400329927545, 3981.9402779614447, 3976.151357363286, 3970.3732585260723, 3964.6059686732847, 3958.8494749256733, 3953.1037643028253, 3947.3688237247243, 3941.6446400132827, 3935.9311998938683, 3930.2284899968104, 3924.5364968588856, 3918.8552069248008, 3913.184606548648, 3907.5246819953536, 3901.8754194421067, 3896.2368049797733, 3890.6088246142986, 3884.991464268099, 3879.384709781423, 3873.7885469137173, 3868.202961344967, 3862.627938677027, 3857.063464434937, 3851.509524068221, 3845.96610295218, 3840.433186389162, 3834.9107596098293, 3829.398807774401, 3823.8973159738894, 3818.406269231327, 3812.9256525029664, 3807.455450679486, 3801.9956485871685, 3796.5462309890713, 3791.107182586191, 3785.678488018602, 3780.260131866596, 3774.8520986518065, 3769.454372838311, 3764.066938833736, 3758.689780990342, 3753.322883606097, 3747.9662309257437, 3742.619807141849, 3737.283596395841, 3731.9575827790472, 3726.6417503337075, 3721.336083053979, 3716.040564886945, 3710.7551797335836, 3705.4799114497546, 3700.214743847163, 3694.95966069431, 3689.7146457174367, 3684.4796826014604, 3679.2547549908986, 3674.039846490774, 3668.83494066753, 3663.640021049914, 3658.4550711298666, 3653.2800743633934, 3648.1150141714284, 3642.9598739406883, 3637.8146370245236, 3632.679286743746, 3627.5538063874587, 3622.4381792138765, 3617.332388451131, 3612.236417298069, 3607.150248925046, 3602.0738664747078, 3597.00725306276, 3591.950391778734, 3586.903265686747, 3581.8658578262407, 3576.8381512127266, 3571.8201288385167, 3566.811773673439, 3561.8130686655595, 3556.823996741884, 3551.8445408090556, 3546.874683754047, 3541.9144084448435, 3536.9636977311106, 3532.0225344448695, 3527.090901401151, 3522.1687813986464, 3517.2561572203585, 3512.353011634226, 3507.459327393764, 3502.57508723868, 3497.7002738954916, 3492.8348700781316, 3487.9788584885505, 3483.132221817308, 3478.294942744165, 3473.4670039386533, 3468.6483880606606, 3463.8390777609907, 3459.0390556819184, 3454.248304457753, 3449.466806715377, 3444.6945450747917, 3439.9315021496423, 3435.1776605477576, 3430.43300287166, 3425.6975117190855, 3420.9711696834925, 3416.253959354564, 3411.545863318702, 3406.846864159522, 3402.1569444583342, 3397.476086794624, 3392.8042737465253, 3388.141487891288, 3383.487711805737, 3378.8429280667333, 3374.207119251618, 3369.580267938663, 3364.9623567075064, 3360.3533681395925, 3355.753284818589, 3351.162089330823, 3346.5797642656953, 3342.006292216086, 3337.4416557787745, 3332.885837554832, 3328.3388201500247, 3323.800586175204, 3319.2711182466965, 3314.750398986687, 3310.238411023593, 3305.73513699244, 3301.2405595352325, 3296.7546613013137, 3292.277424947728, 3287.808833139571, 3283.3488685503457, 3278.8975138623055, 3274.4547517667897, 3270.0205649645704, 3265.594936166176, 3261.177848092224, 3256.7692834737404, 3252.3692250524855, 3247.977655581262, 3243.59455782423, 3239.2199145572135, 3234.8537085680027, 3230.495922656652, 3226.1465396357767, 3221.8055423308415, 3217.4729135804473, 3213.1486362366213, 3208.832693165083, 3204.525067245531, 3200.225741371911, 3195.9346984526815, 3191.6519214110795, 3187.377393185384, 3183.1110967291706, 3178.853015011562, 3174.6031310174803, 3170.3614277478987, 3166.127888220076, 3161.9024954678002, 3157.685232541625, 3153.4760825091003, 3149.2750284550048, 3145.0820534815693, 3140.8971407087015, 3136.7202732742044, 3132.5514343339955, 3128.390607062315, 3124.237774651941, 3120.0929203143965, 3115.956027280148, 3111.827078798814, 3107.706058139359, 3103.5929485902875, 3099.487733459839, 3095.3903960761786, 3091.300919787578, 3087.2192879626023, 3083.145483990295, 3079.0794912803462, 3075.021293263278, 3070.9708733906086, 3066.928215135031, 3062.8933019905726, 3058.8661174727613, 3054.8466451187905, 3050.834868487678, 3046.830771160418, 3042.8343367401426, 3038.845548852267, 3034.864391144643, 3030.890847287704, 3026.9249009746136, 3022.9665359213977, 3019.015735867096, 3015.072484573892, 3011.1367658272484, 3007.208563436045, 3003.2878612327045, 2999.374643073319, 2995.4688928377827, 2991.57059442991, 2987.679731777558, 2983.796288832748, 2979.920249571783, 2976.0515979953584, 2972.190318128682, 2968.33639402158, 2964.4898097486057, 2960.650549409153, 2956.8185971275507, 2952.993937053177, 2949.176553360552, 2945.366430249445, 2941.563551944959, 2937.767902697642, 2933.9794667835667, 2930.1982285044314, 2926.424172187646, 2922.6572821864197, 2918.897542879851, 2915.1449386730014, 2911.399453996995, 2907.6610733090884, 2903.9297810927455, 2900.205561857731, 2896.4884001401715, 2892.778280502635, 2889.0751875342075, 2885.3791058505553, 2881.690020094004, 2878.0079149336, 2874.3327750651783, 2870.6645852114266, 2867.00333012195, 2863.3489945733336, 2859.7015633691976, 2856.0610213402642, 2852.4273533444066, 2848.800544266707, 2845.180579019518, 2841.5674425425027, 2837.9611198026987, 2834.36159579456, 2830.768855540011, 2827.1828840884905, 2823.603666516997, 2820.0311879301394, 2816.4654334601723, 2812.9063882670434, 2809.354037538439, 2805.8083664898095, 2802.2693603644216, 2798.73700443339, 2795.211283995711, 2791.6921843783025, 2788.1796909360337, 2784.673789051757, 2781.174464136346, 2777.6817016287155, 2774.195486995856, 2770.7158057328625, 2767.2426433629603, 2763.775985437527, 2760.3158175361227, 2756.86212526651, 2753.414894264674, 2749.97411019485, 2746.53975874954, 2743.1118256495333, 2739.69029664392, 2736.275157510116, 2732.8663940538736, 2729.4639921092994, 2726.0679375388663, 2722.678216233433, 2719.294814112246, 2715.9177171229603, 2712.5469112416463, 2709.1823824727994, 2705.8241168493505, 2702.472100432672, 2699.126319312585, 2695.786759607366, 2692.4534074637545, 2689.126249056954, 2685.8052705906334, 2682.49045829694, 2679.1817984364893, 2675.8792772983757, 2672.5828812001646, 2669.2925964879, 2666.0084095360994, 2662.7303067477505, 2659.4582745543116, 2656.1922994157067, 2652.932367820321, 2649.678466284997, 2646.4305813550286, 2643.188699604155, 2639.952807634552, 2636.7228920768275, 2633.4989395900093, 2630.28093686154, 2627.068870607266, 2623.862727571425, 2620.6624945266353, 2617.468158273889, 2614.279705642533, 2611.0971234902613, 2607.9203987030983, 2604.749518195387, 2601.5844689097707, 2598.4252378171827, 2595.271811916826, 2592.1241782361617, 2588.9823238308836, 2585.8462357849103, 2582.7159012103607, 2579.5913072475396, 2576.472441064913, 2573.359289859092, 2570.251840854814, 2567.150081304919, 2564.0539984903276, 2560.963579720022, 2557.8788123310237, 2554.799683688367, 2551.726181185079, 2548.6582922421544, 2545.596004308534, 2542.539304861074, 2539.4881814045293, 2536.4426214715195, 2533.4026126225076, 2530.368142445773, 2527.3391985573858, 2524.3157686011723, 2521.2978402486983, 2518.2854011992326, 2515.278439179721, 2512.276941944758, 2509.2808972765574, 2506.2902929849215, 2503.3051169072105, 2500.325356908314, 2497.3510008806165, 2494.382036743972, 2491.418452445668, 2488.460235960392, 2485.507375290204, 2482.559858464499, 2479.6176735399804, 2476.680808600617, 2473.7492517576193, 2470.822991149398, 2467.9020149415355, 2464.986311326745, 2462.075868524841, 2459.1706747827006, 2456.270718374231, 2453.37598760033, 2450.4864707888514, 2447.6021562945702, 2444.7230324991424, 2441.849087811071, 2438.9803106656686, 2436.116689525017, 2433.258212877932, 2430.404869239924, 2427.556647153162, 2424.713535186429, 2421.875521935092, 2419.042596021053, 2416.2147460927213, 2413.3919608249616, 2410.5742289190634, 2407.761539102694, 2404.9538801298654, 2402.15124078089, 2399.353609862337 ] }, { "legendgroup": "Constant Altitude", "line": { "color": "#EF553B", "width": 4 }, "mode": "lines", "name": "Constant Altitude - 6km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 5028.760049736391, 5050.707378541608, 5072.393854248499, 5093.821973398564, 5114.994176208405, 5135.912848944147, 5156.580326179386, 5176.998892943291, 5197.170786764975, 5217.098199619875, 5236.783279783582, 5256.228133598058, 5275.434827155028, 5294.405387900931, 5313.141806167566, 5331.646036632327, 5349.919999711681, 5367.9655828913155, 5385.784641996152, 5403.379002403314, 5420.750460200833, 5437.900783294853, 5454.831712467802, 5471.544962389971, 5488.04222258671, 5504.3251583634155, 5520.395411690276, 5536.254602048705, 5551.904327241229, 5567.34616416657, 5582.581669561481, 5597.6123807109, 5612.439816127827, 5627.065476204336, 5641.4908438349685, 5655.717385013776, 5669.746549406168, 5683.579770896658, 5697.218468113595, 5710.664044931853, 5723.917890954427, 5736.9813819738865, 5749.855880414475, 5762.542735755752, 5775.0432849385115, 5787.358852753724, 5799.490752215247, 5811.440284916924, 5823.208741374786, 5834.797401354917, 5846.207534187591, 5857.440399068244, 5868.497245345825, 5879.379312799031, 5890.087831900897, 5900.624024072257, 5910.989101924475, 5921.184269491914, 5931.210722454531, 5941.069648350994, 5950.762226782714, 5960.28962960913, 5969.653021134612, 5978.85355828731, 5987.892390790261, 5996.77066132505, 6005.489505688366, 6014.050052941655, 6022.453425554212, 6030.700739539944, 6038.793104588032, 6046.731624187776, 6054.517395747802, 6062.151510709903, 6069.635054657684, 6076.969107420234, 6084.1547431710305, 6091.19303052224, 6098.085032614622, 6104.831807203192, 6111.434406738817, 6117.893878445932, 6124.21126439647, 6130.387601580224, 6136.423921971751, 6142.321252593955, 6148.080615578503, 6153.703028223175, 6159.18950304631, 6164.541047838423, 6169.7586657111515, 6174.843355143615, 6179.796110026309, 6184.61791970262, 6189.309769008094, 6193.872638307511, 6198.307503529902, 6202.615336201562, 6206.797103477169, 6210.8537681690905, 6214.786288774929, 6218.595619503436, 6222.28271029882, 6225.848506863542, 6229.293950679679, 6232.6199790288965, 6235.827525011114, 6238.917517561917, 6241.890881468792, 6244.748537386207, 6247.491401849631, 6250.120387288542, 6252.636402038423, 6255.040350351897, 6257.333132408943, 6259.515644326308, 6261.588778166136, 6263.553421943865, 6265.410459635416, 6267.160771183747, 6268.805232504775, 6270.344715492732, 6271.780088024965, 6273.112213966248, 6274.341953172609, 6275.470161494701, 6276.497690780802, 6277.4253888793955, 6278.254099641411, 6278.984662922155, 6279.617914582924, 6280.15468649235, 6280.595806527513, 6280.942098574809, 6281.19438253063, 6281.353474301854, 6281.420185806184, 6281.395324972362, 6281.27969574022, 6281.074098060678, 6280.779327895636, 6280.396177217795, 6279.925434010443, 6279.367882267192, 6278.724301991709, 6277.995469197427, 6277.18215590728, 6276.285130153441, 6275.3051559771075, 6274.242993428333, 6273.099398565902, 6271.875123457282, 6270.570916178654, 6269.187520815027, 6267.725677460444, 6266.186122218305, 6264.5695872017905, 6262.876800534422, 6261.108486350725, 6259.265364797059, 6257.348152032573, 6255.3575602303035, 6253.294297578444, 6251.159068281757, 6248.952572563162, 6246.675506665495, 6244.328562853429, 6241.912429415587, 6239.4277906668285, 6236.875326950725, 6234.255714642226, 6231.569626150511, 6228.817729922044, 6226.000690443821, 6223.11916824681, 6220.173819909611, 6217.1652980622985, 6214.094251390482, 6210.9613246395675, 6207.767158619226, 6204.5123902080695, 6201.197652358538, 6197.823574101997, 6194.3907805540375, 6190.899892919998, 6187.351528500674, 6183.746300698268, 6180.084819022526, 6176.367689097083, 6172.595512666041, 6168.76888760072, 6164.8884079066365, 6160.954663730698, 6156.968241368563, 6152.929723272265, 6148.839688057971, 6144.698710513999, 6140.507361608992, 6136.266208500328, 6131.975814542689, 6127.63673929685, 6123.249538538656, 6118.814764268182, 6114.332964719088, 6109.804684368163, 6105.230463945047, 6100.610840442132, 6095.946347124671, 6091.237513541015, 6086.48486553308, 6081.688925246953, 6076.85021114367, 6071.969238010185, 6067.046516970474, 6062.082555496834, 6057.077857421323, 6052.032922947351, 6046.948248661456, 6041.8243275452, 6036.6616489872395, 6031.460698795532, 6026.221959209684, 6020.945908913457, 6015.633023047388, 6010.283773221575, 6004.898627528573, 5999.478050556433, 5994.022503401863, 5988.532443683521, 5983.0083255554255, 5977.450599720481, 5971.859713444139, 5966.236110568148, 5960.580231524436, 5954.892513349086, 5949.173389696424, 5943.423290853218, 5937.642643752957, 5931.831871990252, 5925.991395835303, 5920.121632248489, 5914.2229948950235, 5908.295894159701, 5902.340737161737, 5896.357927769684, 5890.347866616413, 5884.310951114194, 5878.24757546983, 5872.158130699865, 5866.043004645877, 5859.902581989804, 5853.737244269363, 5847.54736989351, 5841.333334157967, 5835.095509260799, 5828.834264318045, 5822.549965379398, 5816.242975443937, 5809.913654475892, 5803.562359420473, 5797.189444219714, 5790.79525982837, 5784.380154229853, 5777.944472452193, 5771.488556584022, 5765.012745790611, 5758.517376329915, 5752.0027815686435, 5745.4692919983545, 5738.917235251585, 5732.346936117969, 5725.758716560395, 5719.152895731178, 5712.529789988214, 5705.889712911188, 5699.232975317765, 5692.559885279769, 5685.870748139412, 5679.165866525492, 5672.445540369591, 5665.710066922285, 5658.959740769353, 5652.194853847963, 5645.415695462865, 5638.622552302571, 5631.81570845553, 5624.995445426281, 5618.162042151602, 5611.31577501664, 5604.456917871021, 5597.585742044946, 5590.702516365276, 5583.807507171567, 5576.900978332121, 5569.983191259981, 5563.0544049289165, 5556.114875889376, 5549.164858284419, 5542.204603865606, 5535.234362008865, 5528.254379730332, 5521.26490170214, 5514.266170268193, 5507.2584254598905, 5500.241905011821, 5493.216844377414, 5486.1834767445625, 5479.142033051184, 5472.092742000762, 5465.035830077834, 5457.971521563437, 5450.900038550506, 5443.821600959238, 5436.736426552388, 5429.644730950549, 5422.546727647343, 5415.442628024607, 5408.332641367492, 5401.216974879529, 5394.095833697641, 5386.969420907103, 5379.837937556444, 5372.701582672299, 5365.560553274197, 5358.415044389319, 5351.265249067157, 5344.111358394168, 5336.953561508314, 5329.792045613596, 5322.626995994494, 5315.45859603036, 5308.2870272097525, 5301.112469144708, 5293.935099584944, 5286.755094432024, 5279.572627753417, 5272.387871796549, 5265.2009970027475, 5258.012172021137, 5250.821563722479, 5243.629337212932, 5236.43565584777, 5229.240681244996, 5222.044573298935, 5214.847490193731, 5207.649588416786, 5200.451022772139, 5193.251946393767, 5186.052510758825, 5178.852865700816, 5171.653159422704, 5164.453538509932, 5157.254147943405, 5150.055131112382, 5142.856629827305, 5135.658784332566, 5128.461733319187, 5121.26561393746, 5114.0705618094835, 5106.876711041659, 5099.684194237096, 5092.493142507956, 5085.30368548774, 5078.1159513434795, 5070.930066787869, 5063.746157091341, 5056.5643460940555, 5049.384756217815, 5042.20750847793, 5035.032722494996, 5027.860516506601, 5020.6910073789795, 5013.524310618568, 5006.360540383524, 4999.199809495134, 4992.042229449203, 4984.887910427316, 4977.736961308069, 4970.589489678232, 4963.445601843799, 4956.3054028410215, 4949.16899644734, 4942.036485192243, 4934.907970368085, 4927.783552040802, 4920.663329060567, 4913.547399072398, 4906.4358585266655, 4899.32880268954, 4892.226325653387, 4885.12852034707, 4878.035478546199, 4870.947290883301, 4863.864046857936, 4856.7858348467225, 4849.712742113318, 4842.644854818317, 4835.582258029086, 4828.525035729521, 4821.473270829764, 4814.427045175819, 4807.386439559119, 4800.351533726027, 4793.3224063872685, 4786.299135227287, 4779.281796913542, 4772.270467105756, 4765.265220465061, 4758.266130663108, 4751.273270391096, 4744.286711368755, 4737.306524353232, 4730.332779147943, 4723.365544611347, 4716.404888665652, 4709.45087830547, 4702.503579606393, 4695.5630577335205, 4688.629376949913, 4681.7026006249835, 4674.782791242832, 4667.870010410523, 4660.96431886628, 4654.065776487631, 4647.174442299512, 4640.29037448226, 4633.413630379602, 4626.544266506544, 4619.68233855721, 4612.8279014126265, 4605.981009148448, 4599.14171504261, 4592.310071582939, 4585.486130474688, 4578.669942648034, 4571.861558265492, 4565.0610267292905, 4558.2683966886825, 4551.483716047199, 4544.707031969839, 4537.938390890224, 4531.177838517667, 4524.425419844205, 4517.681179151574, 4510.94516001812, 4504.217405325665, 4497.4979572663015, 4490.7868573491605, 4484.08414640709, 4477.389864603317, 4470.704051438018, 4464.026745754868, 4457.3579857475215, 4450.6978089660315, 4444.046252323245, 4437.403352101113, 4430.7691439569735, 4424.143662929766, 4417.526943446212, 4410.919019326928, 4404.319923792499, 4397.729689469495, 4391.14834839644, 4384.575932029741, 4378.012471249542, 4371.457996365563, 4364.912537122861, 4358.376122707565, 4351.848781752534, 4345.330542343015, 4338.821432022193, 4332.321477796752, 4325.830706142345, 4319.34914300904, 4312.8768138267205, 4306.4137435104285, 4299.95995646567, 4293.515476593671, 4287.080327296597, 4280.654531482712, 4274.238111571512, 4267.8310894988, 4261.433486721726, 4255.045324223776, 4248.666622519728, 4242.29740166055, 4235.937681238275, 4229.5874803908155, 4223.246817806748, 4216.915711730052, 4210.594179964805, 4204.282239879841, 4197.979908413365, 4191.687202077528, 4185.404136962966, 4179.130728743287, 4172.866992679537, 4166.61294362461, 4160.368596027622, 4154.133963938256, 4147.909061011061, 4141.693900509714, 4135.48849531124, 4129.2928579102, 4123.107000422846, 4116.930934591225, 4110.764671787261, 4104.608223016787, 4098.461598923553, 4092.324809793191, 4086.1978655571484, 4080.080775796574, 4073.9735497461947, 4067.876196298127, 4061.7887240056725, 4055.711141087078, 4049.6434554292528, 4043.5856745914616, 4037.5378058089786, 4031.4998559967084, 4025.471831752775, 4019.453739362079, 4013.4455847998233, 4007.4473737349986, 4001.459111533849, 3995.4808032632973, 3989.512453694339, 3983.5540673054115, 3977.605648285725, 3971.667200538567, 3965.7387276845743, 3959.820233064974, 3953.9117197448013, 3948.013190516075, 3942.1246479009546, 3936.246094154866, 3930.377531269587, 3924.5189609763283, 3918.6703847487543, 3912.8318038060024, 3907.003219115663, 3901.184631396726, 3895.376041122514, 3889.5774485235725, 3883.7888535905486, 3878.010256077023, 3872.241655502338, 3866.4830511543814, 3860.7344420923514, 3854.995827149495, 3849.2672049358152, 3843.548573840766, 3837.8399320359044, 3832.1412774775285, 3826.4526079092857, 3820.7739208647654, 3815.1052136700487, 3809.4464834462533, 3803.797727112041, 3798.158941386105, 3792.5301227896384, 3786.9112676487694, 3781.3023720969827, 3775.7034320775088, 3770.1144433457007, 3764.5354014713753, 3758.9663018411434, 3753.40713966071, 3747.857909957156, 3742.318607581196, 3736.789227209415, 3731.2697633464845, 3725.760210327354, 3720.260562319423, 3714.770813324697, 3709.2909571819073, 3703.8209875686307, 3698.360898003374, 3692.9106818476384, 3687.4703323079734, 3682.039842438001, 3676.6192051404264, 3671.208413169022, 3665.807459130602, 3660.4163354869675, 3655.035034556835, 3649.6635485177558, 3644.3018694079965, 3638.9499891284217, 3633.607899444347, 3628.2755919873725, 3622.9530582572033, 3617.6402896234495, 3612.337277327411, 3607.044012483838, 3601.7604860826787, 3596.4866889908126, 3591.222611953762, 3585.96824559738, 3580.723580429541, 3575.488606841792, 3570.2633151110026, 3565.04769540099, 3559.841737764136, 3554.6454321429783, 3549.458768371788, 3544.281736178142, 3539.114325184461, 3533.956524909548, 3528.808324770104, 3523.6697140822253, 3518.540682062897, 3513.4212178314565, 3508.311310411053, 3503.210948730092, 3498.1201216236527, 3493.0388178349094, 3487.967026016526, 3482.904734732035, 3477.851932457214, 3472.8086075814317, 3467.7747484089987, 3462.750343160489, 3457.735379974053, 3452.7298469067214, 3447.7337319356902, 3442.7470229595924, 3437.769707799761, 3432.801774201475, 3427.8432098351927, 3422.8940022977768, 3417.9541391136977, 3413.023607736234, 3408.1023955486557, 3403.190489865393, 3398.2878779331986, 3393.3945469322944, 3388.510483977505, 3383.635676119379, 3378.7701103453055, 3373.9137735806135, 3369.0666526896516, 3364.2287344768774, 3359.4000056879127, 3354.5804530106, 3349.77006307605, 3344.968822459668, 3340.1767176821772, 3335.3937352106295, 3330.619861459402, 3325.8550827911895, 3321.0993855179804, 3316.352755902024, 3311.6151801567885, 3306.88664444791, 3302.167134894129, 3297.4566375682134, 3292.7551384978806, 3288.0626236667026, 3283.379079015002, 3278.704490440741, 3274.0388438004043, 3269.3821249098564, 3264.7343195452104, 3260.0954134436756, 3255.4653923043975, 3250.8442417892875, 3246.231947523848, 3241.628495097987, 3237.033870066817, 3232.448057951458, 3227.871044239819, 3223.3028143873785, 3218.7433538179566, 3214.1926479244717, 3209.650682069695, 3205.117441587001, 3200.592911781095, 3196.0770779287454, 3191.569925279507, 3187.071439056428, 3182.581604456756, 3178.100406652638, 3173.627830791804, 3169.163861998249, 3164.7084853729093, 3160.2616859943273, 3155.8234489193073, 3151.393759183566, 3146.972601802383, 3142.559961771229, 3138.155824066399, 3133.7601736456336, 3129.3729954487326, 3124.9942743981646, 3120.6239953996705, 3116.2621433428503, 3111.908703101757, 3107.5636595354754, 3103.2269974886945, 3098.8987017922773, 3094.5787572638205, 3090.2671487082093, 3085.9638609181634, 3081.6688786747804, 3077.382186748075, 3073.1037698975, 3068.833612872474, 3064.571700412899, 3060.3180172496714, 3056.072548105181, 3051.8352776938204, 3047.6061907224685, 3043.385271890981, 3039.172505892675, 3034.967877414801, 3030.7713711390143, 3026.58297174184, 3022.4026638951336, 3018.2304322665277, 3014.0662615198908, 3009.9101363157633, 3005.762041311794, 3001.6219611631773, 2997.4898805230787, 2993.3657840430515, 2989.2496563734617, 2985.1414821638955, 2981.041246063565, 2976.948932721712, 2972.8645267880056, 2968.78801291293, 2964.719375748178, 2960.6585999470276, 2956.605670164722, 2952.5605710588466, 2948.523287289689, 2944.4938035206087, 2940.472104418398, 2936.4581746536305, 2932.4519989010173, 2928.4535618397495, 2924.462848153842, 2920.479842532471, 2916.5045296703047, 2912.5368942678315, 2908.5769210316903, 2904.6245946749855, 2900.679899917607, 2896.742821486538, 2892.813344116169, 2888.891452548599, 2884.9771315339353, 2881.070365830591, 2877.1711402055807, 2873.2794394348043, 2869.3952483033336, 2865.5185516056977, 2861.649334146154, 2857.7875807389664, 2853.9332762086774, 2850.0864053903697, 2846.246953129934, 2842.4149042843246, 2838.5902437218197, 2834.772956322271, 2830.963026977357, 2827.1604405908224, 2823.365182078729, 2819.5772363696865, 2815.796588405097, 2812.02322313938, 2808.257125540208, 2804.4982805887294, 2800.7466732797952, 2797.0022886221723, 2793.26511163877, 2789.5351273668475, 2785.812320858225, 2782.0966771794974, 2778.3881814122324, 2774.6868186531765, 2770.992574014453, 2767.305432623761, 2763.6253796245646, 2759.952400176288, 2756.2864794544994, 2752.6276026510996, 2748.975754974504, 2745.3309216498205, 2741.6930879190286, 2738.0622390411527, 2734.438360292435, 2730.8214369665047, 2727.2114543745442, 2723.608397845454, 2720.0122527260132, 2716.423004381043, 2712.840638193556, 2709.2651395649177, 2705.6964939149957, 2702.134686682309, 2698.579703324176, 2695.031529316859, 2691.490150155709, 2687.955551355302, 2684.4277184495795, 2680.906636991988, 2677.392292555604, 2673.884670733276, 2670.3837571377444, 2666.8895374017757, 2663.4019971782836, 2659.9211221404553, 2656.4468979818685, 2652.9793104166147, 2649.5183451794114, 2646.063988025724, 2642.616224731869, 2639.1750410951354, 2635.740422933885, 2632.312356087667, 2628.8908264173147, 2625.475819805061, 2622.0673221546235, 2618.665319391324, 2615.269797462166, 2611.8807423359467, 2608.4981400033444, 2605.1219764770094, 2601.752237791658, 2598.388910004164, 2595.031979193639, 2591.6814314615226, 2588.33725293167, 2584.9994297504236, 2581.667948086706, 2578.3427941320897, 2575.0239541008827, 2571.711414230197, 2568.405160780027, 2565.105180033321, 2561.8114582960575, 2558.523981897304, 2555.2427371892995, 2551.9677105475093, 2548.6988883706963, 2545.436257080985, 2542.1798031239214, 2538.9295129685365, 2535.6853731074084, 2532.4473700567123, 2529.2154903562864, 2525.989720569682, 2522.770047284222, 2519.5564571110503, 2516.348936685186, 2513.147472665571, 2509.952051735123, 2506.762660600781, 2503.57928599355, 2500.401914668553, 2497.2305334050666, 2494.0651290065716, 2490.90568830079, 2487.7521981397276, 2484.604645399712, 2481.463016981433, 2478.327299809977, 2475.197480834868, 2472.073547030098, 2468.955485394159, 2465.843282950083, 2462.7369267454665, 2459.6364038525066, 2456.5417013680267, 2453.4528064135066, 2450.36970613511, 2447.2923877037106, 2444.220838314918, 2441.155045189102, 2438.0949955714163, 2435.0406767318213, 2431.9920759651027, 2428.9491805908997, 2425.911977953713, 2422.8804554229373, 2419.854600392868, 2416.834400282724, 2413.8198425366595, 2410.810914623787, 2407.807604038181, 2404.809898298901, 2401.8177849499984, 2398.8312515605317, 2395.850285724574, 2392.8748750612244, 2389.9050072146206, 2386.9406698539433, 2383.9818506734246, 2381.028537392358, 2378.0807177551005, 2375.138379531081, 2372.2015105148016, 2369.2700985258502, 2366.3441314088873, 2363.423597033668, 2360.5084832950306, 2357.5987781129006, 2354.694469432292, 2351.7955452233077, 2348.901993481139, 2346.013802226061, 2343.1309595034304, 2340.253453383687, 2337.3812719623443, 2334.5144033599877, 2331.652835722275, 2328.7965572199187, 2325.9455560486917, 2323.0998204294124, 2320.2593386079416, 2317.4240988551746, 2314.5940894670307, 2311.769298764444, 2308.949715093357, 2306.1353268247053, 2303.3261223544105, 2300.5220901033686, 2297.7232185174357, 2294.929496067419, 2292.14091124906, 2289.3574525830245, 2286.5791086148856, 2283.805867915113, 2281.037719079052, 2278.274650726915, 2275.5166515037618, 2272.7637100794823, 2270.0158151487803, 2267.2729554311572, 2264.535119670894, 2261.802296637033, 2259.0744751233565, 2256.351643948369, 2253.633791955283, 2250.9209080119867, 2248.2129810110373, 2245.509999869628, 2242.811953529577, 2240.1188309572967, 2237.430621143779, 2234.747313104568, 2232.0688958797377, 2229.3953585338704, 2226.7266901560333, 2224.0628798597495, 2221.403916782982, 2218.7497900881, 2216.1004889618575, 2213.4560026153736, 2210.8163202840938, 2208.181431227776, 2205.551324730458, 2202.9259901004284, 2200.305416670206, 2197.6895937965073, 2195.07851086022, 2192.4721572663757, 2189.870522444119, 2187.2735958466824, 2184.6813669513517, 2182.0938252594433, 2179.5109602962675, 2176.932761611106, 2174.359218777176, 2171.7903213915997, 2169.2260590753776, 2166.6664214733532, 2164.111398254185, 2161.5609791103116, 2159.0151537579227, 2156.4739119369247, 2153.937243410911, 2151.4051379671246, 2148.877585416433, 2146.3545755932873, 2143.8360983556904, 2141.322143585169, 2138.812701186734, 2136.307761088848, 2133.8073132433924, 2131.311347625629, 2128.8198542341734, 2126.3328230909506, 2123.8502442411664, 2121.372107753269, 2118.8984037189143, 2116.429122252933, 2113.9642534932896 ] }, { "legendgroup": "Constant Speed", "line": { "color": "#00CC96", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 8km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 6395.310141708098, 6423.221589680003, 6450.801298525617, 6478.052443213922, 6504.978127082886, 6531.581384859121, 6557.865185529421, 6583.832435072616, 6609.485979059474, 6634.828605128029, 6659.863045341154, 6684.591978432776, 6709.018031948695, 6733.1437842876885, 6756.9717666481065, 6780.50446488492, 6803.744321281871, 6826.693736243077, 6849.355069908191, 6871.73064369495, 6893.822741772796, 6915.633612470933, 6937.165469624067, 6958.420493858868, 6979.400833824011, 7000.108607366518, 7020.545902656931, 7040.714779265759, 7060.617269193457, 7080.25537785613, 7099.631085028962, 7118.746345749346, 7137.603091181526, 7156.203229444511, 7174.548646404878, 7192.641206436059, 7210.482753145581, 7228.075110071672, 7245.420081350573, 7262.519452355842, 7279.374990310821, 7295.988444875477, 7312.36154870866, 7328.496018006854, 7344.393553020404, 7360.055838548157, 7375.484544411448, 7390.681325908252, 7405.647824248368, 7420.385666970379, 7434.896468341158, 7449.181829738634, 7463.2433400184955, 7477.082575865488, 7490.701102129917, 7504.100472149969, 7517.282228060426, 7530.247901088288, 7542.9990118358655, 7555.5370705518135, 7567.863577390596, 7579.9800226608595, 7591.887887063105, 7603.588641917159, 7615.083749379753, 7626.374662652688, 7637.462826181908, 7648.34967584784, 7659.0366391473635, 7669.525135367731, 7679.816575752755, 7689.912363661554, 7699.813894720183, 7709.522556966387, 7719.039730987778, 7728.366790053684, 7737.505100240924, 7746.456020553737, 7755.220903038116, 7763.801092890752, 7772.197928562808, 7780.412741858733, 7788.446858030306, 7796.301595866115, 7803.978267776631, 7811.478179875074, 7818.802632054254, 7825.952918059495, 7832.930325557881, 7839.7361362039055, 7846.371625701714, 7852.838063864054, 7859.136714668111, 7865.268836308299, 7871.235681246196, 7877.038496257697, 7882.678522477551, 7888.156995441337, 7893.475145125047, 7898.634195982347, 7903.635366979622, 7908.479871628918, 7913.168918018861, 7917.7037088436555, 7922.085441430239, 7926.3153077636825, 7930.39449451095, 7934.324183043016, 7938.10554945552, 7941.73976458796, 7945.227994041499, 7948.571398195519, 7951.771132222886, 7954.828346104093, 7957.744184640258, 7960.519787465103, 7963.156289055923, 7965.654818743616, 7968.0165007218475, 7970.242454055368, 7972.333792687556, 7974.29162544722, 7976.117056054713, 7977.811183127404, 7979.375100184551, 7980.8098956516005, 7982.11665286398, 7983.296450070385, 7984.350360435653, 7985.279452043186, 7986.084787897016, 7986.7674259235255, 7987.328418972842, 7987.768814819963, 7988.0896561656, 7988.291980636822, 7988.3768207874755, 7988.345204098449, 7988.198152977761, 7987.93668476053, 7987.561811708859, 7987.074541011597, 7986.475874784069, 7985.766810067742, 7984.948338829883, 7984.021447963193, 7982.987119285463, 7981.8463295392485, 7980.600050391601, 7979.249248433836, 7977.794885181389, 7976.237917073752, 7974.579295474509, 7972.819966671486, 7970.960871877007, 7969.002947228308, 7966.947123788078, 7964.794327545167, 7962.545479415435, 7960.201495242801, 7957.763285800459, 7955.231756792286, 7952.607808854437, 7949.892337557155, 7947.086233406787, 7944.190381848021, 7941.205663266329, 7938.132952990648, 7934.973121296302, 7931.727033408138, 7928.395549503918, 7924.979524717948, 7921.479809144968, 7917.897247844272, 7914.2326808440885, 7910.4869431462375, 7906.660864731007, 7902.75527056233, 7898.7709805931945, 7894.70880977133, 7890.569568045159, 7886.354060369997, 7882.063086714551, 7877.697442067657, 7873.257916445288, 7868.7452948978425, 7864.160357517682, 7859.503879446953, 7854.776630885655, 7849.979377099999, 7845.1128784309985, 7840.177890303347, 7835.175163234555, 7830.105442844332, 7824.969469864258, 7819.767980147665, 7814.501704679829, 7809.171369588374, 7803.777696153946, 7798.32140082113, 7792.80319520963, 7787.2237861256635, 7781.58387557363, 7775.884160768006, 7770.12533414547, 7764.308083377279, 7758.433091381867, 7752.50103633767, 7746.512591696183, 7740.468426195244, 7734.369203872536, 7728.215584079289, 7722.008221494227, 7715.7477661377, 7709.434863386041, 7703.070153986118, 7696.654274070088, 7690.1878551703485, 7683.67152423469, 7677.10590364163, 7670.491611215948, 7663.829260244382, 7657.1194594915305, 7650.362813215915, 7643.55992118623, 7636.711378697744, 7629.817776588879, 7622.87970125796, 7615.897734680107, 7608.8724544243, 7601.804433670572, 7594.694241227388, 7587.542441549127, 7580.3495947537385, 7573.116256640517, 7565.842978708023, 7558.530308172132, 7551.178787984192, 7543.788956849353, 7536.3613492449485, 7528.89649543906, 7521.394921509149, 7513.85714936082, 7506.283696746684, 7498.675077285329, 7491.03180048038, 7483.3543717396715, 7475.64329239449, 7467.899059718931, 7460.1221669493225, 7452.31310330374, 7444.472354001601, 7436.600400283334, 7428.697719430121, 7420.764784783707, 7412.802065766279, 7404.810027900412, 7396.789132829066, 7388.73983833565, 7380.662598364132, 7372.557863039207, 7364.426078686512, 7356.267687852876, 7348.0831293266365, 7339.872838157964, 7331.637245679247, 7323.376779525506, 7315.09186365483, 7306.782918368846, 7298.450360333221, 7290.094602598175, 7281.716054619025, 7273.315122276743, 7264.892207898516, 7256.447710278343, 7247.98202469763, 7239.49554294578, 7230.988653340809, 7222.461740749957, 7213.915186610301, 7205.349368949341, 7196.764662405637, 7188.161438249389, 7179.540064403018, 7170.9009054617645, 7162.244322714238, 7153.570674162968, 7144.880314544951, 7136.173595352141, 7127.450864851965, 7118.712468107769, 7109.958746999289, 7101.190040243037, 7092.406683412714, 7083.609008959555, 7074.7973462326545, 7065.9720214992585, 7057.133357965024, 7048.281675794218, 7039.417292129917, 7030.5405211141315, 7021.6516739078925, 7012.751058711317, 7003.8389807836, 6994.915742462974, 6985.981643186616, 6977.036979510508, 6968.08204512924, 6959.117130895764, 6950.142524841095, 6941.1585121939515, 6932.165375400345, 6923.163394143103, 6914.152845361347, 6905.134003269901, 6896.107139378621, 6887.072522511713, 6878.03041882692, 6868.9810918346975, 6859.924802417299, 6850.8618088478, 6841.792366809043, 6832.716729412546, 6823.635147217286, 6814.547868248482, 6805.455138016236, 6796.357199534155, 6787.254293337867, 6778.1466575034865, 6769.034527665975, 6759.918137037465, 6750.797716425471, 6741.6734942510475, 6732.545696566855, 6723.414547075164, 6714.280267145745, 6705.14307583373, 6696.003189897357, 6686.860823815629, 6677.716189805926, 6668.569497841497, 6659.420955668909, 6650.270768825361, 6641.119140655972, 6631.966272330937, 6622.812362862633, 6613.657609122617, 6604.502205858557, 6595.346345711057, 6586.190219230417, 6577.0340148932955, 6567.877919119286, 6558.722116287405, 6549.566788752502, 6540.412116861574, 6531.258278969989, 6522.105451457638, 6512.953808744975, 6503.8035233089895, 6494.654765699086, 6485.50770455286, 6476.362506611805, 6467.219336736923, 6458.078357924242, 6448.939731320244, 6439.803616237218, 6430.670170168504, 6421.539548803655, 6412.411906043519, 6403.287394015221, 6394.166163087051, 6385.048361883282, 6375.934137298874, 6366.823634514106, 6357.71699700911, 6348.614366578327, 6339.515883344851, 6330.421685774709, 6321.331910691034, 6312.2466932881525, 6303.166167145597, 6294.090464242005, 6285.019714968939, 6275.95404814464, 6266.893591027654, 6257.838469330386, 6248.7888072325895, 6239.744727394723, 6230.706350971247, 6221.673797623839, 6212.647185534495, 6203.626631418564, 6194.61225053769, 6185.604156712654, 6176.602462336156, 6167.60727838548, 6158.6187144351015, 6149.636878669178, 6140.661877893975, 6131.693817550209, 6122.732801725283, 6113.778933165457, 6104.832313287921, 6095.893042192797, 6086.961218675038, 6078.036940236253, 6069.120303096459, 6060.21140220572, 6051.310331255735, 6042.4171826913125, 6033.532047721796, 6024.655016332369, 6015.786177295317, 6006.92561818117, 5998.073425369787, 5989.2296840613635, 5980.394478287325, 5971.567890921189, 5962.750003689308, 5953.940897181532, 5945.14065086183, 5936.349343078794, 5927.567051076071, 5918.79385100273, 5910.0298179235415, 5901.27502582918, 5892.52954764635, 5883.7934552478355, 5875.0668194624695, 5866.34971008503, 5857.642195886062, 5848.944344621616, 5840.256223042927, 5831.577896905989, 5822.909430981099, 5814.250889062282, 5805.602333976668, 5796.963827593798, 5788.335430834837, 5779.717203681733, 5771.109205186296, 5762.511493479205, 5753.924125778948, 5745.347158400687, 5736.780646765045, 5728.224645406849, 5719.679207983766, 5711.1443872848995, 5702.620235239307, 5694.1068029244425, 5685.604140574537, 5677.112297588916, 5668.631322540236, 5660.16126318267, 5651.702166460013, 5643.254078513723, 5634.8170446909135, 5626.391109552248, 5617.976316879802, 5609.572709684841, 5601.180330215544, 5592.799219964648, 5584.42941967705, 5576.070969357335, 5567.723908277236, 5559.388274983046, 5551.064107302948, 5542.75144235431, 5534.450316550886, 5526.16076561, 5517.882824559616, 5509.6165277453965, 5501.361908837676, 5493.119000838375, 5484.887836087865, 5476.668446271777, 5468.460862427737, 5460.265114952058, 5452.081233606367, 5443.909247524183, 5435.749185217431, 5427.601074582901, 5419.464942908657, 5411.34081688038, 5403.228722587679, 5395.128685530311, 5387.0407306243815, 5378.964882208474, 5370.901164049728, 5362.849599349868, 5354.810210751175, 5346.783020342412, 5338.768049664683, 5330.765319717272, 5322.774850963394, 5314.796663335911, 5306.830776243013, 5298.877208573819, 5290.935978703949, 5283.007104501047, 5275.090603330243, 5267.1864920595735, 5259.294787065358, 5251.41550423752, 5243.548658984859, 5235.694266240293, 5227.852340466025, 5220.022895658694, 5212.205945354455, 5204.401502634032, 5196.609580127707, 5188.830190020281, 5181.063344055989, 5173.309053543349, 5165.567329360002, 5157.838181957472, 5150.121621365916, 5142.4176571988055, 5134.726298657577, 5127.047554536236, 5119.381433225933, 5111.727942719467, 5104.0870906157825, 5096.458884124407, 5088.843330069839, 5081.240434895924, 5073.65020467016, 5066.072645087989, 5058.5077614770225, 5050.955558801258, 5043.416041665224, 5035.889214318123, 5028.375080657898, 5020.873644235293, 5013.384908257856, 5005.9088755939165, 4998.445548776515, 4990.994930007311, 4983.557021160434, 4976.131823786317, 4968.719339115492, 4961.31956806233, 4953.932511228779, 4946.558168908034, 4939.196541088199, 4931.847627455893, 4924.511427399843, 4917.187940014419, 4909.877164103159, 4902.579098182251, 4895.293740483969, 4888.021088960107, 4880.761141285346, 4873.513894860616, 4866.279346816408, 4859.057494016072, 4851.848333059062, 4844.651860284161, 4837.468071772692, 4830.296963351665, 4823.1385305969125, 4815.992768836203, 4808.859673152308, 4801.739238386041, 4794.631459139287, 4787.536329777972, 4780.453844435036, 4773.383997013347, 4766.326781188608, 4759.282190412236, 4752.25021791419, 4745.230856705806, 4738.224099582572, 4731.229939126898, 4724.248367710849, 4717.279377498854, 4710.322960450391, 4703.379108322638, 4696.447812673106, 4689.529064862246, 4682.622856056021, 4675.729177228471, 4668.848019164226, 4661.979372461026, 4655.123227532188, 4648.279574609066, 4641.448403743482, 4634.6297048101305, 4627.823467508955, 4621.029681367525, 4614.248335743352, 4607.4794198262125, 4600.722922640435, 4593.97883304717, 4587.247139746627, 4580.5278312803, 4573.820896033174, 4567.126322235891, 4560.4440979669125, 4553.774211154655, 4547.116649579599, 4540.471400876381, 4533.838452535869, 4527.217791907208, 4520.60940619985, 4514.013282485565, 4507.429407700425, 4500.857768646779, 4494.298351995196, 4487.751144286397, 4481.216131933162, 4474.693301222225, 4468.182638316137, 4461.684129255118, 4455.197759958906, 4448.723516228545, 4442.261383748203, 4435.81134808694, 4429.373394700462, 4422.9475089328735, 4416.5336760183945, 4410.131881083065, 4403.742109146437, 4397.364345123238, 4390.998573825035, 4384.644779961864, 4378.302948143847, 4371.973062882806, 4365.655108593832, 4359.349069596871, 4353.05493011827, 4346.772674292315, 4340.5022861627485, 4334.243749684284, 4327.997048724088, 4321.762167063258, 4315.539088398278, 4309.327796342467, 4303.1282744274, 4296.940506104331, 4290.764474745583, 4284.600163645936, 4278.447556023997, 4272.306635023551, 4266.177383714906, 4260.059785096214, 4253.953822094791, 4247.859477568406, 4241.776734306575, 4235.705575031822, 4229.645982400949, 4223.597939006266, 4217.561427376833, 4211.536429979673, 4205.522929220971, 4199.5209074472805, 4193.530346946686, 4187.551229949981, 4181.583538631816, 4175.627255111839, 4169.682361455826, 4163.748839676808, 4157.826671736151, 4151.915839544671, 4146.01632496371, 4140.128109806197, 4134.251175837716, 4128.38550477754, 4122.53107829968, 4116.687878033896, 4110.855885566714, 4105.0350824424295, 4099.225450164092, 4093.426970194488, 4087.6396239571063, 4081.863392837097, 4076.0982581822254, 4070.3442013037925, 4064.6012034775763, 4058.869245944741, 4053.1483099127477, 4047.4383765562384, 4041.7394270179366, 4036.051442409513, 4030.3744038124573, 4024.7082922789273, 4019.053088832608, 4013.4087744695325, 4007.7753301589237, 4002.1527368440074, 3996.54097544282, 3990.940026849009, 3985.34987193263, 3979.7704915409186, 3974.2018664990705, 3968.6439776110083, 3963.0968056601264, 3957.560331410049, 3952.0345356053626, 3946.5193989723484, 3941.014902219703, 3935.5210260392514, 3930.0377511066526, 3924.5650580820925, 3919.1029276109853, 3913.651340324637, 3908.2102768409304, 3902.779717764988, 3897.359643689825, 3891.950035197006, 3886.5508728572768, 3881.1621372312147, 3875.783808869838, 3870.4158683152377, 3865.0582961011833, 3859.711072753737, 3854.3741787918366, 3849.0475947279037, 3843.7313010684143, 3838.4252783144793, 3833.1295069624207, 3827.8439675043273, 3822.568640428612, 3817.303506220563, 3812.0485453628935, 3806.803738336261, 3801.5690656198194, 3796.344507691723, 3791.1300450296576, 3785.925658111341, 3780.731327415038, 3775.5470334200504, 3770.3727566072134, 3765.2084774593823, 3760.05417646191, 3754.909834103126, 3749.775430874798, 3744.650947272604, 3739.53636379658, 3734.431660951579, 3729.336819247709, 3724.2518192007788, 3719.1766413327337, 3714.111266172078, 3709.0556742543017, 3704.009846122302, 3698.973762326792, 3693.947403426709, 3688.9307499896195, 3683.9237825921136, 3678.9264818201964, 3673.93882826968, 3668.960802546561, 3663.9923852673983, 3659.0335570596885, 3654.0842985622303, 3649.144590425484, 3644.214413311939, 3639.293747896457, 3634.3825748666254, 3629.480874923102, 3624.588628779949, 3619.7058171649746, 3614.832420820058, 3609.968420501479, 3605.113796980234, 3600.2685310423617, 3595.432603489247, 3590.605995137935, 3585.7886868214355, 3580.9806593890203, 3576.181893706519, 3571.3923706566147, 3566.612071139132, 3561.840976071313, 3557.0790663881085, 3552.3263230424477, 3547.5827270055097, 3542.8482592669952, 3538.1229008353907, 3533.4066327382247, 3528.6994360223325, 3524.0012917541007, 3519.3121810197295, 3514.6320849254603, 3509.960984597839, 3505.2988611839414, 3500.645695851611, 3496.0014697896954, 3491.366164208272, 3486.7397603388717, 3482.122239434706, 3477.513582770882, 3472.913771644615, 3468.322787375448, 3463.740611305455, 3459.1672247994484, 3454.602609245181, 3450.046746053549, 3445.4996166587807, 3440.961202518638, 3436.431485114602, 3431.910445952063, 3427.3980665605013, 3422.8943284936745, 3418.3992133297884, 3413.9127026716787, 3409.434778146985, 3404.965421408312, 3400.5046141334074, 3396.0523380253185, 3391.6085748125633, 3387.173306249276, 3382.7465141153752, 3378.328180216716, 3373.9182863852343, 3369.516814479105, 3365.1237463828816, 3360.7390640076396, 3356.362749291124, 3351.9947841978833, 3347.6351507194026, 3343.2838308742453, 3338.9408067081795, 3334.606060294305, 3330.2795737331912, 3325.961329152985, 3321.651308709545, 3317.3494945865596, 3313.055868995661, 3308.7704141765435, 3304.4931123970755, 3300.223945953414, 3295.962897170106, 3291.7099484002047, 3287.465082025368, 3283.228280455962, 3278.9995261311633, 3274.7788015190595, 3270.5660891167413, 3266.361371450397, 3262.164631075411, 3257.97585057645, 3253.7950125675516, 3249.6220996922134, 3245.4570946234776, 3241.2999800640137, 3237.1507387461975, 3233.009353432197, 3228.8758069140413, 3224.750082013709, 3220.632161583189, 3216.522028504558, 3212.419665690058, 3208.3250560821557, 3204.2381826536134, 3200.159028407559, 3196.087576377545, 3192.02380962761, 3187.967711252344, 3183.919264376947, 3179.878452157285, 3175.845257779943, 3171.8196644622894, 3167.8016554525198, 3163.7912140297126, 3159.788323503879, 3155.7929672160103, 3151.805128538125, 3147.8247908733215, 3143.851937655813, 3139.886552350973, 3135.9286184553816, 3131.97811949686, 3128.0350390345134, 3124.099360658767, 3120.171067991403, 3116.250144685594, 3112.3365744259386, 3108.4303409284917, 3104.531427940798, 3100.639819241922, 3096.755498642473, 3092.8784499846374, 3089.0086571422007, 3085.146104020575, 3081.2907745568227, 3077.4426527196797, 3073.601722509576, 3069.767967958655, 3065.941373130796, 3062.12192212163, 3058.3095990585552, 3054.504388100761, 3050.706273439233, 3046.915239296774, 3043.13126992801, 3039.354349619412, 3035.5844626892977, 3031.8215934878444, 3028.065726397101, 3024.316845830993, 3020.574936235327, 3016.8399820878017, 3013.111967898011, 3009.3908782074423, 3005.676697589494, 3001.969410649462, 2998.269002024549, 2994.5754563838664, 2990.888758428427, 2987.208892891152, 2983.5358445368643, 2979.869598162282, 2976.210138596024, 2972.5574506985963, 2968.911519362391, 2965.2723295116825, 2961.6398661026124, 2958.01411412319, 2954.395058593279, 2950.7826845645873, 2947.1769771206623, 2943.5779213768756, 2939.985502480413, 2936.3997056102594, 2932.820515977189, 2929.247918823752, 2925.681899424257, 2922.122443084758, 2918.569535143038, 2915.0231609685943, 2911.4833059626153, 2907.9499555579723, 2904.423095219192, 2900.9027104424426, 2897.388786755514, 2893.8813097177936, 2890.38026492025, 2886.885637985408, 2883.397414567328, 2879.915580351583, 2876.440121055238, 2872.9710224268188, 2869.508270246296, 2866.051850325055, 2862.601748505871, 2859.1579506628836, 2855.7204427015718, 2852.289210558723, 2848.8642402024084, 2845.4455176319548, 2842.0330288779146, 2838.6267600020346, 2835.226697097233, 2831.8328262875625, 2828.445133728181, 2825.0636056053245, 2821.6882281362705, 2818.3189875693074, 2814.955870183707, 2811.598862289683, 2808.247950228363, 2804.903120371756, 2801.564359122711, 2798.2316529148916, 2794.9049882127333, 2791.5843515114157, 2788.2697293368174, 2784.9611082454867, 2781.6584748246037, 2778.3618156919406, 2775.071117495827, 2771.78636691511, 2768.5075506591193, 2765.234655467626, 2761.967668110803, 2758.70657538919, 2755.451364133648, 2752.202021205324, 2748.95853349561, 2745.7208879261016, 2742.4890714485564, 2739.2630710448548, 2736.0428737269563, 2732.8284665368597, 2729.6198365465616, 2726.4169708580093, 2723.219856603065, 2720.028480943456, 2716.842831070735, 2713.6628942062407, 2710.4886576010426, 2707.320108535908, 2704.1572343212533, 2701.0000222971, 2697.8484598330247, 2694.702534328124, 2691.562233210963, 2688.4275439395283 ] }, { "legendgroup": "Constant Altitude", "line": { "color": "#00CC96", "width": 4 }, "mode": "lines", "name": "Constant Altitude - 8km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 5634.62466474448, 5659.216205996803, 5683.515466590046, 5707.525243848829, 5731.248271986859, 5754.687224767416, 5777.844718033343, 5800.72331211394, 5823.325514115647, 5845.653780102936, 5867.710517175469, 5889.498085447123, 5911.018799932192, 5932.274932343701, 5953.268712808465, 5974.002331503261, 5994.47794021618, 6014.697653837034, 6034.66355178039, 6054.377679344657, 6073.842049010415, 6093.058641681003, 6112.029407868175, 6130.756268825565, 6149.241117632404, 6167.485820229953, 6185.492216412838, 6203.262120777467, 6220.797323629488, 6238.099591852257, 6255.170669738051, 6272.012279783773, 6288.626123452751, 6305.013881904178, 6321.1772166916135, 6337.117770431957, 6352.8371674461905, 6368.337014373123, 6383.618900757335, 6398.684399612434, 6413.535067960676, 6428.172447350008, 6442.598064349444, 6456.813431023729, 6470.820045388185, 6484.619391844489, 6498.212941598304, 6511.602153059401, 6524.78847222508, 6537.773333047543, 6550.558157785872, 6563.144357343273, 6575.53333159016, 6587.726469673662, 6599.725150314119, 6611.530742089039, 6623.14460370512, 6634.568084258682, 6645.802523485111, 6656.849251997643, 6667.70959151597, 6678.384855085065, 6688.876347284599, 6699.185364429336, 6709.313194760849, 6719.261118630914, 6729.030408676913, 6738.622329989527, 6748.038140273066, 6757.279089998701, 6766.346422550881, 6775.241374367205, 6783.965175072012, 6792.5190476039115, 6800.904208337534, 6809.121867199697, 6817.17322778021, 6825.059487437551, 6832.781837399594, 6840.341462859596, 6847.739543067624, 6854.977251417624, 6862.055755530277, 6868.976217331827, 6875.739793129042, 6882.347633680463, 6888.800884264106, 6895.100684741702, 6901.248169619718, 6907.244468107197, 6913.090704170584, 6918.787996585684, 6924.337458986841, 6929.740199913459, 6934.997322853988, 6940.109926287483, 6945.0791037228255, 6949.905943735723, 6954.591530003573, 6959.136941338299, 6963.543251717224, 6967.811530312092, 6971.942841516315, 6975.938244970512, 6979.798795586447, 6983.525543569406, 6987.119534439113, 6990.581809049242, 6993.913403605602, 6997.115349683036, 7000.18867424114, 7003.134399638818, 7005.953543647744, 7008.647119464826, 7011.216135723653, 7013.661596505049, 7015.984501346736, 7018.185845252179, 7020.266618698653, 7022.227807644569, 7024.07039353613, 7025.795353313312, 7027.403659415259, 7028.8962797851045, 7030.27417787426, 7031.538312646204, 7032.689638579824, 7033.729105672322, 7034.657659441723, 7035.4762409290315, 7036.18578670005, 7036.787228846878, 7037.281494989161, 7037.66950827506, 7037.952187382022, 7038.130446517321, 7038.2051954184435, 7038.177339353318, 7038.047779120388, 7037.817411048597, 7037.48712699727, 7037.057814355918, 7036.530356043994, 7035.905630510598, 7035.184511734178, 7034.367869222203, 7033.45656801087, 7032.451468664806, 7031.3534272768375, 7030.163295467783, 7028.881920386332, 7027.510144708981, 7026.048806640071, 7024.498739911913, 7022.8607737850225, 7021.135733048482, 7019.324438020405, 7017.427704548581, 7015.446344011204, 7013.381163317816, 7011.232964910356, 7009.002546764417, 7006.69070239065, 7004.298220836347, 7001.825886687237, 6999.274480069434, 6996.644776651603, 6993.93754764733, 6991.1535598176715, 6988.293575473943, 6985.35835248069, 6982.348644258899, 6979.265199789413, 6976.108763616566, 6972.880075852045, 6969.579872178993, 6966.208883856299, 6962.767837723167, 6959.257456203874, 6955.678457312797, 6952.0315546596285, 6948.317457454869, 6944.536870515533, 6940.690494271091, 6936.7790247696485, 6932.803153684356, 6928.763568320062, 6924.660951620201, 6920.495982173896, 6916.269334223326, 6911.981677671305, 6907.63367808909, 6903.2259967244345, 6898.759290509858, 6894.234212071167, 6889.651409736159, 6885.011527543599, 6880.315205252394, 6875.563078350995, 6870.75577806701, 6865.893931377054, 6860.978161016804, 6856.00908549126, 6850.987319085228, 6845.913471874018, 6840.788149734333, 6835.611954355372, 6830.3854832501365, 6825.109329766928, 6819.784083101049, 6814.41032830671, 6808.988646309091, 6803.519613916635, 6798.003803833498, 6792.4417846722, 6786.83412096644, 6781.181373184101, 6775.4840977404265, 6769.742847011357, 6763.958169347058, 6758.130609085591, 6752.260706566749, 6746.348998146079, 6740.396016209012, 6734.402289185194, 6728.368341562932, 6722.29469390381, 6716.181862857432, 6710.030361176314, 6703.840697730916, 6697.6133775247945, 6691.348901709905, 6685.047767602016, 6678.71046869626, 6672.337494682788, 6665.929331462572, 6659.486461163293, 6653.009362155352, 6646.4985090680075, 6639.9543728055805, 6633.377420563803, 6626.768115846238, 6620.126918480811, 6613.454284636428, 6606.750666839692, 6600.016513991691, 6593.252271384897, 6586.45838072011, 6579.635280123526, 6572.78340416384, 6565.903183869441, 6558.995046745678, 6552.059416792189, 6545.096714520298, 6538.107356970463, 6531.091757729791, 6524.050326949616, 6516.983471363117, 6509.891594302986, 6502.775095719162, 6495.63437219659, 6488.469816973026, 6481.281819956895, 6474.070767745177, 6466.837043641317, 6459.581027673188, 6452.30309661108, 6445.003623985696, 6437.682980106192, 6430.341532078246, 6422.97964382212, 6415.5976760907715, 6408.195986487954, 6400.774929486343, 6393.334856445681, 6385.876115630913, 6378.399052230339, 6370.904008373776, 6363.391323150711, 6355.861332628464, 6348.314369870337, 6340.750764953778, 6333.170844988523, 6325.574934134736, 6317.963353621139, 6310.336421763132, 6302.694453980902, 6295.037762817507, 6287.366657956956, 6279.681446242253, 6271.982431693442, 6264.269915525622, 6256.544196166922, 6248.805569276473, 6241.054327762337, 6233.2907617994315, 6225.515158847376, 6217.72780366837, 6209.9289783449785, 6202.118962297925, 6194.298032303827, 6186.4664625129, 6178.624524466618, 6170.7724871153505, 6162.910616835926, 6155.039177449189, 6147.158430237486, 6139.26863396212, 6131.37004488075, 6123.462916764757, 6115.547500916535, 6107.624046186762, 6099.6927989915985, 6091.754003329846, 6083.807900800042, 6075.854730617508, 6067.894729631346, 6059.928132341368, 6051.955170914966, 6043.976075203947, 6035.991072761285, 6028.000388857815, 6020.004246498888, 6012.002866440932, 6003.996467207983, 5995.985265108128, 5987.969474249897, 5979.949306558581, 5971.9249717925095, 5963.896677559217, 5955.864629331589, 5947.829030463905, 5939.790082207851, 5931.747983728416, 5923.702932119767, 5915.6551224210125, 5907.604747631932, 5899.551998728609, 5891.497064679005, 5883.440132458454, 5875.3813870650965, 5867.321011535232, 5859.2591869585885, 5851.196092493551, 5843.13190538227, 5835.066800965744, 5827.000952698786, 5818.934532164946, 5810.867709091331, 5802.800651363375, 5794.733525039521, 5786.66649436582, 5778.599721790458, 5770.533367978226, 5762.467591824876, 5754.40255047143, 5746.338399318399, 5738.275292039924, 5730.213380597849, 5722.152815255703, 5714.0937445926065, 5706.036315517105, 5697.980673280934, 5689.926961492676, 5681.875322131365, 5673.825895560003, 5665.7788205390025, 5657.734234239536, 5649.692272256829, 5641.6530686233555, 5633.616755821962, 5625.583464798914, 5617.553324976857, 5609.526464267712, 5601.503009085469, 5593.483084358934, 5585.466813544364, 5577.454318638041, 5569.445720188776, 5561.441137310304, 5553.440687693635, 5545.4444876193065, 5537.452651969555, 5529.4652942404255, 5521.48252655379, 5513.504459669288, 5505.531202996199, 5497.5628646052255, 5489.599551240197, 5481.641368329722, 5473.688419998727, 5465.740809079937, 5457.7986371252855, 5449.862004417223, 5441.931009979985, 5434.00575159074, 5426.08632579071, 5418.172827896166, 5410.265352009383, 5402.363991029507, 5394.468836663341, 5386.579979436066, 5378.697508701879, 5370.821512654569, 5362.95207833799, 5355.089291656501, 5347.233237385293, 5339.383999180669, 5331.541659590233, 5323.706300063017, 5315.878000959535, 5308.056841561751, 5300.2429000829925, 5292.436253677777, 5284.636978451576, 5276.84514947051, 5269.06084077095, 5261.284125369081, 5253.515075270373, 5245.753761478982, 5238.000254007086, 5230.254621884166, 5222.516933166178, 5214.787254944694, 5207.065653355964, 5199.352193589896, 5191.646939898978, 5183.949955607141, 5176.261303118533, 5168.581043926243, 5160.909238620955, 5153.245946899525, 5145.591227573512, 5137.945138577612, 5130.307736978063, 5122.679078980963, 5115.059219940508, 5107.448214367218, 5099.846115936028, 5092.252977494381, 5084.668851070215, 5077.093787879893, 5069.527838336097, 5061.971052055619, 5054.423477867119, 5046.885163818819, 5039.356157186112, 5031.836504479143, 5024.326251450304, 5016.825443101678, 5009.334123692427, 5001.852336746102, 4994.380125057929, 4986.91753070199, 4979.4645950383865, 4972.021358720314, 4964.587861701108, 4957.164143241195, 4949.750241915026, 4942.346195617922, 4934.952041572882, 4927.5678163373195, 4920.193555809762, 4912.829295236478, 4905.475069218051, 4898.130911715916, 4890.79685605881, 4883.472934949199, 4876.159180469637, 4868.855624089069, 4861.562296669089, 4854.27922847014, 4847.006449157659, 4839.7439878081805, 4832.491872915374, 4825.250132396046, 4818.018793596074, 4810.797883296305, 4803.587427718392, 4796.3874525305855, 4789.197982853482, 4782.019043265711, 4774.850657809572, 4767.692849996645, 4760.545642813322, 4753.4090587263145, 4746.2831196881, 4739.167847142326, 4732.063262029166, 4724.969384790635, 4717.886235375841, 4710.813833246216, 4703.752197380676, 4696.701346280762, 4689.661297975699, 4682.632070027457, 4675.613679535729, 4668.606143142883, 4661.609477038866, 4654.623696966064, 4647.648818224127, 4640.684855674736, 4633.7318237463405, 4626.789736438846, 4619.858607328268, 4612.938449571336, 4606.02927591006, 4599.1310986762555, 4592.2439297960345, 4585.367780794238, 4578.502662798852, 4571.648586545364, 4564.805562381099, 4557.973600269495, 4551.152709794354, 4544.342900164059, 4537.54418021573, 4530.756558419374, 4523.98004288197, 4517.214641351529, 4510.460361221117, 4503.71720953284, 4496.985192981789, 4490.264317919959, 4483.554590360116, 4476.856015979645, 4470.168600124352, 4463.492347812236, 4456.827263737223, 4450.173352272867, 4443.530617476021, 4436.899063090461, 4430.278692550499, 4423.669508984534, 4417.071515218597, 4410.484713779845, 4403.90910690003, 4397.344696518931, 4390.791484287766, 4384.249471572552, 4377.718659457453, 4371.199048748086, 4364.690639974797, 4358.193433395909, 4351.7074290009405, 4345.2326265137835, 4338.7690253958735, 4332.316624849302, 4325.875423819917, 4319.445421000398, 4313.02661483328, 4306.61900351398, 4300.222584993762, 4293.837356982701, 4287.463316952599, 4281.100462139891, 4274.748789548505, 4268.408295952712, 4262.078977899933, 4255.760831713533, 4249.4538534955755, 4243.158039129562, 4236.873384283139, 4230.599884410778, 4224.337534756438, 4218.086330356187, 4211.846266040816, 4205.617336438414, 4199.399535976922, 4193.192858886673, 4186.997299202884, 4180.812850768152, 4174.639507234901, 4168.47726206782, 4162.3261085462755, 4156.186039766691, 4150.057048644916, 4143.939127918568, 4137.8322701493435, 4131.736467725317, 4125.651712863213, 4119.577997610653, 4113.515313848386, 4107.463653292494, 4101.423007496578, 4095.3933678539133, 4089.3747255996036, 4083.367071812687, 4077.3703974182454, 4071.3846931894773, 4065.4099497497605, 4059.446157574687, 4053.4933069940744, 4047.5513881939783, 4041.620391218653, 4035.7003059725175, 4029.7911222220937, 4023.8928295979235, 4018.0054175964647, 4012.128875581981, 4006.263192788394, 4000.4083583211304, 3994.564361158948, 3988.731190155736, 3982.908834042311, 3977.097281428181, 3971.296520803297, 3965.5065405397936, 3959.7273288937, 3953.9588740066392, 3948.201163907515, 3942.4541865141746, 3936.7179296350537, 3930.9923809708102, 3925.2775281159456, 3919.5733585603925, 3913.8798596911006, 3908.197018793609, 3902.5248230535867, 3896.8632595583704, 3891.212315298485, 3885.5719771691433, 3879.942231971734, 3874.3230664152948, 3868.714467117967, 3863.1164206084404, 3857.528913327377, 3851.9519316288242, 3846.385461781614, 3840.829489970741, 3835.284002298741, 3829.7489847870315, 3824.224423377264, 3818.7103039326453, 3813.2066122392503, 3807.713334007322, 3802.2304548725547, 3796.757960397367, 3791.2958360721614, 3785.844067316568, 3780.402639480679, 3774.971537846263, 3769.5507476279777, 3764.1402539745586, 3758.7400419700025, 3753.3500966347356, 3747.9704029267696, 3742.600945742845, 3737.241709919566, 3731.892680234513, 3726.5538414073635, 3721.22517810097, 3715.9066749224626, 3710.5983164243085, 3705.300087105379, 3700.011971412003, 3694.7339537389976, 3689.466018430698, 3684.2081497819804, 3678.9603320392575, 3673.7225494014783, 3668.4947860211196, 3663.277026005142, 3658.0692534159643, 3652.871452272418, 3647.683606550681, 3642.5057001852138, 3637.3377170696813, 3632.1796410578627, 3627.0314559645535, 3621.8931455664588, 3616.7646936030715, 3611.6460837775467, 3606.53729975757, 3601.438325176196, 3596.349143632708, 3591.269738693444, 3586.2000938926217, 3581.1401927331563, 3576.090018687468, 3571.049555198282, 3566.01878567941, 3560.997693516541, 3555.9862620680033, 3550.9844746655344, 3545.99231461503, 3541.0097651972983, 3536.0368096687866, 3531.0734312623185, 3526.119613187814, 3521.1753386330006, 3516.2405907641155, 3511.3153527266113, 3506.399607645837, 3501.4933386277203, 3496.5965287594468, 3491.7091611101164, 3486.83121873141, 3481.962684658236, 3477.1035419093714, 3472.2537734881043, 3467.413362382857, 3462.5822915678077, 3457.7605440035027, 3452.94810263747, 3448.1449504048164, 3443.351070228812, 3438.56644502149, 3433.7910576842155, 3429.0248911082645, 3424.2679281753817, 3419.5201517583514, 3414.7815447215366, 3410.0520899214357, 3405.3317702072154, 3400.6205684212496, 3395.9184673996383, 3391.225449972738, 3386.5414989656665, 3381.8665971988185, 3377.200727488364, 3372.5438726467473, 3367.896015483172, 3363.257138804092, 3358.6272254136857, 3354.006258114327, 3349.3942197070614, 3344.791092992057, 3340.196860769065, 3335.6115058378673, 3331.0350109987276, 3326.4673590528214, 3321.908532802678, 3317.3585150526055, 3312.8172886091097, 3308.2848362813247, 3303.7611408814096, 3299.246185224968, 3294.7399521314464, 3290.2424244245326, 3285.7535849325477, 3281.2734164888325, 3276.8019019321323, 3272.3390241069774, 3267.88476586405, 3263.4391100605562, 3259.0020395605907, 3254.5735372354948, 3250.153585964211, 3245.742168633632, 3241.3392681389464, 3236.944867383984, 3232.5589492815466, 3228.181496753743, 3223.8124927323165, 3219.4519201589696, 3215.0997619856817, 3210.756001175026, 3206.42062070048, 3202.0936035467303, 3197.7749327099814, 3193.4645911982493, 3189.162562031656, 3184.868828242726, 3180.583372876668, 3176.306178991658, 3172.0372296591254, 3167.776507964021, 3163.5239970050916, 3159.2796798951517, 3155.04353976134, 3150.81555974539, 3146.595723003876, 3142.384012708481, 3138.1804120462325, 3133.9849042197584, 3129.797472447526, 3125.618099964088, 3121.446770020307, 3117.2834658836027, 3113.128170838172, 3108.9808681852164, 3104.8415412431727, 3100.710173347923, 3096.586747853019, 3092.4712481298916, 3088.363657568066, 3084.2639595753612, 3080.172137578105, 3076.088175021327, 3072.0120553689617, 3067.943762104042, 3063.883278728893, 3059.830588765322, 3055.785675754803, 3051.7485232586623, 3047.7191148582638, 3043.6974341551795, 3039.6834647713713, 3035.6771903493614, 3031.678594552403, 3027.6876610646514, 3023.7043735913226, 3019.728715858861, 3015.7606716150963, 3011.800224629403, 3007.847358692854, 3003.902057618375, 2999.96430524089, 2996.0340854174715, 2992.1113820274863, 2988.196178972738, 2984.2884601776036, 2980.3882095891768, 2976.4954111773995, 2972.610048935197, 2968.732106878608, 2964.8615690469164, 2960.9984195027705, 2957.1426423323182, 2953.29422164532, 2949.4531415752717, 2945.6193862795253, 2941.7929399394015, 2937.9737867603026, 2934.161910971832, 2930.3572968278904, 2926.5599286067973, 2922.7697906113876, 2918.986867169118, 2915.2111426321676, 2911.4426013775433, 2907.681227807171, 2903.927006347992, 2900.179921452062, 2896.4399575966404, 2892.7070992842796, 2888.981331042914, 2885.262637425954, 2881.5510030123587, 2877.8464124067277, 2874.1488502393813, 2870.458301166441, 2866.774749869904, 2863.098181057726, 2859.4285794638913, 2855.7659298484855, 2852.1102169977717, 2848.4614257242583, 2844.819540866764, 2841.1845472904943, 2837.556429887095, 2833.935173574723, 2830.3207632981107, 2826.71318402862, 2823.112420764307, 2819.518458529979, 2815.93128237725, 2812.3508773845942, 2808.777228657405, 2805.21032132804, 2801.6501405558793, 2798.0966715273685, 2794.5498994560735, 2791.0098095827207, 2787.4763871752452, 2783.9496175288386, 2780.429485965984, 2776.9159778365056, 2773.409078517605, 2769.9087734139025, 2766.4150479574696, 2762.9278876078743, 2759.4472778522095, 2755.9732042051296, 2752.5056522088857, 2749.044607433353, 2745.590055476068, 2742.1419819622515, 2738.700372544841, 2735.2652129045173, 2731.836488749731, 2728.4141858167286, 2724.9982898695744, 2721.588786700175, 2718.185662128301, 2714.7889020016105, 2711.3984921956658, 2708.0144186139532, 2704.6366671879014, 2701.265223876901, 2697.9000746683146, 2694.5412055774973, 2691.1886026478105, 2687.842251950634, 2684.5021395853732, 2681.168251679481, 2677.8405743884596, 2674.5190938958735, 2671.203796413357, 2667.8946681806256, 2664.5916954654767, 2661.2948645638003, 2658.004161799585, 2654.7195735249184, 2651.4410861199894, 2648.168685993102, 2644.9023595806643, 2641.6420933471973, 2638.3878737853306, 2635.139687415805, 2631.8975207874746, 2628.661360477297, 2625.4311930903355, 2622.2070052597564, 2618.9887836468224, 2615.7765149408892, 2612.5701858594016, 2609.369783147883, 2606.175293579932, 2602.9867039572127, 2599.804001109448, 2596.627171894413, 2593.456203197919, 2590.2910819338076, 2587.1317950439407, 2583.978329498186, 2580.8306722944067, 2577.6888104584477, 2574.5527310441244, 2571.422421133208, 2568.297867835405, 2565.1790582883555, 2562.065979657603, 2558.958619136586, 2555.8569639466214, 2552.7610013368844, 2549.6707185843916, 2546.586102993983, 2543.5071418983007, 2540.4338226577725, 2537.3661326605916, 2534.304059322696, 2531.247590087742, 2528.196712427091, 2525.151413839783, 2522.1116818525143, 2519.077504019615, 2516.0488679230248, 2513.0257611722714, 2510.0081714044422, 2506.996086284166, 2503.9894935035777, 2500.9883807823016, 2497.992735867423, 2495.0025465334597, 2492.017800582333, 2489.038485843347, 2486.0645901731564, 2483.096101455736, 2480.1330076023587, 2477.175296551561, 2474.222956269115, 2471.275974747999, 2468.3343400083686, 2465.398040097523, 2462.4670630898772, 2459.5413970869295, 2456.6210302172294, 2453.705950636347, 2450.7961465268395, 2447.8916060982187, 2444.9923175869185, 2442.0982692562625, 2439.2094493964273, 2436.3258463244133, 2433.447448384006, 2430.5742439457435, 2427.706221406881, 2424.843369191358, 2421.9856757497596, 2419.1331295592818, 2416.2857191236963, 2413.4434329733144, 2410.606259664948, 2407.774187781878, 2404.9472059338095, 2402.125302756843, 2399.3084669134278, 2396.496687092333, 2393.689952008602, 2390.888250403522, 2388.0915710445734, 2385.2999027254054, 2382.513234265787, 2379.7315545115703, 2376.9548523346507, 2374.1831166329275, 2371.4163363302678, 2368.6545003764572 ] }, { "legendgroup": "Constant Speed", "line": { "color": "#AB63FA", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 10km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 7211.455716019352, 7242.92911864711, 7274.028446841338, 7304.75728074869, 7335.119119743525, 7365.1173858329175, 7394.755426894667, 7424.0365197577485, 7452.963873134041, 7481.540630409522, 7509.7698723027215, 7537.654619397566, 7565.197834557436, 7592.402425226723, 7619.271245625846, 7645.8070988452955, 7672.012738843936, 7697.890872356489, 7723.444160714799, 7748.675221587266, 7773.586630640494, 7798.180923127055, 7822.460595402965, 7846.428106378319, 7870.085878904304, 7893.436301099665, 7916.481727619458, 7939.224480868884, 7961.6668521647, 7983.811102846721, 8005.659465341634, 8027.214144181398, 8048.477316978222, 8069.4511353581265, 8090.137725854936, 8110.539190766446, 8130.657608974488, 8150.495036730417, 8170.053508407605, 8189.335037222304, 8208.341615924295, 8227.075217458609, 8245.537795599543, 8263.731285558159, 8281.657604564396, 8299.31865242483, 8316.71631205716, 8333.852450002294, 8350.728916915092, 8367.34754803453, 8383.71016363418, 8399.818569453842, 8415.674557113027, 8431.27990450709, 8446.636376186685, 8461.745723721213, 8476.609686046933, 8491.229989800308, 8505.608349637232, 8519.74646853865, 8533.64603810313, 8547.308738826934, 8560.736240372033, 8573.93020182258, 8586.892271930292, 8599.624089349149, 8612.127282859887, 8624.403471584621, 8636.454265192053, 8648.281264093566, 8659.886059630633, 8671.270234253818, 8682.435361693755, 8693.38300712438, 8704.11472731873, 8714.632070797637, 8724.936577971534, 8735.029781275702, 8744.91320529919, 8754.588366907663, 8764.056775360415, 8773.319932421804, 8782.379332467284, 8791.236462584315, 8799.892802668284, 8808.349825513704, 8816.608996900839, 8824.67177567796, 8832.539613839408, 8840.213956599637, 8847.696242463378, 8854.987903292142, 8862.090364367157, 8869.005044448904, 8875.733355833425, 8882.276704405496, 8888.636489688839, 8894.814104893474, 8900.810936960319, 8906.62836660325, 8912.267768348582, 8917.730510572232, 8923.017955534584, 8928.131459413176, 8933.072372333332, 8937.842038396811, 8942.441795708568, 8946.872976401733, 8951.136906660877, 8955.234906743648, 8959.16829100088, 8962.938367895233, 8966.546440018414, 8969.99380410713, 8973.281751057737, 8976.411565939754, 8979.384528008224, 8982.201910715037, 8984.864981719249, 8987.375002896477, 8989.733230347383, 8991.940914405362, 8993.999299643436, 8995.909624880416, 8997.6731231864, 8999.29102188762, 9000.764542570723, 9002.094901086472, 9003.283307552989, 9004.330966358486, 9005.2390761636, 9006.008829903318, 9006.64141478857, 9007.138012307478, 9007.499798226325, 9007.727942590267, 9007.82360972381, 9007.787958231116, 9007.622140996087, 9007.327305182354, 9006.904592233122, 9006.35513787092, 9005.680072097277, 9004.88051919237, 9003.957597714621, 9002.912420500284, 9001.74609466307, 9000.459721593776, 8999.054396959953, 8997.531210705702, 8995.891247051453, 8994.13558449394, 8992.265295806212, 8990.2814480378, 8988.185102515032, 8985.977314841484, 8983.659134898577, 8981.231606846399, 8978.695769124652, 8976.052654453832, 8973.303289836602, 8970.44869655938, 8967.489890194145, 8964.427880600468, 8961.263671927778, 8957.998262617913, 8954.632645407844, 8951.16780733272, 8947.604729729144, 8943.944388238722, 8940.18775281189, 8936.335787712, 8932.389451519697, 8928.34969713759, 8924.21747179517, 8919.993717054065, 8915.679368813546, 8911.275357316359, 8906.78260715483, 8902.202037277264, 8897.534560994683, 8892.781085987786, 8887.942514314298, 8883.01974241655, 8878.013661129413, 8872.925155688477, 8867.755105738575, 8862.504385342596, 8857.173862990589, 8851.764401609165, 8846.276858571231, 8840.712085705949, 8835.07092930907, 8829.354230153504, 8823.562823500222, 8817.697539109415, 8811.759201251962, 8805.748628721181, 8799.66663484486, 8793.514027497562, 8787.291609113237, 8781.000176698068, 8774.640521843641, 8768.213430740328, 8761.719684190992, 8755.160057624926, 8748.535321112056, 8741.846239377424, 8735.093571815882, 8728.278072507092, 8721.400490230742, 8714.461568482004, 8707.462045487251, 8700.402654220006, 8693.284122417112, 8686.107172595159, 8678.872522067108, 8671.580882959164, 8664.23296222785, 8656.829461677307, 8649.3710779768, 8641.858502678426, 8634.292422235048, 8626.673518018408, 8619.00246633743, 8611.279938456739, 8603.506600615352, 8595.683114045556, 8587.810134991962, 8579.88831473074, 8571.91829958902, 8563.900730964475, 8555.83624534504, 8547.725474328829, 8539.569044644159, 8531.367578169782, 8523.121691955208, 8514.831998241218, 8506.49910448049, 8498.123613358362, 8489.706122813745, 8481.247226060137, 8472.74751160679, 8464.207563279964, 8455.627960244332, 8447.009277024468, 8438.352083526464, 8429.656945059633, 8420.924422358328, 8412.155071603858, 8403.349444446478, 8394.508088027495, 8385.631545001437, 8376.720353558334, 8367.775047446034, 8358.796155992624, 8349.784204128931, 8340.739712411068, 8331.663197043048, 8322.555169899471, 8313.416138548268, 8304.246606273477, 8295.047072098105, 8285.818030807017, 8276.559972969857, 8267.273384964043, 8257.958748997778, 8248.616543133096, 8239.247241308945, 8229.851313364314, 8220.42922506134, 8210.981438108503, 8201.508410183782, 8192.010594957861, 8182.4884421173365, 8172.9423973879475, 8163.372902557798, 8153.780395500598, 8144.165310198908, 8134.528076767374, 8124.869121475957, 8115.188866773187, 8105.487731309379, 8095.766129959842, 8086.024473848092, 8076.263170369043, 8066.48262321217, 8056.68323238468, 8046.865394234616, 8037.029501473988, 8027.175943201842, 8017.305104927322, 8007.41736859268, 7997.513112596277, 7987.59271181553, 7977.656537629838, 7967.7049579434515, 7957.7383372083195, 7947.7570364468875, 7937.761413274836, 7927.751821923805, 7917.728613264042, 7907.692134827001, 7897.64273082792, 7887.5807421883055, 7877.506506558388, 7867.420358339512, 7857.322628706476, 7847.213645629802, 7837.09373389794, 7826.963215139434, 7816.822407845002, 7806.671627389544, 7796.511186054121, 7786.341393047825, 7776.162554529587, 7765.974973629952, 7755.778950472718, 7745.574782196565, 7735.362762976558, 7725.143184045619, 7714.916333715883, 7704.682497400009, 7694.441957632377, 7684.194994090255, 7673.941883614828, 7663.682900232191, 7653.418315174228, 7643.14839689944, 7632.87341111364, 7622.5936207906225, 7612.309286192691, 7602.020664891144, 7591.728011786637, 7581.431579129487, 7571.131616539849, 7560.828371027852, 7550.522087013605, 7540.213006347128, 7529.901368328182, 7519.587409726024, 7509.271364799054, 7498.953465314366, 7488.6339405672215, 7478.313017400403, 7467.990920223502, 7457.667871032091, 7447.344089426805, 7437.019792632322, 7426.69519551626, 7416.3705106079615, 7406.045948117195, 7395.721715952735, 7385.398019740878, 7375.075062843827, 7364.753046378001, 7354.432169232228, 7344.11262808585, 7333.794617426727, 7323.478329569139, 7313.163954671582, 7302.851680754474, 7292.541693717763, 7282.234177358421, 7271.929313387843, 7261.627281449154, 7251.328259134405, 7241.032422001672, 7230.739943592049, 7220.45099544656, 7210.165747122933, 7199.884366212314, 7189.607018355848, 7179.333867261182, 7169.065074718841, 7158.800800618548, 7148.54120296538, 7138.2864378958775, 7128.036659694037, 7117.792020807174, 7107.552671861745, 7097.318761679004, 7087.0904372906025, 7076.867843954081, 7066.651125168243, 7056.440422688447, 7046.235876541796, 7036.037625042221, 7025.845804805463, 7015.660550763973, 7005.481996181693, 6995.3102726687475, 6985.145510196039, 6974.9878371097375, 6964.837380145672, 6954.694264443636, 6944.55861356159, 6934.430549489749, 6924.310192664593, 6914.197661982794, 6904.093074814994, 6893.996547019548, 6883.908192956132, 6873.828125499268, 6863.756456051755, 6853.693294557988, 6843.6387495172285, 6833.592927996709, 6823.555935644713, 6813.527876703511, 6803.508854022241, 6793.498969069664, 6783.498321946847, 6773.507011399743, 6763.525134831689, 6753.552788315807, 6743.590066607307, 6733.637063155709, 6723.693870116974, 6713.760578365537, 6703.837277506254, 6693.924055886275, 6684.021000606789, 6674.128197534726, 6664.245731314344, 6654.3736853787295, 6644.512141961221, 6634.661182106736, 6624.8208856830215, 6614.991331391804, 6605.172596779864, 6595.364758250033, 6585.5678910720835, 6575.782069393545, 6566.007366250458, 6556.243853578003, 6546.491602221075, 6536.75068194477, 6527.021161444788, 6517.303108357747, 6507.59658927143, 6497.901669734937, 6488.218414268761, 6478.546886374797, 6468.887148546245, 6459.239262277455, 6449.603288073689, 6439.9792854608, 6430.367312994835, 6420.767428271561, 6411.179687935919, 6401.604147691384, 6392.040862309282, 6382.489885637988, 6372.9512706120895, 6363.425069261451, 6353.911332720208, 6344.410111235691, 6334.921454177282, 6325.445410045185, 6315.98202647913, 6306.531350267002, 6297.093427353413, 6287.668302848182, 6278.25602103475, 6268.856625378551, 6259.470158535252, 6250.096662359006, 6240.736177910554, 6231.388745465326, 6222.054404521431, 6212.733193807591, 6203.425151291025, 6194.130314185236, 6184.84871895775, 6175.580401337805, 6166.325396323927, 6157.083738191495, 6147.8554605002055, 6138.640596101487, 6129.439177145847, 6120.251235090163, 6111.076800704899, 6101.915904081265, 6092.768574638322, 6083.634841130015, 6074.514731652153, 6065.408273649313, 6056.315493921711, 6047.2364186319855, 6038.171073311944, 6029.119482869233, 6020.0816715939545, 6011.057663165241, 6002.047480657744, 5993.051146548089, 5984.068682721259, 5975.1001104769375, 5966.145450535769, 5957.204723045602, 5948.277947587636, 5939.365143182549, 5930.466328296541, 5921.581520847348, 5912.710738210185, 5903.8539972236495, 5895.011314195563, 5886.182704908758, 5877.368184626823, 5868.567768099796, 5859.7814695697925, 5851.009302776587, 5842.251280963171, 5833.507416881216, 5824.777722796522, 5816.062210494403, 5807.360891285023, 5798.67377600869, 5790.000875041093, 5781.3421982985, 5772.6977552429, 5764.06755488711, 5755.451605799825, 5746.8499161106165, 5738.262493514909, 5729.689345278882, 5721.1304782443485, 5712.5858988335785, 5704.055613054075, 5695.539626503321, 5687.037944373462, 5678.550571455962, 5670.077512146208, 5661.618770448075, 5653.174349978451, 5644.744253971705, 5636.328485284139, 5627.927046398375, 5619.5399394277165, 5611.167166120456, 5602.808727864161, 5594.46462568989, 5586.134860276409, 5577.8194319543345, 5569.518340710249, 5561.231586190776, 5552.959167706637, 5544.701084236628, 5536.457334431602, 5528.227916618385, 5520.012828803662, 5511.812068677842, 5503.62563361886, 5495.453520695956, 5487.295726673433, 5479.152248014347, 5471.023080884189, 5462.908221154512, 5454.807664406553, 5446.721405934778, 5438.649440750428, 5430.591763585014, 5422.54836889379, 5414.519250859175, 5406.504403394168, 5398.503820145694, 5390.517494497958, 5382.545419575739, 5374.587588247657, 5366.643993129419, 5358.714626587021, 5350.79948073993, 5342.898547464219, 5335.0118183956965, 5327.139284932977, 5319.280938240545, 5311.436769251774, 5303.606768671927, 5295.790926981114, 5287.989234437239, 5280.201681078904, 5272.428256728281, 5264.6689509939715, 5256.923753273838, 5249.192652757779, 5241.4756384305065, 5233.772699074299, 5226.083823271693, 5218.4089994081805, 5210.748215674877, 5203.10146007114, 5195.468720407185, 5187.849984306667, 5180.245239209236, 5172.654472373068, 5165.077670877364, 5157.514821624843, 5149.965911344186, 5142.430926592471, 5134.909853757588, 5127.402679060606, 5119.909388558138, 5112.429968144687, 5104.96440355494, 5097.512680366069, 5090.07478399999, 5082.650699725609, 5075.240412661036, 5067.84390777579, 5060.461169892968, 5053.092183691401, 5045.736933707785, 5038.395404338789, 5031.06757984314, 5023.753444343702, 5016.452981829503, 5009.166176157778, 5001.893011055964, 4994.63347012368, 4987.3875368347, 4980.155194538888, 4972.936426464124, 4965.731215718215, 4958.539545290761, 4951.361398055037, 4944.196756769832, 4937.0456040812705, 4929.907922524625, 4922.783694526107, 4915.672902404627, 4908.575528373561, 4901.491554542468, 4894.420962918816, 4887.363735409676, 4880.3198538234055, 4873.289299871304, 4866.272055169264, 4859.268101239396, 4852.277419511634, 4845.299991325349, 4838.335797930897, 4831.3848204912, 4824.447040083291, 4817.522437699823, 4810.6109942506, 4803.712690564067, 4796.827507388781, 4789.955425394888, 4783.096425175565, 4776.250487248452, 4769.4175920570715, 4762.597719972235, 4755.790851293421, 4748.996966250162, 4742.216045003385, 4735.448067646778, 4728.693014208099, 4721.950864650498, 4715.221598873823, 4708.505196715898, 4701.8016379538, 4695.11090230513, 4688.432969429233, 4681.767818928449, 4675.11543034933, 4668.475783183846, 4661.848856870563, 4655.234630795845, 4648.633084295006, 4642.044196653463, 4635.467947107886, 4628.904314847319, 4622.353279014302, 4615.8148187059705, 4609.288912975149, 4602.7755408314315, 4596.274681242252, 4589.786313133932, 4583.310415392734, 4576.846966865888, 4570.395946362622, 4563.957332655157, 4557.531104479722, 4551.117240537529, 4544.715719495757, 4538.326519988513, 4531.949620617794, 4525.584999954417, 4519.232636538972, 4512.892508882727, 4506.564595468551, 4500.248874751811, 4493.945325161268, 4487.653925099956, 4481.374652946053, 4475.1074870537495, 4468.852405754087, 4462.609387355819, 4456.378410146227, 4450.159452391949, 4443.952492339803, 4437.757508217574, 4431.574478234817, 4425.403380583652, 4419.244193439524, 4413.096894961985, 4406.961463295442, 4400.837876569915, 4394.726112901776, 4388.626150394477, 4382.537967139277, 4376.461541215967, 4370.396850693558, 4364.343873630996, 4358.302588077845, 4352.272972074972, 4346.255003655218, 4340.24866084407, 4334.253921660316, 4328.270764116691, 4322.299166220527, 4316.339105974389, 4310.390561376694, 4304.453510422337, 4298.527931103305, 4292.613801409272, 4286.711099328213, 4280.81980284698, 4274.939889951889, 4269.071338629305, 4263.214126866194, 4257.368232650704, 4251.5336339727055, 4245.71030882435, 4239.898235200602, 4234.097391099786, 4228.307754524103, 4222.529303480161, 4216.762015979482, 4211.005870039025, 4205.260843681667, 4199.5269149367205, 4193.804061840411, 4188.092262436366, 4182.391494776086, 4176.701736919426, 4171.022966935054, 4165.355162900911, 4159.6983029046705, 4154.052365044176, 4148.417327427895, 4142.793168175348, 4137.179865417541, 4131.577397297392, 4125.985741970151, 4120.404877603809, 4114.834782379516, 4109.275434491977, 4103.726812149852, 4098.188893576152, 4092.661657008623, 4087.14508070013, 4081.639142919035, 4076.143821949568, 4070.6590960921963, 4065.1849436639827, 4059.7213429989542, 4054.2682724484384, 4048.8257103814235, 4043.3936351849, 4037.9720252641955, 4032.5608590433076, 4027.1601149652397, 4021.769771492322, 4016.3898071065287, 4011.020200309799, 4005.660929624345, 4000.311973592961, 3994.973310779323, 3989.6449197682914, 3984.3267791662006, 3979.0188676011508, 3973.7211637232945, 3968.433646205121, 3963.1562937417234, 3957.889085051086, 3952.6319988743458, 3947.3850139760566, 3942.1481091444575, 3936.9212631917253, 3931.70445495423, 3926.497663292788, 3921.300867092905, 3916.114045265016, 3910.9371767447365, 3905.770240493082, 3900.6132154967154, 3895.466080768163, 3890.3288153460476, 3885.201398295306, 3880.083808707405, 3874.9760257005655, 3869.878028419963, 3864.7897960379396, 3859.7113077542103, 3854.6425427960635, 3849.5834804185565, 3844.5340999047157, 3839.4943805657217, 3834.4643017411026, 3829.4438427989203, 3824.432983135952, 3819.4317021778616, 3814.439979379393, 3809.4577942245287, 3804.485126226667, 3799.521954928789, 3794.5682599036218, 3789.624020753803, 3784.689217112039, 3779.763828641259, 3774.8478350347727, 3769.9412160164165, 3765.043951340709, 3760.1560207929842, 3755.277404189553, 3750.4080813778246, 3745.5480322364547, 3740.69723667548, 3735.855674636448, 3731.023326092548, 3726.200171048741, 3721.3861895418877, 3716.581361640857, 3711.7856674466657, 3706.999087092584, 3702.2216007442566, 3697.4531885998117, 3692.6938308899803, 3687.9435078781985, 3683.2021998607097, 3678.469887166683, 3673.7465501583056, 3669.0321692308817, 3664.3267248129405, 3659.63019736632, 3654.942567386269, 3650.263815401535, 3645.593921974457, 3640.9328677010485, 3636.2806332110913, 3631.6371991682104, 3627.0025462699573, 3622.376655247898, 3617.75950686768, 3613.151081929115, 3608.551361266252, 3603.960325747449, 3599.3779562754407, 3594.8042337874126, 3590.2391392550644, 3585.6826536846766, 3581.134758117171, 3576.5954336281775, 3572.0646613280906, 3567.5424223621253, 3563.0286979103803, 3558.5234691878845, 3554.0267174446594, 3549.538423965765, 3545.0585700713527, 3540.5871371167077, 3536.1241064923056, 3531.6694596238503, 3527.223177972322, 3522.7852430340163, 3518.355636340587, 3513.9343394590887, 3509.521333992008, 3505.1166015773033, 3500.720123888443, 3496.331882634435, 3491.9518595598597, 3487.5800364449024, 3483.216395105384, 3478.860917392784, 3474.513585194272, 3470.174380432736, 3465.843285066799, 3461.5202810908463, 3457.2053505350495, 3452.8984754653825, 3448.599637983644, 3444.308820227475, 3440.0260043703765, 3435.7511726217217, 3431.484307226775, 3427.225390466701, 3422.9744046585815, 3418.7313321554234, 3414.4961553461694, 3410.2688566557085, 3406.0494185448792, 3401.8378235104833, 3397.6340540852852, 3393.438092838017, 3389.2499223733894, 3385.0695253320864, 3380.896884390766, 3376.731982262068, 3372.5748016946072, 3368.4253254729783, 3364.283536417745, 3360.1494173854426, 3356.0229512685723, 3351.9041209955963, 3347.7929095309296, 3343.6892998749386, 3339.5932750639236, 3335.504818170121, 3331.4239123016832, 3327.3505406026766, 3323.2846862530632, 3319.226332468697, 3315.1754625013004, 3311.132059638457, 3307.0961072035952, 3303.067588555975, 3299.0464870906662, 3295.032786238537, 3291.0264694662346, 3287.0275202761627, 3283.0359222064676, 3279.0516588310156, 3275.0747137593726, 3271.1050706367805, 3267.1427131441383, 3263.1876249979805, 3259.2397899504467, 3255.2991917892614, 3251.3658143377115, 3247.4396414546145, 3243.5206570343025, 3239.6088450065813, 3235.704189336712, 3231.8066740253844, 3227.9162831086805, 3224.0330006580516, 3220.156810780285, 3216.287697617475, 3212.4256453469898, 3208.570638181443, 3204.7226603686568, 3200.8816961916323, 3197.0477299685163, 3193.2207460525665, 3189.4007288321127, 3185.5876627305292, 3181.781532206197, 3177.98232175246, 3174.190015897602, 3170.404599204798, 3166.6260562720818, 3162.854371732307, 3159.0895302531067, 3155.33151653686, 3151.580315320643, 3147.8359113762012, 3144.098289509896, 3140.367434562673, 3136.6433314100177, 3132.9259649619125, 3129.2153201627966, 3125.511381991523, 3121.8141354613135, 3118.1235656197205, 3114.4396575485744, 3110.762396363948, 3107.091767216108, 3103.42775528947, 3099.7703458025544, 3096.119524007938, 3092.4752751922124, 3088.837584675933, 3085.2064378135747, 3081.581819993485, 3077.963716637837, 3074.352113202577, 3070.746995177381, 3067.1483480856073, 3063.5561574842404, 3059.970408963854, 3056.3910881485476, 3052.818180695908, 3049.2516722969535, 3045.691548676086, 3042.1377955910357, 3038.590398832819, 3035.049344225681, 3031.514617627043 ] }, { "legendgroup": "Constant Altitude", "line": { "color": "#AB63FA", "width": 4 }, "mode": "lines", "name": "Constant Altitude - 10km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 6353.694401964133, 6381.424223786727, 6408.824465185088, 6435.898280467948, 6462.648752779147, 6489.078897097638, 6515.19166309035, 6540.989937826238, 6566.476548359298, 6591.654264187766, 6616.525799596363, 6641.093815887878, 6665.360923510077, 6689.329684083507, 6713.0026123354355, 6736.382177944808, 6759.47080730287, 6782.270885193766, 6804.784756399176, 6827.014727230848, 6848.963066994612, 6870.632009389282, 6892.023753843636, 6913.14046679451, 6933.984282908834, 6954.557306252316, 6974.861611407296, 6994.89924454219, 7014.672224434764, 7034.182543451422, 7053.432168484499, 7072.423041849515, 7091.157082144191, 7109.636185070968, 7127.862224224661, 7145.837051846799, 7163.562499548137, 7181.0403790007185, 7198.272482600866, 7215.260584104301, 7232.006439234642, 7248.511786266421, 7264.778346583679, 7280.807825215223, 7296.601911347477, 7312.162278815921, 7327.490586575983, 7342.588479154234, 7357.45758708075, 7372.099527303349, 7386.515903584501, 7400.708306881605, 7414.678315711302, 7428.427496498493, 7441.957403910644, 7455.269581178019, 7468.365560400375, 7481.24686284067, 7493.9149992063085, 7506.371469918411, 7518.6177653696, 7530.655366170742, 7542.485743387084, 7554.110358764235, 7565.530664944344, 7576.748105672894, 7587.764115996492, 7598.580122451965, 7609.197543247142, 7619.617788433652, 7629.8422600720205, 7639.872352389392, 7649.7094519301645, 7659.354937699803, 7668.81018130212, 7678.076547070272, 7687.1553921917, 7696.0480668272985, 7704.755914224985, 7713.280270827954, 7721.622466377753, 7729.783824012485, 7737.765660360209, 7745.5692856278565, 7753.1960036857445, 7760.647112147917, 7767.923902448485, 7775.027659914078, 7781.959663832636, 7788.721187518636, 7795.313498374925, 7801.737857951291, 7807.99552199993, 7814.0877405279, 7820.015757846723, 7825.780812619246, 7831.384137903865, 7836.82696119625, 7842.110504468659, 7847.23598420696, 7852.204611445445, 7857.017591799561, 7861.6761254966295, 7866.1814074046415, 7870.534627059263, 7874.736968689044, 7878.7896112390345, 7882.693728392761, 7886.450488592744, 7890.061055059555, 7893.526585809532, 7896.848233671197, 7900.02714630045, 7903.064466194593, 7905.961330705266, 7908.718872050334, 7911.338217324789, 7913.820488510717, 7916.1668024864, 7918.378271034577, 7920.456000849944, 7922.401093545907, 7924.214645660661, 7925.89774866262, 7927.451488955265, 7928.876947881408, 7930.175201726968, 7931.347321724233, 7932.394374054704, 7933.317419851528, 7934.1175152015285, 7934.795711146915, 7935.353053686685, 7935.790583777719, 7936.109337335642, 7936.310345235445, 7936.394633311917, 7936.363222359887, 7936.217128134334, 7935.957361350347, 7935.584927683007, 7935.100827767158, 7934.50605719713, 7933.801606526415, 7932.988461267325, 7932.06760189062, 7931.040003825183, 7929.906637457685, 7928.668468132313, 7927.326456150558, 7925.8815567710535, 7924.334720209521, 7922.6868916388075, 7920.939011189027, 7919.092013947816, 7917.146829960762, 7915.1043842319095, 7912.965596724491, 7910.731382361756, 7908.402651028018, 7905.980307569867, 7903.465251797553, 7900.858378486589, 7898.160577379538, 7895.37273318802, 7892.495725594931, 7889.530429256875, 7886.477713806827, 7883.3384438570265, 7880.113479002107, 7876.80367382246, 7873.409877887838, 7869.932935761216, 7866.373687002898, 7862.732966174859, 7859.011602845369, 7855.210421593849, 7851.330242016, 7847.37187872919, 7843.3361413781, 7839.223834640631, 7835.03575823407, 7830.7727069215525, 7826.435470518732, 7822.024833900773, 7817.541577009572, 7812.986474861248, 7808.360297553927, 7803.663810275738, 7798.897773313128, 7794.062942059402, 7789.160067023534, 7784.189893839244, 7779.153163274324, 7774.0506112402445, 7768.882968801976, 7763.650962188102, 7758.35531280117, 7752.99673722829, 7747.57594725198, 7742.093649861268, 7736.550547263026, 7730.947336893551, 7725.284711430383, 7719.563358804362, 7713.783962211907, 7707.947200127548, 7702.05374631666, 7696.104269848438, 7690.099435109084, 7684.039901815242, 7677.926325027592, 7671.759355164714, 7665.539638017128, 7659.267814761557, 7652.944521975383, 7646.5703916513, 7640.146051212191, 7633.6721235261475, 7627.149226921731, 7620.577975203392, 7613.958977667072, 7607.292839116, 7600.580159876656, 7593.821535814895, 7587.017558352266, 7580.168814482469, 7573.275886788005, 7566.339353456949, 7559.359788299904, 7552.3377607670955, 7545.27383596562, 7538.168574676822, 7531.022533373837, 7523.836264239245, 7516.610315182884, 7509.345229859768, 7502.04154768814, 7494.699803867666, 7487.320529397722, 7479.904251095808, 7472.4514916160815, 7464.962769467992, 7457.438599035012, 7449.879490593497, 7442.2859503316195, 7434.6584803684045, 7426.997578772865, 7419.30373958322, 7411.577452826197, 7403.819204536417, 7396.029476775865, 7388.208747653425, 7380.357491344509, 7372.4761781107145, 7364.565274319593, 7356.625242464454, 7348.656541184248, 7340.659625283477, 7332.634945752196, 7324.582949786038, 7316.50408080629, 7308.398778480037, 7300.267478740315, 7292.110613806324, 7283.928612203677, 7275.721898784675, 7267.490894748615, 7259.236017662123, 7250.957681479532, 7242.656296563249, 7234.332269704171, 7225.986004142111, 7217.617899586219, 7209.228352235453, 7200.817754799033, 7192.386496516898, 7183.934963180189, 7175.4635371517315, 7166.972597386499, 7158.462519452086, 7149.9336755491895, 7141.386434532072, 7132.821161929, 7124.238219962706, 7115.637967570816, 7107.020760426257, 7098.386950957666, 7089.736888369764, 7081.070918663717, 7072.38938465747, 7063.692626006065, 7054.980979221914, 7046.254777695061, 7037.514351713404, 7028.760028482888, 7019.992132147666, 7011.210983810219, 7002.416901551437, 6993.610200450671, 6984.791192605734, 6975.9601871528685, 6967.117490286659, 6958.26340527991, 6949.398232503471, 6940.522269446014, 6931.635810733761, 6922.739148150165, 6913.832570655534, 6904.9163644065975, 6895.990812776028, 6887.056196371892, 6878.112793057062, 6869.160877968549, 6860.200723536804, 6851.232599504902, 6842.256772947749, 6833.273508291144, 6824.2830673308135, 6815.285709251394, 6806.281690645317, 6797.271265531644, 6788.254685374831, 6779.232199103418, 6770.204053128661, 6761.1704913630765, 6752.131755238925, 6743.088083726614, 6734.0397133530405, 6724.986878219842, 6715.92981002158, 6706.868738063854, 6697.803889281334, 6688.7354882557, 6679.663757233539, 6670.588916144126, 6661.511182617147, 6652.430772000341, 6643.3478973770525, 6634.262769583712, 6625.175597227227, 6616.086586702308, 6606.995942208677, 6597.903865768241, 6588.8105572421355, 6579.716214347716, 6570.6210326754535, 6561.525205705748, 6552.4289248256455, 6543.3323793454965, 6534.2357565154925, 6525.139241542159, 6516.043017604708, 6506.947265871374, 6497.852165515587, 6488.757893732123, 6479.664625753121, 6470.572534864047, 6461.481792419544, 6452.3925678592095, 6443.305028723277, 6434.219340668214, 6425.135667482236, 6416.054171100719, 6406.975011621527, 6397.898347320269, 6388.824334665436, 6379.75312833348, 6370.684881223775, 6361.619744473524, 6352.557867472535, 6343.499397877951, 6334.444481628847, 6325.393262960789, 6316.345884420244, 6307.30248687897, 6298.263209548245, 6289.228189993066, 6280.197564146226, 6271.171466322315, 6262.150029231629, 6253.133383993992, 6244.121660152479, 6235.114985687082, 6226.113487028244, 6217.117289070336, 6208.126515185039, 6199.141287234636, 6190.161725585206, 6181.187949119765, 6172.220075251266, 6163.258219935569, 6154.302497684281, 6145.353021577527, 6136.409903276641, 6127.473253036755, 6118.543179719315, 6109.619790804502, 6100.703192403568, 6091.793489271103, 6082.89078481719, 6073.995181119493, 6065.106778935261, 6056.22567771324, 6047.351975605501, 6038.485769479189, 6029.6271549281955, 6020.776226284721, 6011.933076630795, 6003.097797809662, 5994.270480437148, 5985.451213912883, 5976.64008643149, 5967.837184993657, 5959.042595417151, 5950.256402347746, 5941.478689270065, 5932.709538518342, 5923.949031287117, 5915.197247641827, 5906.454266529348, 5897.7201657884425, 5888.995022160114, 5880.278911297909, 5871.5719077781405, 5862.874085110005, 5854.1855157456575, 5845.506271090189, 5836.836421511533, 5828.176036350298, 5819.5251839295215, 5810.883931564353, 5802.252345571658, 5793.630491279547, 5785.018433036835, 5776.416234222429, 5767.823957254628, 5759.241663600374, 5750.6694137844015, 5742.107267398344, 5733.555283109752, 5725.01351867103, 5716.482030928332, 5707.960875830366, 5699.450108437121, 5690.949782928553, 5682.459952613165, 5673.980669936552, 5665.511986489857, 5657.053953018158, 5648.606619428804, 5640.170034799666, 5631.744247387332, 5623.329304635219, 5614.925253181655, 5606.532138867842, 5598.150006745811, 5589.778901086256, 5581.418865386357, 5573.069942377493, 5564.732174032924, 5556.405601575386, 5548.090265484639, 5539.786205504948, 5531.493460652497, 5523.212069222748, 5514.94206879773, 5506.683496253278, 5498.436387766195, 5490.200778821381, 5481.976704218868, 5473.764198080825, 5465.56329385848, 5457.374024339007, 5449.196421652331, 5441.030517277897, 5432.876342051361, 5424.7339261712405, 5416.603299205501, 5408.484490098077, 5400.377527175361, 5392.282438152616, 5384.199250140332, 5376.127989650544, 5368.068682603085, 5360.021354331785, 5351.986029590612, 5343.962732559774, 5335.951486851751, 5327.952315517287, 5319.965241051326, 5311.990285398896, 5304.027469960927, 5296.076815600058, 5288.138342646339, 5280.212070902931, 5272.2980196517265, 5264.39620765893, 5256.506653180588, 5248.629373968073, 5240.764387273518, 5232.911709855197, 5225.0713579828625, 5217.24334744304, 5209.42769354426, 5201.624411122267, 5193.833514545159, 5186.055017718492, 5178.288934090341, 5170.535276656307, 5162.794057964488, 5155.065290120393, 5147.3489847918345, 5139.645153213747, 5131.953806192982, 5124.27495411306, 5116.608606938865, 5108.954774221311, 5101.313465101961, 5093.684688317598, 5086.068452204763, 5078.464764704249, 5070.8736333655515, 5063.295065351281, 5055.729067441532, 5048.175646038215, 5040.634807169348, 5033.10655649331, 5025.590899303044, 5018.087840530246, 5010.597384749482, 5003.119536182305, 4995.654298701292, 4988.2016758340815, 4980.761670767351, 4973.334286350762, 4965.919525100875, 4958.51738920502, 4951.127880525131, 4943.751000601557, 4936.386750656817, 4929.035131599336, 4921.69614402714, 4914.369788231522, 4907.056064200659, 4899.7549716232115, 4892.466509891883, 4885.190678106937, 4877.927475079699, 4870.676899336008, 4863.438949119647, 4856.213622395733, 4849.000916854082, 4841.800829912534, 4834.613358720254, 4827.438500161003, 4820.276250856359, 4813.126607168938, 4805.989565205557, 4798.865120820378, 4791.75326961803, 4784.654006956678, 4777.567327951093, 4770.493227475663, 4763.431700167397, 4756.382740428887, 4749.346342431245, 4742.3225001170185, 4735.311207203066, 4728.312457183412, 4721.326243332076, 4714.352558705866, 4707.3913961471535, 4700.442748286616, 4693.5066075459545, 4686.582966140589, 4679.671816082314, 4672.773149181947, 4665.88695705194, 4659.013231108959, 4652.151962576457, 4645.303142487201, 4638.466761685793, 4631.642810831155, 4624.831280398985, 4618.032160684203, 4611.245441803369, 4604.471113697062, 4597.709166132255, 4590.959588704659, 4584.222370841041, 4577.497501801522, 4570.7849706818515, 4564.084766415662, 4557.396877776694, 4550.721293381007, 4544.058001689165, 4537.406991008396, 4530.768249494737, 4524.141765155159, 4517.527525849656, 4510.925519293331, 4504.335733058449, 4497.758154576479, 4491.192771140101, 4484.639569905216, 4478.0985378929045, 4471.569661991395, 4465.052928957994, 4458.548325421006, 4452.055837881626, 4445.5754527158215, 4439.107156176187, 4432.650934393787, 4426.206773379978, 4419.7746590282, 4413.35457711578, 4406.946513305681, 4400.550453148252, 4394.166382082972, 4387.794285440137, 4381.434148442581, 4375.085956207334, 4368.749693747291, 4362.425345972849, 4356.11289769354, 4349.812333619636, 4343.523638363737, 4337.246796442355, 4330.9817922774655, 4324.728610198061, 4318.487234441665, 4312.257649155857, 4306.039838399756, 4299.833786145513, 4293.639476279761, 4287.456892605078, 4281.2860188414115, 4275.126838627502, 4268.979335522291, 4262.843493006303, 4256.719294483019, 4250.606723280248, 4244.505762651462, 4238.416395777133, 4232.338605766053, 4226.2723756566265, 4220.217688418175, 4214.174526952208, 4208.142874093678, 4202.122712612239, 4196.114025213481, 4190.11679454015, 4184.131003173358, 4178.156633633781, 4172.193668382844, 4166.242089823891, 4160.301880303338, 4154.373022111835, 4148.455497485378, 4142.549288606447, 4136.654377605114, 4130.770746560132, 4124.898377500025, 4119.037252404168, 4113.187353203837, 4107.34866178327, 4101.521159980699, 4095.7048295893865, 4089.8996523586297, 4084.1056099947778, 4078.322684162221, 4072.5508564843703, 4066.7901085446406, 4061.0404218874028, 4055.301778018937, 4049.574158408381, 4043.8575444886505, 4038.151917657366, 4032.4572592777577, 4026.7735506795743, 4021.10077315996, 4015.4389079843468, 4009.7879363873158, 4004.1478395734634, 3998.518598718245, 3992.9001949688295, 3987.2926094449135, 3981.695823239556, 3976.1098174199915, 3970.534573028425, 3964.9700710828356, 3959.4162925777605, 3953.8732184850655, 3948.3408297547244, 3942.8191073155695, 3937.3080320760446, 3931.8075849249485, 3926.3177467321675, 3920.838498349399, 3915.3698206108756, 3909.9116943340637, 3904.46410032037, 3899.0270193558304, 3893.6004322118, 3888.1843196456252, 3882.778662401312, 3877.3834412101883, 3871.9986367915562, 3866.624229853339, 3861.2602010927153, 3855.9065311967584, 3850.563200843044, 3845.230190700281, 3839.9074814289115, 3834.5950536817168, 3829.2928881044045, 3824.0009653362054, 3818.7192660104442, 3813.447770755115, 3808.1864601934562, 3802.9353149444973, 3797.6943156236175, 3792.4634428430945, 3787.2426772126405, 3782.031999339935, 3776.8313898311535, 3771.6408292914857, 3766.4602983256536, 3761.289777538412, 3756.129247535056, 3750.9786889219145, 3745.8380823068364, 3740.7074082996824, 3735.5866475127896, 3730.4757805614536, 3725.37478806439, 3720.2836506441927, 3715.20234892779, 3710.130863546892, 3705.0691751384347, 3700.017264345015, 3694.975111815324, 3689.942698204573, 3684.920004174912, 3679.907010395849, 3674.9036975446584, 3669.9100463067857, 3664.926037376249, 3659.9516514560296, 3654.9868692584632, 3650.031671505633, 3645.0860389297322, 3640.1499522734553, 3635.22339229036, 3630.30633974523, 3625.398775414442, 3620.500680086315, 3615.612034561465, 3610.7328196531503, 3605.863016187613, 3601.002605004415, 3596.151566956771, 3591.3098829118785, 3586.4775337512397, 3581.6545003709784, 3576.8407636821644, 3572.036304611111, 3567.2411040996917, 3562.455143105641, 3557.6784026028454, 3552.9108635816497, 3548.1525070491343, 3543.403314029414, 3538.663265563909, 3533.9323427116274, 3529.210526549443, 3524.4977981723614, 3519.794138693785, 3515.0995292457833, 3510.4139509793454, 3505.7373850646345, 3501.069812691248, 3496.411215068457, 3491.7615734254528, 3487.1208690115946, 3482.489083096637, 3477.866196970969, 3473.2521919458486, 3468.647049353621, 3464.0507505479495, 3459.463276904035, 3454.8846098188296, 3450.314730711255, 3445.7536210224102, 3441.2012622157813, 3436.6576357774434, 3432.1227232162655, 3427.596506064104, 3423.078965876002, 3418.5700842303772, 3414.0698427292177, 3409.5782229982615, 3405.0952066871796, 3400.620775469764, 3396.1549110440965, 3391.697595132726, 3387.2488094828454, 3382.8085358664516, 3378.376756080516, 3373.9534519471536, 3369.538605313773, 3365.1321980532425, 3360.734212064043, 3356.3446292704193, 3351.963431622536, 3347.5906010966173, 3343.2261196951, 3338.8699694467673, 3334.5221324069003, 3330.1825906574063, 3325.8513263069585, 3321.5283214911287, 3317.2135583725167, 3312.9070191408778, 3308.608686013255, 3304.318541234093, 3300.036567075367, 3295.762745836699, 3291.4970598454743, 3287.239491456957, 3282.990023054403, 3278.7486370491742, 3274.515315880833, 3270.290042017267, 3266.0727979547783, 3261.863566218196, 3257.662329360966, 3253.4690699652624, 3249.283770642071, 3245.106414031285, 3240.9369828018052, 3236.775459651624, 3232.6218273079135, 3228.4760685271144, 3224.33816609502, 3220.2081028268544, 3216.0858615673615, 3211.9714251908767, 3207.8647766014087, 3203.765898732714, 3199.674774548368, 3195.5913870418403, 3191.515719236564, 3187.4477541860037, 3183.3874749737233, 3179.334864713452, 3175.289906549147, 3171.2525836550526, 3167.2228792357682, 3163.200776526299, 3159.1862587921205, 3155.179309329227, 3151.1799114641963, 3147.1880485542306, 3143.203703987215, 3139.2268611817653, 3135.2575035872796, 3131.295614683977, 3127.341177982955, 3123.3941770262245, 3119.4545953867537, 3115.522416668515, 3111.5976245065162, 3107.680202566849, 3103.7701345467185, 3099.8674041744825, 3095.9719952096884, 3092.0838914431015, 3088.2030766967405, 3084.329534823909, 3080.4632497092234, 3076.6042052686425, 3072.7523854494934, 3068.9077742305, 3065.0703556218054, 3061.240113664998, 3057.4170324331308, 3053.6010960307485, 3049.7922885939, 3045.9905942901646, 3042.1959973186663, 3038.4084819100917, 3034.6280323267074, 3030.8546328623747, 3027.088267842559, 3023.328921624348, 3019.5765785964622, 3015.8312231792647, 3012.0928398247693, 3008.361413016655, 3004.6369272702686, 3000.919367132631, 2997.20871718245, 2993.5049620301174, 2989.8080863177133, 2986.1180747190197, 2982.434911939511, 2978.7585827163584, 2975.0890718184337, 2971.426364046305, 2967.77044423224, 2964.1212972401986, 2960.478907965832, 2956.8432613364826, 2953.2143423111715, 2949.5921358806004, 2945.976627067144, 2942.367800924839, 2938.7656425393793, 2935.170137028108, 2931.5812695400073, 2927.999025255688, 2924.423389387379, 2920.8543471789158, 2917.291883905729, 2913.7359848748292, 2910.1866354247954, 2906.6438209257603, 2903.1075267793954, 2899.5777384188946, 2896.054441308956, 2892.5376209457695, 2889.027262856996, 2885.523352601749, 2882.025875770576, 2878.534817985439, 2875.0501648996974, 2871.5719021980804, 2868.1000155966694, 2864.6344908428796, 2861.1753137154305, 2857.7224700243273, 2854.2759456108365, 2850.835726347459, 2847.4017981379097, 2843.9741469170885, 2840.552758651055, 2837.1376193370033, 2833.728715003236, 2830.3260317091317, 2826.929555545122, 2823.5392726326622, 2820.1551691241993, 2816.7772312031475, 2813.4054450838535, 2810.0397970115664, 2806.680273262412, 2803.326860143354, 2799.979543992168, 2796.638311177409, 2793.303148098373, 2789.97404118507, 2786.650976898187, 2783.333941729055, 2780.0229221996156, 2776.7179048623857, 2773.41887630042, 2770.1258231272795, 2766.838731986991, 2763.557589554014, 2760.2823825332034, 2757.0130976597693, 2753.749721699245, 2750.4922414474436, 2747.2406437304253, 2743.994915404451, 2740.7550433559527, 2737.521014501485, 2734.2928157876954, 2731.070434191274, 2727.8538567189203, 2724.643070407302, 2721.4380623230086, 2718.2388195625176, 2715.0453292521483, 2711.8575785480234, 2708.67555463602, 2705.4992447317345, 2702.328636080439, 2699.1637159570314, 2696.0044716660045, 2692.850890541388, 2689.7029599467164, 2686.5606672749814, 2683.4239999485817, 2680.292945419288, 2677.167491168192, 2674.0476247056627, 2670.933333571302 ] }, { "legendgroup": "Constant Speed", "line": { "color": "#FFA15A", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 12km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 8302.948830069441, 8339.185903666932, 8374.992284627246, 8410.372094971734, 8445.329363724133, 8479.868030830934, 8513.991950889484, 8547.704896694673, 8581.010562614405, 8613.912567803258, 8646.414459263287, 8678.519714760263, 8710.231745603076, 8741.553899293673, 8772.489462054276, 8803.041661238402, 8833.213667631591, 8863.008597647611, 8892.429515425385, 8921.479434831685, 8950.16132137429, 8978.478094030059, 9006.432626992095, 9034.027751339936, 9061.26625663649, 9088.150892455295, 9114.68436984127, 9140.869362708303, 9166.708509176424, 9192.204412851544, 9217.359644050302, 9242.17674097258, 9266.658210824051, 9290.806530891065, 9314.62414956992, 9338.11348735264, 9361.276937771152, 9384.116868301657, 9406.635621231015, 9428.835514486733, 9450.718842432123, 9472.2878766282, 9493.544866563645, 9514.492040354258, 9535.131605413175, 9555.465749093051, 9575.496639301435, 9595.22642509037, 9614.657237221416, 9633.79118870696, 9652.630375328908, 9671.176876135612, 9689.43275391795, 9707.400055665441, 9725.080813003082, 9742.477042609855, 9759.590746619488, 9776.423913004284, 9792.97851594265, 9809.256516170972, 9825.259861320481, 9840.990486239707, 9856.450313303052, 9871.6412527061, 9886.56520274812, 9901.224050102297, 9915.619670074211, 9929.753926848934, 9943.628673727288, 9957.245753351644, 9970.606997921674, 9983.71422940046, 9996.569259711343, 10009.173890925853, 10021.529915443121, 10033.639116161035, 10045.503266639542, 10057.124131256354, 10068.50346535538, 10079.643015388163, 10090.544519048619, 10101.20970540132, 10111.640295003592, 10121.838000021682, 10131.804524341207, 10141.54156367215, 10151.05080564861, 10160.333929923492, 10169.39260825839, 10178.228504608835, 10186.843275205094, 10195.238568628722, 10203.416025885013, 10211.377280471592, 10219.12395844319, 10226.657678472908, 10233.980051910014, 10241.092682834445, 10247.997168108195, 10254.695097423697, 10261.18805334932, 10267.477611372133, 10273.565339938043, 10279.45280048945, 10285.14154750051, 10290.6331285101, 10295.92908415265, 10301.0309481869, 10305.940247522678, 10310.658502245824, 10315.187225641332, 10319.52792421481, 10323.682097712324, 10327.65123913874, 10331.436834774615, 10335.04036419174, 10338.463300267384, 10341.707109197308, 10344.773250507686, 10347.663177065871, 10350.37833509021, 10352.920164158877, 10355.290097217792, 10357.489560587746, 10359.519973970717, 10361.382750455447, 10363.079296522374, 10364.611012047908, 10365.97929030813, 10367.185517981981, 10368.231075153915, 10369.117335316123, 10369.84566537038, 10370.417425629475, 10370.83396981832, 10371.096645074782, 10371.206791950228, 10371.165744409867, 10370.974829832867, 10370.635369012318, 10370.14867615508, 10369.516058881469, 10368.738818224905, 10367.8182486315, 10366.75563795958, 10365.552267479232, 10364.209411871861, 10362.728339229756, 10361.11031105573, 10359.356582262857, 10357.468401174237, 10355.447009522964, 10353.293642452127, 10351.009528515024, 10348.5958896755, 10346.053941308488, 10343.384892200676, 10340.589944551477, 10337.670293974097, 10334.627129496906, 10331.461633565015, 10328.17498204211, 10324.768344212514, 10321.242882783552, 10317.599753888147, 10313.840107087733, 10309.965085375443, 10305.975825179567, 10301.873456367352, 10297.659102249081, 10293.333879582464, 10288.898898577374, 10284.355262900855, 10279.70406968252, 10274.9464095202, 10270.08336648601, 10265.116018132676, 10260.045435500244, 10254.87268312313, 10249.598819037485, 10244.224894788907, 10238.751955440528, 10233.181039581426, 10227.51317933536, 10221.74940036991, 10215.890721905898, 10209.938156727192, 10203.89271119087, 10197.755385237668, 10191.527172402859, 10185.209059827397, 10178.802028269432, 10172.30705211619, 10165.725099396139, 10159.057131791556, 10152.304104651348, 10145.46696700429, 10138.546661572524, 10131.544124785434, 10124.460286793801, 10117.296071484321, 10110.052396494415, 10102.730173227354, 10095.33030686771, 10087.853696397124, 10080.301234610324, 10072.673808131529, 10064.972297431066, 10057.197576842353, 10049.350514579102, 10041.4319727529, 10033.442807390955, 10025.383868454226, 10017.25599985577, 10009.06003947937, 10000.796819198438, 9992.46716489516, 9984.071896479923, 9975.611827910969, 9967.087767214322, 9958.50051650393, 9949.850872002073, 9941.139624059997, 9932.367557178764, 9923.53545003034, 9914.644075478913, 9905.694200602406, 9896.686586714204, 9887.621989385127, 9878.501158465535, 9869.324838107692, 9860.093766788304, 9850.808677331228, 9841.470296930385, 9832.079347172845, 9822.63654406209, 9813.142598041442, 9803.59821401766, 9794.004091384686, 9784.360924047578, 9774.669400446553, 9764.930203581207, 9755.144011034869, 9745.31149499909, 9735.43332229827, 9725.510154414407, 9715.542647511984, 9705.53145246296, 9695.477214871888, 9685.380575101144, 9675.242168296263, 9665.062624411365, 9654.842568234699, 9644.582619414286, 9634.283392483616, 9623.945496887476, 9613.569537007827, 9603.156112189787, 9592.705816767655, 9582.219240091048, 9571.69696655106, 9561.13957560652, 9550.547641810283, 9539.921734835594, 9529.262419502491, 9518.57025580426, 9507.845798933948, 9497.089599310877, 9486.302202607245, 9475.484149774718, 9464.635977071086, 9453.758216086915, 9442.851393772238, 9431.916032463272, 9420.95264990913, 9409.961759298569, 9398.943869286732, 9387.899484021898, 9376.82910317225, 9365.733221952634, 9354.612331151293, 9343.466917156644, 9332.297461984, 9321.104443302316, 9309.88833446089, 9298.649604516078, 9287.388718257955, 9276.106136236993, 9264.802314790679, 9253.477706070122, 9242.132758066628, 9230.767914638252, 9219.383615536286, 9207.980296431742, 9196.558388941783, 9185.118320656096, 9173.66051516325, 9162.18539207698, 9150.693367062444, 9139.184851862407, 9127.6602543234, 9116.119978421784, 9104.564424289807, 9092.993988241547, 9081.409062798839, 9069.810036717121, 9058.1972950112, 9046.571218980986, 9034.93218623712, 9023.280570726563, 9011.61674275809, 8999.941069027716, 8988.253912644059, 8976.555633153615, 8964.846586565962, 8953.12712537885, 8941.397598603282, 8929.658351788436, 8917.909727046535, 8906.152063077658, 8894.38569519441, 8882.61095534654, 8870.828172145462, 8859.037670888683, 8847.239773584142, 8835.434798974455, 8823.623062561048, 8811.804876628235, 8799.980550267173, 8788.150389399698, 8776.314696802116, 8764.473772128858, 8752.627911936032, 8740.777409704904, 8728.922555865245, 8717.063637818585, 8705.20093996138, 8693.334743708056, 8681.465327513946, 8669.592966898137, 8657.717934466205, 8645.840499932836, 8633.96093014433, 8622.07948910104, 8610.19643797964, 8598.312035155337, 8586.426536223937, 8574.540194023835, 8562.65325865784, 8550.76597751496, 8538.878595292012, 8526.991354015156, 8515.10449306129, 8503.218249179376, 8491.332856511593, 8479.448546614425, 8467.565548479604, 8455.684088554968, 8443.804390765174, 8431.92667653231, 8420.051164796403, 8408.17807203578, 8396.307612287364, 8384.439997166799, 8372.57543588849, 8360.714135285525, 8348.85629982948, 8337.002131650104, 8325.151830554883, 8313.305594048505, 8301.463617352185, 8289.626093422907, 8277.793212972498, 8265.965164486654, 8254.14213424378, 8242.324306333776, 8230.511862676647, 8218.704983041052, 8206.90384506271, 8195.108624262672, 8183.319494065521, 8171.536625817426, 8159.76018880408, 8147.990350268538, 8136.227275428937, 8124.471127496074, 8112.72206769092, 8100.980255261974, 8089.245847502513, 8077.51899976775, 8065.799865491847, 8054.088596204846, 8042.385341549447, 8030.6902492977115, 8019.003465367633, 8007.32513383959, 7995.655396972714, 7983.994395221103, 7972.342267249957, 7960.699149951603, 7949.065178461375, 7937.440486173418, 7925.825204756366, 7914.219464168918, 7902.623392675293, 7891.03711686057, 7879.46076164596, 7867.894450303911, 7856.338304473146, 7844.792444173573, 7833.256987821107, 7821.732052242355, 7810.217752689231, 7798.7142028534245, 7787.221514880799, 7775.739799385666, 7764.2691654649525, 7752.809720712273, 7741.361571231895, 7729.924821652593, 7718.499575141409, 7707.085933417313, 7695.683996764737, 7684.293864047034, 7672.915632719834, 7661.549398844278, 7650.195257100164, 7638.853300799003, 7627.523621896956, 7616.20631100769, 7604.901457415111, 7593.609149086034, 7582.329472682723, 7571.062513575342, 7559.80835585433, 7548.567082342653, 7537.338774607962, 7526.123512974686, 7514.921376535988, 7503.7324431656625, 7492.556789529915, 7481.394491099052, 7470.245622159105, 7459.110255823318, 7447.988464043581, 7436.880317621751, 7425.785886220889, 7414.705238376408, 7403.638441507134, 7392.58556192627, 7381.54666485227, 7370.521814419642, 7359.511073689645, 7348.5145046609, 7337.532168279935, 7326.564124451613, 7315.610432049504, 7304.671148926146, 7293.746331923246, 7282.836036881772, 7271.940318651993, 7261.059231103394, 7250.192827134554, 7239.341158682907, 7228.504276734439, 7217.682231333308, 7206.875071591355, 7196.08284569758, 7185.305600927497, 7174.54338365244, 7163.796239348768, 7153.064212607014, 7142.347347140936, 7131.645685796504, 7120.9592705608065, 7110.288142570893, 7099.632342122508, 7088.991908678797, 7078.366880878898, 7067.7572965464815, 7057.163192698214, 7046.584605552136, 7036.0215705359915, 7025.474122295461, 7014.94229470234, 7004.42612086264, 6993.925633124622, 6983.440863086751, 6972.971841605599, 6962.518598803667, 6952.081164077137, 6941.659566103564, 6931.253832849491, 6920.863991578015, 6910.490068856263, 6900.132090562814, 6889.790081895072, 6879.464067376536, 6869.1540708640405, 6858.860115554912, 6848.582223994077, 6838.320418081094, 6828.074719077127, 6817.845147611852, 6807.631723690325, 6797.434466699753, 6787.253395416234, 6777.088528011421, 6766.939882059129, 6756.807474541895, 6746.691321857455, 6736.591439825172, 6726.50784369244, 6716.440548140962, 6706.389567293036, 6696.354914717748, 6686.336603437116, 6676.334645932185, 6666.3490541490655, 6656.379839504903, 6646.427012893813, 6636.490584692751, 6626.5705647673285, 6616.666962477573, 6606.7797866836545, 6596.909045751528, 6587.054747558552, 6577.21689949904, 6567.395508489767, 6557.590580975426, 6547.802122934015, 6538.0301398822185, 6528.2746368806875, 6518.5356185393075, 6508.813089022397, 6499.10705205387, 6489.4175109223415, 6479.744468486196, 6470.08792717859, 6460.4478890124365, 6450.824355585315, 6441.217328084344, 6431.626807291022, 6422.052793586005, 6412.495286953841, 6402.9542869876805, 6393.429792893908, 6383.921803496758, 6374.430317242885, 6364.9553322058655, 6355.49684609069, 6346.054856238196, 6336.629359629456, 6327.2203528901255, 6317.827832294762, 6308.45179377109, 6299.092232904223, 6289.749144940858, 6280.422524793422, 6271.112367044172, 6261.818665949276, 6252.54141544283, 6243.280609140861, 6234.036240345266, 6224.808302047738, 6215.5967869336355, 6206.401687385826, 6197.222995488484, 6188.060703030858, 6178.914801511003, 6169.785282139463, 6160.672135842946, 6151.5753532679255, 6142.494924784242, 6133.430840488646, 6124.383090208314, 6115.351663504341, 6106.336549675177, 6097.337737760047, 6088.355216542336, 6079.388974552932, 6070.439000073539, 6061.505281139968, 6052.587805545381, 6043.686560843515, 6034.8015343518555, 6025.932713154821, 6017.0800841068485, 6008.243633835513, 5999.423348744593, 5990.619215017078, 5981.831218618198, 5973.059345298379, 5964.3035805961945, 5955.563909841275, 5946.8403181571875, 5938.132790464308, 5929.44131148263, 5920.7658657345755, 5912.10643754776, 5903.463011057741, 5894.835570210725, 5886.224098766269, 5877.628580299929, 5869.0489982059, 5860.48533569963, 5851.937575820389, 5843.405701433834, 5834.889695234538, 5826.389539748496, 5817.90521733559, 5809.436710192063, 5800.984000352937, 5792.547069694409, 5784.125899936251, 5775.720472644148, 5767.330769232034, 5758.956770964407, 5750.5984589586005, 5742.255814187052, 5733.928817479537, 5725.617449525389, 5717.321690875682, 5709.0415219454, 5700.776923015601, 5692.527874235515, 5684.294355624668, 5676.076347074952, 5667.873828352686, 5659.686779100652, 5651.5151788401245, 5643.359006972845, 5635.218242783018, 5627.092865439249, 5618.982853996489, 5610.8881873979435, 5602.808844476974, 5594.744803958957, 5586.69604446315, 5578.662544504531, 5570.644282495602, 5562.641236748187, 5554.6533854752215, 5546.680706792498, 5538.723178720414, 5530.780779185694, 5522.853486023085, 5514.941276977057, 5507.044129703453, 5499.162021771154, 5491.2949306637065, 5483.442833780931, 5475.605708440532, 5467.783531879665, 5459.976281256517, 5452.183933651838, 5444.406466070479, 5436.643855442906, 5428.896078626701, 5421.163112408029, 5413.444933503122, 5405.741518559723, 5398.052844158514, 5390.378886814537, 5382.7196229786005, 5375.075029038672, 5367.44508132124, 5359.829756092671, 5352.229029560574, 5344.642877875099, 5337.071277130272, 5329.514203365288, 5321.971632565794, 5314.443540665165, 5306.929903545754, 5299.430697040145, 5291.945896932378, 5284.475478959157, 5277.019418811065, 5269.57769213375, 5262.1502745290945, 5254.737141556386, 5247.338268733458, 5239.953631537843, 5232.5832054078755, 5225.226965743821, 5217.884887908972, 5210.5569472307225, 5203.2431190016605, 5195.9433784806215, 5188.657700893737, 5181.386061435476, 5174.128435269678, 5166.884797530554, 5159.655123323705, 5152.4393877271095, 5145.237565792096, 5138.049632544325, 5130.875562984742, 5123.715332090524, 5116.568914816023, 5109.436286093681, 5102.317420834957, 5095.21229393122, 5088.120880254656, 5081.043154659145, 5073.979091981129, 5066.92866704049, 5059.891854641391, 5052.868629573123, 5045.858966610939, 5038.8628405168865, 5031.880226040602, 5024.911097920132, 5017.955430882722, 5011.0131996456075, 5004.0843789167775, 4997.168943395759, 4990.26686777436, 4983.378126737428, 4976.502694963584, 4969.640547125958, 4962.79165789291, 4955.956001928741, 4949.133553894407, 4942.324288448201, 4935.528180246452, 4928.745203944207, 4921.975334195891, 4915.218545655982, 4908.474812979659, 4901.744110823449, 4895.026413845876, 4888.32169670808, 4881.629934074444, 4874.95110061322, 4868.285170997121, 4861.632119903936, 4854.991922017115, 4848.364552026354, 4841.749984628183, 4835.148194526526, 4828.5591564332735, 4821.982845068833, 4815.419235162684, 4808.868301453921, 4802.330018691782, 4795.8043616361865, 4789.291305058259, 4782.790823740833, 4776.30289247897, 4769.827486080463, 4763.364579366327, 4756.91414717129, 4750.476164344281, 4744.050605748898, 4737.637446263889, 4731.236660783607, 4724.8482242184755, 4718.472111495439, 4712.1082975584095, 4705.756757368701, 4699.417465905478, 4693.090398166168, 4686.775529166894, 4680.472833942893, 4674.182287548925, 4667.903865059674, 4661.637541570158, 4655.383292196118, 4649.141092074413, 4642.910916363395, 4636.692740243296, 4630.486538916604, 4624.292287608425, 4618.1099615668445, 4611.939536063301, 4605.780986392917, 4599.634287874868, 4593.499415852716, 4587.376345694746, 4581.265052794308, 4575.165512570135, 4569.077700466682, 4563.00159195443, 4556.937162530216, 4550.884387717527, 4544.843243066818, 4538.813704155816, 4532.7957465898035, 4526.789346001918, 4520.794478053446, 4514.8111184341, 4508.839242862296, 4502.878827085437, 4496.929846880176, 4490.99227805269, 4485.066096438942, 4479.151277904931, 4473.247798346959, 4467.3556336918755, 4461.474759897326, 4455.605152951997, 4449.746788875852, 4443.899643720369, 4438.063693568771, 4432.238914536258, 4426.425282770226, 4420.622774450495, 4414.831365789516, 4409.051033032593, 4403.281752458093, 4397.523500377647, 4391.776253136356, 4386.039987112996, 4380.314678720204, 4374.60030440468, 4368.896840647376, 4363.204263963673, 4357.522550903576, 4351.851678051893, 4346.1916220284, 4340.542359488029, 4334.903867121032, 4329.276121653146, 4323.659099845769, 4318.052778496105, 4312.457134437336, 4306.872144538775, 4301.297785706008, 4295.734034881062, 4290.18086904254, 4284.63826520577, 4279.106200422937, 4273.584651783238, 4268.073596413007, 4262.573011475849, 4257.082874172771, 4251.6031617423205, 4246.133851460692, 4240.674920641862, 4235.22634663771, 4229.788106838135, 4224.360178671163, 4218.942539603074, 4213.535167138498, 4208.138038820536, 4202.751132230852, 4197.374424989792, 4192.00789475647, 4186.651519228877, 4181.305276143976, 4175.969143277786, 4170.643098445489, 4165.327119501512, 4160.02118433961, 4154.725270892964, 4149.439357134252, 4144.163421075732, 4138.897440769332, 4133.641394306714, 4128.395259819354, 4123.159015478614, 4117.932639495819, 4112.716110122317, 4107.509405649551, 4102.312504409122, 4097.125384772855, 4091.9480251528566, 4086.7804040015803, 4081.6224998118796, 4076.474291117063, 4071.33575649095, 4066.206874547926, 4061.0876239429867, 4055.977983371794, 4050.877931570717, 4045.7874473168818, 4040.7065094282116, 4035.635096763471, 4030.5731882223063, 4025.520762745284, 4020.47779931393, 4015.444276950759, 4010.4201747193165, 4005.405471724206, 4000.4001471111224, 3995.404180066882, 3990.417549819449, 3985.44023563796, 3980.4722168327553, 3975.513472755397, 3970.563982798692, 3965.623726396717, 3960.692683024835, 3955.7708321997106, 3950.858153479332, 3945.9546264630226, 3941.0602307914587, 3936.174946146675, 3931.29875225209, 3926.4316288725, 3921.5735558140973, 3916.7245129244775, 3911.884480092647, 3907.053437249018, 3902.23136436543, 3897.418241455139, 3892.614048572824, 3887.818765814586, 3883.0323733179494, 3878.2548512618628, 3873.486179866689, 3868.726339394206, 3863.9753101476035, 3859.2330724714716, 3854.499606751798, 3849.7748934159604, 3845.058912932714, 3840.351645812182, 3835.6530726058454, 3830.9631739065335, 3826.2819303484043, 3821.609322606938, 3816.945331398915, 3812.289937482404, 3807.6431216567435, 3803.0048647625254, 3798.375147681575, 3793.7539513369306, 3789.141256692826, 3784.5370447546657, 3779.941296569002, 3775.35399322352, 3770.775115847001, 3766.2046456093058, 3761.6425637213506, 3757.088851435076, 3752.5434900434198, 3748.0064608802923, 3743.477745320544, 3738.9573247799394, 3734.445180715127, 3729.941294623603, 3725.4456480436834, 3720.9582225544746, 3716.478999775833, 3712.007961368337, 3707.5450890332495, 3703.090364512485, 3698.6437695885697, 3694.20528608461, 3689.774895864251, 3685.3525808316394, 3680.938322931389, 3676.5321041485367, 3672.133906508502, 3667.7437120770524, 3663.361502960258, 3658.9872613044467, 3654.620969296175, 3650.26260916217, 3645.912163169294, 3641.5696136244974, 3637.2349428747793, 3632.908133307137, 3628.589167348524, 3624.2780274658016, 3619.9746961656947, 3615.6791559947433, 3611.3913895392534, 3607.111379425253, 3602.839108318438, 3598.5745589241296, 3594.317713987221, 3590.0685562921276, 3585.8270686627357, 3581.5932339623537, 3577.3670350936595, 3573.1484549986512, 3568.937476658589, 3564.7340830939493, 3560.538257364367, 3556.3499825685867, 3552.1692418444, 3547.996018368603, 3543.830295356935, 3539.6720560640197, 3535.521283783318, 3531.377961847067, 3527.2420736262266, 3523.113602530422, 3518.9925320078814, 3514.87884554539, 3510.772526668225, 3506.673558940097, 3502.581925963093, 3498.4976113776197, 3494.4205988623467, 3490.3508721341386 ] }, { "legendgroup": "Constant Altitude", "line": { "color": "#FFA15A", "width": 4 }, "mode": "lines", "name": "Constant Altitude - 12km", "showlegend": true, "type": "scatter", "x": [ 0.1, 0.10110110110110111, 0.1022022022022022, 0.10330330330330331, 0.1044044044044044, 0.10550550550550551, 0.10660660660660662, 0.10770770770770771, 0.10880880880880882, 0.10990990990990991, 0.11101101101101102, 0.11211211211211211, 0.11321321321321322, 0.11431431431431432, 0.11541541541541542, 0.11651651651651652, 0.11761761761761762, 0.11871871871871872, 0.11981981981981982, 0.12092092092092092, 0.12202202202202203, 0.12312312312312312, 0.12422422422422423, 0.12532532532532534, 0.12642642642642643, 0.12752752752752752, 0.12862862862862862, 0.12972972972972974, 0.13083083083083083, 0.13193193193193192, 0.13303303303303304, 0.13413413413413414, 0.13523523523523523, 0.13633633633633635, 0.13743743743743744, 0.13853853853853854, 0.13963963963963966, 0.14074074074074075, 0.14184184184184184, 0.14294294294294294, 0.14404404404404403, 0.14514514514514515, 0.14624624624624624, 0.14734734734734733, 0.14844844844844846, 0.14954954954954955, 0.15065065065065064, 0.15175175175175176, 0.15285285285285286, 0.15395395395395395, 0.15505505505505507, 0.15615615615615616, 0.15725725725725725, 0.15835835835835835, 0.15945945945945944, 0.16056056056056056, 0.16166166166166165, 0.16276276276276275, 0.16386386386386387, 0.16496496496496496, 0.16606606606606605, 0.16716716716716717, 0.16826826826826827, 0.16936936936936936, 0.17047047047047048, 0.17157157157157157, 0.17267267267267267, 0.1737737737737738, 0.17487487487487485, 0.17597597597597597, 0.17707707707707707, 0.17817817817817816, 0.17927927927927928, 0.18038038038038037, 0.18148148148148147, 0.1825825825825826, 0.18368368368368368, 0.18478478478478477, 0.1858858858858859, 0.18698698698698699, 0.18808808808808808, 0.1891891891891892, 0.19029029029029026, 0.19139139139139139, 0.1924924924924925, 0.19359359359359357, 0.1946946946946947, 0.19579579579579579, 0.19689689689689688, 0.197997997997998, 0.1990990990990991, 0.20020020020020018, 0.2013013013013013, 0.2024024024024024, 0.2035035035035035, 0.2046046046046046, 0.2057057057057057, 0.2068068068068068, 0.20790790790790792, 0.20900900900900898, 0.2101101101101101, 0.2112112112112112, 0.2123123123123123, 0.2134134134134134, 0.2145145145145145, 0.2156156156156156, 0.21671671671671672, 0.2178178178178178, 0.2189189189189189, 0.22002002002002002, 0.22112112112112112, 0.2222222222222222, 0.22332332332332333, 0.2244244244244244, 0.22552552552552552, 0.2266266266266266, 0.22772772772772773, 0.22882882882882882, 0.22992992992992992, 0.231031031031031, 0.23213213213213213, 0.23323323323323322, 0.23433433433433432, 0.23543543543543544, 0.23653653653653653, 0.23763763763763762, 0.23873873873873871, 0.23983983983983984, 0.24094094094094093, 0.24204204204204202, 0.24314314314314314, 0.24424424424424424, 0.24534534534534533, 0.24644644644644642, 0.24754754754754754, 0.24864864864864863, 0.24974974974974973, 0.25085085085085085, 0.25195195195195197, 0.25305305305305303, 0.2541541541541541, 0.2552552552552553, 0.25635635635635634, 0.2574574574574574, 0.2585585585585586, 0.25965965965965965, 0.2607607607607607, 0.26186186186186183, 0.26296296296296295, 0.264064064064064, 0.26516516516516514, 0.26626626626626626, 0.2673673673673673, 0.26846846846846845, 0.26956956956956957, 0.27067067067067063, 0.27177177177177175, 0.2728728728728729, 0.27397397397397394, 0.27507507507507506, 0.2761761761761762, 0.27727727727727725, 0.27837837837837837, 0.2794794794794795, 0.28058058058058055, 0.2816816816816817, 0.2827827827827828, 0.28388388388388386, 0.284984984984985, 0.2860860860860861, 0.28718718718718717, 0.28828828828828823, 0.2893893893893894, 0.29049049049049047, 0.29159159159159154, 0.2926926926926927, 0.2937937937937938, 0.29489489489489484, 0.29599599599599596, 0.2970970970970971, 0.29819819819819815, 0.29929929929929927, 0.3004004004004004, 0.30150150150150146, 0.3026026026026026, 0.3037037037037037, 0.30480480480480476, 0.3059059059059059, 0.307007007007007, 0.30810810810810807, 0.3092092092092092, 0.3103103103103103, 0.3114114114114114, 0.3125125125125125, 0.3136136136136136, 0.3147147147147147, 0.3158158158158158, 0.3169169169169169, 0.318018018018018, 0.3191191191191191, 0.32022022022022023, 0.3213213213213213, 0.32242242242242236, 0.32352352352352354, 0.3246246246246246, 0.32572572572572567, 0.32682682682682684, 0.3279279279279279, 0.329029029029029, 0.3301301301301301, 0.3312312312312312, 0.3323323323323323, 0.3334334334334334, 0.3345345345345345, 0.3356356356356356, 0.3367367367367367, 0.33783783783783783, 0.3389389389389389, 0.34004004004004, 0.34114114114114114, 0.3422422422422422, 0.3433433433433433, 0.34444444444444444, 0.3455455455455455, 0.34664664664664663, 0.34774774774774775, 0.3488488488488488, 0.34994994994994993, 0.35105105105105106, 0.3521521521521521, 0.3532532532532532, 0.35435435435435436, 0.3554554554554554, 0.3565565565565565, 0.35765765765765767, 0.35875875875875873, 0.3598598598598598, 0.360960960960961, 0.36206206206206204, 0.3631631631631631, 0.3642642642642643, 0.36536536536536535, 0.3664664664664664, 0.3675675675675676, 0.36866866866866865, 0.3697697697697697, 0.3708708708708709, 0.37197197197197196, 0.373073073073073, 0.3741741741741741, 0.37527527527527527, 0.37637637637637633, 0.3774774774774774, 0.3785785785785786, 0.37967967967967964, 0.3807807807807807, 0.3818818818818819, 0.38298298298298294, 0.384084084084084, 0.3851851851851852, 0.38628628628628625, 0.3873873873873873, 0.3884884884884885, 0.38958958958958956, 0.3906906906906906, 0.3917917917917918, 0.39289289289289286, 0.39399399399399393, 0.3950950950950951, 0.39619619619619617, 0.39729729729729724, 0.3983983983983984, 0.3994994994994995, 0.40060060060060054, 0.4017017017017017, 0.4028028028028028, 0.40390390390390385, 0.405005005005005, 0.4061061061061061, 0.40720720720720716, 0.4083083083083082, 0.4094094094094094, 0.41051051051051046, 0.4116116116116115, 0.4127127127127127, 0.41381381381381377, 0.41491491491491483, 0.416016016016016, 0.4171171171171171, 0.41821821821821814, 0.4193193193193193, 0.4204204204204204, 0.42152152152152145, 0.4226226226226226, 0.4237237237237237, 0.42482482482482475, 0.42592592592592593, 0.427027027027027, 0.42812812812812806, 0.42922922922922924, 0.4303303303303303, 0.43143143143143137, 0.43253253253253254, 0.4336336336336336, 0.4347347347347347, 0.43583583583583585, 0.4369369369369369, 0.438038038038038, 0.43913913913913916, 0.4402402402402402, 0.4413413413413413, 0.44244244244244235, 0.44354354354354353, 0.4446446446446446, 0.44574574574574566, 0.44684684684684683, 0.4479479479479479, 0.44904904904904897, 0.45015015015015014, 0.4512512512512512, 0.45235235235235227, 0.45345345345345345, 0.4545545545545545, 0.4556556556556556, 0.45675675675675675, 0.4578578578578578, 0.4589589589589589, 0.46006006006006006, 0.4611611611611611, 0.4622622622622622, 0.46336336336336337, 0.46446446446446443, 0.4655655655655655, 0.4666666666666667, 0.46776776776776774, 0.4688688688688688, 0.46996996996997, 0.47107107107107105, 0.4721721721721721, 0.4732732732732732, 0.47437437437437435, 0.4754754754754754, 0.4765765765765765, 0.47767767767767766, 0.4787787787787787, 0.4798798798798798, 0.48098098098098097, 0.48208208208208203, 0.4831831831831831, 0.48428428428428427, 0.48538538538538534, 0.4864864864864864, 0.4875875875875876, 0.48868868868868864, 0.4897897897897897, 0.4908908908908909, 0.49199199199199195, 0.493093093093093, 0.4941941941941942, 0.49529529529529526, 0.4963963963963963, 0.4974974974974975, 0.49859859859859856, 0.49969969969969963, 0.5008008008008008, 0.5019019019019019, 0.5030030030030029, 0.5041041041041041, 0.5052052052052052, 0.5063063063063062, 0.5074074074074073, 0.5085085085085085, 0.5096096096096095, 0.5107107107107106, 0.5118118118118118, 0.5129129129129129, 0.5140140140140139, 0.5151151151151151, 0.5162162162162162, 0.5173173173173172, 0.5184184184184184, 0.5195195195195195, 0.5206206206206205, 0.5217217217217217, 0.5228228228228228, 0.5239239239239238, 0.525025025025025, 0.5261261261261261, 0.5272272272272271, 0.5283283283283283, 0.5294294294294294, 0.5305305305305305, 0.5316316316316316, 0.5327327327327327, 0.5338338338338338, 0.5349349349349349, 0.536036036036036, 0.5371371371371371, 0.5382382382382382, 0.5393393393393393, 0.5404404404404404, 0.5415415415415414, 0.5426426426426426, 0.5437437437437437, 0.5448448448448447, 0.5459459459459459, 0.547047047047047, 0.548148148148148, 0.5492492492492492, 0.5503503503503503, 0.5514514514514514, 0.5525525525525525, 0.5536536536536536, 0.5547547547547547, 0.5558558558558558, 0.5569569569569569, 0.558058058058058, 0.5591591591591591, 0.5602602602602602, 0.5613613613613613, 0.5624624624624625, 0.5635635635635635, 0.5646646646646646, 0.5657657657657658, 0.5668668668668668, 0.5679679679679679, 0.5690690690690691, 0.5701701701701701, 0.5712712712712712, 0.5723723723723724, 0.5734734734734734, 0.5745745745745745, 0.5756756756756756, 0.5767767767767767, 0.5778778778778778, 0.5789789789789789, 0.58008008008008, 0.5811811811811811, 0.5822822822822822, 0.5833833833833834, 0.5844844844844844, 0.5855855855855855, 0.5866866866866867, 0.5877877877877877, 0.5888888888888888, 0.58998998998999, 0.591091091091091, 0.5921921921921921, 0.5932932932932933, 0.5943943943943943, 0.5954954954954954, 0.5965965965965966, 0.5976976976976976, 0.5987987987987987, 0.5998998998998999, 0.601001001001001, 0.602102102102102, 0.6032032032032031, 0.6043043043043043, 0.6054054054054053, 0.6065065065065064, 0.6076076076076076, 0.6087087087087086, 0.6098098098098097, 0.6109109109109109, 0.6120120120120119, 0.613113113113113, 0.6142142142142141, 0.6153153153153152, 0.6164164164164163, 0.6175175175175174, 0.6186186186186186, 0.6197197197197196, 0.6208208208208207, 0.6219219219219219, 0.6230230230230229, 0.624124124124124, 0.6252252252252252, 0.6263263263263262, 0.6274274274274273, 0.6285285285285285, 0.6296296296296295, 0.6307307307307306, 0.6318318318318318, 0.6329329329329328, 0.6340340340340339, 0.6351351351351351, 0.6362362362362362, 0.6373373373373372, 0.6384384384384384, 0.6395395395395395, 0.6406406406406405, 0.6417417417417417, 0.6428428428428428, 0.6439439439439438, 0.645045045045045, 0.6461461461461461, 0.6472472472472471, 0.6483483483483482, 0.6494494494494494, 0.6505505505505504, 0.6516516516516515, 0.6527527527527527, 0.6538538538538538, 0.6549549549549548, 0.656056056056056, 0.6571571571571571, 0.6582582582582581, 0.6593593593593593, 0.6604604604604604, 0.6615615615615614, 0.6626626626626626, 0.6637637637637637, 0.6648648648648647, 0.6659659659659659, 0.667067067067067, 0.668168168168168, 0.6692692692692692, 0.6703703703703703, 0.6714714714714713, 0.6725725725725725, 0.6736736736736736, 0.6747747747747747, 0.6758758758758758, 0.6769769769769769, 0.678078078078078, 0.6791791791791791, 0.6802802802802802, 0.6813813813813813, 0.6824824824824823, 0.6835835835835835, 0.6846846846846846, 0.6857857857857856, 0.6868868868868868, 0.6879879879879879, 0.689089089089089, 0.6901901901901901, 0.6912912912912912, 0.6923923923923923, 0.6934934934934934, 0.6945945945945945, 0.6956956956956956, 0.6967967967967967, 0.6978978978978978, 0.6989989989989989, 0.7001001001001, 0.7012012012012011, 0.7023023023023022, 0.7034034034034033, 0.7045045045045044, 0.7056056056056055, 0.7067067067067067, 0.7078078078078077, 0.7089089089089088, 0.71001001001001, 0.711111111111111, 0.7122122122122121, 0.7133133133133133, 0.7144144144144143, 0.7155155155155154, 0.7166166166166165, 0.7177177177177176, 0.7188188188188187, 0.7199199199199198, 0.721021021021021, 0.722122122122122, 0.7232232232232231, 0.7243243243243243, 0.7254254254254253, 0.7265265265265264, 0.7276276276276276, 0.7287287287287286, 0.7298298298298297, 0.7309309309309309, 0.7320320320320319, 0.733133133133133, 0.7342342342342342, 0.7353353353353352, 0.7364364364364363, 0.7375375375375375, 0.7386386386386385, 0.7397397397397396, 0.7408408408408408, 0.7419419419419419, 0.7430430430430429, 0.7441441441441441, 0.7452452452452452, 0.7463463463463462, 0.7474474474474473, 0.7485485485485485, 0.7496496496496495, 0.7507507507507506, 0.7518518518518518, 0.7529529529529528, 0.7540540540540539, 0.7551551551551551, 0.7562562562562561, 0.7573573573573572, 0.7584584584584584, 0.7595595595595594, 0.7606606606606605, 0.7617617617617617, 0.7628628628628628, 0.7639639639639638, 0.765065065065065, 0.7661661661661661, 0.7672672672672671, 0.7683683683683683, 0.7694694694694694, 0.7705705705705704, 0.7716716716716716, 0.7727727727727727, 0.7738738738738737, 0.7749749749749749, 0.776076076076076, 0.777177177177177, 0.7782782782782782, 0.7793793793793793, 0.7804804804804804, 0.7815815815815814, 0.7826826826826826, 0.7837837837837837, 0.7848848848848847, 0.7859859859859859, 0.787087087087087, 0.788188188188188, 0.7892892892892892, 0.7903903903903903, 0.7914914914914913, 0.7925925925925925, 0.7936936936936936, 0.7947947947947946, 0.7958958958958958, 0.7969969969969969, 0.798098098098098, 0.7991991991991991, 0.8003003003003002, 0.8014014014014013, 0.8025025025025024, 0.8036036036036035, 0.8047047047047046, 0.8058058058058057, 0.8069069069069068, 0.8080080080080079, 0.809109109109109, 0.8102102102102101, 0.8113113113113112, 0.8124124124124124, 0.8135135135135134, 0.8146146146146145, 0.8157157157157156, 0.8168168168168167, 0.8179179179179178, 0.8190190190190189, 0.82012012012012, 0.8212212212212211, 0.8223223223223222, 0.8234234234234233, 0.8245245245245244, 0.8256256256256255, 0.8267267267267266, 0.8278278278278277, 0.8289289289289288, 0.83003003003003, 0.831131131131131, 0.8322322322322321, 0.8333333333333333, 0.8344344344344343, 0.8355355355355354, 0.8366366366366366, 0.8377377377377376, 0.8388388388388387, 0.8399399399399399, 0.8410410410410409, 0.842142142142142, 0.8432432432432432, 0.8443443443443442, 0.8454454454454453, 0.8465465465465464, 0.8476476476476476, 0.8487487487487486, 0.8498498498498497, 0.8509509509509509, 0.8520520520520519, 0.853153153153153, 0.8542542542542542, 0.8553553553553552, 0.8564564564564563, 0.8575575575575575, 0.8586586586586585, 0.8597597597597596, 0.8608608608608608, 0.8619619619619618, 0.8630630630630629, 0.8641641641641641, 0.8652652652652651, 0.8663663663663662, 0.8674674674674674, 0.8685685685685685, 0.8696696696696695, 0.8707707707707707, 0.8718718718718718, 0.8729729729729728, 0.874074074074074, 0.8751751751751751, 0.8762762762762761, 0.8773773773773773, 0.8784784784784784, 0.8795795795795794, 0.8806806806806805, 0.8817817817817817, 0.8828828828828827, 0.8839839839839838, 0.885085085085085, 0.886186186186186, 0.8872872872872871, 0.8883883883883883, 0.8894894894894894, 0.8905905905905904, 0.8916916916916916, 0.8927927927927927, 0.8938938938938937, 0.8949949949949949, 0.896096096096096, 0.897197197197197, 0.8982982982982982, 0.8993993993993993, 0.9005005005005003, 0.9016016016016015, 0.9027027027027026, 0.9038038038038037, 0.9049049049049048, 0.9060060060060059, 0.907107107107107, 0.9082082082082081, 0.9093093093093092, 0.9104104104104103, 0.9115115115115114, 0.9126126126126125, 0.9137137137137136, 0.9148148148148146, 0.9159159159159158, 0.9170170170170169, 0.9181181181181179, 0.9192192192192191, 0.9203203203203202, 0.9214214214214212, 0.9225225225225224, 0.9236236236236235, 0.9247247247247246, 0.9258258258258257, 0.9269269269269268, 0.9280280280280279, 0.929129129129129, 0.9302302302302301, 0.9313313313313312, 0.9324324324324323, 0.9335335335335334, 0.9346346346346345, 0.9357357357357357, 0.9368368368368367, 0.9379379379379378, 0.939039039039039, 0.94014014014014, 0.9412412412412411, 0.9423423423423423, 0.9434434434434433, 0.9445445445445444, 0.9456456456456456, 0.9467467467467466, 0.9478478478478477, 0.9489489489489488, 0.9500500500500499, 0.951151151151151, 0.9522522522522521, 0.9533533533533533, 0.9544544544544543, 0.9555555555555554, 0.9566566566566566, 0.9577577577577576, 0.9588588588588587, 0.9599599599599599, 0.9610610610610609, 0.962162162162162, 0.9632632632632632, 0.9643643643643642, 0.9654654654654653, 0.9665665665665665, 0.9676676676676675, 0.9687687687687686, 0.9698698698698698, 0.9709709709709708, 0.9720720720720719, 0.9731731731731731, 0.9742742742742742, 0.9753753753753752, 0.9764764764764764, 0.9775775775775775, 0.9786786786786785, 0.9797797797797796, 0.9808808808808808, 0.9819819819819818, 0.9830830830830829, 0.9841841841841841, 0.9852852852852851, 0.9863863863863862, 0.9874874874874874, 0.9885885885885884, 0.9896896896896895, 0.9907907907907907, 0.9918918918918918, 0.9929929929929928, 0.994094094094094, 0.9951951951951951, 0.9962962962962961, 0.9973973973973973, 0.9984984984984984, 0.9995995995995994, 1.0007007007007007, 1.0018018018018018, 1.0029029029029028, 1.004004004004004, 1.005105105105105, 1.006206206206206, 1.0073073073073073, 1.0084084084084084, 1.0095095095095095, 1.0106106106106105, 1.0117117117117116, 1.0128128128128127, 1.0139139139139137, 1.015015015015015, 1.016116116116116, 1.0172172172172171, 1.0183183183183182, 1.0194194194194193, 1.0205205205205203, 1.0216216216216216, 1.0227227227227227, 1.0238238238238238, 1.0249249249249248, 1.0260260260260259, 1.027127127127127, 1.0282282282282282, 1.0293293293293293, 1.0304304304304304, 1.0315315315315314, 1.0326326326326325, 1.0337337337337336, 1.0348348348348348, 1.035935935935936, 1.037037037037037, 1.038138138138138, 1.039239239239239, 1.0403403403403402, 1.0414414414414415, 1.0425425425425425, 1.0436436436436436, 1.0447447447447447, 1.0458458458458457, 1.0469469469469468, 1.0480480480480479, 1.0491491491491491, 1.0502502502502502, 1.0513513513513513, 1.0524524524524523, 1.0535535535535534, 1.0546546546546545, 1.0557557557557558, 1.0568568568568568, 1.0579579579579579, 1.059059059059059, 1.06016016016016, 1.061261261261261, 1.0623623623623624, 1.0634634634634634, 1.0645645645645645, 1.0656656656656656, 1.0667667667667666, 1.0678678678678677, 1.068968968968969, 1.07007007007007, 1.071171171171171, 1.0722722722722722, 1.0733733733733732, 1.0744744744744743, 1.0755755755755756, 1.0766766766766767, 1.0777777777777777, 1.0788788788788788, 1.0799799799799799, 1.081081081081081, 1.082182182182182, 1.0832832832832833, 1.0843843843843843, 1.0854854854854854, 1.0865865865865865, 1.0876876876876875, 1.0887887887887886, 1.0898898898898899, 1.090990990990991, 1.092092092092092, 1.093193193193193, 1.0942942942942941, 1.0953953953953952, 1.0964964964964965, 1.0975975975975976, 1.0986986986986986, 1.0997997997997997, 1.1009009009009008, 1.102002002002002, 1.103103103103103, 1.1042042042042042, 1.1053053053053052, 1.1064064064064063, 1.1075075075075074, 1.1086086086086087, 1.1097097097097097, 1.1108108108108108, 1.1119119119119119, 1.113013013013013, 1.114114114114114, 1.1152152152152153, 1.1163163163163163, 1.1174174174174174, 1.1185185185185185, 1.1196196196196195, 1.1207207207207206, 1.1218218218218219, 1.122922922922923, 1.124024024024024, 1.125125125125125, 1.1262262262262261, 1.1273273273273272, 1.1284284284284283, 1.1295295295295296, 1.1306306306306306, 1.1317317317317317, 1.1328328328328328, 1.1339339339339338, 1.135035035035035, 1.1361361361361362, 1.1372372372372372, 1.1383383383383383, 1.1394394394394394, 1.1405405405405404, 1.1416416416416415, 1.1427427427427428, 1.1438438438438439, 1.144944944944945, 1.146046046046046, 1.147147147147147, 1.1482482482482481, 1.1493493493493494, 1.1504504504504505, 1.1515515515515515, 1.1526526526526526, 1.1537537537537537, 1.1548548548548547, 1.155955955955956, 1.157057057057057, 1.1581581581581581, 1.1592592592592592, 1.1603603603603603, 1.1614614614614613, 1.1625625625625624, 1.1636636636636637, 1.1647647647647648, 1.1658658658658658, 1.166966966966967, 1.168068068068068, 1.169169169169169, 1.1702702702702703, 1.1713713713713714, 1.1724724724724724, 1.1735735735735735, 1.1746746746746746, 1.1757757757757756, 1.176876876876877, 1.177977977977978, 1.179079079079079, 1.1801801801801801, 1.1812812812812812, 1.1823823823823822, 1.1834834834834835, 1.1845845845845846, 1.1856856856856857, 1.1867867867867867, 1.1878878878878878, 1.1889889889889889, 1.1900900900900901, 1.1911911911911912, 1.1922922922922923, 1.1933933933933933, 1.1944944944944944, 1.1955955955955955, 1.1966966966966965, 1.1977977977977978, 1.198898898898899, 1.2 ], "y": [ 7315.360667641557, 7347.287549082221, 7378.834966305733, 7410.006551042637, 7440.805853087395, 7471.23634375245, 7501.301419152891, 7531.0044033312915, 7560.34855123167, 7589.337051530912, 7617.97302933552, 7646.259548750959, 7674.199615330487, 7701.796178409882, 7729.0521333340785, 7755.970323581391, 7782.553542790597, 7808.804536695917, 7834.726004974512, 7860.320603010981, 7885.590943582954, 7910.539598471731, 7935.169100001619, 7959.481942511474, 7983.480583761695, 8007.167446279802, 8030.544918647471, 8053.615356731859, 8076.381084863744, 8098.844396965043, 8121.007557627963, 8142.87280314806, 8164.442342513268, 8185.71835835093, 8206.703007834638, 8227.398423552773, 8247.806714340351, 8267.929966075859, 8287.77024244456, 8307.329585669773, 8326.61001721345, 8345.613538447447, 8364.342131296657, 8382.797758855286, 8400.982365977328, 8418.897879842381, 8436.54621049782, 8453.929251378268, 8471.048879803413, 8487.906957454934, 8504.505330833494, 8520.845831696559, 8536.930277477864, 8552.760471689253, 8568.338204305586, 8583.665252133429, 8598.743379164194, 8613.57433691227, 8628.159864738866, 8642.501690162007, 8656.601529153359, 8670.461086422309, 8684.082055687848, 8697.46611993875, 8710.61495168246, 8723.530213183214, 8736.21355668974, 8748.666624652977, 8760.89104993425, 8772.888456004175, 8784.660457132779, 8796.208658571088, 8807.534656724536, 8818.640039318589, 8829.52638555677, 8840.195266271487, 8850.648244067897, 8860.8868734611, 8870.91270100691, 8880.727265426474, 8890.332097724975, 8899.728721304666, 8908.91865207245, 8917.903398542207, 8926.684461932135, 8935.263336257229, 8943.641508417191, 8951.82045827984, 8959.801658760316, 8967.58657589618, 8975.176668918604, 8982.57339031981, 8989.778185916934, 8996.792494912408, 9003.617749951085, 9010.25537717418, 9016.706796270199, 9022.973420522969, 9029.056656856908, 9034.957905879643, 9040.67856192211, 9046.220013076223, 9051.583641230241, 9056.770822101946, 9061.7829252697, 9066.621314201499, 9071.287346282144, 9075.782372838574, 9080.107739163432, 9084.264784537076, 9088.254842247914, 9092.079239611356, 9095.73929798727, 9099.236332796148, 9102.571653534007, 9105.746563786042, 9108.762361239224, 9111.62033769373, 9114.321779073462, 9116.867965435538, 9119.260170978916, 9121.499664052202, 9123.587707160614, 9125.525556972263, 9127.314464323716, 9128.955674224908, 9130.450425863493, 9131.79995260861, 9133.005482014136, 9134.0682358215, 9134.989429962023, 9135.770274558878, 9136.411973928707, 9136.91572658289, 9137.282725228528, 9137.514156769152, 9137.611202305237, 9137.575037134475, 9137.406830751896, 9137.107746849819, 9136.678943317731, 9136.121572242015, 9135.43677990562, 9134.625706787709, 9133.689487563255, 9132.629251102608, 9131.446120471126, 9130.141212928791, 9128.71563992989, 9127.170507122779, 9125.506914349686, 9123.725955646669, 9121.828719243626, 9119.816287564488, 9117.689737227505, 9115.450139045726, 9113.098558027597, 9110.636053377802, 9108.063678498209, 9105.382480989078, 9102.593502650458, 9099.69777948379, 9096.696341693727, 9093.590213690226, 9090.380414090823, 9087.06795572322, 9083.653845628058, 9080.139085062005, 9076.52466950107, 9072.811588644221, 9069.000826417245, 9065.093360976909, 9061.090164715391, 9056.992204265029, 9052.800440503292, 9048.515828558131, 9044.139317813555, 9039.671851915542, 9035.114368778233, 9030.467800590442, 9025.733073822461, 9020.91110923314, 9016.002821877348, 9011.009121113639, 9005.930910612315, 9000.769088363719, 8995.524546686891, 8990.198172238497, 8984.790846022066, 8979.303443397537, 8973.736834091107, 8968.09188220537, 8962.369446229777, 8956.570379051362, 8950.695527965801, 8944.745734688733, 8938.721835367394, 8932.624660592543, 8926.455035410645, 8920.213779336387, 8913.901706365434, 8907.519624987493, 8901.068338199655, 8894.548643519967, 8887.961333001354, 8881.307193245739, 8874.587005418463, 8867.801545262966, 8860.95158311571, 8854.03788392137, 8847.061207248293, 8840.022307304167, 8832.921932951964, 8825.760827726124, 8818.539729848955, 8811.259372247294, 8803.920482569378, 8796.523783201957, 8789.0699912876, 8781.559818742273, 8773.993972273069, 8766.373153396187, 8758.69805845513, 8750.969378639047, 8743.187800001351, 8735.354003478455, 8727.468664908762, 8719.532455051803, 8711.546039607567, 8703.510079236024, 8695.42522957679, 8687.292141268996, 8679.111459971306, 8670.883826382093, 8662.60987625978, 8654.290240443339, 8645.92554487294, 8637.516410610711, 8629.06345386171, 8620.567285994948, 8612.02851356464, 8603.447738331492, 8594.825557284177, 8586.162562660918, 8577.459341971173, 8568.716478017452, 8559.93454891723, 8551.11412812498, 8542.255784454299, 8533.360082100126, 8524.42758066107, 8515.45883516183, 8506.454396075667, 8497.41480934703, 8488.340616414167, 8479.232354231903, 8470.090555294431, 8460.915747658202, 8451.70845496486, 8442.46919646426, 8433.19848703753, 8423.89683722019, 8414.564753225326, 8405.202736966821, 8395.811286082602, 8386.39089395797, 8376.942049748935, 8367.465238405604, 8357.960940695586, 8348.42963322746, 8338.871788474216, 8329.287874796772, 8319.67835646748, 8310.043693693651, 8300.384342641117, 8290.700755457769, 8280.993380297139, 8271.262661341958, 8261.509038827748, 8251.73294906638, 8241.934824469654, 8232.115093572867, 8222.274181058387, 8212.412507779172, 8202.530490782343, 8192.628543332688, 8182.707074936168, 8172.766491363417, 8162.8071946731925, 8152.8295832358235, 8142.834051756617, 8132.820991299257, 8122.790789309142, 8112.7438296367145, 8102.680492560747, 8092.60115481159, 8082.506189594376, 8072.395966612195, 8062.270852089216, 8052.131208793763, 8041.977396061359, 8031.809769817696, 8021.62868260158, 8011.434483587807, 8001.227518609989, 7991.008130183329, 7980.7766575273345, 7970.533436588476, 7960.278800062773, 7950.0130774183435, 7939.736594917847, 7929.449675640917, 7919.152639506485, 7908.84580329505, 7898.529480670886, 7888.203982204165, 7877.869615393029, 7867.526684685558, 7857.175491501696, 7846.816334255083, 7836.449508374814, 7826.075306327117, 7815.694017636965, 7805.30592890959, 7794.911323851935, 7784.510483294, 7774.103685210137, 7763.691204740227, 7753.273314210801, 7742.850283156053, 7732.422378338782, 7721.989863771238, 7711.553000735886, 7701.112047806074, 7690.667260866619, 7680.218893134284, 7669.767195178199, 7659.3124149401565, 7648.854797754826, 7638.394586369876, 7627.932020966014, 7617.46733917691, 7607.0007761090255, 7596.532564361385, 7586.062934045196, 7575.592112803413, 7565.120325830191, 7554.6477958902415, 7544.174743338085, 7533.70138613722, 7523.227939879182, 7512.754617802504, 7502.2816308115825, 7491.809187495438, 7481.3374941463835, 7470.866754778585, 7460.3971711465265, 7449.928942763368, 7439.462266919213, 7428.997338699267, 7418.534351001888, 7408.073494556554, 7397.614957941721, 7387.158927602561, 7376.705587868627, 7366.255120971402, 7355.807707061735, 7345.363524227204, 7334.922748509334, 7324.485553920769, 7314.052112462277, 7303.622594139714, 7293.197166980832, 7282.77599705203, 7272.359248474967, 7261.947083443101, 7251.539662238102, 7241.137143246175, 7230.739682974285, 7220.347436066263, 7209.960555318834, 7199.579191697521, 7189.20349435245, 7178.833610634083, 7168.469686108796, 7158.1118645744045, 7147.760288075569, 7137.41509691909, 7127.07642968911, 7116.744423262234, 7106.419212822508, 7096.100931876343, 7085.789712267299, 7075.485684190798, 7065.188976208724, 7054.899715263922, 7044.618026694616, 7034.344034248689, 7024.077860097918, 7013.819624852067, 7003.569447572898, 6993.327445788087, 6983.093735505042, 6972.868431224616, 6962.651645954735, 6952.443491223908, 6942.244077094689, 6932.05351217697, 6921.871903641246, 6911.699357231747, 6901.535977279493, 6891.3818667152345, 6881.237127082331, 6871.1018585495, 6860.976159923494, 6850.860128661692, 6840.753860884559, 6830.657451388071, 6820.570993656002, 6810.494579872129, 6800.428300932372, 6790.372246456805, 6780.326504801609, 6770.291163070904, 6760.266307128534, 6750.252021609715, 6740.248389932628, 6730.255494309911, 6720.273415760075, 6710.302234118802, 6700.342028050194, 6690.392875057916, 6680.454851496255, 6670.528032581079, 6660.612492400757, 6650.708303926931, 6640.815539025256, 6630.934268466024, 6621.0645619347215, 6611.206488042502, 6601.360114336565, 6591.525507310458, 6581.702732414312, 6571.891854064973, 6562.092935656066, 6552.30603956797, 6542.5312271777275, 6532.768558868856, 6523.018094041099, 6513.2798911200825, 6503.5540075669, 6493.840499887629, 6484.139423642751, 6474.450833456509, 6464.774783026189, 6455.111325131315, 6445.460511642781, 6435.822393531902, 6426.197020879383, 6416.5844428842365, 6406.984707872602, 6397.397863306499, 6387.823955792522, 6378.26303109045, 6368.715134121773, 6359.180308978184, 6349.658598929955, 6340.15004643428, 6330.654693143519, 6321.172579913406, 6311.703746811143, 6302.24823312348, 6292.8060773646675, 6283.377317284398, 6273.961989875636, 6264.560131382413, 6255.171777307526, 6245.796962420207, 6236.4357207636895, 6227.088085662736, 6217.75408973109, 6208.433764878866, 6199.127142319881, 6189.83425257891, 6180.555125498893, 6171.289790248071, 6162.038275327062, 6152.800608575878, 6143.57681718088, 6134.366927681668, 6125.170965977914, 6115.988957336147, 6106.820926396447, 6097.666897179124, 6088.526893091296, 6079.400936933435, 6070.289050905856, 6061.191256615131, 6052.107575080458, 6043.038026739977, 6033.9826314570255, 6024.94140852633, 6015.9143766801635, 6006.901554094424, 5997.902958394675, 5988.91860666213, 5979.948515439577, 5970.992700737255, 5962.051178038678, 5953.123962306399, 5944.211067987743, 5935.312509020451, 5926.428298838326, 5917.558450376766, 5908.7029760783025, 5899.861887898057, 5891.035197309152, 5882.222915308087, 5873.425052420046, 5864.641618704179, 5855.872623758799, 5847.118076726586, 5838.3779862996935, 5829.652360724831, 5820.941207808296, 5812.244534920966, 5803.56234900323, 5794.8946565698925, 5786.241463715017, 5777.602776116732, 5768.978599041997, 5760.368937351311, 5751.773795503393, 5743.193177559806, 5734.6270871895495, 5726.075527673597, 5717.538501909405, 5709.016012415366, 5700.508061335229, 5692.014650442481, 5683.535781144679, 5675.071454487741, 5666.621671160209, 5658.186431497463, 5649.765735485893, 5641.359582767034, 5632.967972641673, 5624.590904073893, 5616.228375695108, 5607.8803858080355, 5599.546932390642, 5591.228013100057, 5582.923625276437, 5574.633765946798, 5566.358431828816, 5558.09761933459, 5549.851324574357, 5541.619543360195, 5533.402271209667, 5525.19950334944, 5517.011234718878, 5508.837459973582, 5500.678173488914, 5492.533369363474, 5484.403041422553, 5476.287183221541, 5468.185788049324, 5460.098848931616, 5452.026358634287, 5443.968309666652, 5435.9246942847085, 5427.895504494381, 5419.880732054692, 5411.880368480934, 5403.89440504779, 5395.922832792439, 5387.965642517621, 5380.022824794676, 5372.094369966551, 5364.1802681507825, 5356.2805092424405, 5348.395082917056, 5340.52397863351, 5332.667185636901, 5324.824692961375, 5316.996489432934, 5309.182563672222, 5301.382904097273, 5293.597498926235, 5285.8263361800755, 5278.06940368524, 5270.326689076315, 5262.598179798629, 5254.883863110862, 5247.183726087599, 5239.497755621875, 5231.825938427697, 5224.168261042534, 5216.524709829772, 5208.895270981169, 5201.279930519266, 5193.6786742997765, 5186.091488013966, 5178.518357190982, 5170.959267200188, 5163.414203253455, 5155.883150407435, 5148.36609356582, 5140.863017481561, 5133.373906759085, 5125.898745856469, 5118.437519087609, 5110.990210624356, 5103.55680449863, 5096.137284604535, 5088.731634700408, 5081.339838410892, 5073.961879228964, 5066.597740517941, 5059.247405513483, 5051.91085732555, 5044.588078940372, 5037.279053222359, 5029.983762916024, 5022.702190647875, 5015.434318928281, 5008.1801301533305, 5000.939606606657, 4993.712730461262, 4986.499483781303, 4979.29984852388, 4972.1138065407795, 4964.941339580229, 4957.782429288611, 4950.637057212171, 4943.5052047987, 4936.386853399205, 4929.281984269563, 4922.190578572145, 4915.112617377449, 4908.048081665685, 4900.9969523283635, 4893.959210169865, 4886.934835908986, 4879.923810180469, 4872.92611353653, 4865.941726448343, 4858.970629307547, 4852.0128024276955, 4845.068226045721, 4838.136880323372, 4831.218745348634, 4824.3138011371375, 4817.422027633551, 4810.543404712961, 4803.677912182232, 4796.8255297813585, 4789.986237184793, 4783.160014002773, 4776.346839782622, 4769.546694010038, 4762.759556110383, 4755.985405449932, 4749.224221337126, 4742.475983023822, 4735.740669706494, 4729.018260527466, 4722.308734576081, 4715.612070889918, 4708.928248455928, 4702.257246211616, 4695.599043046179, 4688.953617801632, 4682.320949273938, 4675.701016214107, 4669.093797329297, 4662.499271283896, 4655.91741670059, 4649.348212161428, 4642.791636208869, 4636.24766734681, 4629.71628404162, 4623.19746472315, 4616.6911877857365, 4610.197431589184, 4603.716174459755, 4597.247394691139, 4590.791070545392, 4584.347180253909, 4577.915702018345, 4571.496614011539, 4565.08989437844, 4558.695521237002, 4552.313472679081, 4545.943726771325, 4539.586261556043, 4533.2410550520635, 4526.908085255604, 4520.587330141104, 4514.278767662061, 4507.982375751863, 4501.698132324594, 4495.4260152758525, 4489.166002483534, 4482.918071808635, 4476.68220109602, 4470.458368175196, 4464.246550861072, 4458.0467269547125, 4451.858874244079, 4445.682970504762, 4439.518993500719, 4433.366920984971, 4427.226730700334, 4421.098400380099, 4414.98190774874, 4408.877230522588, 4402.784346410518, 4396.703233114599, 4390.633868330772, 4384.57622974949, 4378.530295056371, 4372.496041932828, 4366.473448056696, 4360.462491102867, 4354.463148743883, 4348.47539865056, 4342.49921849258, 4336.534585939078, 4330.581478659239, 4324.63987432286, 4318.709750600933, 4312.791085166201, 4306.88385569372, 4300.988039861397, 4295.10361535055, 4289.230559846429, 4283.368851038753, 4277.518466622231, 4271.679384297078, 4265.851581769523, 4260.035036752312, 4254.229726965215, 4248.435630135501, 4242.652723998432, 4236.88098629774, 4231.1203947861, 4225.370927225597, 4219.632561388179, 4213.905275056119, 4208.189046022465, 4202.4838520914755, 4196.789671079062, 4191.106480813216, 4185.434259134444, 4179.772983896175, 4174.122632965184, 4168.483184221998, 4162.854615561304, 4157.236904892338, 4151.630030139294, 4146.033969241693, 4140.448700154783, 4134.874200849906, 4129.310449314874, 4123.757423554337, 4118.215101590151, 4112.683461461723, 4107.1624812263735, 4101.652138959687, 4096.152412755847, 4090.66328072798, 4085.1847210084857, 4079.716711749375, 4074.259231122584, 4068.812257320298, 4063.3757685552728, 4057.9497430611405, 4052.5341590927155, 4047.1289949262996, 4041.7342288599834, 4036.3498392139327, 4030.975804330686, 4025.612102575437, 4020.2587123363114, 4014.915612024657, 4009.582780075305, 4004.2601949468412, 3998.9478351218813, 3993.645679107319, 3988.3537054345943, 3983.07189265994, 3977.8002193646403, 3972.5386641552655, 3967.2872056639253, 3962.045822548504, 3956.8144934928923, 3951.5931972072253, 3946.381912428107, 3941.1806179188347, 3935.9892924696196, 3930.8079148978095, 3925.636464048098, 3920.474918792736, 3915.323258031741, 3910.1814606931016, 3905.0495057329745, 3899.92737213589, 3894.815038914938, 3889.7124851119643, 3884.6196897977584, 3879.5366320722383, 3874.4632910646296, 3869.399645933651, 3864.3456758676853, 3859.3013600849517, 3854.266677833681, 3849.241608392279, 3844.226131069489, 3839.22022520456, 3834.2238701673996, 3829.2370453587296, 3824.2597302102427, 3819.291904184753, 3814.3335467763377, 3809.384637510492, 3804.445155944262, 3799.515081666386, 3794.5943942974404, 3789.683073489964, 3784.7810989285927, 3779.8884503301942, 3775.0051074439903, 3770.1310500516793, 3765.266257967567, 3760.4107110386753, 3755.5643891448703, 3750.7272721989684, 3745.8993401468597, 3741.080572967607, 3736.2709506735596, 3731.4704533104587, 3726.679060957547, 3721.8967537276562, 3717.123511767324, 3712.3593152568765, 3707.6041444105317, 3702.8579794764887, 3698.1208007370224, 3693.392588508569, 3688.6733231418166, 3683.9629850217857, 3679.261554567914, 3674.5690122341375, 3669.885338508973, 3665.210513915588, 3660.5445190118817, 3655.887334390559, 3651.238940679194, 3646.599318540309, 3641.9684486714386, 3637.346311805196, 3632.732888709333, 3628.1281601868136, 3623.5321070758623, 3618.9447102500294, 3614.3659506182507, 3609.795809124896, 3605.23426674983, 3600.681304508462, 3596.1369034517975, 3591.601044666484, 3587.073709274864, 3582.5548784350185, 3578.04453334081, 3573.542655221928, 3569.049225343929, 3564.5642250082774, 3560.087635552384, 3555.6194383496427, 3551.159614809465, 3546.7081463773166, 3542.26501453475, 3537.830200799431, 3533.4036867251793, 3528.9854539019825, 3524.575483956037, 3520.1737585497676, 3515.7802593818533, 3511.394968187248, 3507.0178667372097, 3502.6489368393104, 3498.288160337469, 3493.935519111957, 3489.590995079428, 3485.2545701929207, 3480.9262264418826, 3476.605945852182, 3472.2937104861185, 3467.989502442435, 3463.69330385633, 3459.4050968994634, 3455.1248637799645, 3450.852586742443, 3446.588248067989, 3442.3318300741817, 3438.0833151150923, 3433.8426855812872, 3429.6099238998263, 3425.385012534265, 3421.167933984655, 3416.958670787547, 3412.757205515977, 3408.5635207794708, 3404.377599224042, 3400.1994235321786, 3396.028976422843, 3391.8662406514622, 3387.7111990099233, 3383.563834326557, 3379.4241294661365, 3375.29206732986, 3371.1676308553424, 3367.0508030166047, 3362.941566824057, 3358.839905324484, 3354.7458016010323, 3350.659238773198, 3346.5801999968003, 3342.5086684639755, 3338.444627403152, 3334.3880600790308, 3330.3389497925705, 3326.297279880966, 3322.263033717623, 3318.2361947121394, 3314.216746310284, 3310.2046719939726, 3306.1999552812413, 3302.202579726223, 3298.2125289191235, 3294.2297864861966, 3290.254336089716, 3286.286161427944, 3282.3252462351074, 3278.3715742813743, 3274.425129372813, 3270.485895351369, 3266.5538560948376, 3262.628995516827, 3258.711297566728, 3254.800746229683, 3250.8973255265532, 3247.0010195138834, 3243.111812283873, 3239.2296879643336, 3235.3546307186593, 3231.4866247457912, 3227.62565428018, 3223.7717035917462, 3219.924756985852, 3216.084798803254, 3212.251813420069, 3208.4257852477363, 3204.6066987329755, 3200.7945383577508, 3196.9892886392295, 3193.1909341297383, 3189.3994594167275, 3185.6148491227254, 3181.8370879052977, 3178.066160457006, 3174.302051505363, 3170.544745812794, 3166.7942281765854, 3163.05048342885, 3159.3134964364726, 3155.583252101074, 3151.85973535896, 3148.1429311810803, 3144.4328245729776, 3140.729400574745, 3137.0326442609758, 3133.3425407407212, 3129.659075157438, 3125.9822326889457, 3122.3119985473727, 3118.6483579791125, 3114.9912962647713, 3111.3407987191217, 3107.696850691051, 3104.0594375635155, 3100.428544753483, 3096.80415771189, 3093.1862619235867, 3089.5748429072864, 3085.9698862155137, 3082.371377434557, 3078.779302184412, 3075.1936461187306 ] }, { "line": { "color": "darkgreen" }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 0.25, 0.25 ], "y": [ 3000, 12000 ] }, { "line": { "color": "mediumpurple" }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 0.4330127018922193, 0.4330127018922193 ], "y": [ 3000, 12000 ] }, { "line": { "color": "crimson" }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 0.75, 0.75 ], "y": [ 3000, 12000 ] }, { "mode": "text", "showlegend": false, "text": "$C_{L,mr}=\\sqrt{\\frac{C_{D0}}{3\\,K}}$", "textfont": { "color": "darkgreen" }, "textposition": "bottom center", "type": "scatter", "x": [ 0.25 ], "y": [ 2000 ] }, { "mode": "text", "showlegend": false, "text": "$C_{L,md}=\\sqrt{\\frac{C_{D0}}{K}}$", "textfont": { "color": "mediumpurple" }, "textposition": "bottom center", "type": "scatter", "x": [ 0.4330127018922193 ], "y": [ 2000 ] }, { "mode": "text", "showlegend": false, "text": "$C_{L,mp}=\\sqrt{\\frac{3\\,C_{D0}}{K}}$", "textfont": { "color": "crimson" }, "textposition": "bottom center", "type": "scatter", "x": [ 0.75 ], "y": [ 2000 ] } ], "layout": { "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Constant speed and constant altitude ranges vs. Lift Coefficient for different starting altitudes" }, "xaxis": { "range": [ 0, 1.5 ], "title": { "text": "$C_L$" } }, "yaxis": { "range": [ 0, 12000 ], "title": { "text": "Range/km" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "legendgroup": "Constant Speed", "line": { "color": "#636EFA", "dash": "dash", "width": 4 }, "mode": "lines", "name": "Constant Speed - 4km", "type": "scatter", "x": [ 476.3186557653585, 473.71774021493485, 471.1589711241856, 468.6412223845748, 466.1634095661102, 463.7244879547833, 461.3234507017896, 458.95932707708243, 456.63118082037823, 454.33810858325444, 452.07923845644757, 449.853728576904, 447.66076580952523, 445.4995644989213, 443.3693652868202, 441.269433991091, 439.19906054262196, 437.1575579765572, 435.1442614746391, 433.15852745562233, 431.19973271093517, 429.2672735829507, 427.3605651834085, 425.479040649688, 423.62215043678634, 421.78936164299176, 419.9801573673752, 418.1940360973393, 416.4305111245772, 414.68910998789846, 412.9693739414707, 411.2708574471203, 409.59312768941595, 407.9357641123352, 4